    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --black: #000;
      --bg: #050510;
      --bg-gradient: linear-gradient(180deg, #0a0a14 0%, #050510 50%, #000 100%);
      --surface: rgba(255, 255, 255, .02);
      --surface-solid: #0c0c14;
      --card: rgba(255, 255, 255, .03);
      --card-hover: rgba(255, 255, 255, .06);
      --border: rgba(255, 255, 255, .07);
      --border-hover: rgba(255, 255, 255, .15);
      --white: #fff;
      --text: rgba(255, 255, 255, .65);
      --text-dim: rgba(255, 255, 255, .35);
      --blue: #3b82f6;
      --blue-light: #60a5fa;
      --blue-glow: rgba(59, 130, 246, .12);
      --green: #10b981;
      --green-glow: rgba(16, 185, 129, .12);
      --purple: #8b5cf6;
      --discord: #5865F2;
    }

    html {
      scroll-behavior: smooth;
      scrollbar-width: none
    }

    html::-webkit-scrollbar {
      display: none
    }

    body {
      background: #030308;
      color: var(--text);
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
    }

    /* Dot grid pattern */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
      z-index: 0
    }

    ::selection {
      background: var(--blue);
      color: #fff
    }

    a {
      text-decoration: none;
      color: inherit
    }

    img {
      display: block;
      max-width: 100%
    }

    /* Film Grain — reduced for cleaner look */
    body::after {
      content: '';
      position: fixed;
      top: -50%;
      left: -50%;
      right: -50%;
      bottom: -50%;
      width: 200%;
      height: 200%;
      background: transparent url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E") repeat;
      pointer-events: none;
      z-index: 9999;
      opacity: .04;
      animation: grain 8s steps(10) infinite
    }

    @keyframes grain {

      0%,
      100% {
        transform: translate(0, 0)
      }

      10% {
        transform: translate(-5%, -10%)
      }

      20% {
        transform: translate(-15%, 5%)
      }

      30% {
        transform: translate(7%, -25%)
      }

      40% {
        transform: translate(-5%, 25%)
      }

      50% {
        transform: translate(-15%, 10%)
      }

      60% {
        transform: translate(15%, 0%)
      }

      70% {
        transform: translate(0%, 15%)
      }

      80% {
        transform: translate(3%, 35%)
      }

      90% {
        transform: translate(-10%, 10%)
      }
    }

    @keyframes float {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-20px)
      }

      100% {
        transform: translateY(0)
      }
    }

    @keyframes meshDrift1 {

      0%,
      100% {
        transform: translate(0, 0)
      }

      25% {
        transform: translate(80px, -60px)
      }

      50% {
        transform: translate(-40px, 80px)
      }

      75% {
        transform: translate(60px, 40px)
      }
    }

    @keyframes meshDrift2 {

      0%,
      100% {
        transform: translate(0, 0)
      }

      25% {
        transform: translate(-60px, 80px)
      }

      50% {
        transform: translate(80px, -40px)
      }

      75% {
        transform: translate(-40px, -60px)
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    @keyframes scrollGames {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(var(--scroll-w, -33.333%))
      }
    }

    @keyframes pulseDiscord {

      0%,
      100% {
        box-shadow: 0 0 10px var(--discord)
      }

      50% {
        box-shadow: 0 0 25px var(--discord), 0 0 40px rgba(88, 101, 242, .3)
      }
    }

    @media(prefers-reduced-motion: reduce) {
      body::after {
        animation: none;
        opacity: .03
      }

      .hero-orb {
        animation: none
      }

      .floating-discord-btn {
        animation: none
      }
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 48px
    }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .15), rgba(139, 92, 246, .1), transparent);
      margin: 0 auto;
      max-width: 80%
    }

    .sr {
      opacity: 0;
      transform: translateY(30px) scale(0.98);
      transition: opacity 1.2s cubic-bezier(.16, 1, .3, 1), transform 1.2s cubic-bezier(.16, 1, .3, 1);
      will-change: opacity, transform
    }

    .sr.vis {
      opacity: 1;
      transform: translateY(0) scale(1)
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 200;
      background: rgba(5, 5, 10, .6);
      backdrop-filter: blur(40px) saturate(1.8);
      -webkit-backdrop-filter: blur(40px) saturate(1.8);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      transition: all .4s cubic-bezier(.16, 1, .3, 1)
    }

    nav.scrolled {
      background: rgba(5, 5, 10, .9);
      border-bottom-color: rgba(255, 255, 255, .15);
      box-shadow: 0 4px 40px rgba(0, 0, 0, .4)
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      height: 80px;
      padding: 0 32px;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%
    }

    .logo {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: var(--white);
      letter-spacing: -.03em;
      white-space: nowrap
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: rgba(255, 255, 255, .7);
      transition: all .3s;
      padding: 10px 20px;
      border-radius: 12px;
      letter-spacing: -.01em;
      background: rgba(255, 255, 255, .02);
      border: 1px solid transparent
    }

    .nav-links a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .1);
      transform: translateY(-1px)
    }

    .nav-links a.active {
      color: var(--white);
      background: rgba(59, 130, 246, .15);
      border-color: rgba(59, 130, 246, .3);
      box-shadow: 0 4px 12px rgba(59, 130, 246, .1)
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .nav-cta {
      padding: 12px 28px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--blue), #2563eb);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .01em;
      transition: all .3s;
      white-space: nowrap;
      border: 1px solid rgba(255, 255, 255, .1);
      box-shadow: 0 4px 16px rgba(37, 99, 235, .2)
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 99, 235, .4);
      filter: brightness(1.1)
    }

    .discord-btn-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 50px;
      background: rgba(88, 101, 242, .1);
      color: var(--discord);
      border: 1px solid rgba(88, 101, 242, .2);
      font-size: 12px;
      font-weight: 600;
      transition: all .3s;
      margin-left: 4px
    }

    .discord-btn-nav:hover {
      background: rgba(88, 101, 242, .2);
      transform: translateY(-1px);
      color: #fff
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      padding: 0 8px;
      cursor: pointer
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 180px 24px 120px;
      overflow: hidden
    }

    .video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      opacity: .4
    }

    .video-bg video {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, transparent 40%, var(--bg) 100%), radial-gradient(circle at center, transparent 0%, var(--bg) 120%);
      z-index: 1
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      z-index: 1;
      opacity: .6;
      animation: float 20s infinite alternate
    }

    .hero-orb.orb1 {
      width: 700px;
      height: 700px;
      top: -15%;
      left: 15%;
      background: rgba(59, 130, 246, .08)
    }

    .hero-orb.orb2 {
      width: 500px;
      height: 500px;
      bottom: -10%;
      right: 10%;
      background: rgba(139, 92, 246, .06);
      animation-delay: -4s
    }

    .hero-orb.orb3 {
      width: 400px;
      height: 400px;
      top: 30%;
      right: 30%;
      background: rgba(16, 185, 129, .04);
      animation-delay: -8s
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center
    }

    .hero-badges-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 1.2s .3s cubic-bezier(.16, 1, .3, 1) forwards
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 20px 8px 14px;
      border-radius: 50px;
      border: 1px solid var(--border);
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      background: rgba(255, 255, 255, .02);
      backdrop-filter: blur(20px)
    }

    .hero-badge .live {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 8px var(--green), 0 0 20px rgba(16, 185, 129, .3);
      animation: livePulse 2s ease-in-out infinite
    }

    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(48px, 8vw, 100px);
      font-weight: 700;
      color: var(--white);
      line-height: .95;
      letter-spacing: -.05em;
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 1.2s .5s cubic-bezier(.16, 1, .3, 1) forwards
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--white) 0%, var(--blue-light) 50%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero-sub {
      font-size: clamp(16px, 1.6vw, 20px);
      line-height: 1.7;
      color: var(--text);
      max-width: 480px;
      margin: 0 auto 56px;
      opacity: 0;
      animation: fadeUp 1.2s .7s cubic-bezier(.16, 1, .3, 1) forwards
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 120px;
      opacity: 0;
      animation: fadeUp 1.2s .9s cubic-bezier(.16, 1, .3, 1) forwards
    }

    .btn-main {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 44px;
      border-radius: 50px;
      background: var(--white);
      color: var(--black);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -.01em;
      border: none;
      cursor: pointer;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
      position: relative;
      overflow: hidden
    }

    .btn-main:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 24px 80px -12px rgba(255, 255, 255, .12)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 44px;
      border-radius: 50px;
      background: transparent;
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: -.01em;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all .4s
    }

    .btn-ghost:hover {
      border-color: var(--border-hover);
      background: rgba(255, 255, 255, .03);
      transform: translateY(-2px)
    }

    /* Stats */
    .hero-stats-wrapper {
      opacity: 0;
      animation: fadeUp 1.2s 1.1s cubic-bezier(.16, 1, .3, 1) forwards;
      transform: translateY(30px);
      width: 100%;
      max-width: 900px;
      margin: 0 auto
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 1px;
      background: rgba(255, 255, 255, .04);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08)
    }

    .stat-block {
      text-align: center;
      padding: 40px 56px;
      background: rgba(5, 5, 16, .6);
      flex: 1
    }

    .stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -.04em;
      line-height: 1
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 8px;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .stat-disclaimer {
      text-align: center;
      margin-top: 12px;
      font-size: 11px;
      color: var(--text-dim);
      opacity: .7
    }

    /* Section Typography */
    .section-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 500;
      color: var(--blue-light);
      text-transform: uppercase;
      letter-spacing: .2em;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px
    }

    .section-tag::before,
    .section-tag::after {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--blue);
      opacity: .4
    }

    .section-heading {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.0;
      letter-spacing: -.04em;
      margin-bottom: 20px
    }

    .section-sub {
      font-size: 18px;
      color: var(--text);
      max-width: 500px;
      line-height: 1.7
    }

    .section-sub.cen {
      margin: 0 auto
    }

    /* Why */
    .why-section {
      padding: 160px 0;
      position: relative;
      background: linear-gradient(180deg, transparent, rgba(59, 130, 246, .015), transparent)
    }

    .why-section::before {
      content: '';
      position: absolute;
      top: 20%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, .06), transparent 70%);
      pointer-events: none;
      filter: blur(80px)
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
      z-index: 1
    }

    .why-card {
      background: rgba(255, 255, 255, .03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 20px;
      padding: 32px 24px;
      transition: all .5s cubic-bezier(.16, 1, .3, 1);
      position: relative;
      overflow: hidden
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .3), transparent);
      opacity: 0;
      transition: opacity .5s
    }

    .why-card:hover {
      transform: translateY(-6px);
      border-color: rgba(59, 130, 246, .2);
      background: rgba(255, 255, 255, .05);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 0 40px rgba(59, 130, 246, .05)
    }

    .why-card:hover::before {
      opacity: 1
    }

    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(59, 130, 246, .15), rgba(139, 92, 246, .1));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--blue-light);
      border: 1px solid rgba(59, 130, 246, .1)
    }

    .why-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 8px
    }

    .why-desc {
      font-size: 14px;
      color: var(--text);
      line-height: 1.6
    }

    /* Showcase */
    .showcase {
      padding: 160px 0;
      position: relative;
      background: linear-gradient(180deg, transparent, rgba(16, 185, 129, .01), transparent)
    }

    .showcase::before {
      content: '';
      position: absolute;
      top: 30%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(16, 185, 129, .04), transparent 70%);
      pointer-events: none;
      filter: blur(80px)
    }

    .showcase-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 100px 0;
      position: relative;
      z-index: 1
    }

    .showcase-item:nth-child(even) {
      direction: rtl
    }

    .showcase-item:nth-child(even)>* {
      direction: ltr
    }

    .showcase-text h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -.03em;
      margin-bottom: 16px
    }

    .showcase-visual {
      aspect-ratio: 4/3;
      border-radius: 24px;
      background: rgba(255, 255, 255, .02);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .07);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
    }

    /* Game Cards */
    .game-card {
      flex-shrink: 0;
      width: 220px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08);
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
      background: var(--surface)
    }

    .game-card:hover {
      transform: scale(1.06) translateY(-4px);
      border-color: rgba(59, 130, 246, .3);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
    }

    .game-card img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      display: block
    }

    .game-card-name {
      padding: 12px 8px 4px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      background: var(--surface)
    }

    /* Reviews */
    .reviews-section {
      padding: 160px 0;
      position: relative;
      background: linear-gradient(180deg, transparent, rgba(139, 92, 246, .015), transparent)
    }

    .reviews-section::before {
      content: '';
      position: absolute;
      top: 40%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(139, 92, 246, .05), transparent 70%);
      pointer-events: none;
      filter: blur(80px)
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
      z-index: 1
    }

    .review-card {
      background: rgba(255, 255, 255, .03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 20px;
      padding: 32px;
      transition: all .5s cubic-bezier(.16, 1, .3, 1)
    }

    .review-card:hover {
      border-color: rgba(139, 92, 246, .2);
      transform: translateY(-4px);
      background: rgba(255, 255, 255, .05);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .3)
    }

    .review-quote {
      font-size: 15px;
      color: var(--text);
      font-style: italic;
      margin-bottom: 24px;
      line-height: 1.7
    }

    .review-meta {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .review-author {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      color: var(--white);
      font-size: 14px
    }

    .review-game {
      font-size: 12px;
      color: var(--blue-light);
      text-transform: uppercase;
      letter-spacing: .05em;
      font-weight: 600
    }

    /* Results */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
      z-index: 1
    }

    .result-card {
      border-radius: 20px;
      background: rgba(255, 255, 255, .03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .07);
      overflow: hidden;
      transition: all .5s cubic-bezier(.16, 1, .3, 1)
    }

    .result-card:hover {
      transform: translateY(-6px);
      border-color: rgba(16, 185, 129, .2);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
    }

    .result-header {
      padding: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .tag-hw {
      font-size: 11px;
      color: var(--text-dim);
      background: rgba(255, 255, 255, .05);
      padding: 4px 10px;
      border-radius: 4px
    }

    .tag-game {
      font-size: 11px;
      color: var(--blue-light);
      background: rgba(59, 130, 246, .1);
      padding: 4px 10px;
      border-radius: 4px;
      font-weight: 600
    }

    .placeholder-img {
      height: 180px;
      background: rgba(255, 255, 255, .01);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dim);
      font-size: 12px;
      letter-spacing: .05em;
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    /* Pricing */
    .pricing {
      padding: 180px 0;
      position: relative;
      background: linear-gradient(180deg, transparent, rgba(59, 130, 246, .02), rgba(139, 92, 246, .015), transparent)
    }

    .pricing::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 900px;
      height: 900px;
      background: radial-gradient(circle, rgba(59, 130, 246, .08), rgba(139, 92, 246, .04) 40%, transparent 70%);
      pointer-events: none;
      filter: blur(40px)
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
      z-index: 1
    }

    .price-card {
      padding: 40px 28px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .03);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .07);
      position: relative;
      transition: all .5s cubic-bezier(.16, 1, .3, 1)
    }

    .price-card:hover {
      transform: translateY(-6px);
      border-color: rgba(59, 130, 246, .2);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3), 0 0 40px rgba(59, 130, 246, .05)
    }

    .price-card.pop {
      border-color: rgba(59, 130, 246, .3);
      background: linear-gradient(180deg, rgba(59, 130, 246, .08) 0%, rgba(255, 255, 255, .03) 60%);
      box-shadow: 0 0 60px rgba(59, 130, 246, .08)
    }

    .price-card.full-pack {
      grid-column: 1/-1;
      max-width: 640px;
      justify-self: center;
      width: 100%
    }

    .pop-tag {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      padding: 6px 18px;
      border-radius: 50px;
      background: var(--blue);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em
    }

    .savings-badge {
      display: inline-block;
      background: rgba(16, 185, 129, .15);
      color: var(--green);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 600;
      margin-bottom: 12px
    }

    .price-val {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      margin-bottom: 24px
    }

    .price-val span {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-dim)
    }

    .price-tier {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: .15em;
      margin-bottom: 12px
    }

    .price-action {
      display: block;
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      text-align: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--white);
      transition: all .3s;
      letter-spacing: -.01em
    }

    .price-action:hover {
      border-color: var(--border-hover);
      background: rgba(255, 255, 255, .03)
    }

    /* Comparison Table */
    .comparison-wrapper {
      margin-top: 80px;
      overflow-x: auto;
      background: rgba(255, 255, 255, .02);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .07);
      padding: 40px
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px
    }

    .comparison-table th,
    .comparison-table td {
      padding: 16px 24px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      color: var(--text);
      font-size: 14px
    }

    .comparison-table th {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      color: var(--white);
      text-align: left
    }

    .comparison-table th:not(:first-child) {
      text-align: center;
      color: var(--text-dim);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .1em
    }

    .comparison-table th.highlight {
      color: var(--blue-light);
      background: rgba(59, 130, 246, .05);
      border-radius: 12px 12px 0 0
    }

    .comparison-table td.highlight {
      background: rgba(59, 130, 246, .05)
    }

    .check {
      color: var(--green);
      font-weight: 700
    }

    .dash {
      color: var(--text-dim);
      opacity: .3
    }

    /* Intake / Discord CTA */
    .intake-section {
      padding: 120px 0;
      position: relative
    }

    .intake-box {
      max-width: 600px;
      margin: 0 auto;
      background: rgba(255, 255, 255, .03);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 24px;
      padding: 48px
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left
    }

    .form-label {
      display: block;
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: .05em;
      font-weight: 600
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      background: rgba(0, 0, 0, .2);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--white);
      font-family: inherit;
      font-size: 14px;
      transition: all .3s
    }

    .form-control:focus {
      border-color: var(--blue);
      outline: none;
      background: rgba(59, 130, 246, .05)
    }

    select.form-control {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      cursor: pointer
    }

    select.form-control option {
      background: #0c0c14;
      color: #fff
    }

    /* FAQ */
    .faq-item {
      border-bottom: 1px solid var(--border)
    }

    .faq-q {
      width: 100%;
      padding: 24px 0;
      background: none;
      border: none;
      text-align: left;
      color: var(--white);
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: all .4s
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding-bottom: 24px
    }

    /* Final CTA */
    .final-cta {
      padding: 180px 0;
      text-align: center;
      position: relative;
      background: linear-gradient(180deg, transparent, rgba(59, 130, 246, .02), transparent)
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(59, 130, 246, .1), rgba(139, 92, 246, .05) 50%, transparent 70%);
      pointer-events: none;
      filter: blur(40px)
    }

    /* Footer */
    footer {
      padding: 80px 0 120px;
      border-top: 1px solid var(--border);
      background: #020205
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px
    }

    footer a {
      transition: color .3s
    }

    footer a:hover {
      color: var(--white) !important
    }

    /* Sticky Mobile CTA */
    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 24px;
      background: rgba(5, 5, 16, .85);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--border);
      z-index: 900;
      align-items: center;
      justify-content: center
    }

    .sticky-btn {
      width: 100%;
      max-width: 400px;
      padding: 14px;
      background: var(--white);
      color: var(--black);
      border-radius: 50px;
      border: none;
      font-weight: 700;
      font-size: 14px;
      font-family: 'Space Grotesk', sans-serif;
      cursor: pointer
    }

    /* Floating Discord */
    .floating-discord-btn {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--discord);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      z-index: 800;
      box-shadow: 0 10px 30px rgba(88, 101, 242, .4);
      animation: pulseDiscord 3s infinite
    }

    .floating-discord-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(88, 101, 242, .6)
    }

    .floating-tooltip {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--surface);
      padding: 8px 16px;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-size: 12px;
      color: var(--white);
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
      pointer-events: none
    }

    .floating-discord-btn:hover .floating-tooltip {
      opacity: 1;
      visibility: visible;
      right: 80px
    }

    /* Responsive */
    @media(max-width:900px) {

      .why-grid,
      .reviews-grid,
      .pricing-grid,
      .results-grid {
        grid-template-columns: 1fr
      }

      .showcase-item {
        grid-template-columns: 1fr;
        text-align: center
      }

      .comparison-wrapper {
        padding: 24px
      }

      .price-card.full-pack {
        grid-column: span 1
      }

      .how-steps {
        grid-template-columns: 1fr !important
      }

      .hero-stats {
        flex-direction: column
      }

      .stat-block {
        padding: 24px
      }
    }

    @media(max-width:768px) {
      .mobile-toggle {
        display: flex !important;
        align-items: center
      }

      .nav-links {
        display: none
      }

      .nav-links.open {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(5, 5, 16, .98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 199
      }

      .nav-links.open a {
        font-size: 20px;
        padding: 12px 32px;
        color: var(--white)
      }

      .discord-btn-nav,
      .nav-cta {
        display: none
      }

      nav {
        max-width: calc(100% - 32px)
      }

      .footer-row {
        flex-direction: column;
        gap: 32px
      }

      .sticky-mobile-cta {
        display: flex
      }

      .floating-discord-btn {
        bottom: 90px;
        right: 24px
      }

      #bookWidget {
        display: none !important
      }

      .intake-box {
        padding: 32px 20px
      }

      .hero-cta-row {
        flex-direction: column;
        gap: 12px
      }
    }
