:root {
  color-scheme: dark;
  --ink: #f7efe2;
  --muted: #c7b8a6;
  --subtle: #8f8173;
  --coal: #0d1014;
  --panel: #18181a;
  --line: rgba(247, 239, 226, 0.17);
  --rust: #d34f2f;
  --amber: #f4b35f;
  --cyan: #8fe7e0;
  --green: #86d17c;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: var(--coal);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body > main {
  flex: 1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(13, 16, 20, 0.72);
  border-bottom: 1px solid rgba(247, 239, 226, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span {
  white-space: nowrap;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.site-header nav a,
.site-footer nav a,
.text-link {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button.primary {
  background: var(--amber);
  color: #1b1007;
  box-shadow: 0 12px 34px rgba(244, 179, 95, 0.2);
}

.button.secondary {
  border-color: rgba(247, 239, 226, 0.3);
  color: var(--ink);
  background: rgba(13, 16, 20, 0.48);
}

.google-play-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.google-play-mark {
  position: relative;
  width: 17px;
  height: 18px;
  flex: 0 0 17px;
  overflow: hidden;
  clip-path: polygon(5% 0, 100% 50%, 5% 100%);
  background: conic-gradient(from 43deg at 45% 50%, #fbbc04 0 25%, #ea4335 0 50%, #4285f4 0 75%, #34a853 0);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
}

.google-play-mark::after {
  content: "";
  position: absolute;
  inset: 3px 5px 3px 2px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 26% 50%);
  background: rgba(255, 255, 255, .76);
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 136px clamp(18px, 6vw, 72px) 42px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 16, 20, 0.95) 0%, rgba(13, 16, 20, 0.72) 38%, rgba(13, 16, 20, 0.24) 78%),
    linear-gradient(0deg, rgba(13, 16, 20, 0.98) 0%, rgba(13, 16, 20, 0) 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 14vh;
  z-index: -1;
  background: linear-gradient(180deg, rgba(13, 16, 20, 0), var(--coal));
}

.hero-content {
  width: min(940px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 54px 0 0;
}

.hero-stats div,
.loop-grid article,
.feature-list article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 19, 19, 0.66);
  box-shadow: 0 18px 44px var(--shadow);
}

.hero-stats div {
  padding: 16px;
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  color: var(--ink);
  font-weight: 900;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.intro,
.split-section,
.feature-band,
.seo-section,
.faq-section {
  padding: clamp(72px, 12vw, 132px) clamp(18px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 920px);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.intro p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3.3vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: #11161a;
}

.split-section > div:first-child {
  position: sticky;
  top: 112px;
}

.split-section p,
.feature-copy p,
.seo-section p,
.faq-list p {
  color: var(--muted);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.loop-grid article,
.feature-list article {
  padding: 22px;
}

.loop-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--amber);
  font-weight: 950;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(13, 16, 20, 0.96), rgba(13, 16, 20, 0.74)),
    url("/assets/hero.webp") center / cover scroll;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article:nth-child(1) {
  border-left: 4px solid var(--rust);
}

.feature-list article:nth-child(2) {
  border-left: 4px solid var(--cyan);
}

.feature-list article:nth-child(3) {
  border-left: 4px solid var(--green);
}

.seo-section {
  background: #f7efe2;
  color: #141110;
}

.seo-section .eyebrow {
  color: #8f311f;
}

.keyword-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 58px);
}

.keyword-columns p {
  color: #42352d;
  font-size: 1.08rem;
}

.faq-section {
  background: #0d1014;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: #090b0e;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer .legal-note {
  color: var(--subtle);
  font-size: 0.85rem;
}

.legal-page {
  padding: 132px clamp(18px, 6vw, 72px) 96px;
}

.legal-hero,
.legal-content {
  max-width: 860px;
}

