:root {
  --bg: #000;
  --bg-1: #060606;
  --fg: #f6f4ee;
  --fg-dim: #b3b0a8;
  --fg-mute: #6a6862;
  --line: #232323;
  --line-2: #333;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --container: 1440px;
  --gutter: clamp(24px, 5vw, 72px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--fg); }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Neue Haas Grotesk Display Pro', 'Inter', ui-sans-serif, system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--fg); color: var(--bg); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Display type — condensed, tight, poster-feeling like Bandit */
.display {
  font-family: 'Anton', 'Archivo Narrow', 'Oswald', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
}
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.lead {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.4;
  max-width: 60ch;
  letter-spacing: -0.012em;
  color: var(--fg);
  font-weight: 420;
}
.body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 56ch;
}
.body strong, .lead strong { color: var(--fg); font-weight: 600; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  mix-blend-mode: normal;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(0,0,0,0.88); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav .brand-mark { height: 36px; width: auto; }
.nav.scrolled .brand-mark { height: 30px; transition: height 220ms var(--ease); }
.nav ul { display: flex; gap: 28px; list-style: none; }
.nav ul a { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-dim); transition: color 200ms; }
.nav ul a:hover { color: var(--fg); }
@media (max-width: 820px) { .nav .nav-desktop { display: none; } }

/* Burger */
.burger { display: none; width: 32px; height: 24px; position: relative; background: 0; border: 0; padding: 0; cursor: pointer; margin-left: auto; }
.burger span { position: absolute; left: 4px; right: 4px; height: 1.5px; background: var(--fg); transition: transform .3s var(--ease), opacity .25s, top .3s; }
.burger span:nth-child(1) { top: 6px; }
.burger span:nth-child(2) { top: 12px; }
.burger span:nth-child(3) { top: 18px; }
.burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }
@media (max-width: 820px) {
  .burger { display: inline-block !important; }
  .nav .nav-cta { display: none !important; }
}

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 49; background: rgba(0,0,0,0.97); backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; text-align: center; padding: 0; }
.mobile-menu a, .mobile-menu .mm-cta { font-family: 'Anton', sans-serif; font-size: 30px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--fg); background: 0; border: 0; cursor: pointer; }
.mobile-menu .mm-sep { height: 1px; width: 60px; background: var(--line); margin: 8px auto; }
.mobile-menu .mm-cta { color: var(--bg); background: var(--fg); padding: 14px 32px; border-radius: 999px; font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.14em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms, color 220ms, border-color 220ms;
}
.btn .arrow { width: 11px; height: 11px; transition: transform 220ms var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn-primary { background: var(--fg); color: var(--bg); }
.btn-primary:hover { background: #fff; }
.btn-ghost { border: 1px solid var(--line-2); color: var(--fg); }
.btn-ghost:hover { border-color: var(--fg); }

/* Sections */
.section {
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }

/* Hairlines */
.hair { border-top: 1px solid var(--line); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Sticky WA */
.whatsapp-sticky {
  position: fixed; right: 20px; bottom: 20px; z-index: 55;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--fg); color: var(--bg);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 220ms var(--ease);
}
.whatsapp-sticky:hover { transform: translateY(-2px); }

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.marquee {
  display: flex; gap: 80px;
  animation: scroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* Placeholder big visual */
.big-visual {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, #0c0c0c, #050505);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.big-visual[data-label]::before {
  content: attr(data-label);
  position: absolute; left: 20px; top: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-mute);
}
.big-visual[data-spec]::after {
  content: attr(data-spec);
  position: absolute; right: 20px; bottom: 20px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-mute);
}

/* Grid helpers */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 80px); }
@media (max-width: 780px) { .row-2 { grid-template-columns: 1fr; } }

/* ============= MOBILE POLISH (≤640) ============= */
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  body { font-size: 15px; line-height: 1.55; }
  .display { letter-spacing: -0.02em; }
  .lead { font-size: 17px; line-height: 1.45; }
  .body { font-size: 14px; line-height: 1.6; }
  .eyebrow { font-size: 10px; letter-spacing: 0.14em; }
  .btn { padding: 12px 16px; font-size: 10px; letter-spacing: 0.12em; gap: 8px; }
  .nav { padding: 14px var(--gutter); }
  .nav .brand-mark { height: 26px; }
  .section { padding-top: clamp(40px, 9vw, 64px) !important; padding-bottom: clamp(40px, 9vw, 64px) !important; }
  .hero-live { grid-template-columns: 1fr 1fr !important; }
  .hero-live > div:nth-child(2) { border-right: none !important; }
  .hero-live > div:nth-child(1), .hero-live > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .whatsapp-sticky { right: 12px; bottom: 12px; padding: 9px 14px; font-size: 10px; }
  .marquee { gap: 48px; animation-duration: 40s; }
  .marquee > div { gap: 48px !important; }
  /* Section heads stack tighter */
  .section h2.display, .section h1.display { line-height: 0.95 !important; }
}

/* Extra-small (≤380) */
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .nav .brand-mark { height: 22px; }
  .btn { padding: 11px 13px; font-size: 9.5px; letter-spacing: 0.10em; }
  .nav .btn { padding: 9px 12px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none !important; }
  html { scroll-behavior: auto; }
}
