:root {
      --black: #000;
      --charcoal: #141414;
      --charcoal-2: #181818;
      --line: #2a2a2a;
      --white: #fff;
      --muted: #b3b3b3;
      --red: #e50914;
      --red-dark: #b20710;
      --max: 1200px;
      --radius: 16px;
      --shadow: 0 18px 50px rgba(0,0,0,.45);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--black); }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--white);
      background: var(--black);
      line-height: 1.6;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    img { max-width: 100%; display: block; }
    .container { width: min(100% - 36px, var(--max)); margin-inline: auto; }
    .section { padding: 88px 0; border-top: 1px solid var(--line); scroll-margin-top: 88px; }
    .section-kicker { color: var(--red); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-size: clamp(3rem, 8vw, 6.8rem);
      line-height: .95;
      letter-spacing: -.055em;
      max-width: 980px;
      margin-bottom: 24px;
    }
    h2 {
      font-size: clamp(2rem, 4vw, 3.6rem);
      line-height: 1.05;
      letter-spacing: -.035em;
      margin-bottom: 22px;
      max-width: 900px;
    }
    h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 10px; }
    p { color: var(--muted); }
    .lead { font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 760px; }
    .skip-link {
      position: fixed; left: 12px; top: -80px; z-index: 9999;
      background: var(--white); color: var(--black); padding: 10px 14px; border-radius: 8px;
    }
    .skip-link:focus { top: 12px; }
    .site-header {
      position: fixed; inset: 0 0 auto; z-index: 1000;
      background: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
      transition: background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled { background: rgba(0,0,0,.96); box-shadow: 0 1px 0 var(--line); }
    .nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.02em; }
    .brand-mark {
      width: 38px; height: 38px; border-radius: 10px; background: var(--red);
      display: grid; place-items: center; box-shadow: 0 8px 22px rgba(229,9,20,.25);
    }
    .brand-mark span { font-size: .82rem; font-weight: 900; }
    .nav-links { display: flex; align-items: center; gap: 24px; font-size: .95rem; }
    .nav-links a:not(.btn) { color: #ddd; }
    .nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
    .menu-toggle { display: none; background: transparent; color: white; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 48px; padding: 0 20px; border-radius: 8px; font-weight: 800;
      border: 1px solid transparent; transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { background: var(--red); color: white; }
    .btn-primary:hover { background: var(--red-dark); }
    .btn-secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); backdrop-filter: blur(10px); }
    .hero {
      min-height: 92vh; display: grid; align-items: end; position: relative; overflow: hidden;
      background:
        radial-gradient(circle at 75% 30%, rgba(229,9,20,.14), transparent 30%),
        linear-gradient(115deg, rgba(0,0,0,.98) 5%, rgba(0,0,0,.78) 48%, rgba(0,0,0,.32) 100%),
        repeating-linear-gradient(90deg, #111 0 1px, transparent 1px 84px),
        linear-gradient(145deg, #181818, #050505 65%);
    }
    .hero::after {
      content: ""; position: absolute; inset: auto 0 0; height: 35%;
      background: linear-gradient(to top, var(--black), transparent); pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 1; padding: 150px 0 110px; }
    .hero-subhead { font-size: clamp(1.15rem, 2.2vw, 1.45rem); max-width: 720px; color: #e6e6e6; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
    .quick-answer { padding: 34px 0 50px; background: var(--black); }
    .quick-answer p { font-size: 1.08rem; max-width: 960px; color: #d7d7d7; margin-bottom: 0; }
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
    .stat { background: var(--charcoal); padding: 30px; min-height: 150px; }
    .stat strong { display: block; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; margin-bottom: 12px; }
    .stat span { color: var(--muted); }
    .row-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
    .scroll-controls { display: flex; gap: 10px; }
    .scroll-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--charcoal); color: white; cursor: pointer; }
    .card-row {
      display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr); grid-template-rows: 1fr;
      gap: 18px; overflow-x: auto; padding: 8px 4px 26px; scroll-snap-type: x mandatory; scrollbar-width: thin;
    }
    .card {
      scroll-snap-align: start; min-height: 280px; padding: 28px; border-radius: var(--radius);
      background: linear-gradient(155deg, #222, #141414); border: 1px solid #2b2b2b;
      box-shadow: var(--shadow); transform-origin: center; transition: transform .22s ease, border-color .22s ease;
    }
    .card:hover { transform: translateY(-6px) scale(1.015); border-color: #444; }
    .card-number { color: var(--red); font-weight: 900; margin-bottom: 46px; }
    .card p { margin-bottom: 0; }
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
    .step { background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
    .step::before { counter-increment: steps; content: "0" counter(steps); display: block; color: var(--red); font-weight: 900; margin-bottom: 34px; }
    .about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
    .about-panel { background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: 110px; }
    .about-panel strong { display: block; font-size: 1.5rem; }
    .about-copy p { font-size: 1.1rem; }
    .text-link { color: #fff; text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; }
    .faq-list { max-width: 980px; }
    details { border-top: 1px solid var(--line); }
    details:last-child { border-bottom: 1px solid var(--line); }
    summary { cursor: pointer; list-style: none; font-size: 1.2rem; font-weight: 800; padding: 24px 46px 24px 0; position: relative; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; position: absolute; right: 6px; top: 20px; font-size: 1.6rem; color: var(--red); }
    details[open] summary::after { content: "−"; }
    details p { max-width: 860px; padding-bottom: 24px; color: #c6c6c6; }
    .cta-band { background: linear-gradient(120deg, #2b0507, #0b0b0b 60%); border-top: 1px solid #3a1114; border-bottom: 1px solid #3a1114; }
    .cta-inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
    .cta-inner h2 { margin-bottom: 0; }
    footer { padding: 42px 0; background: #050505; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
    .footer-label { color: #7d7d7d; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
    .footer-grid p { margin-bottom: 6px; }
    .updated { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: #777; font-size: .9rem; }
    @media (max-width: 860px) {
      .menu-toggle { display: inline-block; }
      .nav-links {
        position: absolute; top: 76px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch;
        padding: 18px; background: rgba(0,0,0,.98); border: 1px solid var(--line); border-radius: 14px;
      }
      .nav-links.open { display: flex; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .steps, .about-grid, .footer-grid { grid-template-columns: 1fr; }
      .about-panel { position: static; }
      .cta-inner { align-items: flex-start; flex-direction: column; }
    }
    @media (max-width: 560px) {
      .container { width: min(100% - 24px, var(--max)); }
      .section { padding: 68px 0; }
      .hero { min-height: 88vh; }
      .hero-inner { padding: 130px 0 86px; }
      .stats { grid-template-columns: 1fr; }
      .row-header { align-items: flex-start; }
      .scroll-controls { display: none; }
      .card-row { grid-auto-columns: 86%; }
      .brand-text { max-width: 190px; line-height: 1.08; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }

/* Brand artwork */
.brand-logo { width: 220px; height: auto; object-fit: contain; }
.footer-logo { width: 230px; height: auto; margin-bottom: 18px; }
@media (max-width: 560px) {
  .brand-logo { width: 168px; }
}