.legal-hero {
  margin-bottom: 54px;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.legal-hero p,
.legal-content p {
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 10px;
}

.legal-content h2 {
  margin: 28px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(560px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(247, 239, 226, 0.22);
  border-radius: 8px;
  background: rgba(13, 16, 20, 0.94);
  box-shadow: 0 18px 44px var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-notice a {
  color: var(--ink);
  font-weight: 800;
}

.cookie-notice button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: var(--amber);
  color: #1b1007;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.nav-devlog {
  display: none;
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 800;
}

@media (min-width: 901px) {
  .nav-devlog {
    display: inline-flex;
  }
}

.nav-devlog:hover {
  color: var(--ink);
}

.how-to-play-section {
  padding: clamp(64px, 9vw, 104px) clamp(18px, 6vw, 72px);
  background: #11161a;
}

.how-to-play-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  align-items: end;
}

.how-to-play-heading h2 {
  margin-bottom: 0;
}

.how-to-play-heading > p,
.play-option > p {
  color: var(--muted);
}

.how-to-play-heading > p {
  margin: 0;
}

.play-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.play-option {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 19, 19, 0.66);
}

.play-option-primary {
  border-color: rgba(244, 179, 95, 0.42);
  background: linear-gradient(145deg, rgba(244, 179, 95, 0.1), rgba(20, 19, 19, 0.66) 55%);
}

.play-option-number {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.play-option h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
}

.play-option > p {
  margin: 0 0 20px;
}

.play-option-link,
.play-option-actions a {
  color: var(--ink);
  font-weight: 850;
  text-decoration-color: rgba(244, 179, 95, 0.58);
  text-underline-offset: 4px;
}

.play-option-link {
  margin-top: auto;
  overflow-wrap: anywhere;
}

.play-option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
}

.install-steps {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.install-steps summary {
  color: var(--cyan);
  font-weight: 850;
  cursor: pointer;
}

.install-steps ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.install-steps strong {
  color: var(--ink);
}

.community-section {
  padding: clamp(72px, 12vw, 132px) clamp(18px, 6vw, 72px);
  background: var(--coal);
}

.community-section p {
  color: var(--muted);
  max-width: 680px;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.community-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(247, 239, 226, 0.3);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  background: rgba(13, 16, 20, 0.48);
}

.community-links a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .intro,
  .split-section,
  .feature-band,
  .keyword-columns,
  .how-to-play-heading,
  .play-options {
    grid-template-columns: 1fr;
  }

  .split-section > div:first-child {
    position: static;
  }

  .hero-stats,
  .loop-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    background-attachment: scroll;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 100svh;
    padding: 116px 16px 30px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice button {
    width: 100%;
  }
}

/* Homepage hero */
.hero {
  min-height: 88svh;
}

.hero-content {
  width: min(680px, 100%);
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.125rem, 4.5vw, 2.625rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.hero-note {
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 0.9rem;
}

.phase-one-section,
.roadmap-section {
  padding: clamp(76px, 10vw, 128px) clamp(18px, 6vw, 72px);
}

.phase-one-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 5%, rgba(211, 79, 47, 0.17), transparent 28%),
    radial-gradient(circle at 8% 45%, rgba(143, 231, 224, 0.06), transparent 22%),
    #0b0e11;
}

.phase-one-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(black, transparent 75%);
}

.phase-one-header {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(30px, 7vw, 100px);
  align-items: end;
  max-width: 1320px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.phase-one-header h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6.4vw, 3.2rem);
  line-height: .92;
}

.phase-one-lead {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.feature-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: 1320px;
  margin: auto;
}

.system-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(247,239,226,.14);
  border-radius: 14px;
  background: #15181b;
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.system-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 10%, rgba(7,9,11,.28) 48%, rgba(7,9,11,.98));
}

.system-card-copy {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 38px);
}

