@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

    :root {
      color-scheme: dark;
      --bg: #080a08;
      --surface: #111411;
      --surface-2: #151815;
      --text: #f1f3ed;
      --muted: #9ba198;
      --border: #282d27;
      --accent: #7fbd1e;
      --accent-light: #99db2e;
      --accent-dark: #48760a;
      --display: "Barlow Condensed", "Arial Narrow", sans-serif;
      --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-family: var(--body);
      background: var(--bg);
      color: var(--text);
      scroll-behavior: smooth;
    }

    * { box-sizing: border-box; }

    html { overflow-x: hidden; }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 77% 13%, rgba(99, 157, 25, .12), transparent 27rem),
        linear-gradient(180deg, #080a08 0%, #0a0d0a 55%, #080a08 100%);
    }

    a { color: inherit; }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin-inline: auto;
    }

    .skip-link {
      position: fixed;
      top: -60px;
      left: 16px;
      z-index: 50;
      padding: 10px 14px;
      background: var(--accent);
      color: #090b07;
      font-weight: 700;
      text-decoration: none;
    }

    .skip-link:focus { top: 16px; }

    header {
      position: relative;
      z-index: 5;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .brand img {
      display: block;
      width: 220px;
      max-width: 44vw;
      height: auto;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav a {
      color: #aeb4aa;
      font-size: .84rem;
      font-weight: 600;
      text-decoration: none;
      transition: color .2s ease;
    }

    nav a:hover,
    nav a:focus-visible { color: var(--text); }

    .nav-download { color: var(--accent-light); }
    .nav-download.active { color: var(--accent); }

    .nav-auth {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      padding: 0 15px;
      border: 1px solid #3b4339;
      border-radius: 5px;
      color: var(--text);
      font-family: var(--display);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .nav-auth:hover,
    .nav-auth:focus-visible {
      border-color: var(--accent);
      color: var(--accent-light);
    }

    .hero {
      min-height: 620px;
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
      gap: 54px;
      align-items: center;
      padding-block: 72px 86px;
    }

    .eyebrow {
      margin: 0 0 18px;
      color: var(--accent-light);
      font-family: var(--display);
      font-size: .86rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    h1, h2, h3, p { margin-top: 0; }

    h1 {
      max-width: 590px;
      margin-bottom: 24px;
      font-family: var(--display);
      font-size: clamp(4rem, 7.2vw, 6.4rem);
      font-weight: 800;
      letter-spacing: -.035em;
      line-height: .84;
      text-transform: uppercase;
    }

    h1 span {
      display: block;
      color: var(--accent);
    }

    .hero-copy {
      max-width: 590px;
      margin-bottom: 32px;
      color: var(--muted);
      font-size: 1.04rem;
      line-height: 1.75;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 25px;
      border: 1px solid var(--accent);
      border-radius: 7px;
      background: var(--accent);
      color: #0b0d08;
      font-size: .9rem;
      font-weight: 700;
      text-decoration: none;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .button:hover,
    .button:focus-visible {
      border-color: var(--accent-light);
      background: var(--accent-light);
      transform: translateY(-2px);
    }

    .button.secondary {
      border-color: #343a33;
      background: transparent;
      color: var(--text);
    }

    .button.secondary:hover,
    .button.secondary:focus-visible {
      border-color: #596057;
      background: rgba(255,255,255,.04);
    }

    .hero-art {
      min-height: 0;
      display: grid;
      place-items: center;
      padding: 40px 0;
    }

    .hero-art img {
      display: block;
      width: min(78%, 520px);
      height: auto;
      mix-blend-mode: normal;
      filter: drop-shadow(0 0 35px rgba(24, 218, 220, .12));
    }

    .preview-header,
    .preview-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 17px;
    }

    .preview-header {
      border-bottom: 1px solid var(--border);
    }

    .preview-header span,
    .preview-footer span {
      color: #737a71;
      font-family: var(--display);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .preview-header strong {
      color: var(--accent-light);
      font-family: var(--display);
      font-size: .82rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .preview-image {
      position: relative;
    }

    .preview-title {
      position: absolute;
      left: 20px;
      bottom: 15px;
      font-family: var(--display);
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      font-weight: 800;
      letter-spacing: .02em;
      line-height: 1;
      text-shadow: 0 4px 18px rgba(0,0,0,.8);
    }

    .preview-footer {
      border-top: 1px solid var(--border);
    }

    .preview-mode {
      color: #d9ddd5;
      font-family: var(--display);
      font-size: .92rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    section {
      padding-block: 92px;
    }

    .section-title {
      margin-bottom: 52px;
      text-align: center;
    }

    .section-title h2 {
      margin-bottom: 12px;
      font-family: var(--display);
      font-size: clamp(2.6rem, 5vw, 4rem);
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .section-title p {
      max-width: 570px;
      margin: 0 auto;
      color: var(--muted);
      line-height: 1.7;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      min-height: 300px;
      padding: 30px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.022), transparent 55%),
        var(--surface);
      transition: border-color .2s ease, transform .2s ease;
    }

    .card:hover {
      border-color: #3d4938;
      transform: translateY(-4px);
    }

    .card-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 58px;
      border: 1px solid rgba(127,189,30,.27);
      border-radius: 9px;
      background: rgba(127,189,30,.07);
      color: var(--accent-light);
      font-family: var(--display);
      font-weight: 800;
    }

    .card h3 {
      margin-bottom: 12px;
      font-family: var(--display);
      font-size: 1.55rem;
      font-weight: 700;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.7;
    }

    [hidden] { display: none !important; }

    .profile-section {
      width: 100%;
      max-width: none;
      margin-top: 18px;
      padding-block: 96px;
      border-block: 1px solid var(--border);
      background:
        linear-gradient(115deg, rgba(127,189,30,.075), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255,255,255,.013) 0, rgba(255,255,255,.013) 1px, transparent 1px, transparent 11px),
        #0c0f0c;
    }

    .profile-shell {
      width: min(1160px, calc(100% - 40px));
      margin-inline: auto;
    }

    .profile-intro {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
    }

    .profile-intro .eyebrow { margin-bottom: 10px; }

    .profile-intro h2 {
      margin: 0;
      font-family: var(--display);
      font-size: clamp(3rem, 5.5vw, 4.8rem);
      font-weight: 800;
      letter-spacing: -.03em;
      line-height: .9;
      text-transform: uppercase;
    }

    .profile-intro > p {
      max-width: 360px;
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .profile-gate {
      min-height: 270px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
      padding: 46px 52px;
      border: 1px solid #30362f;
      border-left: 4px solid var(--accent);
      background:
        linear-gradient(90deg, rgba(127,189,30,.07), transparent 46%),
        var(--surface);
      box-shadow: 0 28px 70px rgba(0,0,0,.24);
    }

    .profile-gate h3 {
      margin-bottom: 10px;
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .profile-gate p {
      max-width: 550px;
      margin-bottom: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .steam-button {
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 24px;
      border: 1px solid #56728b;
      border-radius: 5px;
      background: linear-gradient(180deg, #233d52, #172b3b);
      color: #fff;
      font-family: var(--display);
      font-size: .92rem;
      font-weight: 700;
      letter-spacing: .035em;
      text-decoration: none;
      text-transform: uppercase;
      transition: border-color .2s ease, filter .2s ease, transform .2s ease;
    }

    .steam-button::before {
      content: "S";
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      border: 2px solid currentColor;
      border-radius: 50%;
      font-size: .85rem;
      line-height: 1;
    }

    .steam-button:hover,
    .steam-button:focus-visible {
      border-color: #8fc4ed;
      filter: brightness(1.12);
      transform: translateY(-2px);
    }

    .login-error {
      margin-top: 14px !important;
      color: #e59a8d !important;
      font-size: .82rem;
    }

    .command-center {
      border: 1px solid #30362f;
      background: #0a0d0a;
      box-shadow: 0 35px 90px rgba(0,0,0,.34);
    }

    .profile-bar {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 26px 30px;
      border-bottom: 1px solid #30362f;
      background:
        linear-gradient(100deg, rgba(127,189,30,.12), transparent 42%),
        #111411;
    }

    .profile-avatar-wrap {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 2px solid var(--accent);
      background: #161b15;
      color: var(--accent-light);
      font-family: var(--display);
      font-size: 2rem;
      font-weight: 800;
    }

    .profile-avatar {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .profile-kicker {
      display: block;
      margin-bottom: 4px;
      color: var(--accent-light);
      font-family: var(--display);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .profile-name {
      margin: 0 0 4px;
      font-family: var(--display);
      font-size: clamp(1.8rem, 3vw, 2.7rem);
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
    }

    .profile-id {
      margin: 0;
      color: #777e75;
      font-family: var(--display);
      font-size: .78rem;
      letter-spacing: .06em;
    }

    .profile-actions {
      display: flex;
      gap: 10px;
    }

    .profile-action {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 14px;
      border: 1px solid #3a4039;
      border-radius: 4px;
      background: transparent;
      color: #c9cec5;
      font: 700 .72rem var(--display);
      letter-spacing: .05em;
      text-decoration: none;
      text-transform: uppercase;
      cursor: pointer;
    }

    .profile-action:hover,
    .profile-action:focus-visible {
      border-color: var(--accent);
      color: var(--accent-light);
    }

    .career-grid {
      display: grid;
      grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    }

    .rank-panel {
      min-height: 330px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 38px;
      border-right: 1px solid #30362f;
      background:
        radial-gradient(circle at 80% 22%, rgba(127,189,30,.14), transparent 42%),
        #0e110e;
    }

    .level-lockup {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .level-number {
      min-width: 100px;
      color: var(--text);
      font-family: var(--display);
      font-size: 6.8rem;
      font-weight: 800;
      letter-spacing: -.06em;
      line-height: .75;
    }

    .rank-label span {
      display: block;
      color: #777e75;
      font-family: var(--display);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .rank-label strong {
      display: block;
      margin-top: 5px;
      color: var(--accent-light);
      font-family: var(--display);
      font-size: 1.45rem;
      text-transform: uppercase;
    }

    .prestige-value {
      margin-top: 12px !important;
      color: #afb5ab;
      font-size: .82rem;
    }

    .xp-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 9px;
      color: #858c82;
      font-family: var(--display);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .xp-track {
      height: 7px;
      overflow: hidden;
      background: #252a24;
    }

    .xp-fill {
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
      box-shadow: 0 0 14px rgba(127,189,30,.45);
      transition: width .5s ease;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .stat {
      min-height: 165px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px 28px;
      border-right: 1px solid #252a24;
      border-bottom: 1px solid #252a24;
      background: rgba(255,255,255,.01);
    }

    .stat:nth-child(3n) { border-right: 0; }
    .stat:nth-last-child(-n+3) { border-bottom: 0; }

    .stat-value {
      margin-bottom: 5px;
      font-family: var(--display);
      font-size: clamp(2.2rem, 4vw, 3.25rem);
      font-weight: 700;
      letter-spacing: -.03em;
      line-height: 1;
    }

    .stat-label {
      color: #777e75;
      font-family: var(--display);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .showcase {
      padding-block: 38px 100px;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
      gap: 70px;
      align-items: center;
    }

    .screen {
      position: relative;
      padding: 10px;
      border: 1px solid #34402f;
      border-radius: 14px;
      background: #0c0f0c;
      box-shadow: 0 35px 85px rgba(0,0,0,.38);
      transform: rotate(-1.2deg);
    }

    .screen::before {
      content: "";
      position: absolute;
      inset: -25px;
      z-index: -1;
      background: radial-gradient(circle, rgba(127,189,30,.13), transparent 67%);
      filter: blur(12px);
    }

    .screen img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 7px;
    }

    .showcase-copy .eyebrow { margin-bottom: 14px; }

    .showcase-copy h2 {
      margin-bottom: 20px;
      font-family: var(--display);
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 700;
      letter-spacing: -.025em;
      line-height: .95;
    }

    .showcase-copy > p {
      margin-bottom: 27px;
      color: var(--muted);
      line-height: 1.75;
    }

    .simple-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .simple-list li {
      position: relative;
      padding-left: 20px;
      color: #d5d9d1;
      font-size: .88rem;
      font-weight: 600;
    }

    .simple-list li::before {
      content: "";
      position: absolute;
      top: .42em;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: var(--accent);
    }

    .feature-strip {
      padding-block: 20px 98px;
    }

    .pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .pill {
      padding: 11px 18px;
      border: 1px solid rgba(127,189,30,.32);
      border-radius: 999px;
      background: rgba(127,189,30,.11);
      color: #cce7a2;
      font-family: var(--display);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .status-section {
      padding-block: 0 100px;
    }

    .status-box {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 22px;
      align-items: center;
      padding: 28px 30px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--surface-2);
    }

    .status-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 18px rgba(127,189,30,.55);
    }

    .status-box h2 {
      margin: 0 0 4px;
      font-family: var(--display);
      font-size: 1.5rem;
    }

    .status-box p {
      margin: 0;
      color: var(--muted);
      font-size: .88rem;
    }

    .status-label {
      color: #727a70;
      font-family: var(--display);
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    footer {
      border-top: 1px solid var(--border);
      padding-block: 48px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: end;
    }

    .footer-logo {
      width: min(300px, 70vw);
      height: auto;
      margin-bottom: 20px;
      filter: grayscale(1) brightness(1.55);
      opacity: .72;
    }

    .legal {
      max-width: 760px;
      margin: 0;
      color: #686e66;
      font-size: .71rem;
      line-height: 1.65;
    }

    .top-link {
      color: #939a90;
      font-size: .78rem;
      font-weight: 600;
      text-decoration: none;
    }

    .top-link:hover,
    .top-link:focus-visible { color: var(--accent-light); }

    :focus-visible {
      outline: 2px solid var(--accent-light);
      outline-offset: 4px;
    }

    @media (max-width: 920px) {
      .hero {
        grid-template-columns: 1fr;
        padding-top: 62px;
      }

      .hero-copy { max-width: 660px; }
      .hero-art { min-height: 0; }
      .hero-art img { width: 100%; }
      .cards { grid-template-columns: 1fr; }
      .card { min-height: 230px; }
      .card-icon { margin-bottom: 40px; }
      .showcase-grid { grid-template-columns: 1fr; gap: 52px; }
      .profile-intro { align-items: start; flex-direction: column; }
      .career-grid { grid-template-columns: 1fr; }
      .rank-panel { border-right: 0; border-bottom: 1px solid #30362f; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 28px, 1160px); }
      .nav { min-height: 66px; }
      nav a:not(.nav-auth):not(.nav-download) { display: none; }
      nav { gap: 10px; }
      .nav-download { padding: 10px 4px; }
      .nav-auth { padding-inline: 11px; font-size: .7rem; }
      .hero { min-height: auto; gap: 28px; padding-block: 50px 60px; }
      h1 { font-size: clamp(3.7rem, 18vw, 5rem); }
      .hero-art { min-height: 0; }
      .hero-art img {
        width: min(78%, 430px);
        aspect-ratio: auto;
        transform: none;
      }
      .preview-header,
      .preview-footer { padding: 12px 14px; }
      section { padding-block: 72px; }
      .section-title { margin-bottom: 36px; }
      .card { padding: 25px; }
      .showcase { padding-top: 10px; }
      .simple-list { grid-template-columns: 1fr; }
      .status-box { grid-template-columns: auto 1fr; }
      .status-label { grid-column: 2; }
      .footer-inner { grid-template-columns: 1fr; }
      .top-link { justify-self: start; }
      .profile-shell { width: min(100% - 28px, 1160px); }
      .profile-gate {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 32px 26px;
      }
      .steam-button { justify-self: start; }
      .profile-bar { grid-template-columns: auto 1fr; padding: 22px; }
      .profile-actions { grid-column: 1 / -1; }
      .rank-panel { min-height: 290px; padding: 30px 24px; }
      .level-number { min-width: 82px; font-size: 5.5rem; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat { min-height: 135px; padding: 22px; }
      .stat:nth-child(3n) { border-right: 1px solid #252a24; }
      .stat:nth-child(2n) { border-right: 0; }
      .stat:nth-last-child(-n+3) { border-bottom: 1px solid #252a24; }
      .stat:nth-last-child(-n+2) { border-bottom: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; transition: none !important; }
    }

    /* Download page */
    .download-page {
      min-height: 100vh;
      background:
        radial-gradient(circle at 84% 12%, rgba(20, 186, 185, .09), transparent 28rem),
        var(--bg);
    }

    .download-main { overflow: hidden; }

    .download-hero {
      min-height: 650px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .download-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
      align-items: center;
      gap: 80px;
      padding-top: 72px;
      padding-bottom: 72px;
    }

    .download-copy h1 {
      max-width: 780px;
      margin: 16px 0 22px;
      font-family: var(--display);
      font-size: clamp(4.6rem, 8vw, 8rem);
      line-height: .84;
      letter-spacing: -.04em;
      text-transform: uppercase;
    }

    .download-lead {
      max-width: 610px;
      margin: 0;
      color: #b1b7ad;
      font-size: 1.12rem;
      line-height: 1.7;
    }

    .download-art {
      position: relative;
      display: grid;
      place-items: center;
    }

    .download-art::before {
      position: absolute;
      z-index: 0;
      width: 80%;
      aspect-ratio: 1;
      content: "";
      border-radius: 50%;
      background: rgba(20, 207, 207, .08);
      filter: blur(65px);
    }

    .download-art img {
      position: relative;
      z-index: 1;
      width: min(100%, 520px);
      height: auto;
      filter: drop-shadow(0 0 42px rgba(28, 225, 226, .2));
    }

    .release-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .release-meta span {
      padding: 8px 11px;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .release-meta span:first-child {
      border-color: rgba(126, 203, 18, .45);
      color: var(--accent-light);
    }

    .download-section { padding: 100px 0; }

    .download-requirements {
      background: rgba(255,255,255,.012);
    }

    .download-heading {
      max-width: 720px;
      margin-bottom: 42px;
    }

    .download-heading h2,
    .download-panel h2,
    .download-final h2 {
      margin: 10px 0 0;
      font-family: var(--display);
      font-size: clamp(3.2rem, 5vw, 5.2rem);
      line-height: .92;
      text-transform: uppercase;
    }

    .requirement-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .requirement-card {
      min-height: 210px;
      padding: 28px;
      border: 1px solid var(--border);
      background:
        linear-gradient(135deg, rgba(126, 203, 18, .05), transparent 60%),
        rgba(8,12,9,.7);
    }

    .requirement-number {
      display: inline-block;
      margin-bottom: 54px;
      color: var(--accent);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .requirement-card h3,
    .download-steps h3 {
      margin: 0 0 8px;
      font-family: var(--display);
      font-size: 1.55rem;
      text-transform: uppercase;
    }

    .requirement-card p,
    .download-panel-copy > p:last-child,
    .download-steps p,
    .download-final > div > p:last-child {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .download-setup {
      padding-top: 115px;
      padding-bottom: 115px;
    }

    .download-panel {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(430px, 1fr);
      gap: 90px;
      padding: 58px;
      border: 1px solid var(--border);
      border-left: 3px solid var(--accent);
      background:
        linear-gradient(120deg, rgba(126, 203, 18, .075), transparent 46%),
        rgba(8,12,9,.72);
    }

    .download-panel-copy > p:last-child {
      max-width: 500px;
      margin-top: 22px;
    }

    .download-steps {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .download-steps li {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 18px;
      padding: 23px 0;
      border-bottom: 1px solid var(--border);
    }

    .download-steps li:first-child { padding-top: 0; }

    .download-steps li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .download-steps li > span {
      color: var(--accent);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
    }

    .download-final {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 50px;
      padding-top: 58px;
      padding-bottom: 58px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .download-final > div > p:last-child {
      max-width: 600px;
      margin-top: 18px;
    }

    .download-final .button { flex: 0 0 auto; }

    @media (max-width: 920px) {
      .download-hero-grid,
      .download-panel {
        grid-template-columns: 1fr;
      }

      .download-hero-grid { gap: 34px; }

      .download-art img {
        width: min(72vw, 430px);
      }

      .requirement-grid { grid-template-columns: 1fr; }
      .requirement-card { min-height: auto; }
      .requirement-number { margin-bottom: 30px; }
      .download-panel { gap: 54px; }
    }

    @media (max-width: 620px) {
      .download-hero { min-height: auto; }

      .download-hero-grid {
        padding-top: 58px;
        padding-bottom: 60px;
      }

      .download-copy h1 {
        font-size: clamp(4rem, 21vw, 6rem);
      }

      .download-art img {
        width: min(90vw, 390px);
      }

      .download-section { padding: 70px 0; }
      .download-panel { padding: 30px 24px; }

      .download-final {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    /* Download redesign */
    .download-v2 {
      background:
        linear-gradient(180deg, rgba(10,14,10,.28), rgba(4,6,4,.7)),
        var(--bg);
    }

    .download-v2 header {
      background: rgba(6,9,6,.76);
      backdrop-filter: blur(20px);
    }

    .launch-hero {
      position: relative;
      min-height: calc(100svh - 77px);
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.07);
      isolation: isolate;
    }

    .launch-hero::before {
      position: absolute;
      inset: 0;
      z-index: -3;
      content: "";
      background:
        linear-gradient(90deg, #070a07 0%, rgba(7,10,7,.94) 34%, rgba(7,10,7,.2) 75%),
        radial-gradient(circle at 75% 45%, rgba(127,189,30,.16), transparent 32rem);
    }

    .launch-hero::after {
      position: absolute;
      inset: 0;
      z-index: -2;
      content: "";
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(90deg, transparent 15%, #000 65%, transparent);
    }

    .launch-orb {
      position: absolute;
      z-index: -1;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(1px);
    }

    .launch-orb-one {
      top: -270px;
      right: -190px;
      width: 680px;
      height: 680px;
      border: 1px solid rgba(138,210,38,.12);
      box-shadow:
        inset 0 0 100px rgba(117,185,24,.04),
        0 0 120px rgba(117,185,24,.05);
    }

    .launch-orb-two {
      right: 38%;
      bottom: -380px;
      width: 620px;
      height: 620px;
      border: 1px solid rgba(31,221,221,.08);
    }

    .launch-layout {
      display: grid;
      grid-template-columns: minmax(420px, .72fr) minmax(600px, 1.28fr);
      align-items: center;
      gap: 58px;
      padding-top: 90px;
      padding-bottom: 110px;
    }

    .launch-copy {
      position: relative;
      z-index: 2;
    }

    .launch-copy h1 {
      margin: 18px 0 28px;
      font-family: var(--display);
      font-size: clamp(5.8rem, 8.1vw, 9.6rem);
      font-weight: 800;
      line-height: .75;
      letter-spacing: -.055em;
      text-transform: uppercase;
    }

    .launch-copy h1 span {
      display: block;
      margin-top: .17em;
      color: var(--accent);
    }

    .launch-lead {
      max-width: 520px;
      margin: 0;
      color: #b6bcb2;
      font-size: 1.06rem;
      line-height: 1.7;
    }

    .launch-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 34px;
    }

    .launch-download {
      min-width: 186px;
      min-height: 54px;
      padding-inline: 25px;
    }

    .launch-profile-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #c5cac2;
      font-size: .82rem;
      font-weight: 700;
      text-decoration: none;
      transition: color .2s ease;
    }

    .launch-profile-link span {
      color: var(--accent);
      font-size: 1.05rem;
      transition: transform .2s ease;
    }

    .launch-profile-link:hover { color: #fff; }
    .launch-profile-link:hover span { transform: translateX(4px); }

    .launch-release {
      margin: 20px 0 0;
      color: #6f766d;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .launch-release span {
      margin-inline: 8px;
      color: #41473f;
    }

    .launcher-stage {
      position: relative;
      z-index: 1;
      width: 740px;
      max-width: 72vw;
      justify-self: end;
      perspective: 1400px;
    }

    .launcher-stage::before {
      position: absolute;
      inset: 6% -4% -10% 12%;
      z-index: -2;
      content: "";
      background: rgba(92,151,16,.15);
      filter: blur(70px);
    }

    .launcher-mark {
      position: absolute;
      z-index: -1;
      top: -190px;
      right: -155px;
      width: 430px;
      height: auto;
      opacity: .12;
      filter: blur(.2px) drop-shadow(0 0 40px rgba(29,219,221,.4));
      transform: rotate(8deg);
    }

    .launcher-window {
      overflow: hidden;
      border: 1px solid rgba(181,201,169,.2);
      border-radius: 7px;
      background: #0c100c;
      box-shadow:
        0 38px 100px rgba(0,0,0,.58),
        0 0 0 1px rgba(0,0,0,.7);
      transform: rotateY(-5deg) rotateX(1.2deg);
      transform-origin: center right;
    }

    .launcher-window-bar {
      min-height: 42px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 15px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(9,13,9,.96);
      color: #8c9489;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .launcher-window-bar strong {
      justify-self: end;
      color: var(--accent-light);
      font-size: .58rem;
      letter-spacing: .12em;
    }

    .launcher-dots {
      display: flex;
      gap: 6px;
    }

    .launcher-dots i {
      width: 6px;
      height: 6px;
      display: block;
      border-radius: 50%;
      background: #394037;
    }

    .launcher-dots i:first-child { background: var(--accent); }

    .launcher-window > img {
      display: block;
      width: 100%;
      height: auto;
      filter: saturate(.85) contrast(1.04);
    }

    .launch-scroll-note {
      position: absolute;
      right: 0;
      bottom: 26px;
      left: 0;
      display: flex;
      align-items: center;
      gap: 13px;
      color: #5e655c;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .launch-scroll-note span {
      width: 38px;
      height: 1px;
      background: var(--accent);
    }

    .launch-features {
      padding-block: 125px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.012), transparent),
        #090c09;
    }

    .launch-section-title {
      max-width: 820px;
      margin-bottom: 65px;
    }

    .launch-section-title h2,
    .launch-final h2 {
      margin: 12px 0 0;
      font-family: var(--display);
      font-size: clamp(4.1rem, 7vw, 7.2rem);
      line-height: .82;
      letter-spacing: -.035em;
      text-transform: uppercase;
    }

    .launch-feature-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .launch-feature-row article {
      min-height: 190px;
      padding: 34px 34px 30px;
      border-right: 1px solid var(--border);
    }

    .launch-feature-row article:first-child { padding-left: 0; }
    .launch-feature-row article:last-child { border-right: 0; }

    .launch-feature-row span {
      display: block;
      margin-bottom: 46px;
      color: var(--accent);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .13em;
    }

    .launch-feature-row h3 {
      margin: 0 0 5px;
      font-family: var(--display);
      font-size: 2rem;
      text-transform: uppercase;
    }

    .launch-feature-row p {
      margin: 0;
      color: #737a71;
      font-size: .84rem;
    }

    .launch-final {
      position: relative;
      min-height: 470px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 75% 50%, rgba(25,206,207,.08), transparent 25rem),
        linear-gradient(110deg, #0d120c, #070907);
    }

    .launch-final::before {
      position: absolute;
      inset: 0;
      content: "";
      opacity: .2;
      background-image: linear-gradient(110deg, transparent 52%, rgba(255,255,255,.04) 52.1%, transparent 52.3%);
      background-size: 90px 100%;
    }

    .launch-final-mark {
      position: absolute;
      top: 50%;
      right: 8%;
      width: 440px;
      height: auto;
      opacity: .11;
      filter: drop-shadow(0 0 44px rgba(31,226,226,.4));
      transform: translateY(-50%);
    }

    .launch-final-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 60px;
    }

    .launch-final-inner .button { flex: 0 0 auto; }

    @media (max-width: 1100px) {
      .launch-layout {
        grid-template-columns: minmax(370px, .8fr) minmax(480px, 1.2fr);
        gap: 36px;
      }

      .launcher-stage { width: 650px; }
    }

    @media (max-width: 920px) {
      .launch-hero { min-height: auto; }

      .launch-layout {
        grid-template-columns: 1fr;
        gap: 64px;
        padding-top: 80px;
        padding-bottom: 105px;
      }

      .launch-copy { max-width: 680px; }

      .launcher-stage {
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
      }

      .launcher-window { transform: none; }
      .launcher-mark { right: -80px; }

      .launch-feature-row {
        grid-template-columns: 1fr;
      }

      .launch-feature-row article,
      .launch-feature-row article:first-child {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .launch-feature-row article:last-child { border-bottom: 0; }
      .launch-feature-row span { margin-bottom: 22px; }
    }

    @media (max-width: 620px) {
      .launch-layout {
        gap: 48px;
        padding-top: 62px;
        padding-bottom: 90px;
      }

      .launch-copy h1 {
        font-size: clamp(4.7rem, 22vw, 6.6rem);
      }

      .launch-lead { max-width: 430px; }

      .launch-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
      }

      .launch-download { width: 100%; }

      .launcher-window-bar {
        grid-template-columns: 1fr auto;
      }

      .launcher-dots { display: none; }
      .launcher-window-bar > span { justify-self: start; }
      .launcher-window > img { min-height: 260px; object-fit: cover; }
      .launcher-mark { display: none; }
      .launch-scroll-note { bottom: 20px; }

      .launch-features { padding-block: 82px; }
      .launch-section-title { margin-bottom: 44px; }

      .launch-section-title h2,
      .launch-final h2 {
        font-size: clamp(3.7rem, 17vw, 5.2rem);
      }

      .launch-final {
        min-height: 430px;
      }

      .launch-final-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 42px;
      }

      .launch-final-inner .button { width: 100%; }
      .launch-final-mark { right: -34%; width: 420px; }
    }

    /* Download — simple cover */
    .download-v3 {
      min-height: 100vh;
      background: #070907;
    }

    .download-v3 .container {
      width: min(1680px, calc(100% - 80px));
    }

    .download-v3 header {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      z-index: 10;
      background: linear-gradient(180deg, rgba(3,5,3,.8), transparent);
    }

    .download-v3 .nav-download {
      color: var(--accent-light);
    }

    .download-cover {
      position: relative;
      min-height: max(780px, 100svh);
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #4d4e49;
      isolation: isolate;
    }

    .download-cover-image {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: url("/download-smoke-background.png");
      background-position: center center;
      background-size: cover;
    }

    .download-cloud-layer {
      position: absolute;
      top: 0;
      z-index: 1;
      width: 200.15625%;
      height: 100%;
      pointer-events: none;
      opacity: .5;
      background: url("/download-smoke-clouds.png") 0 0 / 100% 100% no-repeat;
      will-change: transform;
    }

    .download-cloud-left {
      left: -12.5390625%;
      animation: download-cloud-left 60s linear infinite;
    }

    .download-cloud-right {
      left: -100.078125%;
      animation: download-cloud-right 50s linear infinite;
    }

    .download-gold-glow {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: url("/download-gold-glow.png") left bottom / cover no-repeat;
      will-change: opacity;
    }

    .download-gold-glow-slow {
      animation: download-gold-pulse 9.42478s linear infinite;
    }

    .download-gold-glow-fast {
      animation: download-gold-pulse 3.01593s linear infinite;
    }

    .download-smoke-canvas {
      position: absolute;
      inset: 0;
      z-index: 3;
      width: 100%;
      height: 100%;
      pointer-events: none;
      opacity: .42;
      mix-blend-mode: screen;
    }

    .download-soldiers {
      position: absolute;
      z-index: 4;
      right: -1.5vw;
      bottom: 105px;
      width: min(69vw, 1160px);
      height: auto;
      max-height: calc(100% - 105px);
      object-fit: contain;
      object-position: right bottom;
      pointer-events: none;
      opacity: .9;
      filter:
        grayscale(1)
        contrast(.96)
        brightness(.76)
        drop-shadow(-24px 28px 36px rgba(0,0,0,.58));
    }

    .download-cover::before {
      position: absolute;
      inset: 0;
      z-index: 5;
      content: "";
      background:
        linear-gradient(
          180deg,
          rgba(3,5,3,.34) 0%,
          transparent 34%,
          rgba(3,5,3,.06) 60%,
          rgba(3,5,3,.94) 100%
        );
    }

    .download-cover::after {
      position: absolute;
      inset: 0;
      z-index: 5;
      content: "";
      pointer-events: none;
      box-shadow: inset 0 0 150px rgba(0,0,0,.35);
    }

    @keyframes download-cloud-left {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-50%, 0, 0); }
    }

    @keyframes download-cloud-right {
      from { transform: translate3d(0, 0, 0) scaleX(-1); }
      to { transform: translate3d(50%, 0, 0) scaleX(-1); }
    }

    @keyframes download-gold-pulse {
      0%,
      100% { opacity: .5; }
      25% { opacity: .75; }
      75% { opacity: .25; }
    }

    .download-cover-content {
      position: relative;
      z-index: 6;
      padding-top: 112px;
      padding-bottom: 220px;
    }

    .download-cover-content h1 {
      max-width: 760px;
      margin: 18px 0 24px;
      font-family: var(--display);
      font-size: clamp(6rem, 9vw, 10rem);
      font-weight: 800;
      line-height: .75;
      letter-spacing: -.05em;
      text-transform: uppercase;
    }

    .download-cover-content h1 span {
      display: block;
      margin-top: .16em;
      color: var(--accent);
    }

    .download-cover-content > p:not(.eyebrow) {
      margin: 0 0 31px;
      color: #c3c8bf;
      font-size: 1.04rem;
    }

    .download-cover-button {
      min-width: 220px;
      min-height: 54px;
      padding-inline: 28px;
    }

    .download-cover-content small {
      display: block;
      margin-top: 17px;
      color: #858c81;
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .download-cover-content small span {
      margin-inline: 7px;
      color: #555c52;
    }

    .download-cover-steps {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 7;
      border-top: 1px solid rgba(255,255,255,.12);
      background: rgba(5,8,5,.72);
      backdrop-filter: blur(14px);
    }

    .download-cover-steps > .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }

    .download-cover-steps .container > div {
      min-height: 116px;
      display: flex;
      align-items: center;
      gap: 18px;
      border-right: 1px solid rgba(255,255,255,.1);
    }

    .download-cover-steps .container > div:not(:first-child) {
      padding-left: 34px;
    }

    .download-cover-steps .container > div:last-child {
      border-right: 0;
    }

    .download-cover-steps span {
      color: var(--accent);
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .12em;
    }

    .download-cover-steps strong {
      font-family: var(--display);
      font-size: 1.45rem;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    @media (max-width: 920px) {
      .download-v3 .container {
        width: min(100% - 40px, 1680px);
      }

      .download-cover-image {
        background-position: center;
      }

      .download-cover::before {
        background:
          radial-gradient(
            ellipse 74% 72% at 18% 48%,
            rgba(4,7,4,.7),
            rgba(4,7,4,.28) 58%,
            transparent 100%
          ),
          linear-gradient(180deg, rgba(3,5,3,.26), transparent 43%, rgba(3,5,3,.96) 100%);
      }

      .download-soldiers {
        right: -15vw;
        width: min(91vw, 930px);
        opacity: .72;
      }
    }

    @media (max-width: 620px) {
      .download-v3 .container {
        width: min(100% - 28px, 1680px);
      }

      .download-cover {
        min-height: max(700px, 100svh);
      }

      .download-cover-image {
        background-position: center;
      }

      .download-cover::before {
        background:
          radial-gradient(
            ellipse 94% 64% at 12% 45%,
            rgba(4,7,4,.82),
            rgba(4,7,4,.32) 64%,
            transparent 100%
          ),
          linear-gradient(180deg, rgba(3,5,3,.38), transparent 38%, rgba(3,5,3,.98) 100%);
      }

      .download-cloud-layer {
        opacity: .42;
      }

      .download-gold-glow {
        inset: 0;
        background-position: left bottom;
        background-size: cover;
      }

      .download-smoke-canvas { opacity: .5; }

      .download-soldiers {
        right: -68vw;
        bottom: 84px;
        width: 170vw;
        max-height: calc(100% - 84px);
        opacity: .57;
      }

      .download-cover-content {
        padding-top: 122px;
        padding-bottom: 170px;
      }

      .download-cover-content h1 {
        font-size: clamp(4.9rem, 22vw, 6.5rem);
      }

      .download-cover-content > p:not(.eyebrow) {
        max-width: 280px;
        font-size: .95rem;
      }

      .download-cover-button {
        width: 100%;
      }

      .download-cover-steps .container > div {
        min-height: 84px;
        gap: 9px;
        flex-direction: column;
        justify-content: center;
      }

      .download-cover-steps .container > div:not(:first-child) {
        padding-left: 0;
      }

      .download-cover-steps strong {
        font-size: 1.05rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .download-cloud-layer { animation: none; }
      .download-gold-glow { animation: none; opacity: .34; }
    }
