:root {
  --black: #040404;
  --black-2: #090909;
  --panel: #101010;
  --panel-2: #151515;
  --red: #ff3030;
  --red-2: #d71920;
  --red-dark: #8e1116;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.13);
  --line-red: rgba(255,48,48,0.38);
  --shadow: 0 28px 80px rgba(0,0,0,0.42);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, "Franklin Gothic Bold", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
button, input, select, textarea { font: inherit; }

.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.section { padding: 86px 0; position: relative; }
.text-center { text-align: center; }
.eyebrow {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.red { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 7px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  font-weight: 900;
  font-size: 0.92rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.08); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  border-color: rgba(255,48,48,0.8);
  box-shadow: 0 14px 32px rgba(255,48,48,0.22);
}
.btn-primary:hover { background: linear-gradient(135deg, #ff4848, var(--red-2)); border-color: rgba(255,255,255,0.2); }
.btn-dark { background: #0b0b0b; }
.btn-outline { border-color: rgba(255,255,255,0.35); background: rgba(0,0,0,0.22); }
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3,3,3,0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.logo { width: 218px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.92rem; font-weight: 850; }
.nav-links > a:not(.btn) { color: rgba(255,255,255,0.86); }
.nav-links > a:not(.btn):hover { color: var(--white); }
.nav-cta { min-height: 44px; padding-inline: 18px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); border-radius: 8px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 99px; }

.footer { border-top: 1px solid var(--line); background: #050505; }
.footer-main { padding: 46px 0 32px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { width: 230px; margin-bottom: 16px; }
.footer-brand p { max-width: 390px; }
.footer-links { display: grid; grid-template-columns: repeat(3, max-content); gap: 10px 30px; justify-content: end; color: var(--muted); font-weight: 800; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted-2); font-size: 0.9rem; }
.footer-bottom p { margin: 0; color: var(--muted-2); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 920px) {
  .nav { min-height: 74px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #080808;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { width: 100%; margin-top: 10px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .logo { width: 190px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}
