
    :root {
      --bg:         #07060f;
      --bg2:        #0c0b1a;
      --bg3:        #100f20;
      --panel:      rgba(255,255,255,0.04);
      --panel-b:    rgba(255,255,255,0.08);
      --text:       #f0eeff;
      --muted:      rgba(200,190,255,0.45);
      --iris:       #a78bfa;
      --iris-light: #c4b5fd;
      --holo-1:     #e879f9;
      --holo-2:     #38bdf8;
      --holo-3:     #34d399;
      --holo-4:     #fb923c;
      --display:    'Syne', sans-serif;
      --body-f:     'DM Sans', sans-serif;
      --mono:       'Syne Mono', monospace;
      --glass:      rgba(255,255,255,0.055);
      --glass-b:    rgba(255,255,255,0.12);
      --radius:     20px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--body-f);
      font-size: 17px;
      overflow-x: hidden;
    }

    a { color: var(--iris-light); text-decoration: none; }
    a:hover { color: #fff; }

    /* ── AURORA BACKGROUND ── */
    .aurora {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      overflow: hidden;
    }
    .aurora-blob {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: 0.18;
      animation: drift 20s ease-in-out infinite alternate;
    }
    .aurora-blob:nth-child(1) {
      width: 700px; height: 700px;
      background: var(--holo-1); top: -200px; left: -150px;
      animation-duration: 22s;
    }
    .aurora-blob:nth-child(2) {
      width: 600px; height: 600px;
      background: var(--holo-2); top: 30%; right: -200px;
      animation-duration: 18s; animation-delay: -6s;
    }
    .aurora-blob:nth-child(3) {
      width: 500px; height: 500px;
      background: var(--iris); bottom: -100px; left: 30%;
      animation-duration: 25s; animation-delay: -12s;
    }
    .aurora-blob:nth-child(4) {
      width: 400px; height: 400px;
      background: var(--holo-3); top: 60%; left: 10%;
      animation-duration: 30s; animation-delay: -8s; opacity: 0.1;
    }
    @keyframes drift {
      0%   { transform: translate(0,0) scale(1); }
      33%  { transform: translate(40px,-60px) scale(1.1); }
      66%  { transform: translate(-30px,40px) scale(0.95); }
      100% { transform: translate(20px,20px) scale(1.05); }
    }

    /* Fine grain overlay */
    .grain {
      position: fixed; inset: -50%; z-index: 1; pointer-events: none;
      width: 200%; height: 200%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
      background-size: 256px;
      opacity: 0.4;
      animation: grainShift 0.5s steps(1) infinite;
    }
    @keyframes grainShift {
      0%  { transform: translate(0,0); }
      20% { transform: translate(-3px,2px); }
      40% { transform: translate(2px,-3px); }
      60% { transform: translate(-1px,3px); }
      80% { transform: translate(3px,-1px); }
      100%{ transform: translate(-2px,2px); }
    }

    /* ── GLASS MIXIN ── */
    .glass {
      background: var(--glass);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.1);
    }

    /* Iridescent border shimmer */
    .holo-border {
      position: relative;
    }
    .holo-border::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, var(--holo-1), var(--iris), var(--holo-2), var(--holo-3), var(--holo-1));
      background-size: 300% 300%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      animation: holoShift 4s linear infinite;
      pointer-events: none;
    }
    @keyframes holoShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ── NAV ── */
    .site-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 3rem;
      background: rgba(7,6,15,0.6);
      backdrop-filter: blur(32px) saturate(200%);
      -webkit-backdrop-filter: blur(32px) saturate(200%);
      border-bottom: 1px solid rgba(167,139,250,0.15);
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img {
      height: 36px; width: auto;
      filter: drop-shadow(0 0 12px rgba(167,139,250,0.6));
      transition: filter 0.3s;
    }
    .nav-logo img:hover { filter: drop-shadow(0 0 24px rgba(196,181,253,1)); }
    .nav-logo-fallback {
      font-family: var(--display); font-size: 1.5rem; font-weight: 800;
      background: linear-gradient(90deg, var(--iris-light), var(--holo-2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.15em;
      color: var(--muted); text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--iris-light); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.6rem 1.6rem;
      background: var(--glass);
      border: 1px solid rgba(167,139,250,0.4);
      color: var(--iris-light);
      font-family: var(--display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
      text-decoration: none; text-transform: uppercase;
      border-radius: 100px;
      backdrop-filter: blur(20px);
      transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative; overflow: hidden;
    }
    .nav-cta::after {
      content: '';
      position: absolute; inset: 0; border-radius: 100px;
      background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(56,189,248,0.1));
      opacity: 0; transition: opacity 0.3s;
    }
    .nav-cta:hover {
      border-color: var(--iris-light);
      box-shadow: 0 0 30px rgba(167,139,250,0.4), inset 0 0 20px rgba(167,139,250,0.08);
      color: #fff;
    }
    .nav-cta:hover::after { opacity: 1; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--iris); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO — ASYMMETRIC ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      grid-template-rows: 1fr;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }

    /* Left: text column */
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 5rem 3rem 5rem 5rem;
      position: relative; z-index: 10;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.4rem 1rem;
      background: rgba(167,139,250,0.08);
      border: 1px solid rgba(167,139,250,0.25);
      border-radius: 100px;
      font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em;
      color: var(--iris-light); text-transform: uppercase;
      margin-bottom: 2.5rem;
      width: fit-content;
      opacity: 0; animation: slideRight 0.7s 0.1s forwards;
    }
    .hero-tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--holo-3); box-shadow: 0 0 8px var(--holo-3);
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.4);opacity:0.7;} }

    .hero-title {
      font-family: var(--display);
      font-size: clamp(3.5rem, 6vw, 6.5rem);
      font-weight: 800;
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--text);
      opacity: 0; animation: slideRight 0.8s 0.3s forwards;
      margin-bottom: 1.5rem;
    }
    .hero-title .brand-name {
      display: block;
      background: linear-gradient(135deg, #fff 20%, var(--iris-light) 60%, var(--holo-2) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-title .tagline-line {
      display: block;
      font-size: 0.5em;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: var(--muted);
      -webkit-text-fill-color: var(--muted);
      margin-top: 0.3rem;
      min-height: 1.2em;
    }
    /* Typewriter cursor */
    .typewriter-cursor {
      display: inline-block;
      width: 2px; height: 0.85em;
      background: var(--iris-light);
      margin-left: 3px;
      vertical-align: middle;
      animation: blink 0.8s step-end infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

    .hero-sub {
      font-size: 1.05rem; font-weight: 300; color: var(--muted);
      line-height: 1.85; max-width: 460px;
      margin-bottom: 2.8rem;
      opacity: 0; animation: slideRight 0.8s 0.55s forwards;
    }
    .hero-sub strong { color: var(--text); font-weight: 500; }

    .hero-actions {
      display: flex; align-items: center; gap: 1.2rem;
      flex-wrap: wrap;
      opacity: 0; animation: slideRight 0.8s 0.75s forwards;
      margin-bottom: 3rem;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.7rem;
      padding: 0.95rem 2.4rem;
      background: linear-gradient(135deg, var(--iris) 0%, #7c3aed 100%);
      color: #fff;
      font-family: var(--display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
      text-decoration: none; text-transform: uppercase;
      border-radius: 100px;
      position: relative; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.3s;
      box-shadow: 0 4px 30px rgba(124,58,237,0.4), 0 0 0 0 rgba(167,139,250,0);
    }
    .btn-primary::before {
      content: '';
      position: absolute; inset: 0; border-radius: 100px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
      transform: translateX(-100%); transition: transform 0.6s;
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 50px rgba(124,58,237,0.6), 0 0 80px rgba(167,139,250,0.2);
    }

    .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.95rem 2rem;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7);
      font-family: var(--display); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em;
      text-decoration: none; text-transform: uppercase;
      border-radius: 100px;
      transition: border-color 0.25s, color 0.25s, background 0.25s;
    }
    .btn-secondary:hover {
      border-color: rgba(167,139,250,0.5);
      color: var(--iris-light);
      background: rgba(167,139,250,0.06);
    }

    .hero-micro-stats {
      display: flex; gap: 2rem; flex-wrap: wrap;
      opacity: 0; animation: slideRight 0.8s 0.95s forwards;
    }
    .micro-stat { display: flex; flex-direction: column; gap: 0.2rem; }
    .micro-stat-val {
      font-family: var(--display); font-size: 1.6rem; font-weight: 800;
      background: linear-gradient(135deg, #fff, var(--iris-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .micro-stat-label {
      font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.2em;
      color: var(--muted); text-transform: uppercase;
    }
    .micro-stat-divider {
      width: 1px; height: 40px;
      background: rgba(255,255,255,0.1);
      align-self: center;
    }

    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* Right: centered card stack column */
    .hero-right {
      position: relative; z-index: 5;
      display: flex; align-items: center; justify-content: center;
      padding: 3rem 2rem 3rem 0;
    }

    /* Card stack — large, takes most of the column */
    .card-stack {
      position: relative;
      width: min(680px, 95%);
    }

    /* Background depth cards */
    .hero-card-bg {
      position: absolute;
      border-radius: 22px;
      background: var(--glass);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.07);
    }
    .hero-card-bg-right {
      inset: 0;
      transform: rotate(5deg) translateY(-10px) translateX(18px);
      background: linear-gradient(145deg, rgba(232,121,249,0.07), rgba(56,189,248,0.07));
      animation: bgCard2 1s 0.3s both;
    }
    .hero-card-bg-left {
      inset: 0;
      transform: rotate(-4deg) translateY(10px) translateX(-14px);
      background: linear-gradient(145deg, rgba(52,211,153,0.05), rgba(167,139,250,0.09));
      animation: bgCard3 1s 0.15s both;
    }
    @keyframes bgCard2 {
      from { opacity: 0; transform: rotate(5deg) translateY(-10px) translateX(18px) scale(0.9); }
      to   { opacity: 1; transform: rotate(5deg) translateY(-10px) translateX(18px) scale(1); }
    }
    @keyframes bgCard3 {
      from { opacity: 0; transform: rotate(-4deg) translateY(10px) translateX(-14px) scale(0.9); }
      to   { opacity: 1; transform: rotate(-4deg) translateY(10px) translateX(-14px) scale(1); }
    }

    /* Main card — fills card-stack width, holo border */
    .hero-card-main {
      position: relative; z-index: 3;
      border-radius: 24px; overflow: hidden;
      opacity: 0; animation: cardAppear 1s 0.5s forwards;
      box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
    }
    .hero-card-img {
      width: 100%; height: auto;
      display: block;
      opacity: 0.92;
    }
    .hero-card-img-placeholder {
      width: 100%; aspect-ratio: 800/450;
      background: linear-gradient(145deg, rgba(167,139,250,0.15), rgba(56,189,248,0.1), rgba(232,121,249,0.12));
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; letter-spacing: -0.05em;
      color: rgba(255,255,255,0.3);
    }
    .hero-card-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.5rem 1.8rem;
      background: linear-gradient(0deg, rgba(7,6,15,0.92) 0%, rgba(7,6,15,0.55) 60%, transparent 100%);
    }
    .hero-card-title {
      font-family: var(--display); font-size: 1.3rem; font-weight: 800;
      color: #fff; margin-bottom: 0.3rem;
    }
    .hero-card-sub {
      font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em;
      color: var(--iris-light); text-transform: uppercase;
    }

    @keyframes cardAppear {
      from { opacity: 0; transform: scale(0.93) translateY(12px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* Floating badge pill */
    .float-badge {
      position: absolute;
      padding: 0.6rem 1.1rem;
      background: rgba(7,6,15,0.82);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.15em;
      color: var(--text); text-transform: uppercase;
      z-index: 10; white-space: nowrap;
    }
    .float-badge-rating {
      top: -14px; right: 20px;
      opacity: 0; animation: floatIn 0.6s 1.4s forwards;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .float-badge-players {
      bottom: -14px; left: 20px;
      opacity: 0; animation: floatIn 0.6s 1.6s forwards;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .badge-icon { font-size: 0.9rem; }
    .badge-val {
      font-family: var(--display); font-size: 0.9rem; font-weight: 800;
      color: var(--iris-light);
    }
    @keyframes floatIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Ambient glow behind card */
    .hero-glow {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none; z-index: 0;
      animation: glowPulse 4s ease-in-out infinite;
    }
    @keyframes glowPulse {
      0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
      50%      { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
    }

    /* Diagonal separator */
    .hero-diagonal {
      position: absolute; top: 0; bottom: 0;
      left: 50%; width: 2px;
      background: linear-gradient(180deg, transparent 5%, rgba(167,139,250,0.2) 30%, rgba(56,189,248,0.15) 70%, transparent 95%);
      pointer-events: none; z-index: 8;
      transform: skewX(-3deg);
    }

    /* ── SHARED ── */
    .section-label {
      font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.4em;
      color: var(--iris-light); text-transform: uppercase;
      margin-bottom: 0.7rem; display: block;
    }
    .section-title {
      font-family: var(--display);
      font-size: clamp(2.2rem, 4.5vw, 4.2rem);
      font-weight: 800; line-height: 1.05;
      letter-spacing: -0.02em; margin-bottom: 1.5rem;
      color: var(--text);
    }
    .section-title span {
      background: linear-gradient(135deg, var(--iris-light), var(--holo-2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.35s; }

    /* ── PREVIEW ── */
    .preview {
      padding: 4rem 2rem;
      position: relative; overflow: hidden;
      background: var(--bg2);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .preview::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .preview-inner {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 4fr 2fr;
      gap: 3rem; align-items: center;
      position: relative; z-index: 1;
    }
    .preview-visual { position: relative; }
    .preview-frame {
      width: 100%;
      border-radius: var(--radius);
      overflow: hidden; position: relative;
      background: var(--bg3);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    }
    .preview-frame img { width: 100%; height: auto; display: block; }
    .preview-frame-inner-glow {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(167,139,250,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .preview-badge {
      position: absolute; top: 16px; left: 16px;
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.4rem 0.9rem;
      background: rgba(7,6,15,0.8);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(52,211,153,0.4);
      border-radius: 100px;
      font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em;
      color: var(--holo-3); text-transform: uppercase;
    }
    .preview-badge::before {
      content: '●';
      color: var(--holo-3); font-size: 0.5rem;
      animation: pulse 1.5s ease infinite;
    }
    .preview-text { display: flex; flex-direction: column; gap: 0; }
    .preview-text .section-title { margin-bottom: 1.2rem; }
    .preview-text p { color: var(--muted); line-height: 1.9; font-size: 1rem; font-weight: 300; margin-bottom: 1.5rem; }
    .preview-text p strong { color: var(--text); font-weight: 500; }
    .feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; margin-top: 2rem; }
    .feature-list li {
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.95rem; font-weight: 400; color: var(--muted); line-height: 1.5;
      padding: 0.65rem 1rem;
      background: var(--glass);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      backdrop-filter: blur(10px);
      transition: border-color 0.2s, background 0.2s;
    }
    .feature-list li:hover {
      border-color: rgba(167,139,250,0.3);
      background: rgba(167,139,250,0.06);
    }
    .feature-list li::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: linear-gradient(135deg, var(--iris), var(--holo-2));
      flex-shrink: 0; box-shadow: 0 0 8px rgba(167,139,250,0.6);
    }
    .feature-list li strong { color: var(--text); font-weight: 500; }

    /* ── HOW ── */
    .how {
      padding: 6rem 3rem;
      background: var(--bg);
    }
    .how-inner { max-width: 1100px; margin: 0 auto; }
    .steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 3.5rem;
    }
    .step {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      padding: 2.5rem;
      position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .step:hover {
      border-color: rgba(167,139,250,0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(167,139,250,0.08);
    }
    .step::before {
      content: '';
      position: absolute; inset: 0; border-radius: 20px;
      background: linear-gradient(135deg, rgba(167,139,250,0.05) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.3s;
    }
    .step:hover::before { opacity: 1; }
    .step-number {
      font-family: var(--display); font-size: 4rem; font-weight: 800;
      color: rgba(167,139,250,0.08);
      line-height: 1; position: absolute; top: 1rem; right: 1.5rem;
    }
    .step-icon { font-size: 2rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
    .step-title {
      font-family: var(--display); font-size: 1.25rem; font-weight: 700;
      letter-spacing: -0.01em; color: var(--text);
      margin-bottom: 0.6rem; position: relative; z-index: 1;
    }
    .step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.8; font-weight: 300; position: relative; z-index: 1; }
    .step-desc strong { color: var(--iris-light); font-weight: 500; }
    .step-desc a { color: var(--iris-light); }

    /* ── PRICING ── */
    .pricing {
      padding: 6rem 3rem;
      background: var(--bg2);
      position: relative; overflow: hidden;
    }
    .pricing::before {
      content: '';
      position: absolute; bottom: -200px; left: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(232,121,249,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
    .pricing-inner > p { color: var(--muted); font-weight: 300; max-width: 480px; margin: 0 auto 1rem; line-height: 1.7; }
    .price-card {
      background: var(--glass);
      backdrop-filter: blur(32px) saturate(180%);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 28px;
      padding: 3.5rem;
      position: relative; overflow: hidden;
      margin: 3rem auto; max-width: 520px;
      box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    }
    /* Iridescent top bar */
    .price-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--holo-1), var(--iris), var(--holo-2), var(--holo-3), var(--holo-4));
      background-size: 200% 100%;
      animation: holoBar 3s linear infinite;
    }
    @keyframes holoBar {
      0%   { background-position: 0% 0%; }
      100% { background-position: 200% 0%; }
    }
    .price-card::after {
      content: '';
      position: absolute; inset: 0; border-radius: 28px;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(167,139,250,0.07), transparent 60%);
      pointer-events: none;
    }
    .price-label {
      font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.4em;
      color: var(--iris-light); text-transform: uppercase; margin-bottom: 1rem;
      position: relative; z-index: 1;
    }
    .price-amount {
      font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800;
      background: linear-gradient(135deg, #fff 30%, var(--iris-light) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      line-height: 1.1; position: relative; z-index: 1;
      white-space: nowrap; overflow: visible;
    }
    .price-amount sup {
      font-size: 0.4em; vertical-align: super;
      -webkit-text-fill-color: var(--iris-light);
      color: var(--iris-light);
      margin-right: 0.15em;
    }
    .price-per {
      font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.25em;
      color: var(--muted); text-transform: uppercase; margin-top: 0.5rem;
      position: relative; z-index: 1;
    }
    .price-divider {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin: 2rem 0; position: relative; z-index: 1;
    }
    .price-includes { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; text-align: left; position: relative; z-index: 1; }
    .price-includes li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; font-weight: 300; color: var(--muted); }
    .price-includes li::before {
      content: '';
      width: 16px; height: 16px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(167,139,250,0.3), rgba(52,211,153,0.3));
      border: 1px solid rgba(167,139,250,0.4);
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c4b5fd' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center; background-size: 10px;
    }
    .price-includes li strong { color: var(--text); font-weight: 500; }
    .price-cta {
      display: block; margin-top: 2.5rem;
      padding: 1.1rem 2rem;
      background: linear-gradient(135deg, var(--iris) 0%, #7c3aed 100%);
      color: #fff;
      font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: 0.1em;
      text-decoration: none; text-transform: uppercase;
      border-radius: 100px;
      transition: transform 0.25s, box-shadow 0.3s;
      position: relative; z-index: 1; overflow: hidden;
      box-shadow: 0 8px 30px rgba(124,58,237,0.4);
    }
    .price-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
      transform: translateX(-100%); transition: transform 0.6s;
    }
    .price-cta:hover::before { transform: translateX(100%); }
    .price-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(124,58,237,0.6); }
    .pricing-note { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; margin-top: 1.5rem; }
    .pricing-note a { color: var(--iris-light); }

    /* ── FAQ ── */
    .faq-section { background: var(--bg); padding: 6rem 3rem; }
    .faq-inner { max-width: 760px; margin: 0 auto; }
    details { border-bottom: 1px solid rgba(255,255,255,0.06); }
    details:first-of-type { border-top: 1px solid rgba(255,255,255,0.06); }
    .faq-question {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; padding: 1.5rem 0;
      cursor: pointer; list-style: none; user-select: none;
    }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-q-text {
      font-family: var(--display); font-size: 1.05rem; font-weight: 700;
      letter-spacing: -0.01em; color: var(--text); line-height: 1.4;
    }
    .faq-arrow {
      flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12); color: var(--iris-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; transition: transform 0.3s, background 0.2s;
    }
    details[open] .faq-arrow { transform: rotate(180deg); background: rgba(167,139,250,0.12); }
    .faq-answer { font-size: 0.95rem; color: var(--muted); line-height: 1.85; font-weight: 300; padding: 0 0 1.5rem 0; }
    .faq-answer strong { color: var(--text); font-weight: 500; }
    .faq-answer a { color: var(--iris-light); }

    /* ── ABOUT ── */
    .about-teaser {
      background: var(--bg2); padding: 6rem 3rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      position: relative; overflow: hidden;
    }
    .about-teaser::after {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(52,211,153,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .about-teaser-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 5rem; align-items: center;
      position: relative; z-index: 1;
    }
    .about-teaser-text { display: flex; flex-direction: column; gap: 1rem; }
    .about-teaser-text p { color: var(--muted); line-height: 1.85; font-weight: 300; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.8rem 1.8rem; align-self: flex-start;
      background: var(--glass);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--iris-light);
      font-family: var(--display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
      text-decoration: none; text-transform: uppercase;
      border-radius: 100px;
      backdrop-filter: blur(16px);
      transition: border-color 0.25s, background 0.25s, color 0.25s;
    }
    .btn-ghost:hover {
      border-color: rgba(167,139,250,0.5);
      background: rgba(167,139,250,0.08);
      color: #fff;
    }
    .about-teaser-stat { display: flex; flex-direction: column; gap: 1rem; }
    .stat-pill {
      display: flex; align-items: center; gap: 1.5rem;
      padding: 1.4rem 1.8rem;
      background: var(--glass);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      backdrop-filter: blur(20px);
      transition: border-color 0.25s, transform 0.25s;
    }
    .stat-pill:hover { border-color: rgba(167,139,250,0.25); transform: translateX(6px); }
    .stat-pill-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(167,139,250,0.2), rgba(56,189,248,0.15));
      border: 1px solid rgba(167,139,250,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .stat-pill-number {
      font-family: var(--display); font-size: 2rem; font-weight: 800;
      background: linear-gradient(135deg, var(--iris-light), var(--holo-2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-pill-label {
      font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em;
      color: var(--muted); text-transform: uppercase; margin-top: 0.1rem;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg);
      border-top: 1px solid rgba(255,255,255,0.06);
      font-family: var(--mono); font-size: 0.63rem;
    }
    .footer-top {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; padding: 4rem 5rem 3rem;
    }
    .footer-logo { margin-bottom: 0.8rem; }
    .footer-tagline { letter-spacing: 0.2em; color: rgba(167,139,250,0.35); margin-top: 0.5rem; }
    .footer-links-title { letter-spacing: 0.25em; color: var(--iris-light); margin-bottom: 1.2rem; text-transform: uppercase; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-links a { color: var(--muted); text-decoration: none; letter-spacing: 0.12em; transition: color 0.2s; }
    .footer-links a:hover { color: var(--iris-light); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.5rem 5rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { color: rgba(167,139,250,0.25); }
    .footer-legal { display: flex; gap: 2rem; }
    .footer-legal a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--iris-light); }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      /* Nav */
      .site-nav { padding: 0.9rem 1.5rem; }
      .nav-cta { display: none; } /* hide on tablet/mobile — CTA is in hero */
      .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; padding: 1.5rem 2rem; gap: 1.2rem;
        background: rgba(7,6,15,0.97);
        border-bottom: 1px solid rgba(167,139,250,0.12);
        z-index: 499;
      }
      .nav-links.open { display: flex; }
      .nav-toggle { display: flex; }

      /* Hero */
      .hero { grid-template-columns: 1fr; padding-top: 72px; }
      .hero-left { padding: 3rem 1.5rem 2rem; text-align: center; align-items: center; }
      .hero-sub { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-micro-stats { justify-content: center; }
      .hero-right { padding: 0 1.5rem 4rem; justify-content: center; }
      .hero-diagonal { display: none; }

      /* Card stack — scale naturally on mobile */
      .card-stack { width: min(400px, 86vw); }
      .float-badge-rating  { top: -10px; right: 10px; font-size: 0.52rem; padding: 0.45rem 0.8rem; }
      .float-badge-players { bottom: -10px; left: 10px; font-size: 0.52rem; padding: 0.45rem 0.8rem; }

      /* Sections */
      .preview { padding: 4rem 1.5rem; }
      .preview-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .how { padding: 4rem 1.5rem; }
      .steps { grid-template-columns: 1fr; }
      .pricing { padding: 4rem 1.5rem; }
      .price-card { padding: 2.5rem 1.5rem; }
      .faq-section { padding: 4rem 1.5rem; }
      .about-teaser { padding: 4rem 1.5rem; }
      .about-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }

      /* Footer */
      .footer-top { grid-template-columns: 1fr 1.4fr; padding: 3rem 1.5rem; }
      .footer-bottom { padding: 1.5rem 1.5rem; flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
      .hero-tag { font-size: 0.55rem; }
      .hero-micro-stats { gap: 0.8rem; }
      .micro-stat-val { font-size: 1.3rem; }
      .micro-stat-divider { height: 30px; }
      .btn-primary, .btn-secondary { font-size: 0.78rem; padding: 0.85rem 1.6rem; }

      /* Card stack tighter */
      .card-stack { width: min(320px, 82vw); }
      .float-badge-rating, .float-badge-players { display: none; } /* too cramped sub-480 */

      /* Pricing */
      .price-card { padding: 2rem 1.2rem; }
      .price-amount { font-size: clamp(2rem, 10vw, 3rem); }

      /* Footer */
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-legal { flex-direction: column; gap: 0.8rem; align-items: center; }

      /* Section titles */
      .section-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    }

    /* Respect reduced motion — kill grain & aurora drift */
    @media (prefers-reduced-motion: reduce) {
      .grain { animation: none; }
      .aurora-blob { animation: none; }
      .hero-tag-dot { animation: none; }
      .btn-primary::before, .price-cta::before { display: none; }
      .holo-border::before { animation: none; }
      .price-card::before { animation: none; }
    }
