:root {
  --bg: #0b0a08;
  --ink: #f4f1e9;
  --muted: #a49d8f;
  --yellow: #f6c21c;
  --orange: #e85a24;
  --line: rgba(246, 194, 28, 0.30);
  --display: Impact, Haettenschweiler, 'Arial Narrow Bold', Arial, sans-serif;
  --body: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; max-width: 100%; background: var(--bg); overflow-x: hidden; }
body { font-family: var(--body); color: var(--ink); -webkit-text-size-adjust: 100%; }
img { max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; }

/* ============================================================
   MOBILE-FIRST (base) — stacked layout
   ============================================================ */
.site { width: 100%; max-width: 560px; margin: 0 auto; padding: 4px 18px 44px; overflow-x: clip; }
/* Phones don't ship Impact; fallbacks are wider, so let everything shrink + wrap. */
.site *, .site *::before, .site *::after { min-width: 0; max-width: 100%; }
.title, .kicker, .lead, .punch, .banner p, .stat b, .nav-links a { overflow-wrap: break-word; }

/* nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; padding: 14px 0 10px; border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; }
.brand-logo { height: 42px; width: auto; display: block; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.nav-links a {
  color: var(--ink); text-decoration: none; opacity: 0.85;
  font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links a:hover { opacity: 1; color: var(--yellow); }
.nav-social { display: none; }

/* hero (art first in DOM -> sits on top on mobile) */
.hero { text-align: center; padding-top: 18px; }
.hero-art {
  border: 2px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 44px rgba(232, 90, 36, 0.18);
}
.hero-art img { display: block; width: 100%; }
.title {
  font-family: var(--display); color: var(--yellow);
  font-size: clamp(56px, 20vw, 104px); line-height: 0.88; letter-spacing: 0.02em;
  margin: 18px 0 4px; text-shadow: 0 4px 0 rgba(0, 0, 0, 0.55);
}
.kicker {
  font-family: var(--display); color: #fff; text-transform: uppercase;
  font-size: clamp(18px, 6vw, 26px); letter-spacing: 0.06em; margin: 0 0 14px;
}
.lead { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 auto 18px; max-width: 44ch; }
.punch {
  font-family: var(--display); color: #fff; text-transform: uppercase;
  font-size: clamp(28px, 9vw, 42px); letter-spacing: 0.02em; margin: 4px 0 20px;
}
.punch span { color: var(--orange); }

.cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.btn {
  width: 100%; text-align: center; text-decoration: none;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 18px; padding: 15px 22px; border-radius: 12px; border: 2px solid transparent;
  transition: transform 0.06s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--yellow); color: #141312; }
.btn-ghost { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(1px); }

/* pills */
.pills { list-style: none; padding: 0; margin: 28px 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pills li {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px;
  color: var(--yellow); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 14px; background: rgba(246, 194, 28, 0.05);
}

/* stats */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 8px 0 28px; }
.stat { border: 1.5px solid var(--line); border-radius: 14px; padding: 14px; background: rgba(255, 255, 255, 0.02); }
.stat .k { display: block; color: var(--muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.stat b { display: block; font-family: var(--display); color: #fff; font-size: clamp(16px, 5.2vw, 22px); line-height: 1.05; letter-spacing: 0.02em; }
.stat .u { display: block; color: var(--yellow); font-size: 12px; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

/* banner */
.banner {
  border: 2px solid var(--line); border-radius: 16px; padding: 22px; text-align: center;
  background: linear-gradient(180deg, rgba(246, 194, 28, 0.06), rgba(232, 90, 36, 0.05)); margin-bottom: 28px;
}
.banner p { margin: 0; font-family: var(--display); text-transform: uppercase; font-size: clamp(20px, 7vw, 34px); line-height: 1.08; color: #fff; }
.banner .hl { color: var(--yellow); }
.banner .hl span { color: var(--orange); }

/* footer */
.foot { text-align: center; }
.foot-social { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; }
.foot-social a {
  flex: 1; max-width: 200px; text-decoration: none;
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px;
}
.foot-social a:hover { color: var(--yellow); border-color: var(--yellow); }
.foot-tag { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* a11y */
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}

/* ============================================================
   DESKTOP (>= 820px) — same DOM + text, wide two-column reflow
   ============================================================ */
@media (min-width: 820px) {
  .site { max-width: 1180px; padding: 8px 40px 64px; overflow-x: visible; }

  .nav { flex-wrap: nowrap; padding: 20px 0 18px; gap: 24px; }
  .brand-logo { height: 52px; }
  .nav-links { margin: 0 auto; gap: 30px; }
  .nav-links a { font-size: 15px; }
  .nav-social { display: flex; gap: 10px; }
  .nav-social a {
    text-decoration: none; font-family: var(--display); letter-spacing: 0.04em;
    color: var(--ink); border: 1.5px solid var(--line); border-radius: 10px;
    width: 42px; height: 42px; display: grid; place-items: center; font-size: 15px;
  }
  .nav-social a:hover { color: var(--yellow); border-color: var(--yellow); }

  /* hero: copy left, art right */
  .hero {
    display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center;
    gap: 56px; text-align: left; padding: 48px 0 40px;
  }
  .hero-copy { order: 1; }
  .hero-art {
    order: 2; justify-self: end; max-width: 520px; width: 100%;
    box-shadow: 0 0 90px rgba(232, 90, 36, 0.22);
  }
  .title { font-size: clamp(96px, 11vw, 172px); margin: 0 0 6px; }
  .kicker { font-size: clamp(26px, 2.4vw, 34px); margin: 0 0 18px; }
  .lead { font-size: 18px; line-height: 1.65; margin: 0 0 24px; max-width: 46ch; }
  .punch { font-size: clamp(40px, 4.2vw, 60px); margin: 0 0 28px; }

  .cta { flex-direction: row; align-items: center; gap: 16px; }
  .btn { width: auto; min-width: 210px; font-size: 20px; padding: 16px 30px; }

  .pills { justify-content: flex-start; gap: 10px; margin: 8px 0 40px; }
  .pills li { font-size: 15px; padding: 10px 18px; }

  .stats { grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0 0 40px; }
  .stat { padding: 20px; border-radius: 16px; }
  .stat .k { font-size: 12px; }
  .stat b { font-size: clamp(20px, 1.7vw, 26px); }
  .stat .u { font-size: 13px; }

  .banner { padding: 40px; margin-bottom: 40px; }
  .banner p { font-size: clamp(34px, 3.6vw, 52px); }

  .foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .foot-social { display: none; }
  .foot-tag { margin: 0; font-size: 13px; }
}

@media (min-width: 820px) and (max-width: 1040px) {
  .hero { gap: 36px; }
  .hero-art { max-width: 420px; }
}