.system-index,
.market-label {
  color: var(--amber);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.system-card h3 {
  max-width: 580px;
  margin: 10px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.system-card p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
}

.system-card-map {
  grid-column: span 8;
  min-height: 620px;
  display: flex;
  align-items: end;
}

.system-card-map img { object-position: 54% center; }
.system-card-map .system-card-copy { max-width: 780px; }

.system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.system-tags li {
  border: 1px solid rgba(247,239,226,.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(13,16,20,.62);
  font-size: .75rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.system-card-market {
  grid-column: span 4;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at 70% 20%, rgba(244,179,95,.18), transparent 32%), #161513;
}

.market-visual {
  position: relative;
  min-height: 310px;
  margin: 28px 28px 0;
  border: 1px solid rgba(244,179,95,.24);
  border-radius: 10px;
  padding: 22px;
  background: repeating-linear-gradient(0deg, rgba(244,179,95,.04) 0 1px, transparent 1px 38px), rgba(7,9,11,.54);
}

.market-bars {
  position: absolute;
  inset: 70px 22px 58px;
  display: flex;
  align-items: end;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.market-bars i {
  flex: 1;
  height: 44%;
  background: linear-gradient(#f4b35f, #a6462d);
}

.market-bars i:nth-child(2) { height: 62%; }
.market-bars i:nth-child(3) { height: 82%; }
.market-bars i:nth-child(4) { height: 100%; }
.market-bars i:nth-child(5) { height: 68%; }
.market-bars i:nth-child(6) { height: 51%; }
.market-bars i:nth-child(7) { height: 56%; }

.market-price {
  position: absolute;
  right: 22px;
  bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--subtle);
  font-size: .65rem;
  text-transform: uppercase;
}

.market-price strong {
  color: var(--amber);
  font-size: 1.8rem;
}

.system-card-storm {
  grid-column: span 4;
  min-height: 590px;
  display: flex;
  align-items: end;
}

.storm-warning {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  border: 1px solid rgba(255,205,175,.3);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(80,18,10,.76);
  color: #ffe5d7;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.storm-warning span,
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #ff704d;
  box-shadow: 0 0 12px #ff704d;
}

.system-card-contracts {
  grid-column: span 8;
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  background: radial-gradient(circle at 20% 10%, rgba(143,231,224,.11), transparent 32%), #12171b;
}

.contract-console {
  margin: clamp(24px,4vw,46px) 0 clamp(24px,4vw,46px) clamp(24px,4vw,46px);
  border: 1px solid rgba(143,231,224,.22);
  border-radius: 10px;
  padding: 18px;
  background: rgba(6,10,13,.74);
  box-shadow: 0 20px 50px rgba(0,0,0,.32);
}

.console-head,
.console-contract {
  display: flex;
  align-items: center;
}

.console-head {
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-head > span { color: var(--cyan); font-size: .6rem; }
.live-dot { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }

.console-contract {
  gap: 12px;
  margin-top: 8px;
  border: 1px solid rgba(247,239,226,.1);
  border-radius: 7px;
  padding: 12px;
  background: rgba(247,239,226,.035);
}

.contract-size {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #287a73;
  font-weight: 950;
}

.contract-size-large { background: #744aa7; }
.console-contract div { min-width: 0; }
.console-contract strong, .console-contract small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.console-contract strong { font-size: .76rem; }
.console-contract small { color: var(--subtle); font-size: .63rem; }
.console-contract b { margin-left: auto; color: var(--amber); font-size: .56rem; }

.console-standings {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 8px;
  align-items: end;
  margin-top: 22px;
  color: var(--subtle);
  font-size: .62rem;
  text-transform: uppercase;
}

.console-standings i { height: 12px; border-radius: 3px; background: rgba(143,231,224,.18); }
.console-standings i:nth-of-type(2) { height: 20px; }
.console-standings i:nth-of-type(3) { height: 29px; background: rgba(143,231,224,.4); }
.console-standings i:nth-of-type(4) { height: 17px; }

.system-card-finale {
  grid-column: span 12;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  background: radial-gradient(circle at 18% 50%, rgba(211,79,47,.2), transparent 33%), #151414;
}

.phase-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding: clamp(30px,5vw,64px);
}

.phase-stats div {
  display: grid;
  align-content: center;
  min-height: 150px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.phase-stats div:last-child { border: 0; }
.phase-stats strong { color: var(--amber); font-size: clamp(2.7rem,5vw,5rem); line-height: 1; }
.phase-stats span { color: var(--subtle); font-size: .65rem; text-transform: uppercase; }

.roadmap-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(42px,8vw,110px);
  background: linear-gradient(110deg, rgba(211,79,47,.1), transparent 34%), #0d1014;
}

.roadmap-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.roadmap-intro h2 { font-size: clamp(2.6rem,5.4vw,3rem); line-height: .94; }
.roadmap-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.roadmap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.phase-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px,4vw,42px);
  background: #17191c;
  box-shadow: 0 24px 64px rgba(0,0,0,.26);
}

.phase-card-now { border-color: rgba(134,209,124,.34); background: linear-gradient(135deg,rgba(134,209,124,.08),transparent 45%),#17191c; }
.phase-card-next { border-style: dashed; background: linear-gradient(135deg,rgba(143,231,224,.07),transparent 45%),#121518; }

.phase-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.phase-card-head span { color: var(--amber); font-size: .75rem; font-weight: 950; }
.phase-card-head strong { font-size: .84rem; text-transform: uppercase; }
.phase-card-head small { border-radius: 999px; padding: 5px 9px; background: rgba(134,209,124,.12); color: var(--green); font-size: .62rem; font-weight: 900; text-transform: uppercase; }
.phase-card-next .phase-card-head small { background: rgba(143,231,224,.1); color: var(--cyan); }
.phase-card h3 { font-size: clamp(1.55rem,3vw,2.25rem); }

.phase-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.phase-card li::before { content: "+"; margin-right: 10px; color: var(--amber); font-weight: 900; }

.support-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  color: var(--amber);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.support-gate i { font-size: 1.1rem; font-style: normal; }
.roadmap-note { margin: 20px 4px 0; color: var(--subtle); font-size: .82rem; }

@media (max-width: 1050px) {
  .phase-one-header,
  .roadmap-section { grid-template-columns: 1fr; }
  .roadmap-intro { position: static; }
  .system-card-map,
  .system-card-contracts { grid-column: span 12; }
  .system-card-market,
  .system-card-storm { grid-column: span 6; }
}

@media (max-width: 720px) {
  .phase-one-section,
  .roadmap-section { padding-inline: 14px; }
  .feature-mosaic { gap: 12px; }
  .system-card-map,
  .system-card-market,
  .system-card-storm,
  .system-card-contracts,
  .system-card-finale { grid-column: span 12; }
  .system-card-map,
  .system-card-market,
  .system-card-storm { min-height: 510px; }
  .system-card-contracts,
  .system-card-finale { grid-template-columns: 1fr; }
  .contract-console { margin: 22px 22px 0; }
  .system-card-contracts .system-card-copy { padding-top: 14px; }
  .phase-stats { padding-bottom: 0; }
}

@media (max-width: 580px) {
  .hero { min-height: 88svh; }
  .hero h1 { font-size: clamp(1.75rem,8vw,2rem); }
  .phase-one-header h2,
  .roadmap-intro h2 { font-size: clamp(2.35rem,12vw,3.7rem); }
  .console-contract b { display: none; }
  .phase-stats { padding: 28px 16px 0; }
  .phase-stats div { min-height: 100px; }
  .phase-stats strong { font-size: 2.6rem; }
  .phase-stats span { font-size: .55rem; }
  .phase-card-head { grid-template-columns: auto 1fr; }
  .phase-card-head small { grid-column: 1 / -1; width: fit-content; }
  .roadmap-actions .button { width: 100%; }
}
