*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #0a0b10;
      --surface:   #14161f;
      --ink:       #f5f6fb;
      --ink-2:     #c8ccda;
      --muted:     #8b91a6;
      --muted-2:   #5f6577;
      --line:      #20222e;
      --line-2:    #2c2f3e;
      --accent:    #7c84ff;
      --accent-ink:#9aa1ff;
      --accent-strong:#6b76f5;
      --accent-tint:  rgba(124,132,255,0.14);
      --halo:      rgba(108,120,255,0.30);
      --skeleton-base:  #181b26;
      --skeleton-shine: #232735;
    }
    :root { --ease: cubic-bezier(.22,1,.36,1); --pill: 999px; }

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      transition: background 0.4s ease, color 0.4s ease;
    }
    img, svg, video { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    
    ::selection { background: var(--accent); color: #fff; }
    ::-moz-selection { background: var(--accent); color: #fff; }
    img::selection, svg::selection { background: var(--accent); }
    img::-moz-selection, svg::-moz-selection { background: var(--accent); }

    .atmos { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.6;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E"); }

    
    .shell { max-width: 1120px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

    
    body { padding-top: 96px; }
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 32px 16px 0; background: transparent; pointer-events: none;
      transition: transform 0.58s var(--ease), opacity 0.42s ease; will-change: transform; }
    .nav.nav-hidden { transform: translateY(-120%); opacity: 0; }
    .nav.scrolled { border-bottom-color: transparent; }
    .nav-inner { width: fit-content; max-width: calc(100vw - 32px); margin: 0 auto; padding: 8px 12px;
      display: flex; align-items: center; justify-content: center; gap: 0; pointer-events: auto;
      background: color-mix(in srgb, var(--surface) 88%, transparent);
      border: 1px solid rgba(85, 91, 118, 0.42); border-radius: 15px;
      box-shadow: 0 18px 42px -30px rgba(0,0,0,0.95), inset 0 1px 0 rgba(255,255,255,0.05);
      backdrop-filter: blur(18px) saturate(1.25); -webkit-backdrop-filter: blur(18px) saturate(1.25); }
    .nav-links { display: flex; justify-content: center; gap: 2px; margin-left: 0; }
    .nav-links a { font-size: 0.92rem; color: var(--muted); font-weight: 600; padding: 7px 13px; border-radius: 11px; transition: color 0.18s ease, background 0.18s ease; }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a[aria-current="page"] { color: var(--ink); background: rgba(255,255,255,0.035); }
    .btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 11px;
      font-family: inherit; font-size: 1rem; font-weight: 700; line-height: 1;
      padding: 15px 27px; border-radius: 20px; border: 1px solid rgba(85, 91, 118, 0.52); cursor: pointer; white-space: nowrap;
      color: #f7f8fd; background: linear-gradient(180deg, rgba(30, 33, 46, 0.98), rgba(18, 20, 29, 0.98));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 16px 34px -22px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.015);
      transition: transform 0.22s var(--ease), box-shadow 0.22s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease; }
    .btn svg { width: 19px; height: 19px; color: #e2e5f2; filter: drop-shadow(0 0 10px rgba(124, 132, 255, 0.18)); }
    .btn:hover { transform: translateY(-2px); border-color: rgba(124, 132, 255, 0.45);
      background: linear-gradient(180deg, rgba(36, 39, 55, 0.98), rgba(22, 24, 35, 0.98));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 20px 42px -22px rgba(0,0,0,0.95), 0 0 20px rgba(124, 132, 255, 0.1); }
    .btn:active { transform: translateY(0) scale(0.98); }
    .btn-discord { color: #fff; }
    .btn-ghost { color: var(--ink); }
    .btn-ghost::after { content: ""; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); margin-left: 2px; opacity: 0.82; }
    .btn-sm { padding: 12px 20px; font-size: 0.94rem; }
    .btn-lg { min-height: 64px; padding: 18px 30px; font-size: 1.06rem; }

    
    .hero { position: relative; text-align: center;
      min-height: calc(100svh - 164px); display: flex; flex-direction: column; justify-content: center;
      padding-top: 44px; padding-bottom: 58px; }
    .hero::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 43%;
      width: min(900px, 92vw);
      height: min(540px, 72svh);
      transform: translate(-50%, -50%);
      pointer-events: none;
      background:
        radial-gradient(ellipse at 50% 30%, rgba(124, 132, 255, 0.16), rgba(124, 132, 255, 0.055) 38%, transparent 72%),
        radial-gradient(ellipse at 50% 72%, rgba(154, 161, 255, 0.09), transparent 64%);
      filter: blur(18px);
      opacity: 0.82;
      z-index: 0;
    }
    .hero-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700;
      font-size: clamp(3.2rem, 10.5vw, 7.6rem); line-height: 1; letter-spacing: -0.04em;
      color: var(--ink); font-variant-numeric: tabular-nums; min-height: 0.86em;
      max-width: 100%; white-space: nowrap;
      margin: 0 0 0 clamp(3px, 0.5vw, 9px); }
    .stats-loading .hero-num.skeleton-shimmer { display: inline-block; min-width: 5ch; height: 0.78em; border-radius: 18px; margin-inline: 0; }

    
    .hero-fx { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; pointer-events: none; }
    
    .hero-counter { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.4vw, 30px); padding-right: clamp(20px, 3.5vw, 54px); min-width: 0; }
    .hero-counter.hit-shake { animation: hit-shake 0.4s ease; }
    @keyframes hit-shake { 0%,100% { transform: translate(0,0); } 20% { transform: translate(-7px,3px); } 45% { transform: translate(6px,-2px); } 70% { transform: translate(-4px,2px); } 88% { transform: translate(2px,-1px); } }

    .wumpus { position: relative; flex: none; width: clamp(54px, 7.6vw, 96px);
      animation: wumpus-idle 3.6s ease-in-out infinite; will-change: transform; }
    .wumpus img { width: 100%; height: auto; border-radius: 20%; }
    @keyframes wumpus-idle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
    
    .wumpus.fire { animation: wumpus-fire 0.72s var(--ease); }
    @keyframes wumpus-fire {
      0%   { transform: none; }
      16%  { transform: translateX(9px) rotate(4deg) scale(0.97); }
      30%  { transform: translateX(-17px) rotate(-9deg) scale(1.11); }
      55%  { transform: translateX(7px) rotate(3deg); }
      100% { transform: none; } }

    .hero-num.num-flash { animation: num-flash 0.55s var(--ease); }
    @keyframes num-flash { 22% { color: var(--accent-ink); text-shadow: 0 0 38px var(--halo); } 100% { color: var(--ink); text-shadow: none; } }

    
    .scam-card { position: absolute; z-index: 3; pointer-events: none; display: flex; align-items: center; gap: 8px;
      transform: translate(-50%,-50%); white-space: nowrap;
      font: 800 clamp(0.8rem, 1.4vw, 1.05rem)/1 'Space Grotesk', sans-serif; letter-spacing: 0.04em; color: #ff8585;
      background: linear-gradient(180deg, rgba(70,18,24,0.95), rgba(42,12,17,0.95));
      border: 1.5px solid rgba(255,95,95,0.6); padding: 11px 15px; border-radius: 12px;
      box-shadow: 0 14px 32px -8px rgba(255,40,40,0.5), inset 0 0 16px rgba(255,70,70,0.18); }
    .scam-card svg { width: 16px; height: 16px; }
    .scam-card.in { animation: scam-in 0.2s var(--ease) both; }
    @keyframes scam-in { 0% { opacity: 0; transform: translate(-50%,-50%) scale(0.7); } 100% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
    .scam-card.boom { animation: scam-boom 0.2s ease forwards; }
    @keyframes scam-boom { 0% { transform: translate(-50%,-50%) scale(1); filter: brightness(1); } 40% { transform: translate(-50%,-50%) scale(1.25); filter: brightness(2.4); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(0.3); filter: blur(4px); } }

    @media (max-width: 720px) { .hero-fx, .scam-card { display: none; } }
    .hero-statement { position: relative; z-index: 2; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
      font-size: clamp(1.5rem, 4.4vw, 2.8rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-2); margin-top: 16px; }
    .hero-statement .accent { color: var(--accent-ink); }
    .hero-lead { position: relative; z-index: 2; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 52ch; margin: 26px auto 0; line-height: 1.65; }
    .hero-cta { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
    .hero-meta { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 0; margin-top: 46px; }
    .hero-meta .stat { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 2px 32px; }
    .hero-meta .stat + .stat { border-left: 1px solid var(--line); }
    .hero-meta b { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem; line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums; }
    .hero-meta .label { font-size: 0.9rem; color: var(--muted); }
    .stats-loading .hero-meta .mini.skeleton-shimmer { display: inline-block; min-width: 4ch; height: 1em; border-radius: 6px; }
    @media (max-width: 600px) { .hero-meta { flex-direction: column; gap: 22px; } .hero-meta .stat + .stat { border-left: none; } }
    .section { padding-top: 100px; padding-bottom: 100px; }
    h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700;
      font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.04; letter-spacing: -0.03em; color: var(--ink); margin-top: 14px; max-width: 18ch; text-wrap: balance; }
    .section-intro { color: var(--muted); margin-top: 16px; font-size: 1.1rem; max-width: 50ch; }
    .eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent-ink); }

    
    
    
    
    .proof-head { max-width: 640px; }
    .shots { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
    .shot { background: transparent; transition: transform 0.32s var(--ease); }
    .shot:hover { transform: translateY(-4px); }
    .shot-crop { overflow: hidden; border-radius: 14px; background: #1A1A1E; border: 1px solid var(--line); }
    .shot-crop img { width: 100%; display: block; }
    #logging .shots { grid-template-columns: 1fr; max-width: 680px; }
    #logging .shot:hover { transform: none; }
    #logging .shot-crop { position: relative; aspect-ratio: 1209 / 1298; background: transparent; border: 0; cursor: default; }
    #direct-message .proof-head { margin-left: auto; text-align: right; }
    #direct-message .proof-head h2,
    #direct-message .proof-head .section-intro { margin-left: auto; }
    #direct-message .shots { grid-template-columns: 1fr; max-width: 860px; margin-left: auto; }
    #direct-message .shot:hover { transform: none; }
    #direct-message .shot-crop { position: relative; aspect-ratio: 2419 / 797; background: transparent; border: 0; cursor: default; }
    .scroll-reveal-svg { width: 100%; height: 100%; display: block; pointer-events: none; }
    .scroll-reveal-svg > svg { width: 100%; height: 100%; display: block; }

    
    .end { text-align: center; padding-top: 40px; padding-bottom: 40px; }
    .end-card { position: relative; overflow: hidden; border-radius: 24px; padding: 84px 32px;
      background: var(--surface); border: 1px solid var(--line); }
    .end-card > * { position: relative; z-index: 1; }
    .end-card h2 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); max-width: 18ch; margin: 0 auto; }
    .end-card p { color: var(--muted); margin: 18px auto 0; font-size: 1.12rem; max-width: 46ch; }
    .end-card code { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.9em;
      background: var(--accent-tint); color: var(--accent-ink); padding: 2px 9px; border-radius: 7px; font-weight: 600; }
    .end-card .btn { margin-top: 34px; }

    
    .footer { border-top: 1px solid var(--line); padding: 24px 0 28px; margin-top: 40px; }
    .footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; }
    .foot-brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-family: 'Space Grotesk', sans-serif; color: var(--ink); }
    .foot-powered { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; margin-top: 4px; font-size: 0.88rem; color: var(--muted); font-weight: 500; }
    .foot-powered a { display: flex; align-items: center; gap: 6px; color: inherit; text-decoration: none; }
    .foot-powered img { height: 22px; width: auto; }
    .foot-brand img { width: 27px; height: 27px; border-radius: 8px; }
    .foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
    .foot-links a { font-size: 0.94rem; color: var(--muted); transition: color 0.18s ease; }
    .foot-links a:hover { color: var(--ink); text-decoration: none; }

    
    .reveal { opacity: 0; transform: translateY(20px); animation: rise 0.75s var(--ease) forwards; }
    @keyframes rise { to { opacity: 1; transform: none; } }

    
    .stats-loading .skeleton-shimmer { color: transparent !important; pointer-events: none;
      background: linear-gradient(90deg, var(--skeleton-base) 25%, var(--skeleton-shine) 50%, var(--skeleton-base) 75%);
      background-size: 200% 100%; animation: shimmer 1.4s infinite linear; }
    @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
    
    .hero-num, .hero-meta b { -webkit-user-select: none; -moz-user-select: none; user-select: none; }
    .digit-slot { display: inline-block; overflow: hidden; height: 1.05em; line-height: 1.05em; position: relative; vertical-align: bottom; }
    .digit-reel { display: flex; flex-direction: column; transition: transform 0.62s var(--ease); will-change: transform; }
    .digit-reel span { display: block; height: 1.05em; line-height: 1.05em; text-align: center; }
    .stat-suffix { display: inline-block; line-height: 1.05em; vertical-align: bottom; }
    .hero-num .digit-reel span,
    .hero-num .comma-sep {
      color: var(--ink);
      background: linear-gradient(180deg, #ffffff 8%, var(--ink) 46%, #b6bbd4 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .comma-sep { display: inline-block; color: inherit; width: 0.34em; line-height: 1.05em; text-align: center; vertical-align: bottom; }
    .stat-glow { animation: glow 0.9s var(--ease); }
    @keyframes glow { 0%, 18% { color: var(--accent-ink); } 100% { color: var(--ink); } }

    
    @media (max-width: 860px) {
      #direct-message .proof-head { text-align: left; }
      #direct-message .proof-head h2,
      #direct-message .proof-head .section-intro { margin-left: 0; }
      .shots { grid-template-columns: 1fr; max-width: 420px; }
    }
    @media (max-width: 720px) {
      .section { padding-top: 76px; padding-bottom: 76px; }

      .hero-counter { padding-right: 0; }
      .hero-num { font-size: clamp(2.8rem, 11vw, 4.7rem); }
      .footer { margin-top: 32px; }
      .footer-inner { justify-content: center; text-align: center; }
    }
    @media (max-width: 460px) {
      .shell { padding-left: 20px; padding-right: 20px; }
      .nav { padding: 20px 10px 0; }
      body { padding-top: 78px; }
      .nav-inner { max-width: calc(100vw - 20px); padding: 7px 8px; border-radius: 14px; }
      .nav-links { gap: 0; }
      .nav-links a { font-size: 0.84rem; padding: 7px 9px; }
      .footer-inner { padding: 0 20px; }
      .hero-cta .btn { width: 100%; }
      .end-card { padding: 60px 22px; border-radius: 24px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto; }
      .reveal { opacity: 1 !important; transform: none !important; }
      .stats-loading .skeleton-shimmer { animation: none !important; }
      
      .wumpus { animation: wumpus-idle 3.6s ease-in-out infinite !important; }
      .wumpus.fire { animation: wumpus-fire 0.72s var(--ease) !important; }
      .hero-counter.hit-shake { animation: hit-shake 0.4s ease !important; }
      .hero-num.num-flash { animation: num-flash 0.55s var(--ease) !important; }
      .scam-card.in { animation: scam-in 0.2s var(--ease) both !important; }
      .scam-card.boom { animation: scam-boom 0.2s ease forwards !important; }
      .digit-reel { transition: transform 0.62s var(--ease) !important; }

    }
