:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: rgba(201,168,76,0.15);
    --bg: #0A0A0F;
    --bg2: #0F0F18;
    --bg3: #13131E;
    --bg4: #1A1A28;
    --surface: #1E1E2E;
    --surface2: #252538;
    --border: rgba(201,168,76,0.18);
    --border-dim: rgba(255,255,255,0.06);
    --text: #F0EDE6;
    --text-muted: #9896A4;
    --text-dim: #5C5A6B;
    --accent: #7B6FE8;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
  }
  .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-logo-img { height: 36px; width: 36px; object-fit: contain; mix-blend-mode: lighten; }
  .nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--gold); letter-spacing: 0.02em; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
  .nav-links a:hover { color: var(--text); }
  .nav-cta { background: var(--gold) !important; color: var(--bg) !important; padding: 9px 20px !important; border-radius: 6px !important; font-weight: 600 !important; letter-spacing: 0.03em !important; transition: background 0.2s !important; }
  .nav-cta:hover { background: var(--gold-light) !important; }

  /* HERO */
  .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
  .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%); }
  .hero-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(123,111,232,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -60%); pointer-events: none; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; background: var(--gold-dim); border: 1px solid var(--border); padding: 6px 16px; border-radius: 100px; margin-bottom: 32px; animation: fadeUp 0.6s ease both; }
  .hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(44px, 7vw, 80px); line-height: 1.1; letter-spacing: -0.02em; color: var(--text); max-width: 820px; margin-bottom: 24px; animation: fadeUp 0.6s 0.1s ease both; }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); max-width: 560px; font-weight: 300; line-height: 1.7; margin-bottom: 48px; animation: fadeUp 0.6s 0.2s ease both; }
  .hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.6s 0.3s ease both; }
  .btn-primary { background: var(--gold); color: var(--bg); padding: 14px 32px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-secondary { color: var(--text-muted); padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid var(--border-dim); transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
  .btn-secondary:hover { color: var(--text); border-color: var(--border); }

  /* SOCIAL PROOF */
  .social-proof { padding: 24px 48px; display: flex; align-items: center; justify-content: center; gap: 48px; border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim); background: var(--bg2); flex-wrap: wrap; }
  .proof-item { text-align: center; }
  .proof-num { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--gold); display: block; line-height: 1; }
  .proof-label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
  .proof-divider { width: 1px; height: 40px; background: var(--border-dim); }

  /* SECTIONS */
  section { padding: 100px 24px; }
  .container { max-width: 1080px; margin: 0 auto; }
  .section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
  .section-title { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 4vw, 52px); line-height: 1.15; margin-bottom: 20px; }
  .section-sub { font-size: 18px; color: var(--text-muted); font-weight: 300; line-height: 1.7; max-width: 560px; }

  /* WHY */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border: 1px solid var(--border-dim); border-radius: 16px; overflow: hidden; margin-top: 64px; }
  .why-col { padding: 48px; }
  .why-col.old { background: var(--bg3); }
  .why-col.new { background: var(--bg4); border-left: 1px solid var(--border-dim); }
  .why-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 32px; display: flex; align-items: center; gap: 8px; }
  .why-col.old .why-col-label { color: var(--text-dim); }
  .why-col.new .why-col-label { color: var(--gold); }
  .why-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; font-size: 15px; color: var(--text-muted); line-height: 1.5; }
  .why-col.new .why-item { color: var(--text); }
  .check { color: var(--gold); font-size: 16px; flex-shrink: 0; }

  /* FEATURES */
  .features-section { background: var(--bg2); }
  .features-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
  .feature-tier-card { border: 1px solid var(--border-dim); border-radius: 16px; overflow: hidden; background: var(--bg3); }
  .feature-tier-card.collector { border-color: var(--border); background: var(--bg4); }
  .feature-tier-header { padding: 28px 32px 24px; border-bottom: 1px solid var(--border-dim); }
  .feature-tier-name { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
  .feature-tier-card.collector .feature-tier-name { color: var(--gold); }
  .feature-tier-title { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--text); }
  .feature-tier-sub { font-size: 13px; color: var(--text-dim); margin-top: 6px; }
  .feature-list { padding: 28px 32px; }
  .feature-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
  .feature-item:last-child { margin-bottom: 0; }
  .feature-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--gold-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
  .feature-tier-card.collector .feature-icon { background: rgba(201,168,76,0.2); }
  .feature-item-text {}
  .feature-item-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
  .feature-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
  .feature-divider { height: 1px; background: var(--border-dim); margin: 20px 0; }
  .feature-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

  /* PRICING */
  .pricing-section { background: var(--bg); }
  .pricing-toggle { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
  .toggle-opt { font-size: 14px; color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
  .toggle-opt.active { color: var(--text); font-weight: 500; }
  .toggle-track { position: relative; width: 44px; height: 24px; background: var(--surface2); border-radius: 12px; cursor: pointer; transition: background 0.2s; border: 1px solid var(--border-dim); }
  .toggle-track.annual { background: var(--gold); border-color: var(--gold); }
  .toggle-thumb { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform 0.2s; }
  .toggle-track.annual .toggle-thumb { transform: translateX(20px); }
  .save-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; }

  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
  .pricing-card { border: 1px solid var(--border-dim); border-radius: 16px; padding: 40px; background: var(--bg3); position: relative; }
  .pricing-card.featured { border-color: var(--border); background: var(--bg4); }
  .pricing-badge { position: absolute; top: -12px; left: 32px; background: var(--gold); color: var(--bg); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; }
  .pricing-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
  .pricing-price { font-family: 'DM Serif Display', serif; font-size: 52px; line-height: 1; color: var(--text); margin-bottom: 4px; transition: all 0.3s; }
  .pricing-price span { font-family: 'DM Sans', sans-serif; font-size: 18px; color: var(--text-muted); }
  .pricing-billed { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; min-height: 20px; }
  .pricing-note { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }
  .pricing-note strong { color: var(--gold); }
  .pricing-divider { height: 1px; background: var(--border-dim); margin-bottom: 24px; }
  .pricing-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.4; }
  .pricing-card.featured .pricing-feature { color: var(--text); }
  .pricing-cta { display: block; text-align: center; padding: 14px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; margin-top: 28px; transition: all 0.2s; cursor: pointer; border: none; width: 100%; }
  .pricing-cta.free { background: transparent; border: 1px solid var(--border-dim); color: var(--text-muted); }
  .pricing-cta.free:hover { border-color: var(--border); color: var(--text); }
  .pricing-cta.paid { background: var(--gold); color: var(--bg); }
  .pricing-cta.paid:hover { background: var(--gold-light); }

  /* Full-width strip below the two pricing cards (not grid columns). Span all columns if ever nested in .pricing-grid. */
  #pricing .founding-counters-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    grid-column: 1 / -1;
  }
  #pricing .founding-counters-wrap > .founding-counter {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .founding-counter { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .founding-counter-complete .counter-bar-wrap { flex: 1 1 220px; min-width: 0; }
  .founding-counter-complete .counter-bar { width: 100%; min-width: 0; }
  .founding-counter-complete .counter-bar-fill {
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
    transition: none;
  }
  .counter-text { font-size: 14px; color: var(--text-muted); }
  .counter-text strong { color: var(--text); }
  .counter-bar-wrap { flex: 1; min-width: 200px; }
  .counter-bar { height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; }
  .counter-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; transition: width 1.2s ease; }
  #pricing .founding-counter .counter-label { font-size: 12px; color: var(--text-dim); margin-top: 6px; }

  /* FAQ */
  .faq-section { background: var(--bg2); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
  .faq-cat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
  .faq-item { border: 1px solid var(--border-dim); border-radius: 10px; margin-bottom: 12px; overflow: hidden; background: var(--bg3); }
  .faq-q { padding: 18px 20px; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: color 0.2s; user-select: none; }
  .faq-q:hover { color: var(--gold); }
  .faq-chevron { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-dim); transition: transform 0.25s; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-a { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border-dim); }
  .faq-a p { padding-top: 16px; }
  .faq-item.open .faq-a { display: block; }

  /* FINAL CTA */
  .final-cta { background: var(--bg); text-align: center; padding: 120px 24px; position: relative; overflow: hidden; }
  .final-cta-glow { position: absolute; width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
  .final-cta h2 { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 5vw, 60px); line-height: 1.15; margin-bottom: 20px; }
  .final-cta h2 em { font-style: italic; color: var(--gold); }
  .final-cta p { font-size: 18px; color: var(--text-muted); font-weight: 300; max-width: 480px; margin: 0 auto 40px; }
  .waitlist-form { display: flex; gap: 12px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
  .waitlist-input { flex: 1; min-width: 220px; background: var(--surface); border: 1px solid var(--border-dim); color: var(--text); padding: 13px 18px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
  .waitlist-input:focus { border-color: var(--border); }
  .waitlist-input::placeholder { color: var(--text-dim); }

  /* WAITLIST MODAL */
  .modal-overlay { position: fixed; inset: 0; background: rgba(5,5,8,0.88); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal { background: var(--bg3); border: 1px solid var(--border-dim); border-radius: 16px; padding: 36px 32px 28px; width: 100%; max-width: 480px; position: relative; transform: translateY(16px); transition: transform 0.2s; }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; color: var(--text-dim); font-size: 20px; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 4px; transition: color 0.2s; }
  .modal-close:hover { color: var(--text); }
  .modal-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--border); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
  .modal-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
  .modal h2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--text); line-height: 1.2; margin: 0 0 8px; }
  .modal-sub { font-size: 14px; color: var(--text-muted); margin: 0 0 24px; line-height: 1.6; }
  .modal-field-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin: 18px 0 10px; display: block; }
  .modal-field-label:first-of-type { margin-top: 0; }
  .modal-input { width: 100%; box-sizing: border-box; background: var(--bg); border: 1px solid var(--border-dim); border-radius: 8px; padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
  .modal-input:focus { border-color: var(--border); }
  .modal-input::placeholder { color: var(--text-dim); }
  .modal-select { width: 100%; box-sizing: border-box; background: var(--bg); border: 1px solid var(--border-dim); border-radius: 8px; padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); outline: none; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C5A6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
  .modal-select option { background: var(--bg3); color: var(--text); }
  .game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
  .game-pill { background: var(--bg); border: 1px solid var(--border-dim); border-radius: 8px; padding: 10px 12px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-muted); cursor: pointer; text-align: center; transition: all 0.15s; user-select: none; }
  .game-pill.active { background: var(--gold-dim); border-color: var(--border); color: var(--gold); }
  .game-pill:hover:not(.active) { border-color: rgba(255,255,255,0.12); color: var(--text); }
  .modal-submit { width: 100%; background: var(--gold); color: var(--bg); border: none; border-radius: 8px; padding: 14px; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; margin-top: 24px; transition: background 0.2s; }
  .modal-submit:hover { background: var(--gold-light); }
  .modal-fine-print { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 10px; }
  .modal-divider { border: none; border-top: 1px solid var(--border-dim); margin: 20px 0; }


  .footer-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
  .footer-logo-img { height: 28px; width: 28px; object-fit: contain; mix-blend-mode: lighten; }
  .footer-logo-text { font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--gold); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }
  .footer-socials { display: flex; gap: 12px; }
  .social-btn { width: 36px; height: 36px; border: 1px solid var(--border-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text-dim); transition: all 0.2s; }
  .social-btn:hover { border-color: var(--border); color: var(--text); }

  @media (max-width: 768px) {
    nav { padding: 16px 20px; }
    .nav-links { display: none; }
    .why-grid, .pricing-grid, .faq-grid, .features-cards { grid-template-columns: 1fr; }
    .social-proof { gap: 24px; padding: 24px; }
    .proof-divider { display: none; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 32px 48px; border-top: 1px solid var(--border-dim);
    background: var(--bg2); flex-wrap: wrap; gap: 20px;
  }
