  /* ============================================================
     TOKENS — Direction #4: Swiss Minimalist Editorial
     ============================================================ */
  :root{
    --ink:      #12110F;   /* near-black, warm true-black for type      */
    --paper:    #FAFAF8;   /* page background — paper white             */
    --surface:  #FFFFFF;   /* card / panel surface                     */
    --rule:     #DEDBD3;   /* hairline grid rules                      */
    --muted:    #6B6862;   /* secondary text                           */
    --red:      #B92A1F;   /* sole accent — Play Now, signature only   */
    --red-deep: #8F2117;
    --wa:       #25D366;
    --wa-deep:  #1DA851;
    --tg:       #229ED9;

    --font-display: "Archivo", sans-serif;
    --font-body:    "Work Sans", sans-serif;
    --font-mono:    "DM Mono", monospace;

    --radius-sm: 3px;
    --radius-md: 4px;

    --container: 1180px;
    --gutter: clamp(20px, 5vw, 64px);
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:var(--font-body);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; }
  ::selection{ background:var(--red); color:var(--paper); }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
  }

  .container{
    max-width:var(--container);
    margin:0 auto;
    padding-left:var(--gutter);
    padding-right:var(--gutter);
  }

  .visually-hidden{
    position:absolute; width:1px; height:1px; overflow:hidden;
    clip:rect(0 0 0 0); white-space:nowrap; border:0; padding:0; margin:-1px;
  }

  /* ============================================================
     BUTTON SYSTEM (three-tier hierarchy — Play Now is the only
     accent-colour surface anywhere on the page)
     ============================================================ */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family:var(--font-body); font-weight:600; font-size:15px;
    letter-spacing:0.01em;
    padding:15px 26px;
    border-radius:var(--radius-sm);
    border:1.5px solid transparent;
    cursor:pointer;
    text-decoration:none;
    min-height:44px;
    transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  }
  .btn:focus-visible{ outline:2px solid var(--ink); outline-offset:3px; }

  .btn-primary{
    background:var(--wa); color:#fff; border-color:var(--wa);
  }
  .btn-primary:hover{ background:var(--wa-deep); border-color:var(--wa-deep); transform:translateY(-1px); }

  .btn-ghost{
    background:transparent; color:var(--ink); border-color:var(--ink);
  }
  .btn-ghost:hover{ background:var(--ink); color:var(--paper); transform:translateY(-1px); }

  .btn-nav-play{
    background:var(--red); color:#fff;
    font-family:var(--font-mono); font-size:13px; font-weight:500;
    letter-spacing:.04em; text-transform:uppercase;
    padding:11px 20px; border-radius:var(--radius-sm); min-height:40px;
  }
  .btn-nav-play:hover{ background:var(--red-deep); }

  /* ============================================================
     HEADER — flat rectilinear bar, no pill/capsule (deliberate
     break from the pill-nav default: Swiss discipline calls for
     a sharp edge-to-edge bar, not a soft floating shape).
     ============================================================ */
  .site-header{
    position:sticky; top:0; z-index:40;
    background:rgba(250,250,248,.92);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--rule);
  }
  .header-row{
    display:flex; align-items:center; justify-content:space-between;
    height:76px;
  }
  .logo{
    font-family:var(--font-display); font-weight:900; font-size:22px;
    letter-spacing:-0.02em;
  }
  .logo::after{
    content:"."; color:var(--red);
  }
  a.logo{ display:inline-flex; align-items:center; }
  a.logo img{ display:block; height:70px; width:auto; }
  a.logo:has(img)::after{ content:none; }

  .nav-links{
    display:flex; align-items:center; gap:26px; list-style:none;
    margin:0; padding:0;
    font-size:14px; font-weight:500;
  }
  .nav-links a{ text-decoration:none; }
  .nav-links a:hover, .nav-links a.active{ color:var(--red); }
  .mobile-nav-links a.active{ color:var(--red); }

  [id]{ scroll-margin-top:96px; }

  .header-actions{ display:flex; align-items:center; gap:16px; }
  .hamburger{
    display:none;
    width:44px; height:44px;
    align-items:center; justify-content:center;
    background:none; border:1px solid var(--rule); border-radius:var(--radius-sm);
    cursor:pointer;
  }
  .hamburger span{
    display:block; width:18px; height:2px; background:var(--ink); position:relative;
    transition:transform .2s ease, opacity .2s ease;
  }
  .hamburger span::before,.hamburger span::after{
    content:""; position:absolute; left:0; width:18px; height:2px; background:var(--ink);
    transition:transform .2s ease, top .2s ease;
  }
  .hamburger span::before{ top:-6px; }
  .hamburger span::after{ top:6px; }
  .hamburger[aria-expanded="true"] span{ background:transparent; }
  .hamburger[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
  .hamburger[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

  .mobile-drawer{
    display:none;
    position:fixed; inset:76px 0 0 0; z-index:39;
    background:var(--paper);
    padding:32px var(--gutter);
    transform:translateY(-8px); opacity:0; visibility:hidden; pointer-events:none;
    transition:transform .22s ease, opacity .22s ease, visibility 0s linear .22s;
  }
  .mobile-drawer.open{
    opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto;
    transition:transform .22s ease, opacity .22s ease;
  }
  .mobile-nav-links{
    list-style:none; margin:0 0 28px; padding:0;
    display:flex; flex-direction:column; gap:4px;
  }
  .mobile-nav-links a{
    display:block; padding:14px 4px; border-bottom:1px solid var(--rule);
    text-decoration:none; font-family:var(--font-display); font-weight:800; font-size:20px;
  }
  .mobile-drawer-contact{ display:flex; flex-direction:column; gap:10px; }

  @media (max-width:899px){
    .nav-links{ display:none; }
    .header-actions{ gap:10px; }
    .header-actions .btn-nav-play{
      padding:9px 13px; font-size:11.5px; min-height:40px;
    }
    .hamburger{ display:inline-flex; }
    .mobile-drawer{ display:block; }
  }

  @media (max-width:360px){
    .header-actions .btn-nav-play{ padding:8px 10px; font-size:10.5px; }
  }

  /* ============================================================
     HERO — Archetype D (editorial): huge disciplined type does
     the work; one real photo carries proof, not decoration.
     ============================================================ */
  .hero{
    position:relative;
    padding:clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  }

  .hero-grid{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap:clamp(32px, 5vw, 72px);
    align-items:start;
  }

  /* Folio — a marginal running-head, not an "eyebrow chip" sitting
     directly on top of the headline (that pairing reads as the
     default AI SaaS hero pattern; a spine label at the page edge
     is the editorial-print equivalent, structurally different). */
  .hero-folio{
    position:absolute; left:calc(var(--gutter) * 0.32); top:8px; z-index:1;
    writing-mode:vertical-rl; transform:rotate(180deg);
    font-family:var(--font-mono); font-size:12.5px; letter-spacing:.05em;
    color:var(--red);
    display:flex; align-items:center; gap:10px;
  }
  .hero-folio::after{
    content:""; width:1.5px; height:24px; background:var(--red);
  }
  @media (max-width:899px){
    .hero-folio{ display:none; }
  }
  .hero-folio-mobile{
    display:none;
    font-family:var(--font-mono); font-size:12.5px; letter-spacing:.03em;
    color:var(--red); margin-bottom:20px;
  }
  @media (max-width:899px){
    .hero-folio-mobile{ display:block; }
  }

  /* baseline-grid rules — signature scaffold, swept in by GSAP */
  .baseline-grid{
    position:absolute; left:0; right:0; top:0; bottom:0;
    pointer-events:none; z-index:0;
  }
  .baseline-grid .rule{
    position:absolute; left:var(--gutter); right:var(--gutter);
    height:1px; background:var(--rule);
    transform-origin:left center; transform:scaleX(0);
  }

  .hero-copy{ position:relative; z-index:1; }

  .hero-headline{
    font-family:var(--font-display); font-weight:900;
    font-size:clamp(48px, 7.2vw, 63px);
    line-height:.98; letter-spacing:-0.02em;
    margin:0 0 26px;
  }
  .hero-headline .line{
    display:block; overflow:hidden;
  }
  .hero-headline .line span{
    display:block; transform:translateY(110%);
  }
  .hero-headline .line:last-child span{ color:var(--red); }

  .hero-sub{
    font-size:clamp(16px, 1.6vw, 19px); line-height:1.55; color:var(--muted);
    max-width:46ch; margin:0 0 28px;
  }

  .hero-proof{ margin-bottom:8px; }
  .hero-contact-note{ font-size:14px; color:var(--muted); margin:0 0 14px; }
  .hero-contact-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }

  #hero-cta{ display:flex; flex-wrap:wrap; gap:14px; }
  .hero-cta-mobile-only{ display:none; }

  @media (max-width:899px){
    .hero-cta-mobile-only{ display:inline-flex; }
    .hero-grid{ grid-template-columns:1fr; }
  }

  /* exhibit photo — the mandatory real photograph, framed like a
     specimen card rather than a full-bleed hero shot */
  .exhibit{
    position:relative; z-index:1;
    border:1px solid var(--rule);
    border-radius:var(--radius-md);
    background:var(--surface);
    padding:10px 10px 14px;
    justify-self:end;
    max-width:380px;
    opacity:0;
  }
  .exhibit-frame{
    position:relative; overflow:hidden; border-radius:2px;
    aspect-ratio: 4 / 5;
  }
  .exhibit-frame img{
    width:100%; height:100%; object-fit:cover;
  }
  .exhibit-frame::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(160deg, rgba(226,59,46,.24), rgba(18,17,15,.55));
    mix-blend-mode:multiply;
  }
  .exhibit-caption{
    display:flex; justify-content:space-between; align-items:baseline;
    font-family:var(--font-mono); font-size:12px; letter-spacing:.03em;
    color:var(--muted); padding:10px 4px 0;
  }
  .exhibit-caption strong{ color:var(--ink); font-weight:500; }

  @media (max-width:899px){
    .exhibit{ justify-self:start; max-width:280px; margin-top:8px; }
  }

  /* ============================================================
     MOBILE STICKY ACTION BAR — the only other place Play Now
     appears on mobile; hands off from the hero CTA via
     IntersectionObserver, never shown at the same time as it.
     ============================================================ */
  .sticky-bar{
    position:fixed; left:0; right:0; bottom:0; z-index:50;
    display:none;
    padding:12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background:var(--surface);
    border-top:1px solid var(--rule);
    transform:translateY(100%);
    transition:transform .28s ease;
  }
  .sticky-bar.visible{ transform:translateY(0); }
  .sticky-bar .btn{ width:100%; }

  @media (max-width:899px){
    .sticky-bar{ display:block; }
  }

  /* ============================================================
     STATUS SEDIA BAR — site-wide floating readout of the homepage
     readiness-checklist progress, persisted via localStorage.
     ============================================================ */
  .status-sedia-bar{
    position:fixed; left:16px; bottom:16px; z-index:46;
    display:flex; align-items:center; gap:8px;
    background:var(--ink); color:var(--paper);
    border-radius:999px; padding:8px 8px 8px 16px;
    box-shadow:0 10px 30px rgba(18,17,15,.22);
    transform:translateY(140%); opacity:0; pointer-events:none;
    transition:transform .32s ease, opacity .32s ease;
    max-width:calc(100vw - 32px);
  }
  .status-sedia-bar.visible{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .status-sedia-link{
    display:flex; align-items:center; gap:12px;
    text-decoration:none; color:inherit;
  }
  .status-sedia-label{
    font-family:var(--font-mono); font-size:11px; letter-spacing:.05em;
    text-transform:uppercase; color:var(--paper); opacity:.8; white-space:nowrap;
  }
  .status-sedia-mini{ display:flex; align-items:center; gap:4px; }
  .status-sedia-mini .mini-dot{
    width:15px; height:15px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-size:8px; font-family:var(--font-mono); line-height:1;
    border:1.2px solid rgba(255,255,255,.35); color:rgba(255,255,255,.55);
  }
  .status-sedia-mini .mini-dot[data-state="ready"]{ background:var(--paper); border-color:var(--paper); color:var(--ink); }
  .status-sedia-mini .mini-dot[data-state="issue"]{ background:var(--red); border-color:var(--red); color:#fff; }
  .status-sedia-mini .mini-dot.current{ border-color:var(--paper); color:var(--paper); }
  .status-sedia-close{
    background:none; border:none; color:var(--paper); opacity:.55;
    font-size:17px; line-height:1; cursor:pointer; padding:6px 8px; border-radius:50%;
  }
  .status-sedia-close:hover{ opacity:1; background:rgba(255,255,255,.1); }

  .status-sedia-akses{
    display:none;
    background:var(--red); color:#fff;
    font-family:var(--font-mono); font-size:11px; font-weight:600;
    letter-spacing:.04em; text-transform:uppercase;
    padding:9px 16px; border-radius:999px; text-decoration:none;
    white-space:nowrap; flex-shrink:0;
  }
  .status-sedia-akses:hover{ background:var(--red-deep); }

  @media (max-width:899px){
    .status-sedia-bar{
      left:12px; right:12px; bottom:calc(10px + env(safe-area-inset-bottom));
      max-width:none; justify-content:space-between;
    }
    .status-sedia-akses{ display:inline-flex; align-items:center; }
  }

  /* ============================================================
     STATUS STEPPER — horizontal arrow stepper for the homepage's
     "Status Sedia" panel (Peranti → Muat Turun → Pasang → Akaun
     → Log Masuk → Sedia)
     ============================================================ */
  .status-stepper{
    display:flex; align-items:flex-start; flex-wrap:wrap;
    list-style:none; margin:0 0 20px; padding:0; row-gap:18px;
  }
  .status-stepper li{ display:flex; flex-direction:column; align-items:center; gap:8px; }
  .status-stepper .stepper-label{
    font-family:var(--font-mono); font-size:11px; font-weight:500;
    letter-spacing:.04em; text-transform:uppercase; color:var(--muted);
    white-space:nowrap;
  }
  .status-stepper li[data-state="ready"] .stepper-label{ color:var(--ink); }
  .status-stepper .stepper-icon{
    width:24px; height:24px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-mono); font-size:12px;
    border:1.5px solid var(--rule); color:var(--muted); background:transparent;
  }
  .status-stepper li[data-state="ready"] .stepper-icon{ background:var(--ink); border-color:var(--ink); color:#fff; }
  .status-stepper li[data-state="issue"] .stepper-icon{ background:var(--red); border-color:var(--red); color:#fff; }
  .status-stepper .stepper-icon.current{ border-color:var(--ink); color:var(--ink); font-size:15px; }

  .status-stepper .stepper-arrow{
    align-self:flex-start; margin-top:1px;
    color:var(--rule); font-family:var(--font-mono); font-size:13px;
    padding:0 12px;
  }

  .status-stepper .stepper-final{ opacity:.5; transition:opacity .25s ease; }
  .status-stepper .stepper-final .stepper-label{ color:var(--muted); }
  .status-stepper .stepper-final.complete{ opacity:1; }
  .status-stepper .stepper-final.complete .stepper-label{ color:var(--ink); font-weight:700; }

  @media (max-width:640px){
    .status-stepper{ column-gap:2px; }
    .status-stepper .stepper-arrow{ padding:0 6px; }
    .status-stepper .stepper-label{ font-size:9.5px; }
  }

  /* ============================================================
     PAGE HEADER — lightweight intro band for interior pages
     (no baseline-grid / exhibit photo / GSAP hero dependency)
     ============================================================ */
  .page-header{
    padding:clamp(48px, 8vw, 88px) 0 clamp(32px, 5vw, 56px);
    border-bottom:1px solid var(--rule);
  }
  .page-header .kicker{ margin-bottom:14px; }
  .page-header h1{
    font-family:var(--font-display); font-weight:900;
    font-size:clamp(32px, 5vw, 54px); line-height:1.03; letter-spacing:-0.02em;
    margin:0 0 18px; max-width:20ch;
  }
  .page-header p{
    font-size:clamp(16px, 1.6vw, 19px); line-height:1.55; color:var(--muted);
    max-width:60ch; margin:0 0 28px;
  }
  .page-header-cta{ display:flex; flex-wrap:wrap; gap:14px; }

  /* ============================================================
     SECTION SCAFFOLDING — shared rhythm for content blocks
     ============================================================ */
  .section{
    padding:clamp(56px, 8vw, 96px) 0;
    border-top:1px solid var(--rule);
  }
  .section-head{ max-width:640px; margin:0 0 40px; }
  .kicker{
    display:block;
    font-family:var(--font-mono); font-size:12.5px; letter-spacing:.08em;
    text-transform:uppercase; color:var(--red); margin:0 0 12px;
  }
  .section-head h2{
    font-family:var(--font-display); font-weight:800;
    font-size:clamp(28px, 3.6vw, 42px); line-height:1.05; letter-spacing:-0.01em;
    margin:0 0 14px;
  }
  .section-head p{ color:var(--muted); font-size:16px; line-height:1.6; margin:0; }

  /* ============================================================
     STATUS CHECKER — readiness panel
     ============================================================ */
  .status-card{
    background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-md);
    padding:clamp(20px,3vw,32px); margin-bottom:32px;
  }
  .status-card-label{
    font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
    color:var(--muted); margin:0 0 16px;
  }
  .status-list{ list-style:none; margin:0 0 20px; padding:0; display:grid; gap:10px; }
  .status-list li{
    display:flex; align-items:center; gap:12px;
    padding:12px 14px; border:1px solid var(--rule); border-radius:var(--radius-sm);
    font-size:14.5px; font-weight:500;
    transition:border-color .2s ease;
  }
  .status-icon{
    display:inline-flex; align-items:center; justify-content:center;
    width:24px; height:24px; border-radius:50%; flex-shrink:0;
    border:1.5px solid var(--rule); color:var(--muted);
    font-size:13px; font-family:var(--font-mono);
  }
  .status-list li .status-name{ min-width:84px; color:var(--ink); }
  .status-list li .status-value{ color:var(--muted); font-family:var(--font-mono); font-size:13px; }

  .status-list li[data-state="ready"]{ border-color:var(--ink); }
  .status-list li[data-state="ready"] .status-icon{ background:var(--ink); border-color:var(--ink); color:#fff; }
  .status-list li[data-state="ready"] .status-value{ color:var(--ink); }

  .status-list li[data-state="issue"]{ border-color:var(--red); }
  .status-list li[data-state="issue"] .status-icon{ background:var(--red); border-color:var(--red); color:#fff; }
  .status-list li[data-state="issue"] .status-value{ color:var(--red); }

  .status-progress{ display:flex; align-items:center; gap:14px; }
  .progress-track{ flex:1; height:6px; border-radius:3px; background:var(--rule); overflow:hidden; }
  .progress-fill{ display:block; height:100%; width:0%; background:var(--ink); transition:width .35s ease; }
  .progress-text{ font-family:var(--font-mono); font-size:12.5px; color:var(--muted); white-space:nowrap; }

  .status-complete{
    display:none; align-items:center; gap:10px;
    margin-top:18px; padding:14px 16px; border-radius:var(--radius-sm);
    background:var(--ink); color:var(--paper);
    font-family:var(--font-mono); font-size:13.5px; letter-spacing:.02em;
  }
  .status-complete.visible{ display:flex; }

  /* readiness questions */
  .check-steps{ display:grid; gap:20px; }
  .check-step{
    border:1px solid var(--rule); border-radius:var(--radius-md); background:var(--surface);
    padding:clamp(20px,3vw,28px);
  }
  .check-step-head{ display:flex; align-items:center; gap:14px; margin-bottom:14px; }
  .step-no{
    display:inline-flex; align-items:center; justify-content:center;
    width:32px; height:32px; border:1.5px solid var(--ink); border-radius:50%;
    font-family:var(--font-mono); font-size:13px; font-weight:500; flex-shrink:0;
  }
  .check-step h3{ font-family:var(--font-display); font-weight:800; font-size:19px; margin:0; }
  .step-q{ font-weight:600; margin:0 0 14px; }
  .step-choices{ display:flex; flex-wrap:wrap; gap:10px; }
  .choice-btn{
    font-family:var(--font-body); font-weight:600; font-size:14px;
    padding:10px 20px; border-radius:var(--radius-sm); border:1.5px solid var(--ink);
    background:transparent; color:var(--ink); cursor:pointer; min-height:42px;
    transition:background-color .18s ease, color .18s ease;
  }
  .choice-btn:hover{ background:var(--ink); color:var(--paper); }
  .choice-btn.selected{ background:var(--ink); color:var(--paper); }

  .choice-btn[data-outcome="android"]{ border-color:var(--wa); color:var(--wa); }
  .choice-btn[data-outcome="android"]:hover{ background:var(--wa); color:#fff; }
  .choice-btn[data-outcome="android"].selected{ background:var(--wa); color:#fff; }

  .step-outcome{
    display:none; margin-top:18px; padding:16px 18px;
    border-left:3px solid var(--rule); background:var(--paper);
    border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  }
  .step-outcome.visible{ display:block; }
  .step-outcome[data-tone="ready"]{ border-left-color:var(--ink); }
  .step-outcome[data-tone="issue"]{ border-left-color:var(--red); }
  .outcome-title{ display:flex; align-items:center; gap:8px; font-weight:700; margin:0 0 6px; }
  .outcome-title .status-icon{ width:20px; height:20px; font-size:11px; border-color:var(--rule); }
  .step-outcome[data-tone="ready"] .outcome-title .status-icon{ background:var(--ink); border-color:var(--ink); color:#fff; }
  .step-outcome[data-tone="issue"] .outcome-title .status-icon{ background:var(--red); border-color:var(--red); color:#fff; }
  .step-outcome p{ margin:0 0 10px; color:var(--muted); font-size:14.5px; line-height:1.55; }
  .step-outcome ul{ margin:0 0 14px; padding-left:20px; color:var(--muted); font-size:14.5px; line-height:1.7; }
  .step-outcome .btn{ padding:10px 20px; min-height:40px; font-size:13.5px; }

  /* ============================================================
     SCREENSHOT GALLERY
     ============================================================ */
  .gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .gallery-card{ border:1px solid var(--rule); border-radius:var(--radius-md); background:var(--surface); padding:10px 10px 16px; margin:0; }
  .gallery-frame{ position:relative; overflow:hidden; border-radius:2px;  background:var(--rule); }
  .gallery-frame img{ width:100%; height:100%; object-fit:cover; }
  .gallery-card h3{ font-size:15px; margin:14px 4px 4px; font-family:var(--font-display); font-weight:800; }
  .gallery-card p{ margin:0 4px; color:var(--muted); font-size:13.5px; line-height:1.55; }
  @media (max-width:899px){ .gallery-grid{ grid-template-columns:1fr; } }

  /* ============================================================
     GAME LIST
     ============================================================ */
  .game-grid{ display:flex; flex-wrap:wrap; gap:10px; margin:20px 0; padding:0; list-style:none; }
  .game-grid li{
    font-family:var(--font-mono); font-size:13px; letter-spacing:.02em;
    border:1px solid var(--rule); border-radius:var(--radius-sm);
    padding:10px 16px; background:var(--surface);
  }
  .game-note{ font-size:13px; color:var(--muted); margin:0; }

  /* ============================================================
     HELP / CONTACT
     ============================================================ */
  .help-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:48px; align-items:start; }
  .help-reasons{ margin:0 0 20px; padding-left:20px; color:var(--muted); line-height:1.8; }
  .help-note{ font-size:13.5px; color:var(--muted); background:var(--surface); border:1px dashed var(--rule); border-radius:var(--radius-sm); padding:14px 16px; margin:0; }
  .contact-cards.row{ flex-direction:row; flex-wrap:wrap; }
  @media (max-width:899px){ .help-grid{ grid-template-columns:1fr; } }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq-list{ border-top:1px solid var(--rule); }
  .faq-item{ border-bottom:1px solid var(--rule); padding:18px 0; }
  .faq-item summary{
    cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center;
    font-weight:700; font-size:16px; gap:16px;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content:"+"; font-family:var(--font-mono); font-size:20px; color:var(--muted); flex-shrink:0;
  }
  .faq-item[open] summary::after{ content:"\2013"; }
  .faq-item p{ margin:12px 0 0; color:var(--muted); line-height:1.6; }

  /* static helper line under a check-step's choices, ahead of the outcome */
  .step-help{ margin:0 0 14px; color:var(--muted); font-size:14px; line-height:1.55; }

  /* ============================================================
     FILE / DEVICE INFO CARD
     ============================================================ */
  .file-info{
    border:1px solid var(--rule); border-radius:var(--radius-md); background:var(--surface);
    padding:20px 22px; margin:20px 0; display:grid; gap:14px;
  }
  .file-info dt{
    font-family:var(--font-mono); font-size:11.5px; letter-spacing:.05em;
    text-transform:uppercase; color:var(--muted); margin:0 0 4px;
  }
  .file-info dd{ margin:0; font-weight:600; }
  .file-info code{
    font-family:var(--font-mono); font-size:13.5px; background:var(--paper);
    padding:2px 6px; border-radius:3px;
  }
  @media (min-width:600px){
    .file-info{ grid-template-columns:1fr 1fr; }
  }

  .path-trail{
    display:inline-flex; align-items:center; gap:8px; flex-wrap:wrap;
    font-family:var(--font-mono); font-size:13px;
    background:var(--surface); border:1px solid var(--rule); border-radius:var(--radius-sm);
    padding:10px 14px; margin:6px 0 18px;
  }

  /* ============================================================
     NUMBERED STEP LIST
     ============================================================ */
  .step-list{
    counter-reset:steplist; list-style:none; margin:20px 0; padding:0;
    display:grid; gap:14px;
  }
  .step-list li{
    display:flex; gap:14px; align-items:flex-start;
    font-size:15px; line-height:1.6;
  }
  .step-list li::before{
    counter-increment:steplist; content:counter(steplist);
    flex-shrink:0; width:28px; height:28px; border-radius:50%;
    border:1.5px solid var(--ink);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-mono); font-size:13px;
  }

  /* ============================================================
     OPTION SWITCHER — card picks that reveal one matching panel
     ============================================================ */
  .option-cards{
    display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:12px; margin:20px 0 8px;
  }
  .option-card{
    border:1.5px solid var(--ink); border-radius:var(--radius-md);
    background:var(--surface); color:var(--ink);
    padding:18px 20px; text-align:left; cursor:pointer;
    font-family:var(--font-body); font-weight:700; font-size:15px;
    transition:background-color .18s ease, color .18s ease;
  }
  .option-card:hover{ background:var(--paper); }
  .option-card.active{ background:var(--ink); color:var(--paper); }
  .option-hint{ font-size:13.5px; color:var(--muted); margin:0 0 8px; }

  .option-panel{ margin-top:36px; padding-top:36px; border-top:1px solid var(--rule); }
  .option-panel h3{
    font-family:var(--font-display); font-weight:800; font-size:24px; margin:0 0 14px;
  }
  .option-panel h4{
    font-family:var(--font-display); font-weight:800; font-size:17px; margin:28px 0 10px;
    padding-top:20px; border-top:1px solid var(--rule);
  }
  .issue-title{
    font-family:var(--font-body); font-weight:700; font-size:15.5px;
    margin:22px 0 8px;
  }

  /* ============================================================
     LEGAL DOCUMENT — numbered-section prose (terms, privacy)
     ============================================================ */
  .legal-doc{ max-width:74ch; }
  .legal-doc h2{
    font-family:var(--font-display); font-weight:800; font-size:22px;
    line-height:1.2; margin:44px 0 14px; scroll-margin-top:96px;
  }
  .legal-doc h2:first-child{ margin-top:0; }
  .legal-doc p{ margin:0 0 14px; line-height:1.65; }
  .legal-doc ul{ margin:0 0 14px; padding-left:22px; color:var(--muted); line-height:1.75; }
  .legal-doc li{ margin-bottom:2px; }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer{
    margin-top:64px;
    border-top:1px solid var(--rule);
    padding:64px 0 28px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap:40px;
    padding-bottom:48px;
  }
  .footer-brand .logo{ margin-bottom:12px; }
  .footer-tagline{ color:var(--muted); font-size:14px; max-width:32ch; }

  .footer-col h3{
    font-family:var(--font-mono); font-size:12px; letter-spacing:.08em;
    text-transform:uppercase; color:var(--muted); margin:0 0 16px; font-weight:500;
  }
  .footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
  .footer-col a{ text-decoration:none; font-size:14.5px; }
  .footer-col a:hover{ color:var(--red); }

  .badge-row{ display:flex; gap:10px; flex-wrap:wrap; }
  .store-badge{
    display:flex; align-items:center; gap:8px;
    border:1px solid var(--rule); border-radius:var(--radius-sm);
    padding:9px 14px; font-size:12.5px; min-height:44px;
    text-decoration:none;
  }
  .store-badge:hover{ border-color:var(--ink); }
  #download-note{ font-size:12px; color:var(--muted); margin-top:10px; }

  .contact-cards{ display:flex; flex-direction:column; gap:10px; }
  .contact-card{
    display:flex; align-items:center; gap:10px;
    border:1px solid var(--rule); border-radius:var(--radius-sm);
    padding:11px 14px; text-decoration:none; font-size:14px; font-weight:500;
    min-height:44px;
  }
  .contact-card svg{ flex-shrink:0; }

  .contact-card.wa{
    border-color:var(--wa);
    background:var(--wa);
    color:#fff;
  }

  .contact-card.tg{
    border-color:var(--tg);
    background:var(--tg);
    color:#fff;
  }

  #licence{
    border-top:1px solid var(--rule); padding-top:28px;
    display:flex; flex-wrap:wrap; align-items:center; gap:20px 28px;
  }
  .licence-item{ font-size:12.5px; color:var(--muted); display:flex; align-items:center; gap:8px; }
  .age-badge{
    display:inline-flex; align-items:center; justify-content:center;
    width:32px; height:32px; border:1.5px solid var(--ink); border-radius:50%;
    font-family:var(--font-mono); font-weight:500; font-size:12px; color:var(--ink);
  }
  .rg-link{ text-decoration:underline; }

  .footer-bottom{
    margin-top:28px; padding-top:20px; border-top:1px solid var(--rule);
    display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px;
    font-size:12px; color:var(--muted);
  }

  @media (max-width:899px){
    .footer-grid{ grid-template-columns:1fr 1fr; }
    /* clear the fixed sticky Play Now bar so it never covers the
       copyright line at full scroll */
    .site-footer{ padding-bottom:calc(88px + env(safe-area-inset-bottom)); }
  }
  @media (max-width:540px){
    .footer-grid{ grid-template-columns:1fr; gap:32px; }
  }
