    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      scrollbar-gutter: stable;
      overflow-y: scroll;
    }
    /* Overlay scrollbar — thin, fades in on hover/scroll */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0); border-radius: 6px; transition: background 0.4s; }
    html:hover::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); }
    html:hover::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.3); }
    @supports not selector(::-webkit-scrollbar) {
      html { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.18) transparent; }
    }

    :root {
      --bg:          #F7F6F4;
      --bg-card:     #FFFFFF;
      --bg-section:  #F1F0EE;
      --fg:          #0A0A0A;
      --fg-2:        #1A1A1A;
      --fg-muted:    #64748B;
      --fg-subtle:   #94A3B8;
      --red:         #CC0033;
      --red-dk:      #A8002A;
      --red-alpha:   rgba(204,0,51,0.08);
      --red-glow:    rgba(204,0,51,0.18);
      --border:      rgba(0,0,0,0.07);
      --border-md:   rgba(0,0,0,0.11);
      --shadow-xs:   0 1px 2px rgba(0,0,0,0.04);
      --shadow-sm:   0 1px 3px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.05);
      --shadow-md:   0 4px 20px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.05);
      --shadow-lg:   0 12px 48px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.06);
      --shadow-xl:   0 24px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
      --shadow-btn:  0 0 0 1px rgba(204,0,51,0.3), 0 4px 16px rgba(204,0,51,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
      --font:        'Inter', system-ui, sans-serif;
      --ease:        cubic-bezier(0.16, 1, 0.3, 1);
      --nav-h:       88px;
    }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    code {
      font-family: 'Courier New', monospace;
      font-size: 0.85em;
      background: var(--red-alpha);
      color: var(--red);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid rgba(204,0,51,0.12);
    }

    /* ── AMBIENT BACKGROUND ── */
    .page-bg {
      position: fixed; inset: 0; z-index: -1; overflow: hidden;
      background:
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(255,210,220,0.45) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 90%, rgba(220,228,255,0.3) 0%, transparent 50%),
        var(--bg);
    }
    .blob {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    .blob-1 { width:900px; height:600px; top:-250px; left:50%; transform:translateX(-50%); background:rgba(204,0,51,0.05); filter:blur(130px); animation:fa 12s ease-in-out infinite; }
    .blob-2 { width:600px; height:500px; top:30%; left:-180px; background:rgba(255,200,180,0.10); filter:blur(110px); animation:fb 14s ease-in-out infinite; }
    .blob-3 { width:520px; height:420px; top:20%; right:-140px; background:rgba(190,205,255,0.08); filter:blur(110px); animation:fc 10s ease-in-out infinite; }
    .blob-4 { width:400px; height:320px; bottom:10%; right:15%; background:rgba(204,0,51,0.04); filter:blur(100px); animation:fb 16s ease-in-out infinite reverse; }
    @keyframes fa { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(-22px) rotate(1deg);} }
    @keyframes fb { 0%,100%{transform:translateY(0) translateX(0);} 33%{transform:translateY(-14px) translateX(9px);} 66%{transform:translateY(9px) translateX(-7px);} }
    @keyframes fc { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-18px) rotate(-1deg);} }

    /* ── NAV ── */
    nav#nav {
      position: fixed; top:0; left:0; right:0; z-index:200; height:88px;
      display:flex; align-items:center; justify-content:space-between;
      padding: 0 clamp(20px, 9vw, 180px);
      transition: background 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
      border-bottom: 1px solid transparent;
    }
    nav#nav.scrolled {
      background: rgba(247,246,244,0.92);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border-bottom-color: var(--border);
      box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    }
    .nav-logo { text-decoration:none; font-size:26px; font-weight:800; letter-spacing:-0.03em; color:var(--fg); }
    .nav-logo span { color:var(--red); }
    .nav-links { position:absolute; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:4px; list-style:none; }
    .nav-links a {
      display:inline-flex; align-items:center; gap:7px;
      font-size:15px; font-weight:500; text-decoration:none; color:var(--fg-muted);
      padding:9px 14px; border-radius:8px;
      transition:color 0.2s, background 0.2s;
    }
    .nav-links a svg { opacity:0.6; transition:opacity 0.2s, transform 0.2s var(--ease); flex-shrink:0; }
    .nav-links a:hover { color:var(--fg); background:rgba(0,0,0,0.05); }
    .nav-links a:hover svg { opacity:1; transform:scale(1.08); }
    .btn-nav {
      font-size:15px; font-weight:600; text-decoration:none;
      padding:11px 22px; text-align:center;
      background:var(--fg); color:#fff; border-radius:10px;
      box-shadow:0 1px 3px rgba(0,0,0,0.2),inset 0 1px 0 rgba(255,255,255,0.08);
      transition:background 0.2s,transform 0.15s var(--ease),box-shadow 0.2s,filter 0.3s ease;
    }
    .btn-nav:hover { transform:scale(1.06); }

    /* hamburger */
    .nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
    .nav-hamburger span { display:block; width:22px; height:2px; background:var(--fg); border-radius:1px; transition:all 0.26s var(--ease); }
    .nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
    .nav-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
    .nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
    .nav-mobile {
      display:none; position:fixed; top:88px; left:0; right:0;
      background:rgba(247,246,244,0.96); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
      border-bottom:1px solid var(--border); flex-direction:column; z-index:199; padding:8px 0 16px;
    }
    .nav-mobile.open { display:flex; }
    .nav-mobile a {
      display:flex; align-items:center; gap:12px;
      color:var(--fg-muted); text-decoration:none;
      font-size:14px; font-weight:500; padding:12px 24px;
      transition:color 0.18s,background 0.18s;
    }
    .nav-mobile a svg { opacity:0.55; flex-shrink:0; transition:opacity 0.18s; }
    .nav-mobile a:hover { color:var(--fg); background:rgba(0,0,0,0.03); }
    .nav-mobile a:hover svg { opacity:1; }
    .nav-mobile .m-cta svg { opacity:0.95; }
    .nav-mobile .m-cta { margin:8px 16px 0; background:var(--red); color:#fff!important; border-radius:8px; text-align:center; padding:12px 24px!important; font-weight:600!important; }
    .nav-mobile .m-cta:hover { }

    /* ── HERO ── */
    .home-fold {
      min-height: 100vh;
      min-height: 100svh;
      padding: calc(var(--nav-h) + clamp(144px, 18vh, 184px)) 0 clamp(48px, 6vh, 64px);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: clamp(28px, 4vh, 48px);
    }
    .hero {
      width: 100%;
      padding: 0 24px clamp(16px, 2.5vh, 28px);
      display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center;
    }

    /* Ping badge */
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px 6px 10px;
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 100px; text-decoration: none; color: inherit;
      box-shadow: var(--shadow-sm);
      margin-bottom: 28px;
      transition: box-shadow 0.2s, border-color 0.2s;
      cursor: default;
    }
    .hero-badge:hover { border-color: var(--border-md); box-shadow: var(--shadow-md); }
    .ping-wrap { position: relative; display: inline-flex; width: 8px; height: 8px; flex-shrink: 0; }
    .ping-ring {
      position: absolute; inset: 0; background: #22c55e; border-radius: 50%;
      animation: ping 1.5s ease-in-out infinite;
    }
    .ping-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; position: relative; }
    @keyframes ping { 0%{transform:scale(1);opacity:0.75;} 75%,100%{transform:scale(2.4);opacity:0;} }
    .badge-text { font-size: 12px; font-weight: 500; color: var(--fg-muted); }
    .badge-sep { width: 1px; height: 12px; background: var(--border-md); }
    .badge-new { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.04em; }

    /* Hero headline */
    .hero-h {
      font-size: clamp(48px, 8.2vw, 98px);
      font-weight: 800; letter-spacing: -0.05em; line-height: 1.02;
      color: var(--fg); margin-bottom: 10px;
      max-width: 960px; text-align: center;
    }
    .hero-h .red {
      display: inline-block;
      background: linear-gradient(135deg, #CC0033 0%, #E5003B 50%, #CC0033 100%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: shimmer 3.5s ease infinite;
      padding-bottom: 0.06em;
      margin-top: 26px;
    }
    @keyframes shimmer { 0%{background-position:0% center;} 50%{background-position:100% center;} 100%{background-position:0% center;} }

    .hero-sub {
      font-size: clamp(16px, 2vw, 19px); color: var(--fg-muted); line-height: 1.7;
      max-width: 560px; margin-top: 30px; margin-bottom: 42px; font-weight: 400;
    }

    /* Hero CTAs */
    .hero-ctas { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      padding: 13px 28px; background: var(--red); color: #fff; border-radius: 10px;
      box-shadow: var(--shadow-btn);
      transition: background 0.2s, transform 0.15s var(--ease), box-shadow 0.2s, filter 0.3s ease;
    }
    .btn-primary:hover { transform:scale(1.06); }
    .btn-primary:active { transform:scale(0.97); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      padding: 13px 24px; background: #0F1115; color: #fff; border-radius: 10px;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
      transition: background 0.2s, transform 0.15s var(--ease), box-shadow 0.2s, filter 0.3s ease;
    }
    .btn-secondary:hover { transform:scale(1.06); }
    .btn-secondary:active { transform:scale(0.97); }
    /* Discord blurple CTA */
    .btn-discord {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      padding: 13px 24px; background: #5865F2; color: #fff; border-radius: 10px;
      box-shadow: 0 0 0 1px rgba(88,101,242,0.3), 0 4px 16px rgba(88,101,242,0.25), inset 0 1px 0 rgba(255,255,255,0.18);
      transition: background 0.2s, transform 0.15s var(--ease), box-shadow 0.2s, filter 0.3s ease;
    }
    .btn-discord:hover { transform:scale(1.06); }
    .btn-discord:active { transform:scale(0.97); }

    /* Hero visual */
    .hero-visual {
      margin-top: 64px;
      position: relative;
      width: 100%; max-width: 520px;
      display: flex; flex-direction: column; align-items: center;
    }
    .notif-card {
      width: 100%;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px 28px;
      box-shadow: var(--shadow-xl);
      animation: floathero 5s ease-in-out infinite;
      position: relative; overflow: hidden;
    }
    .notif-card::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: var(--red);
      border-radius: 20px 0 0 20px;
    }
    @keyframes floathero { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
    .notif-top {
      display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    }
    .notif-icon-wrap {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--red-alpha); border: 1px solid rgba(204,0,51,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .notif-label { flex: 1; }
    .notif-label-top { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 0.04em; text-transform: uppercase; }
    .notif-label-time { font-size: 11px; color: var(--fg-subtle); margin-top: 1px; }
    .notif-pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; position: relative; flex-shrink: 0; }
    .notif-pulse::after { content:''; position:absolute; inset:-3px; border-radius:50%; background:#22c55e; opacity:0.3; animation:ping 1.5s ease-in-out infinite; }
    .notif-course { font-size: 16px; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; margin-bottom: 12px; }
    .notif-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
    .notif-chip {
      font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
    }
    .notif-chip.open { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
    .notif-chip.section { background: var(--bg-section); color: var(--fg-muted); border: 1px solid var(--border); }
    .notif-action {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none;
      transition: gap 0.2s;
    }
    .notif-action:hover { gap: 10px; }
    /* floating stat pills */
    .hero-pill {
      position: absolute;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 8px 14px;
      font-size: 12px; font-weight: 600; color: var(--fg);
      box-shadow: var(--shadow-md);
      white-space: nowrap;
    }
    .hero-pill span { color: var(--red); }
    .hp-left  { left: -110px; top: 30px; animation: floathero 6s ease-in-out infinite 0.5s; }
    .hp-right { right: -100px; top: 60px; animation: floathero 6s ease-in-out infinite 1.2s; }
    .hp-bot   { bottom: -22px; animation: floathero 6s ease-in-out infinite 0.8s; }

    /* Trust bar */
    .trust-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 56px; }
    .trust-avatars { display: flex; }
    .t-avatar {
      width: 30px; height: 30px; border-radius: 50%;
      border: 2px solid var(--bg-card);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: #fff;
      margin-left: -8px; flex-shrink: 0;
    }
    .t-avatar:first-child { margin-left: 0; }
    .trust-text { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
    .trust-text strong { color: var(--fg); font-weight: 600; }

    /* Hero product mockup */
    .hero-mockup-wrap {
      width: 100%; max-width: 600px;
      position: relative;
    }
    .hero-mockup-glow {
      position: absolute; inset: -40px; border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(204,0,51,0.08) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }
    .discord-card {
      position: relative; z-index: 1;
      width: 100%;
      background: #313338; border-radius: 14px; overflow: hidden;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 32px 80px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
      transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    }
    .discord-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 0 1px rgba(0,0,0,0.14), 0 48px 100px rgba(0,0,0,0.18), 0 16px 40px rgba(0,0,0,0.10);
    }
    .dc-bar { background:#2B2D31; padding:12px 16px; display:flex; align-items:center; gap:10px; border-bottom:1px solid rgba(255,255,255,0.05); }
    .dc-dots { display:flex; gap:6px; }
    .dc-dot { width:10px; height:10px; border-radius:50%; }
    .dc-dot.r{background:#FF5F57;} .dc-dot.y{background:#FFBD2E;} .dc-dot.g{background:#28CA41;}
    .dc-chan { color:rgba(255,255,255,0.35); font-size:12px; margin-left:4px; }
    .dc-body { padding:20px 16px 8px; }
    .dc-msg { display:flex; gap:12px; }
    .dc-av { width:36px; height:36px; background:var(--red); border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:800; color:#fff; }
    .dc-content { flex:1; }
    .dc-name { font-size:13px; font-weight:700; color:var(--red); margin-bottom:6px; }
    .dc-badge { display:inline-flex; align-items:center; gap:5px; background:rgba(204,0,51,0.15); border:1px solid rgba(204,0,51,0.3); color:#FF7A97; border-radius:4px; padding:3px 8px; font-size:11px; font-weight:700; letter-spacing:0.04em; margin-bottom:8px; }
    .dc-embed { background:#2B2D31; border-left:3px solid var(--red); border-radius:0 4px 4px 0; padding:10px 12px; }
    .dc-embed-title { color:#fff; font-size:13px; font-weight:700; margin-bottom:10px; }
    .dc-row { display:flex; gap:16px; margin-bottom:7px; }
    .dc-col { flex:1; }
    .dc-lbl { font-size:10px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:2px; }
    .dc-val { font-size:12px; color:rgba(255,255,255,0.8); }
    .dc-val.open { color:#4ade80; font-weight:600; }
    .dc-link { display:inline-block; font-size:12px; font-weight:600; color:#5caff7; text-decoration:none; margin-top:8px; }
    .dc-foot { display:flex; align-items:center; gap:6px; padding:10px 16px 16px; color:rgba(255,255,255,0.28); font-size:12px; }
    .typing { display:flex; gap:3px; }
    .typing span { width:4px; height:4px; background:rgba(255,255,255,0.28); border-radius:50%; animation:tdot 1.2s ease infinite; }
    .typing span:nth-child(2){animation-delay:0.2s;} .typing span:nth-child(3){animation-delay:0.4s;}
    @keyframes tdot { 0%,80%,100%{transform:translateY(0);} 40%{transform:translateY(-4px);} }

    /* ── STATS ── */
    .stats-wrap { padding: 0 40px; max-width: 1200px; margin: 0 auto; }
    .stats-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--border); border-radius: 18px;
      background: var(--bg-card); overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .stat-cell {
      padding: 24px 20px 20px;
      border-right: 1px solid var(--border);
      transition: background 0.3s;
      position: relative; overflow: hidden;
      display: flex; flex-direction: column; align-items: center; text-align: center;
    }
    .stat-cell:last-child { border-right: none; }
    .stat-cell:hover { background: rgba(204,0,51,0.015); }
    .stat-trend {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 11px; font-weight: 600; color: #22c55e;
      background: rgba(34,197,94,0.09); border: 1px solid rgba(34,197,94,0.18);
      padding: 2px 8px; border-radius: 100px;
      margin-bottom: 12px;
    }
    .stat-n {
      font-size: clamp(30px, 3.8vw, 52px);
      font-weight: 800; letter-spacing: -0.04em; line-height: 1;
      color: var(--fg); margin-bottom: 6px;
    }
    .stat-n em { font-style: normal; color: var(--red); }
    .stat-lbl { font-size: 12px; font-weight: 500; color: var(--fg-muted); line-height: 1.4; }

    /* ── SECTION INTRO ── */
    #features, #how-it-works, #app { scroll-margin-top: calc(var(--nav-h) + 20px); }
    .sec-intro { padding: 80px 40px 32px; max-width: 1200px; margin: 0 auto; text-align: center; }
    .sec-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--red); background: var(--red-alpha); border: 1px solid rgba(204,0,51,0.15);
      padding: 4px 10px; border-radius: 100px; margin-bottom: 16px;
    }
    .sec-h { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 10px; }
    .sec-sub { font-size: 16px; color: var(--fg-muted); max-width: 500px; line-height: 1.65; }

    /* ── FEATURES BENTO ── */
    .feat-wrap { padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; }
    .feat-bento {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
    }
    .fc {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 28px;
      position: relative; overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
      cursor: default;
      will-change: transform;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
    .fc:hover { border-color: var(--border-md); box-shadow: var(--shadow-lg); transform: translateY(-3px) translateZ(0); }
    .fc .spot { position:absolute; inset:0; border-radius:inherit; opacity:0; pointer-events:none; transition:opacity 0.3s; z-index:0; }
    .fc:hover .spot { opacity:1; }
    .fc-inner { position:relative; z-index:1; height:100%; display:flex; flex-direction:column; }

    /* Hero feature card: 4 cols × 2 rows */
    .fc-hero { grid-column: span 4; grid-row: span 2; min-height: 340px; }
    .fc-sm   { grid-column: span 2; min-height: 160px; }
    .fc-bot  { grid-column: span 2; min-height: 160px; }

    /* Feature icon */
    .fc-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--red-alpha); border: 1px solid rgba(204,0,51,0.14);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; flex-shrink: 0;
      color: var(--red);
    }
    .fc-hero .fc-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 24px; }
    .fc-id { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); opacity: 0.6; margin-bottom: 12px; }
    .fc-ttl { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 10px; line-height: 1.25; }
    .fc-hero .fc-ttl { font-size: 24px; margin-bottom: 14px; }
    .fc-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.75; }
    .fc-hero .fc-desc { font-size: 15px; max-width: 480px; }

    /* Speed visual inside hero card */
    .speed-visual { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 10px; }
    .speed-row { display: flex; align-items: center; gap: 12px; }
    .speed-label { font-size: 12px; font-weight: 500; color: var(--fg-muted); width: 100px; flex-shrink: 0; }
    .speed-track { flex: 1; height: 6px; background: rgba(0,0,0,0.06); border-radius: 3px; overflow: hidden; }
    .speed-fill { height: 100%; border-radius: 3px; }
    .speed-fill.fast { width: 5%; background: var(--red); animation: fillfast 2s var(--ease) infinite; }
    .speed-fill.manual { width: 100%; background: rgba(0,0,0,0.12); }
    @keyframes fillfast { 0%{width:0%;} 100%{width:5%;} }
    .speed-time { font-size: 12px; font-weight: 700; color: var(--fg); width: 36px; text-align: right; flex-shrink: 0; }
    .speed-time.fast-t { color: var(--red); }

    /* ── HOW IT WORKS ── */
    .hiw-section { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 40px; }
    .hiw-inner { max-width: 1200px; margin: 0 auto; }
    .hiw-header { margin-bottom: 40px; text-align: center; }
    .hiw-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      position: relative;
    }
    .hiw-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 32px;
      position: relative; overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
      cursor: default;
      will-change: transform;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
    .hiw-card:hover { border-color: var(--border-md); box-shadow: var(--shadow-lg); transform: translateY(-3px) translateZ(0); }
    .hiw-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--red-alpha); border: 1px solid rgba(204,0,51,0.2);
      font-size: 15px; font-weight: 800; color: var(--red);
      margin-bottom: 20px; position: relative; z-index: 1;
      transition: background 0.3s, box-shadow 0.3s;
    }
    .hiw-card:hover .hiw-num {
      background: rgba(204,0,51,0.12);
      box-shadow: 0 0 20px rgba(204,0,51,0.15);
    }
    .hiw-ttl { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 10px; }
    .hiw-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.75; }

    /* ── APP SECTION ── */
    .app-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
    .app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .app-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
    .app-h { font-size: clamp(28px, 3vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: var(--fg); line-height: 1.1; margin-bottom: 16px; }
    .app-p { font-size: 15px; color: var(--fg-muted); line-height: 1.75; max-width: 440px; margin-bottom: 32px; }
    .store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .store-btn {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 14px 22px;
      border-radius: 14px;
      text-decoration: none;
      background: #FFFFFF;
      border: 1px solid rgba(0,0,0,0.10);
      box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.05);
      position: relative;
      transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, filter 0.3s ease;
      min-width: 158px;
    }
    .store-btn:hover {
      transform: scale(1.06);
    }
    .store-btn:active { transform: scale(0.97); }
    .sbl { display: flex; flex-direction: column; line-height: 1.2; }
    .sbl-sm { font-size: 9.5px; color: rgba(0,0,0,0.45); font-weight: 500; letter-spacing: 0.02em; }
    .sbl-lg { font-size: 15px; font-weight: 700; color: #111111; letter-spacing: -0.01em; }
    .store-btn svg { flex-shrink: 0; }
    .beta {
      font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      background: var(--red); color: #fff; padding: 2px 6px; border-radius: 4px;
      position: absolute; top: -8px; right: -4px;
      box-shadow: 0 2px 8px rgba(204,0,51,0.4);
    }
    .app-phone { display: flex; justify-content: center; }
    .app-phone img { max-height: 480px; width: auto; filter: drop-shadow(0 20px 48px rgba(0,0,0,0.12)); }

    /* ── CTA SECTION ── */
    .cta-section {
      border-top: 1px solid var(--border);
      padding: 100px 40px;
      text-align: center;
    }
    .cta-inner { max-width: 700px; margin: 0 auto; }
    .cta-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); background: var(--red-alpha); border: 1px solid rgba(204,0,51,0.15); padding: 4px 10px; border-radius: 100px; margin-bottom: 24px; }
    .cta-h { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: var(--fg); margin-bottom: 16px; }
    .cta-h .red { color: var(--red); }
    .cta-sub { font-size: 17px; color: var(--fg-muted); margin-bottom: 36px; }
    .cta-btns { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
    .btn-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      padding: 14px 32px; background: var(--red); color: #fff; border-radius: 10px;
      box-shadow: var(--shadow-btn);
      transition: background 0.2s, transform 0.15s var(--ease), box-shadow 0.2s, filter 0.3s ease;
    }
    .btn-cta:hover { transform:scale(1.06); }
    .btn-cta-sec {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 15px; font-weight: 500; text-decoration: none;
      padding: 14px 24px; color: var(--fg-muted); border-radius: 10px;
      border: 1px solid var(--border); background: var(--bg-card); box-shadow: var(--shadow-sm);
      transition: color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s, filter 0.3s ease;
    }
    .btn-cta-sec:hover { transform:scale(1.06); }
    .cta-note { font-size: 13px; color: var(--fg-subtle); }

    /* ── FOOTER ── */
    footer {
      background: var(--bg-card);
      border-top: 1px solid var(--border);
      padding: 60px 40px 40px;
    }
    .foot-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 32px; margin-bottom: 0;
    }
    .foot-brand-logo { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; text-decoration: none; color: var(--fg); display: inline-block; margin-bottom: 12px; }
    .foot-brand-logo span { color: var(--red); }
    .foot-brand-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; max-width: 220px; }
    .foot-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg); margin-bottom: 16px; }
    .foot-col-links { display: flex; flex-direction: column; gap: 10px; }
    .foot-col-links a { font-size: 13px; color: var(--fg-muted); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
    .foot-col-links a:hover { color: var(--fg); }
    .foot-bottom {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .foot-copy { font-size: 12px; color: var(--fg-muted); }
    .foot-legal { display: flex; gap: 20px; }
    .foot-legal a { font-size: 12px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
    .foot-legal a:hover { color: var(--fg); }

    /* ── RAINBOW GLOW — all spread:0 so colors blend outward like a splash ── */
    .btn-primary:hover, .btn-secondary:hover, .btn-discord:hover,
    .btn-nav:hover, .store-btn:hover, .btn-cta:hover, .btn-cta-sec:hover {
      box-shadow:
        0 0 8px  0 rgba(255, 0,   120, 0.75),
        0 0 16px 0 rgba(255, 120, 0,  0.60),
        0 0 28px 0 rgba(0,   200, 255, 0.50),
        0 0 44px 0 rgba(100, 0,   255, 0.35),
        0 0 60px 0 rgba(210, 0,   255, 0.20);
    }

/* ── REVEAL ── */
    @media (prefers-reduced-motion: no-preference) {
      .reveal { opacity:0; transform:translateY(16px); transition:opacity 0.6s var(--ease),transform 0.6s var(--ease); }
      .reveal.visible { opacity:1; transform:none; }
      .d1{transition-delay:0.08s;} .d2{transition-delay:0.16s;} .d3{transition-delay:0.24s;}
    }

    /* ── RESPONSIVE ── */
    @media (max-width:1024px) {
      .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
      .foot-brand { grid-column: span 3; }
    }
    @media (max-width:900px) {
      nav#nav { padding: 0 20px; }
      .nav-links { display:none; }
      .btn-nav { display:none; }
      .nav-hamburger { display:flex; }
      .home-fold {
        min-height: auto;
        padding: calc(var(--nav-h) + 20px) 0 28px;
        gap: 16px;
      }
      .hero { padding: 0 20px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-cell:nth-child(2) { border-right: none; }
      .stat-cell:nth-child(3) { border-top: 1px solid var(--border); }
      .stat-cell { padding: 18px 16px 16px; }
      .feat-bento { grid-template-columns: repeat(2, 1fr); }
      .fc-hero { grid-column: span 2; grid-row: span 1; min-height: auto; }
      .fc-sm { grid-column: span 1; }
      .fc-bot { grid-column: span 1; }
      .hiw-grid { grid-template-columns: 1fr; }
      .hiw-grid::before { display: none; }
      .app-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .app-grid .app-p { margin-left: auto; margin-right: auto; }
      .app-grid .store-btns { justify-content: center; }
      .app-phone { order: -1; }
      .sec-intro { padding: 60px 20px 28px; }
      .feat-wrap { padding: 0 20px 60px; }
      .stats-wrap { padding: 0 20px 10px; }
      .hiw-section { padding: 60px 20px; }
      .app-section { padding: 60px 20px; }
      .cta-section { padding: 72px 20px; }
      footer { padding: 48px 20px 32px; }
    }
    @media (max-width:600px) {
      .home-fold { padding: calc(var(--nav-h) + 14px) 0 20px; gap: 12px; }
      .hero { padding: 0 20px; min-height: auto; }
      .hero-h { font-size: clamp(36px, 12vw, 44px); letter-spacing: -0.04em; margin-bottom: 14px; }
      .hero-sub { margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
      .hp-left, .hp-right { display: none; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stats-wrap { padding: 0 14px 6px; }
      .stat-cell { padding: 16px 10px; }
      .stat-n { font-size: clamp(24px, 8vw, 32px); }
      .stat-lbl { font-size: 11px; }
      .feat-bento { grid-template-columns: 1fr; }
      .fc-hero, .fc-sm, .fc-bot { grid-column: span 1; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .foot-brand { grid-column: span 2; }
      .cta-h { font-size: 32px; }
    }
  
