    /* ─── TOKENS ─── */
    :root {
      --bg-deep:       #060a0f;
      --bg-surface:    #0d1520;
      --accent-teal:   #a8d4b8;
      --accent-glow:   #6ec9e0;
      --accent-danger: #e05a2b;
      --text-primary:  #d8e8e4;
      --text-muted:    #6a8a88;
      --text-dim:      #3a5a58;
      --border:        rgba(168,212,184,0.12);
      --border-glow:   rgba(110,201,224,0.3);
      --nav-h:         72px;
      --font-display:  'Bebas Neue', sans-serif;
      --font-body:     'Barlow Condensed', sans-serif;
      --font-mono:     'Share Tech Mono', monospace;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-deep);
      color: var(--text-primary);
      font-family: var(--font-body);
      overflow-x: hidden;
    }
    ::selection { background: var(--accent-glow); color: var(--bg-deep); }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb { background: var(--accent-teal); border-radius: 3px; }

    /* ─── NAVBAR ─── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.2rem, 5vw, 3rem);
      /* Transparent until scrolled */
      background: linear-gradient(to bottom, rgba(6,10,15,0.9) 0%, rgba(6,10,15,0) 100%);
      transition: background 0.4s, box-shadow 0.4s;
    }
    #navbar.scrolled {
      background: rgba(6,10,15,0.93);
      backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 1.85rem);
      letter-spacing: 0.12em;
      color: var(--text-primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      white-space: nowrap;
    }
    .nav-logo .accent  { color: var(--accent-glow); }
    .nav-logo .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-danger);
      animation: pulse-dot 2s ease-in-out infinite;
      flex-shrink: 0;
    }

    .nav-links {
      display: flex;
      gap: clamp(1.2rem, 3vw, 2.5rem);
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--accent-glow);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--accent-teal); }
    .nav-links a:hover::after { width: 100%; }

    /* Mobile hamburger (hidden on desktop) */
    .nav-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-menu-btn span {
      display: block;
      width: 24px; height: 2px;
      background: var(--text-muted);
      transition: background 0.2s;
    }
    .nav-menu-btn:hover span { background: var(--accent-teal); }

    /* Animated hamburger → X */
    .nav-menu-btn.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-menu-btn.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    .nav-menu-btn.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .nav-menu-btn span {
      transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s;
    }

    /* ─── MOBILE NAV DRAWER ─── */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99;
      background: rgba(6,10,15,0.65);
      backdrop-filter: blur(4px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .mobile-nav-overlay.open {
      display: block;
      opacity: 1;
    }
    .mobile-nav-drawer {
      position: fixed;
      top: 0; right: 0;
      z-index: 100;
      width: min(320px, 85vw);
      height: 100dvh;
      background: rgba(6,10,15,0.97);
      border-left: 1px solid var(--border);
      backdrop-filter: blur(24px);
      display: flex;
      flex-direction: column;
      padding: var(--nav-h) 2rem 2.5rem;
      gap: 0.4rem;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    }
    .mobile-nav-drawer.open {
      transform: translateX(0);
    }
    .mobile-nav-drawer a {
      font-family: var(--font-mono);
      font-size: 0.9rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transition: color 0.2s;
    }
    .mobile-nav-drawer a::before {
      content: '//';
      font-size: 0.65rem;
      color: var(--text-dim);
    }
    .mobile-nav-drawer a:hover { color: var(--accent-teal); }
    .mobile-nav-drawer .drawer-cta {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      /* min-height fills viewport; content starts BELOW navbar via padding-top */
      min-height: 100vh;
      display: flex;
      align-items: center;
      /* Push all content below the fixed navbar */
      padding-top: var(--nav-h);
      overflow: hidden;
    }

    /* Background video */
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }

    /* Gradient overlays */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top,    var(--bg-deep) 0%,  rgba(6,10,15,0.15) 55%),
        linear-gradient(to right,  rgba(6,10,15,0.78) 0%, rgba(6,10,15,0.1) 65%),
        linear-gradient(to bottom, rgba(6,10,15,0.55) 0%, transparent 35%);
    }

    /* Scanlines */
    .hero-scanlines {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px
      );
      pointer-events: none;
    }

    /* Noise grain */
    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image: 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)'/%3E%3C/svg%3E");
      background-size: 200px;
      pointer-events: none;
    }

    /* Particle canvas */
    #hero-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    /* Hero content wrapper */
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(2.5rem, 7vh, 6rem) clamp(1.5rem, 6vw, 5rem);
      /* On desktop, lean the text to the left */
    }

    /* Eyebrow tag — visible, below the navbar */
    .hero-eyebrow {
      font-family: var(--font-mono);
      font-size: clamp(0.65rem, 1.5vw, 0.8rem);
      letter-spacing: 0.22em;
      color: var(--accent-glow);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
      opacity: 0;
      transform: translateY(18px);
      animation: fade-up 0.7s ease 0.25s forwards;
      flex-wrap: wrap;
    }
    .hero-eyebrow::before {
      content: '';
      flex-shrink: 0;
      width: 36px; height: 1px;
      background: var(--accent-glow);
    }

    /* Main title */
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(5.5rem, 18vw, 14rem);
      line-height: 0.88;
      letter-spacing: 0.02em;
      opacity: 0;
      transform: translateY(28px);
      animation: fade-up 0.85s ease 0.5s forwards;
    }
    .hero-title .line-once {
      display: block;
      color: #ffffff;
      text-shadow: 0 0 80px rgba(110,201,224,0.2);
    }
    .hero-title .line-human {
      display: block;
      color: var(--accent-glow);
      text-shadow:
        0 0 40px rgba(110,201,224,0.55),
        0 0 90px rgba(110,201,224,0.25);
      animation: glitch 7s infinite;
    }

    /* Glitch */
    @keyframes glitch {
      0%,88%,100% {
        clip-path: none; transform: translate(0);
        text-shadow: 0 0 40px rgba(110,201,224,0.55), 0 0 90px rgba(110,201,224,0.25);
      }
      89% { clip-path: polygon(0 15%,100% 15%,100% 38%,0 38%); transform: translate(-5px,0); text-shadow: 3px 0 var(--accent-danger); }
      90% { clip-path: polygon(0 60%,100% 60%,100% 78%,0 78%); transform: translate(5px,0);  text-shadow: -3px 0 var(--accent-glow); }
      91% { clip-path: polygon(0 5%,100% 5%,100% 18%,0 18%);   transform: translate(-2px,0); text-shadow: 2px 0 var(--accent-danger); }
      92% { clip-path: none; transform: translate(0); }
    }

    /* Subtitle */
    .hero-subtitle {
      font-size: clamp(0.95rem, 2vw, 1.3rem);
      font-weight: 300;
      letter-spacing: 0.05em;
      color: var(--text-muted);
      max-width: 520px;
      margin-top: clamp(1rem, 2.5vh, 1.5rem);
      line-height: 1.65;
      opacity: 0;
      transform: translateY(18px);
      animation: fade-up 0.85s ease 0.8s forwards;
    }
    .hero-subtitle strong { color: var(--accent-teal); font-weight: 600; }

    /* CTA Row */
    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: clamp(1.5rem, 3.5vh, 2.5rem);
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(18px);
      animation: fade-up 0.85s ease 1.05s forwards;
    }

    /* Primary button */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-family: var(--font-display);
      font-size: clamp(1rem, 2.2vw, 1.3rem);
      letter-spacing: 0.14em;
      color: var(--bg-deep);
      background: var(--accent-teal);
      border: none;
      padding: 0.8rem clamp(1.4rem, 3vw, 2.2rem);
      cursor: pointer;
      text-decoration: none;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
      transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 0 32px rgba(168,212,184,0.22), 0 0 60px rgba(168,212,184,0.08);
      white-space: nowrap;
    }
    .btn-primary:hover {
      background: #c2e8d4;
      transform: translateY(-2px);
      box-shadow: 0 0 50px rgba(168,212,184,0.4), 0 0 80px rgba(168,212,184,0.18);
    }
    .btn-primary svg { width: 18px; height: 18px; fill: var(--bg-deep); flex-shrink: 0; }

    /* Secondary link */
    .btn-secondary {
      font-family: var(--font-mono);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      text-decoration: none;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .btn-secondary:hover { color: var(--accent-teal); border-color: var(--accent-teal); }

    /* Platform badges */
    .hero-platforms {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: clamp(1.2rem, 2.5vh, 2rem);
      flex-wrap: wrap;
      opacity: 0;
      animation: fade-up 0.85s ease 1.3s forwards;
    }
    .platform-label {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      color: var(--text-dim);
      text-transform: uppercase;
    }
    .platform-badge {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 0.22rem 0.6rem;
      border-radius: 2px;
      text-transform: uppercase;
    }
    .free-badge {
      font-family: var(--font-display);
      font-size: 0.95rem;
      letter-spacing: 0.14em;
      color: var(--accent-danger);
      border: 1px solid rgba(224,90,43,0.45);
      padding: 0.18rem 0.65rem;
      border-radius: 2px;
      animation: flicker 5s infinite;
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
      opacity: 0;
      animation: fade-up 1s ease 2s forwards;
    }
    .scroll-indicator span {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      color: var(--text-dim);
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 46px;
      background: linear-gradient(to bottom, var(--text-dim), transparent);
      animation: scroll-drop 2.2s ease-in-out infinite;
    }

    /* ─── SHARED KEYFRAMES ─── */
    @keyframes fade-up {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse-dot {
      0%,100% { transform: scale(1); opacity: 1; }
      50%      { transform: scale(1.5); opacity: 0.65; }
    }
    @keyframes flicker {
      0%,96%,100% { opacity: 1; }
      97% { opacity: 0.55; }
      98% { opacity: 1; }
      99% { opacity: 0.7; }
    }
    @keyframes scroll-drop {
      0%   { transform: scaleY(1);   transform-origin: top;    opacity: 1; }
      50%  { transform: scaleY(1);   transform-origin: top;    opacity: 0.45; }
      100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0; }
    }

    /* Scroll reveal (future sections) */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-menu-btn { display: flex; }
    }

    @media (max-width: 600px) {
      :root { --nav-h: 60px; }

      .hero-content {
        /* On mobile, center everything */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: clamp(1.5rem, 5vh, 3rem) 1.2rem;
      }

      .hero-eyebrow {
        justify-content: center;
        /* hide the decorative line on small screens */
      }
      .hero-eyebrow::before { display: none; }

      .hero-subtitle { text-align: center; }

      .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      .hero-platforms {
        justify-content: center;
      }

      /* Background pos on mobile — keep monster visible */
      .hero-bg {
        background-position: 65% 30%;
      }
    }

    @media (min-width: 601px) and (max-width: 1024px) {
      .hero-content {
        padding: clamp(2rem, 5vh, 4rem) clamp(2rem, 5vw, 3rem);
      }
    }
    /* ─────────────────────────────────────────────
       LORE INTRO SECTION — CINEMATIC REDESIGN
    ───────────────────────────────────────────── */
    #lore {
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    /* Full-bleed cinematic background */
    .lore-bg {
      position: absolute;
      inset: 0;
      background-image: url('../images/lore_cinematic.webp');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.04);
      transition: transform 8s ease;
    }
    #lore:hover .lore-bg { transform: scale(1.0); }

    /* Layered overlays */
    .lore-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, var(--bg-deep) 0%, rgba(6,10,15,0.25) 55%, rgba(6,10,15,0.55) 100%),
        linear-gradient(to bottom, var(--bg-deep) 0%, transparent 18%);
    }

    /* Scanlines */
    .lore-scan {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
      );
      pointer-events: none;
    }

    /* Content stack */
    .lore-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding: clamp(3rem,8vh,6rem) clamp(1.5rem,6vw,5rem) clamp(3.5rem,7vh,5.5rem);
      display: flex;
      flex-direction: column;
      gap: clamp(2rem,4vh,3rem);
    }

    /* Eyebrow */
    .lore-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      color: var(--accent-glow);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .lore-label::before { content: '//'; color: var(--text-dim); }

    .lore-heading {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.5vw, 5.2rem);
      line-height: 0.92;
      letter-spacing: 0.04em;
      color: #fff;
      text-shadow: 0 2px 40px rgba(6,10,15,0.7);
    }
    .lore-heading .hl {
      color: var(--accent-glow);
      display: block;
      text-shadow:
        0 0 40px rgba(110,201,224,0.5),
        0 0 100px rgba(110,201,224,0.2);
    }

    /* Punchy one-liner */
    .lore-tagline {
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.6;
    }
    .lore-tagline strong { color: var(--accent-teal); font-weight: 600; }

    /* 3-card entity row */
    .lore-entities {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
      max-width: 820px;
    }
    .lore-entity {
      background: rgba(6,10,15,0.82);
      backdrop-filter: blur(12px);
      padding: 1.4rem 1.6rem;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
      cursor: default;
    }
    .lore-entity:hover { background: rgba(13,21,32,0.92); }
    .lore-entity::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--entity-accent, var(--accent-glow));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .lore-entity:hover::before { opacity: 1; }
    .lore-entity.stardust  { --entity-accent: var(--accent-glow); }
    .lore-entity.aberrant  { --entity-accent: var(--accent-danger); }
    .lore-entity.metahuman { --entity-accent: var(--accent-teal); }

    .lore-entity-tag {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 0.4rem;
    }
    .lore-entity-name {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.2vw, 1.8rem);
      letter-spacing: 0.06em;
      color: var(--text-primary);
      margin-bottom: 0.35rem;
    }
    .lore-entity.stardust  .lore-entity-name { color: #a0dff0; }
    .lore-entity.aberrant  .lore-entity-name { color: #f08060; }
    .lore-entity.metahuman .lore-entity-name { color: #90d8b8; }
    .lore-entity-status {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--entity-accent, var(--accent-glow));
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .lore-entity-status::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    @media (max-width: 700px) {
      #lore { min-height: auto; }
      .lore-entities { grid-template-columns: 1fr; max-width: 100%; }
      .lore-heading { font-size: clamp(3.2rem, 14vw, 6rem); }
    }

    /* ─────────────────────────────────────────────
       GAME FEATURES SECTION
    ───────────────────────────────────────────── */
    #features {
      position: relative;
      padding: clamp(5rem, 11vh, 9rem) 0 clamp(4rem, 9vh, 7rem);
      background: var(--bg-deep);
      overflow: hidden;
    }

    /* Faint horizontal rule from left edge */
    #features::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border-glow) 30%, transparent 70%);
    }

    /* Background texture / ambient glow */
    #features::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(110,201,224,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 100%, rgba(168,212,184,0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .features-inner {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 6vw, 5rem);
    }

    /* Header block */
    .features-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: clamp(2.5rem, 5vh, 4rem);
      flex-wrap: wrap;
    }

    .features-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      color: var(--accent-glow);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .features-label::before { content: '//'; color: var(--text-dim); }

    .features-heading {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      line-height: 0.92;
      letter-spacing: 0.03em;
      color: var(--text-primary);
    }
    .features-heading .hl {
      color: var(--accent-teal);
      display: block;
    }

    .features-count {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      color: var(--text-dim);
      text-transform: uppercase;
      white-space: nowrap;
      align-self: flex-end;
      padding-bottom: 0.4rem;
    }

    /* ── CARD GRID ── */
    /* Row 1: big card (span 2) + 2 smaller cards */
    /* Row 2: 2 smaller cards + big card (span 2) — reversed */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 1.2rem;
    }

    .feat-card {
      position: relative;
      overflow: hidden;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      cursor: default;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
                  box-shadow 0.45s ease,
                  border-color 0.35s ease;
    }
    .feat-card:hover {
      transform: translateY(-6px) scale(1.012);
      box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 40px rgba(110,201,224,0.08);
      border-color: rgba(110,201,224,0.28);
    }

    /* Card image layer */
    .feat-card-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.65s cubic-bezier(0.22,1,0.36,1), opacity 0.45s;
      opacity: 0.55;
    }
    .feat-card:hover .feat-card-img {
      transform: scale(1.07);
      opacity: 0.65;
    }

    /* Dark gradient scrim over the image */
    .feat-card-scrim {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(6,10,15,0.96) 0%, rgba(6,10,15,0.55) 50%, rgba(6,10,15,0.2) 100%);
      transition: background 0.35s;
    }
    .feat-card:hover .feat-card-scrim {
      background:
        linear-gradient(to top, rgba(6,10,15,0.92) 0%, rgba(6,10,15,0.4) 55%, rgba(6,10,15,0.1) 100%);
    }

    /* Decorative corner notch */
    .feat-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 28px; height: 28px;
      background: var(--bg-deep);
      clip-path: polygon(100% 0, 0 0, 100% 100%);
      z-index: 3;
      transition: width 0.35s, height 0.35s;
    }
    .feat-card:hover::before { width: 40px; height: 40px; }

    /* Glow line on bottom */
    .feat-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--accent-glow), transparent);
      opacity: 0;
      transition: opacity 0.35s;
      z-index: 3;
    }
    .feat-card:hover::after { opacity: 1; }

    /* Content sitting above all layers */
    .feat-card-body {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: clamp(1.4rem, 2.5vw, 2rem);
      justify-content: flex-end;
      min-height: 260px;
    }

    /* Big card min-height override */
    .feat-card.big .feat-card-body { min-height: 380px; }

    .feat-num {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      color: var(--accent-glow);
      opacity: 0.65;
      margin-bottom: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }
    .feat-num::before {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: var(--accent-glow);
      opacity: 0.7;
    }

    .feat-icon {
      font-size: clamp(1.6rem, 2.5vw, 2rem);
      margin-bottom: 0.6rem;
      display: block;
      filter: drop-shadow(0 0 12px rgba(110,201,224,0.4));
    }

    .feat-title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.8vw, 2.4rem);
      letter-spacing: 0.05em;
      color: var(--text-primary);
      line-height: 0.95;
      margin-bottom: 0.75rem;
      transition: color 0.3s;
    }
    .feat-card:hover .feat-title { color: #fff; }

    .feat-desc {
      font-size: clamp(0.82rem, 1.3vw, 0.95rem);
      font-weight: 300;
      letter-spacing: 0.025em;
      line-height: 1.65;
      color: var(--text-muted);
      max-width: 340px;
      transition: color 0.3s;
    }
    .feat-card.big .feat-desc { max-width: 480px; }
    .feat-card:hover .feat-desc { color: #8daaa7; }

    .feat-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-danger);
      border: 1px solid rgba(224,90,43,0.35);
      padding: 0.2rem 0.55rem;
      margin-top: 1.1rem;
      width: fit-content;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s, transform 0.35s;
    }
    .feat-tag.safe { color: var(--accent-glow); border-color: rgba(110,201,224,0.35); }
    .feat-card:hover .feat-tag { opacity: 1; transform: translateY(0); }
    .feat-tag::before {
      content: '';
      display: inline-block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: currentColor;
      animation: pulse-dot 1.8s ease-in-out infinite;
    }

    /* Grid placement */
    .feat-card:nth-child(1) { grid-column: span 2; } /* Survive — big */
    .feat-card:nth-child(2) { grid-column: span 1; } /* Fight */
    .feat-card:nth-child(3) { grid-column: span 1; } /* Craft */
    .feat-card:nth-child(4) { grid-column: span 1; } /* Build */
    .feat-card:nth-child(5) { grid-column: span 3; } /* Truth — wide */

    /* Truth card: no photo, atmospheric dark gradient */
    .feat-card.truth-card .feat-card-img {
      background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(110,201,224,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 80%, rgba(168,212,184,0.08) 0%, transparent 55%),
        repeating-linear-gradient(
          -45deg,
          rgba(110,201,224,0.02) 0px, rgba(110,201,224,0.02) 1px,
          transparent 1px, transparent 12px
        );
      opacity: 1;
    }
    .feat-card.truth-card:hover .feat-card-img {
      opacity: 1;
      transform: none;
    }
    /* Rosetta encrypted data aesthetic for truth card */
    .feat-card.truth-card::after { display: none; }
    .feat-card.truth-card .feat-card-body {
      flex-direction: row;
      align-items: flex-end;
      gap: clamp(2rem, 5vw, 5rem);
      min-height: 260px;
    }
    .truth-text { flex: 1; }
    .truth-data {
      flex-shrink: 0;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      color: var(--text-dim);
      line-height: 2;
      opacity: 0.55;
      transition: opacity 0.35s;
      max-width: 180px;
    }
    .feat-card.truth-card:hover .truth-data {
      opacity: 1;
      color: var(--accent-glow);
    }
    .truth-data span { display: block; }

    /* Responsive */
    @media (max-width: 900px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .feat-card:nth-child(1) { grid-column: span 2; }
      .feat-card:nth-child(2) { grid-column: span 1; }
      .feat-card:nth-child(3) { grid-column: span 1; }
      .feat-card:nth-child(4) { grid-column: span 1; }
      .feat-card:nth-child(5) { grid-column: span 2; }
      .feat-card.truth-card .feat-card-body { flex-direction: column; gap: 1rem; }
      .truth-data { max-width: 100%; display: none; }
    }
    @media (max-width: 600px) {
      .features-grid {
        grid-template-columns: 1fr;
      }
      .feat-card:nth-child(n) { grid-column: span 1; }
      .feat-card.big .feat-card-body { min-height: 280px; }
      .features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .feat-card.truth-card .feat-card-body {
        align-items: flex-start;
      }
    }

    /* ─────────────────────────────────────────────
       WORLD SHOWCASE SECTION
    ───────────────────────────────────────────── */
    #world {
      position: relative;
      padding: clamp(5rem, 11vh, 9rem) 0 clamp(4rem, 9vh, 8rem);
      background: var(--bg-deep);
      overflow: hidden;
    }

    /* Top separator line */
    #world::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border-glow) 30%, transparent 70%);
    }

    /* Ambient background */
    #world::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 35% at 15% 50%, rgba(224,90,43,0.04) 0%, transparent 65%),
        radial-gradient(ellipse 45% 30% at 85% 50%, rgba(110,201,224,0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .world-inner {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 6vw, 5rem);
    }

    /* Section header */
    .world-header {
      margin-bottom: clamp(2.5rem, 5vh, 4.5rem);
    }
    .world-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      color: var(--accent-glow);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .world-label::before { content: '//'; color: var(--text-dim); }
    .world-heading {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.5vw, 5rem);
      line-height: 0.92;
      letter-spacing: 0.03em;
      color: var(--text-primary);
    }
    .world-heading .hl { color: var(--accent-danger); }
    .world-sub {
      font-size: clamp(0.88rem, 1.5vw, 1rem);
      font-weight: 300;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      line-height: 1.7;
      max-width: 560px;
      margin-top: 1.2rem;
    }

    /* ── 3-column biome grid ── */
    .world-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }

    /* Each biome column card */
    .biome-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg-surface);
      display: flex;
      flex-direction: column;
      transition:
        transform 0.45s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
      cursor: default;
    }
    .biome-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      border-color: var(--biome-accent, rgba(110,201,224,0.3));
    }

    /* Corner notch */
    .biome-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 24px; height: 24px;
      background: var(--bg-deep);
      clip-path: polygon(0 0, 0 100%, 100% 0);
      z-index: 4;
    }

    .biome-visual {
      position: relative;
      height: 280px;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* CSS biome atmosphere — layered gradients + noise pattern */
    .biome-visual-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
    }
    .biome-card:hover .biome-visual-bg { transform: scale(1.05); }

    /* Biome 1: The Deadlands — toxic rust/orange wasteland */
    .biome-card.deadlands .biome-visual-bg {
      background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(224,120,43,0.55) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(180,60,20,0.4) 0%, transparent 55%),
        radial-gradient(ellipse 100% 50% at 50% 100%, rgba(6,10,15,0.9) 0%, transparent 60%),
        linear-gradient(160deg, #1a0c06 0%, #2e1008 30%, #3d1a06 55%, #1a0c06 100%);
    }
    /* Cracked-earth lines via repeating pattern */
    .biome-card.deadlands .biome-visual-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(72deg, transparent, transparent 28px, rgba(224,90,43,0.06) 28px, rgba(224,90,43,0.06) 29px),
        repeating-linear-gradient(18deg, transparent, transparent 42px, rgba(180,60,20,0.05) 42px, rgba(180,60,20,0.05) 43px);
      mix-blend-mode: screen;
    }

    /* Biome 2: The Verdant Wound — bioluminescent mutated forest */
    .biome-card.verdant .biome-visual-bg {
      background:
        radial-gradient(ellipse 60% 55% at 50% 30%, rgba(80,220,160,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 20% 60%, rgba(40,180,120,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 35% 25% at 80% 70%, rgba(110,201,224,0.15) 0%, transparent 45%),
        radial-gradient(ellipse 100% 50% at 50% 100%, rgba(6,10,15,0.95) 0%, transparent 55%),
        linear-gradient(160deg, #040e08 0%, #071a0d 35%, #040e0a 70%, #030d07 100%);
    }
    .biome-card.verdant .biome-visual-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle 3px at 25% 35%, rgba(80,220,160,0.5) 0%, transparent 100%),
        radial-gradient(circle 2px at 60% 25%, rgba(110,201,224,0.6) 0%, transparent 100%),
        radial-gradient(circle 4px at 75% 55%, rgba(80,220,160,0.4) 0%, transparent 100%),
        radial-gradient(circle 2px at 40% 65%, rgba(110,201,224,0.5) 0%, transparent 100%),
        radial-gradient(circle 3px at 85% 30%, rgba(80,220,160,0.45) 0%, transparent 100%),
        radial-gradient(circle 2px at 15% 70%, rgba(40,180,120,0.5) 0%, transparent 100%);
    }

    /* Biome 3: Sunken Metro — collapsed urban ruins */
    .biome-card.metro .biome-visual-bg {
      background:
        radial-gradient(ellipse 70% 50% at 30% 20%, rgba(110,90,180,0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 35% at 80% 60%, rgba(110,201,224,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 100% 45% at 50% 100%, rgba(6,10,15,0.95) 0%, transparent 55%),
        linear-gradient(170deg, #080810 0%, #101018 30%, #0c0c16 60%, #080810 100%);
    }
    .biome-card.metro .biome-visual-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(110,90,180,0.04) 40px, rgba(110,90,180,0.04) 41px),
        repeating-linear-gradient(0deg, transparent, transparent 55px, rgba(110,201,224,0.03) 55px, rgba(110,201,224,0.03) 56px);
    }

    /* Scanline overlay on all visuals */
    .biome-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px
      );
      pointer-events: none;
      z-index: 2;
    }

    /* Bottom gradient fade into content below */
    .biome-visual-fade {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 70px;
      background: linear-gradient(to top, var(--bg-surface), transparent);
      z-index: 3;
    }

    /* Floating glyph icon */
    .biome-glyph {
      position: absolute;
      bottom: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      width: 52px; height: 52px;
      border: 1px solid var(--biome-accent, var(--border-glow));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(6,10,15,0.85);
      backdrop-filter: blur(6px);
      box-shadow: 0 0 20px rgba(0,0,0,0.5), inset 0 0 12px rgba(0,0,0,0.3);
      transition: box-shadow 0.35s, transform 0.45s cubic-bezier(0.22,1,0.36,1);
    }
    .biome-card:hover .biome-glyph {
      box-shadow: 0 0 28px var(--biome-accent, rgba(110,201,224,0.35)), inset 0 0 8px rgba(0,0,0,0.2);
      transform: translateX(-50%) translateY(-3px);
    }
    .biome-glyph svg {
      width: 24px; height: 24px;
      stroke: var(--biome-accent, var(--accent-glow));
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Biome accent colours */
    .biome-card.deadlands { --biome-accent: rgba(224,90,43,0.55); }
    .biome-card.verdant   { --biome-accent: rgba(80,220,160,0.55); }
    .biome-card.metro     { --biome-accent: rgba(110,90,220,0.55); }

    /* Content body */
    .biome-body {
      padding: clamp(1.6rem, 2.5vw, 2.2rem) clamp(1.4rem, 2vw, 2rem);
      padding-top: 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .biome-zone-tag {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .biome-zone-tag::before {
      content: '';
      display: inline-block;
      width: 16px; height: 1px;
      background: currentColor;
      opacity: 0.7;
    }

    .biome-name {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 2.8vw, 2.6rem);
      letter-spacing: 0.05em;
      line-height: 0.92;
      color: var(--text-primary);
      margin-bottom: 1.1rem;
      transition: color 0.3s;
    }
    .biome-card.deadlands:hover .biome-name { color: #f0a070; }
    .biome-card.verdant:hover   .biome-name { color: #80e8b0; }
    .biome-card.metro:hover     .biome-name { color: #a090e8; }

    .biome-desc {
      font-size: clamp(0.84rem, 1.3vw, 0.96rem);
      font-weight: 300;
      letter-spacing: 0.03em;
      line-height: 1.7;
      color: var(--text-muted);
      flex: 1;
    }
    .biome-desc strong { color: var(--accent-teal); font-weight: 600; }

    /* Environmental stats */
    .biome-stats {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      border-top: 1px solid var(--border);
      padding-top: 1.3rem;
    }

    .biome-stat {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.5rem;
      align-items: center;
    }
    .biome-stat-label {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      color: var(--text-dim);
      text-transform: uppercase;
    }
    .biome-stat-val {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-align: right;
    }
    .biome-stat-bar {
      grid-column: 1 / -1;
      height: 2px;
      background: var(--border);
      border-radius: 1px;
      overflow: hidden;
    }
    .biome-stat-fill {
      height: 100%;
      border-radius: 1px;
      background: var(--biome-accent, var(--accent-glow));
      opacity: 0.6;
      transition: width 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s;
      width: 0;
    }
    .biome-card.visible .biome-stat-fill { width: var(--fill-w, 50%); }

    /* Responsive */
    @media (max-width: 900px) {
      .world-grid { grid-template-columns: 1fr; gap: 1.2rem; }
      .biome-visual { height: 200px; }
    }
    @media (min-width: 601px) and (max-width: 900px) {
      .world-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ─────────────────────────────────────────────
       CROSS-PLATFORM SECTION
    ───────────────────────────────────────────── */
    #crossplatform {
      position: relative;
      overflow: hidden;
      padding: clamp(5rem, 12vh, 10rem) 0;
      background: var(--bg-surface);
    }

    /* Animated mesh gradient background */
    #crossplatform::before {
      content: '';
      position: absolute;
      inset: -50%;
      background:
        radial-gradient(ellipse 50% 60% at 20% 50%, rgba(110,201,224,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 50%, rgba(168,212,184,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 30% 40% at 50% 20%, rgba(110,90,180,0.05) 0%, transparent 55%);
      animation: mesh-drift 18s ease-in-out infinite alternate;
    }
    @keyframes mesh-drift {
      0%   { transform: translate(0%,   0%)   scale(1);   }
      33%  { transform: translate(3%,   -2%)  scale(1.04); }
      66%  { transform: translate(-2%,  3%)   scale(0.97); }
      100% { transform: translate(1%,   -1%)  scale(1.02); }
    }

    /* Top + bottom separator lines */
    #crossplatform::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border-glow) 30%, transparent 70%);
    }
    .cp-bottom-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border-glow) 30%, transparent 70%);
    }

    .cp-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 6vw, 5rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(3rem, 6vh, 5rem);
    }

    /* Top label */
    .cp-label {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      color: var(--accent-glow);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }
    .cp-label::before,
    .cp-label::after {
      content: '';
      flex-shrink: 0;
      width: 40px; height: 1px;
      background: linear-gradient(to right, transparent, var(--accent-glow));
    }
    .cp-label::after {
      background: linear-gradient(to left, transparent, var(--accent-glow));
    }

    /* Central tagline */
    .cp-tagline {
      text-align: center;
    }
    .cp-tagline h2 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 7rem);
      line-height: 0.9;
      letter-spacing: 0.04em;
      color: var(--text-primary);
    }
    .cp-tagline h2 .w-play  { color: var(--accent-glow); }
    .cp-tagline h2 .w-any   { color: var(--accent-teal); }
    .cp-tagline .cp-sub {
      font-size: clamp(0.88rem, 1.4vw, 1rem);
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-top: 1rem;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* ── PC Platform hero strip ── */
    .cp-platform-hero {
      display: flex;
      align-items: center;
      gap: 2rem;
      background: rgba(110,201,224,0.04);
      border: 1px solid rgba(110,201,224,0.18);
      border-radius: 2px;
      padding: clamp(1.6rem,3vw,2.4rem) clamp(1.6rem,4vw,3rem);
      width: 100%;
      max-width: 900px;
      position: relative;
      overflow: hidden;
    }
    .cp-platform-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(110,201,224,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .cp-platform-hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, var(--accent-glow), transparent 60%);
    }
    .cp-pc-icon {
      flex-shrink: 0;
      width: 72px; height: 72px;
      border-radius: 50%;
      border: 1px solid rgba(110,201,224,0.4);
      background: rgba(6,10,15,0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 30px rgba(110,201,224,0.12);
    }
    .cp-pc-icon svg {
      width: 32px; height: 32px;
      stroke: var(--accent-glow);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .cp-pc-info { flex: 1; }
    .cp-pc-name {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: 0.08em;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .cp-pc-name span { color: var(--accent-glow); }
    .cp-pc-tags {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }
    .cp-pc-tag {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-glow);
      border: 1px solid rgba(110,201,224,0.3);
      padding: 0.18rem 0.6rem;
      border-radius: 2px;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .cp-pc-tag::before {
      content: '';
      display: inline-block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent-glow);
      animation: pulse-dot 2s ease-in-out infinite;
    }

    /* ── System Requirements table ── */
    .cp-sysreq {
      width: 100%;
      max-width: 900px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
    }
    .cp-sysreq-col {
      background: var(--bg-surface);
      padding: clamp(1.4rem,2.5vw,2rem);
    }
    .cp-sysreq-col.recommended {
      background: rgba(13,21,32,0.9);
      position: relative;
    }
    .cp-sysreq-col.recommended::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--accent-glow), var(--accent-teal));
    }
    .cp-sysreq-title {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 1.4rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .cp-sysreq-col.recommended .cp-sysreq-title { color: var(--accent-glow); }
    .cp-sysreq-rows { display: flex; flex-direction: column; gap: 0.9rem; }
    .cp-sysreq-row {
      display: flex;
      flex-direction: column;
      gap: 0.18rem;
    }
    .cp-sysreq-key {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-dim);
    }
    .cp-sysreq-val {
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: var(--text-muted);
    }
    .cp-sysreq-val strong { color: var(--text-primary); font-weight: 600; }

    /* Bottom CTA */
    .cp-cta {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .cp-cta-text {
      font-family: var(--font-mono);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--text-dim);
      text-transform: uppercase;
    }
    .cp-cta-text strong { color: var(--accent-teal); font-weight: 600; }

    @media (max-width: 650px) {
      .cp-platform-hero { flex-direction: column; text-align: center; }
      .cp-pc-tags { justify-content: center; }
      .cp-sysreq { grid-template-columns: 1fr; }
    }

    /* ─────────────────────────────────────────────
       SEASON SPOTLIGHT
    ───────────────────────────────────────────── */
    #season {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    /* Full-bleed video background */
    .season-video-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      z-index: 0;
    }
    .season-video-bg video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .season-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
      background:
        linear-gradient(to right, rgba(6,10,15,0.94) 0%, rgba(6,10,15,0.88) 35%, rgba(6,10,15,0.55) 60%, rgba(6,10,15,0.08) 100%),
        linear-gradient(to top,    var(--bg-deep) 0%, rgba(6,10,15,0.9) 20%, rgba(6,10,15,0.55) 38%, transparent 55%),
        linear-gradient(to bottom, var(--bg-deep) 0%, rgba(6,10,15,0.9) 15%, rgba(6,10,15,0.55) 32%, transparent 50%);
    }

    /* Top glow rule */
    #season::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(224,90,43,0.5) 30%, transparent 70%);
      z-index: 3;
    }

    /* Content wrapper */
    .season-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: clamp(5rem, 11vh, 9rem) clamp(1.5rem, 6vw, 5rem);
    }

    .season-content { max-width: 600px; }

    /* Responsive */
    @media (max-width: 900px) {
      .season-content { max-width: 100%; }
    }

    /* ── Video panel (right) ── */
    .season-video-panel {
      position: relative;
      border: 1px solid rgba(224,90,43,0.25);
      background: #000;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(224,90,43,0.08),
        0 25px 80px rgba(0,0,0,0.7),
        0 0 60px rgba(224,90,43,0.06);
      transition: box-shadow 0.5s ease;
    }
    .season-video-panel:hover {
      box-shadow:
        0 0 0 1px rgba(224,90,43,0.35),
        0 25px 80px rgba(0,0,0,0.8),
        0 0 80px rgba(224,90,43,0.12);
    }
    /* Corner notch top-right */
    .season-video-panel::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 20px; height: 20px;
      background: var(--bg-deep);
      clip-path: polygon(100% 0, 0 0, 100% 100%);
      z-index: 4;
    }
    /* Subtle scanlines over video */
    .season-video-panel::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.07) 2px, rgba(0,0,0,0.07) 4px
      );
      pointer-events: none;
      z-index: 3;
    }
    .season-video-panel video {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    /* Live badge overlay */
    .season-video-badge {
      position: absolute;
      top: 0.9rem;
      left: 0.9rem;
      z-index: 5;
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-danger);
      background: rgba(6,10,15,0.82);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(224,90,43,0.35);
      padding: 0.22rem 0.6rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .season-video-badge::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent-danger);
      flex-shrink: 0;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .season-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: clamp(4rem, 10vh, 6rem);
        padding-bottom: clamp(3rem, 8vh, 5rem);
      }
      .season-video-panel { order: -1; }
    }

    /* Full-bleed aberrant energy art panel (right side, pure CSS) */
    .season-art {
      position: absolute;
      top: 0; right: 0;
      width: 55%;
      height: 100%;
      overflow: hidden;
    }
    .season-art-bg {
      position: absolute;
      inset: -10%;
      background:
        radial-gradient(ellipse 65% 75% at 75% 45%, rgba(224,90,43,0.32) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 55% 70%, rgba(180,40,10,0.22) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 90% 20%, rgba(255,140,60,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 30% 80%, rgba(224,90,43,0.1) 0%, transparent 55%),
        linear-gradient(135deg, #0a0402 0%, #180c04 25%, #220d05 50%, #100402 100%);
      animation: season-pulse 8s ease-in-out infinite alternate;
    }
    @keyframes season-pulse {
      0%   { transform: scale(1)    rotate(0deg); }
      50%  { transform: scale(1.04) rotate(0.5deg); }
      100% { transform: scale(1.02) rotate(-0.3deg); }
    }

    /* Floating aberrant energy orbs */
    .season-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      animation: orb-drift linear infinite;
      pointer-events: none;
    }
    .season-orb-1 {
      width: 280px; height: 280px;
      background: rgba(224,90,43,0.18);
      top: 10%; left: 20%;
      animation-duration: 14s;
      animation-name: orb-drift-1;
    }
    .season-orb-2 {
      width: 180px; height: 180px;
      background: rgba(255,120,40,0.12);
      top: 55%; left: 50%;
      animation-duration: 10s;
      animation-name: orb-drift-2;
    }
    .season-orb-3 {
      width: 120px; height: 120px;
      background: rgba(180,40,10,0.25);
      top: 25%; left: 65%;
      animation-duration: 7s;
      animation-name: orb-drift-1;
    }
    @keyframes orb-drift-1 {
      0%   { transform: translate(0,   0)   scale(1); }
      33%  { transform: translate(20px,-15px) scale(1.05); }
      66%  { transform: translate(-10px,20px) scale(0.96); }
      100% { transform: translate(0,   0)   scale(1); }
    }
    @keyframes orb-drift-2 {
      0%   { transform: translate(0, 0)    scale(1); }
      50%  { transform: translate(-18px,12px) scale(1.08); }
      100% { transform: translate(0, 0)    scale(1); }
    }

    /* Grid / hexagonal overlay on art panel */
    .season-art-grid {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(60deg,  transparent, transparent 30px, rgba(224,90,43,0.04) 30px, rgba(224,90,43,0.04) 31px),
        repeating-linear-gradient(120deg, transparent, transparent 30px, rgba(224,90,43,0.03) 30px, rgba(224,90,43,0.03) 31px),
        repeating-linear-gradient(0deg,   transparent, transparent 30px, rgba(224,90,43,0.02) 30px, rgba(224,90,43,0.02) 31px);
    }

    /* Fade art into the left content */
    .season-art-fade {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--bg-deep) 0%, rgba(6,10,15,0.7) 25%, rgba(6,10,15,0.15) 60%, transparent 100%);
    }

    /* Large "S3" watermark text behind art */
    .season-art-s3 {
      position: absolute;
      bottom: -0.1em;
      right: -0.05em;
      font-family: var(--font-display);
      font-size: clamp(16rem, 30vw, 28rem);
      line-height: 1;
      letter-spacing: -0.02em;
      color: rgba(224,90,43,0.07);
      user-select: none;
      pointer-events: none;
    }

    /* Scanlines over art */
    .season-art-scan {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
      );
      pointer-events: none;
    }

    /* Left content */
    .season-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: clamp(5rem, 11vh, 9rem) clamp(1.5rem, 6vw, 5rem);
    }

    .season-content {
      max-width: 560px;
    }

    /* Season eyebrow */
    .season-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1.4rem;
      flex-wrap: wrap;
    }
    .season-number {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      color: var(--accent-danger);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .season-number::before {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: var(--accent-danger);
    }
    .season-live-badge {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent-danger);
      border: 1px solid rgba(224,90,43,0.45);
      padding: 0.18rem 0.55rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      animation: flicker 4s infinite;
    }
    .season-live-badge::before {
      content: '';
      display: inline-block;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent-danger);
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    .season-wheel-badge {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-glow);
      border: 1px solid var(--border-glow);
      padding: 0.18rem 0.55rem;
    }

    /* Season title */
    .season-title {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 7vw, 7.5rem);
      line-height: 0.88;
      letter-spacing: 0.03em;
      color: var(--text-primary);
      margin-bottom: 1.4rem;
    }
    .season-title .s-line1 { display: block; color: #ffffff; }
    .season-title .s-line2 {
      display: block;
      color: var(--accent-danger);
      text-shadow:
        0 0 40px rgba(224,90,43,0.5),
        0 0 90px rgba(224,90,43,0.2);
      animation: glitch 9s infinite 2s;
    }

    /* Description */
    .season-desc {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      font-weight: 300;
      letter-spacing: 0.03em;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }
    .season-desc strong { color: var(--accent-teal); font-weight: 600; }
    .season-desc em     { color: var(--accent-danger); font-style: normal; }

    /* What's new list */
    .season-new-label {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      color: var(--text-dim);
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }
    .season-new-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      margin-bottom: 2rem;
    }
    .season-new-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: clamp(0.85rem, 1.3vw, 0.96rem);
      font-weight: 300;
      color: var(--text-muted);
      letter-spacing: 0.03em;
      line-height: 1.5;
    }
    .season-new-list li::before {
      content: '';
      flex-shrink: 0;
      display: inline-block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-danger);
      margin-top: 0.42em;
      box-shadow: 0 0 8px rgba(224,90,43,0.6);
    }
    .season-new-list li span { color: var(--accent-teal); }

    /* Countdown */
    .season-countdown {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 2.2rem;
      align-items: flex-end;
      flex-wrap: wrap;
    }
    .countdown-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }
    .countdown-num {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: 0.06em;
      color: var(--text-primary);
      line-height: 1;
      min-width: 2ch;
      text-align: center;
    }
    .countdown-label {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.2em;
      color: var(--text-dim);
      text-transform: uppercase;
    }
    .countdown-sep {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--text-dim);
      opacity: 0.4;
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .countdown-ends {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      color: var(--text-dim);
      text-transform: uppercase;
      align-self: flex-end;
      padding-bottom: 0.2rem;
    }
    .countdown-ends strong { color: var(--accent-danger); }

    /* CTA row */
    .season-cta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .season-art { width: 100%; opacity: 0.35; }
      .season-art-fade { background: linear-gradient(to top, var(--bg-deep) 30%, transparent 100%); }
      #season { min-height: auto; }
      .season-inner { padding-top: clamp(5rem, 15vh, 10rem); padding-bottom: clamp(3rem, 8vh, 6rem); }
      .season-content { max-width: 100%; }
    }

    /* ─────────────────────────────────────────────
       SOCIAL PROOF STATS BANNER
    ───────────────────────────────────────────── */
    #stats {
      position: relative;
      overflow: hidden;
      background: var(--bg-surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    /* Subtle teal ambient glow */
    #stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 120% at 50% 50%, rgba(110,201,224,0.045) 0%, transparent 70%);
      pointer-events: none;
    }

    .stats-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 6vw, 5rem);
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      align-items: center;
      min-height: 160px;
    }

    /* Vertical dividers */
    .stats-divider {
      width: 1px;
      align-self: stretch;
      margin: 2.5rem 0;
      background: linear-gradient(to bottom, transparent, var(--border-glow) 30%, var(--border-glow) 70%, transparent);
    }

    /* Single stat block */
    .stat-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: clamp(2rem, 4vh, 3rem) 1rem;
      text-align: center;
      cursor: default;
    }

    .stat-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      color: var(--text-dim);
      text-transform: uppercase;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      line-height: 1;
      letter-spacing: 0.04em;
      color: var(--text-primary);
      transition: color 0.3s;
      /* count-up animation applied via JS */
    }
    .stat-number .stat-suffix {
      font-size: 0.6em;
      letter-spacing: 0.06em;
      color: var(--accent-glow);
    }

    /* Per-stat accent colours */
    .stat-block.players .stat-number { color: #ffffff; }
    .stat-block.players:hover .stat-number { color: var(--accent-glow); }
    .stat-block.free .stat-number    { color: var(--accent-teal); text-shadow: 0 0 30px rgba(168,212,184,0.3); }
    .stat-block.cross .stat-number   { color: var(--accent-glow); text-shadow: 0 0 30px rgba(110,201,224,0.3); }

    .stat-label {
      font-family: var(--font-body);
      font-size: clamp(0.78rem, 1.2vw, 0.9rem);
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .stat-source {
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      color: var(--text-dim);
      text-transform: uppercase;
      margin-top: 0.15rem;
      opacity: 0.7;
    }

    /* Hover state — lift number */
    .stat-block:hover .stat-number {
      transform: translateY(-2px);
      transition: color 0.3s, transform 0.35s ease;
    }

    @media (max-width: 700px) {
      .stats-inner {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .stats-divider {
        width: auto; height: 1px; margin: 0 2rem;
        background: linear-gradient(to right, transparent, var(--border-glow), transparent);
      }
    }

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    #footer {
      position: relative;
      background: #040608;
      overflow: hidden;
    }

    /* Grain texture */
    #footer::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.025;
      background-image: 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)'/%3E%3C/svg%3E");
      background-size: 200px;
      pointer-events: none;
    }

    /* Top glow border */
    #footer::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(110,201,224,0.25) 25%, rgba(168,212,184,0.2) 50%, rgba(110,201,224,0.25) 75%, transparent);
    }

    /* Main footer body */
    .footer-body {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: clamp(3.5rem, 7vh, 6rem) clamp(1.5rem, 6vw, 5rem) clamp(2.5rem, 5vh, 4rem);
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }

    /* Brand column */
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      letter-spacing: 0.12em;
      color: var(--text-primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      width: fit-content;
    }
    .footer-logo .accent { color: var(--accent-glow); }
    .footer-logo .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-danger);
      flex-shrink: 0;
    }

    .footer-tagline {
      font-size: 0.88rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      line-height: 1.7;
      color: var(--text-dim);
      max-width: 260px;
    }
    .footer-tagline strong { color: var(--accent-teal); font-weight: 500; }

    /* Social / store badges row */
    .footer-badges {
      display: flex;
      gap: 0.65rem;
      flex-wrap: wrap;
      margin-top: 0.4rem;
    }
    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
      border: 1px solid var(--border);
      padding: 0.3rem 0.7rem;
      text-decoration: none;
      border-radius: 2px;
      transition: color 0.25s, border-color 0.25s, background 0.25s;
    }
    .footer-badge:hover {
      color: var(--accent-teal);
      border-color: rgba(168,212,184,0.35);
      background: rgba(168,212,184,0.04);
    }
    .footer-badge svg {
      width: 13px; height: 13px;
      fill: currentColor;
      flex-shrink: 0;
    }

    /* Link columns */
    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .footer-col-title {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-col-title::before {
      content: '';
      display: inline-block;
      width: 12px; height: 1px;
      background: currentColor;
      opacity: 0.6;
    }
    .footer-col a {
      font-size: 0.88rem;
      font-weight: 300;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      text-decoration: none;
      padding: 0.3rem 0;
      position: relative;
      width: fit-content;
      transition: color 0.22s;
    }
    .footer-col a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--accent-glow);
      transition: width 0.3s ease;
    }
    .footer-col a:hover { color: var(--accent-teal); }
    .footer-col a:hover::after { width: 100%; }
    .footer-col a.dim { opacity: 0.45; cursor: default; pointer-events: none; }

    /* Bottom bar */
    .footer-bottom {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
    }
    .footer-bottom-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.4rem clamp(1.5rem, 6vw, 5rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      color: var(--text-dim);
      line-height: 1.6;
    }
    .footer-copy a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-copy a:hover { color: var(--accent-teal); }

    .footer-legal-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .footer-legal-links a {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-legal-links a:hover { color: var(--accent-teal); }
    .footer-legal-sep {
      width: 1px; height: 10px;
      background: var(--border);
      flex-shrink: 0;
    }

    /* Rating badge */
    .footer-rating {
      font-family: var(--font-mono);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      color: var(--text-dim);
      border: 1px solid var(--border);
      padding: 0.15rem 0.45rem;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .footer-body {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
      }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 500px) {
      .footer-body { grid-template-columns: 1fr; }
      .footer-bottom-inner { flex-direction: column; align-items: center; gap: 0.8rem; text-align: center; }
      .footer-copy { text-align: center; }
      .footer-legal-links { justify-content: center; }
    }

    /* ─── Google Translate: hide toolbar banner ─── */
    .goog-te-banner-frame,
    .goog-te-balloon-frame { display: none !important; }
    body { top: 0px !important; }
    .goog-te-spinner-pos { display: none !important; }