:root {
  color-scheme: dark;
  --black: #070806;
  --ink: #10140f;
  --panel: #151a13;
  --panel-2: #202719;
  --paper: #f3efe2;
  --muted: #b7b9aa;
  --green: #00b868;
  --green-dark: #006d41;
  --gold: #d7ad4a;
  --orange: #f0782f;
  --red: #bd2f29;
  --blue: #2a74b8;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Arial Narrow", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(7, 8, 6, 0.2), var(--black) 720px),
    radial-gradient(circle at 20% 10%, rgba(0, 184, 104, 0.14), transparent 34%),
    var(--black);
  color: var(--paper);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 42px);
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  min-width: 0;
}

.logo-lockup {
  display: grid;
  width: 190px;
  line-height: 1;
}

.logo-script {
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.1rem;
  font-weight: 700;
  transform: skew(-8deg);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.logo-title {
  color: #f5f1e7;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.22rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 0 #8f8b81,
    0 4px 0 rgba(0, 0, 0, 0.46);
}

.logo-title sup {
  margin-left: 4px;
  color: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 0.46em;
  vertical-align: top;
  text-shadow: none;
}

.logo-edition {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #f5f1e7;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.logo-edition b {
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.94;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(243, 239, 226, 0.82);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.header-cta {
  background: rgba(243, 239, 226, 0.08);
}

.btn-primary {
  color: #071008;
  background: linear-gradient(180deg, #21e98e, var(--green));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 32px rgba(0, 184, 104, 0.28);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.34);
  border-color: rgba(215, 173, 74, 0.45);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(18px, 5vw, 60px) 78px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.9), rgba(7, 8, 6, 0.54) 50%, rgba(7, 8, 6, 0.12)),
    linear-gradient(180deg, rgba(7, 8, 6, 0.12), rgba(7, 8, 6, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  text-wrap: balance;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(243, 239, 226, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 60px);
  bottom: 44px;
  z-index: 3;
  width: min(360px, 32vw);
  padding: 20px;
  border: 1px solid rgba(215, 173, 74, 0.32);
  border-radius: 8px;
  background: rgba(12, 16, 11, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.08;
}

.hero-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 36px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
}

p {
  line-height: 1.65;
}

.manifest-grid,
.card-types,
.leader-strip {
  display: grid;
  gap: 18px;
}

.manifest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.type-card,
.leader {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #101007;
  font-size: 1.65rem;
  font-weight: 950;
}

.feature-card p,
.type-card p,
.leader p,
.why-copy p,
.countdown-box p,
.final-cta p {
  color: var(--muted);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.why-copy {
  max-width: 560px;
}

.poster-frame {
  border: 1px solid rgba(215, 173, 74, 0.25);
  border-radius: 8px;
  overflow: hidden;
  transform: rotate(-1deg);
  box-shadow: var(--shadow);
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-types {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.type-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 238px;
  padding: 18px;
  overflow: hidden;
}

.type-card img {
  width: 138px;
  height: 188px;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.type-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.type-crisis {
  border-color: rgba(240, 120, 47, 0.34);
}

.type-celeb {
  border-color: rgba(42, 116, 184, 0.34);
}

.type-resource {
  border-color: rgba(0, 184, 104, 0.34);
}

.type-edict {
  border-color: rgba(215, 173, 74, 0.34);
}

.leader-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.leader {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 18px;
}

.leader::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background: linear-gradient(180deg, transparent 28%, rgba(7, 8, 6, 0.96));
}

.leader img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.leader h3,
.leader p {
  position: relative;
  z-index: 1;
}

.leader h3 {
  margin-top: 300px;
}

.leader p {
  margin-bottom: 0;
}

.north {
  border-color: rgba(42, 116, 184, 0.5);
}

.russia {
  border-color: rgba(189, 47, 41, 0.5);
}

.south {
  border-color: rgba(0, 184, 104, 0.5);
}

.asia {
  border-color: rgba(215, 173, 74, 0.5);
}

.round {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.round-art {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #0f120d;
  box-shadow: var(--shadow);
}

.round-art img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.9;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--panel-2);
  color: var(--gold);
  font-weight: 950;
  grid-row: 1 / span 2;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps strong {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.steps span {
  color: var(--muted);
  line-height: 1.5;
}

.countdown {
  max-width: none;
  padding-left: clamp(18px, 4vw, 42px);
  padding-right: clamp(18px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.92), rgba(7, 8, 6, 0.72)),
    url("assets/web/crisis-burst.png") right 5% center / auto 92% no-repeat,
    #11130f;
  border-block: 1px solid var(--line);
}

.countdown-box {
  max-width: var(--max);
  margin: 0 auto;
}

.countdown-box p {
  max-width: 680px;
  font-size: 1.08rem;
}

.score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.score-row span {
  padding: 12px 14px;
  border: 1px solid rgba(215, 173, 74, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 8px;
}

.gallery-track img {
  width: 100%;
  min-width: 150px;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 36px) 110px;
}

.signup {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(0, 184, 104, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.signup label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.signup input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--paper);
  padding: 0 14px;
  font: inherit;
}

.signup input:focus {
  outline: 2px solid rgba(0, 184, 104, 0.7);
  outline-offset: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--paper);
}

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

  .nav {
    display: none;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 440px);
    margin-top: 34px;
  }

  .manifest-grid,
  .card-types,
  .why,
  .round,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .leader-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  .hero-content {
    max-width: 760px;
  }

  h1 {
    max-width: 760px;
    font-size: 6rem;
  }
}

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

  .header-cta {
    display: none;
  }

  .logo-lockup {
    width: 142px;
  }

  .logo-script {
    font-size: 0.82rem;
  }

  .logo-title {
    font-size: 1.66rem;
  }

  .logo-edition {
    font-size: 0.58rem;
    gap: 4px;
  }

  .hero {
    min-height: 92svh;
    padding: 94px 16px 40px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 6, 0.95), rgba(7, 8, 6, 0.74)),
      linear-gradient(180deg, rgba(7, 8, 6, 0.1), rgba(7, 8, 6, 0.94));
  }

  .hero-copy {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .type-card {
    grid-template-columns: 96px 1fr;
    min-height: 180px;
    padding: 14px;
  }

  .type-card img {
    width: 96px;
    height: 132px;
  }

  .leader-strip {
    grid-template-columns: 1fr;
  }

  .leader {
    min-height: 390px;
  }

  .leader h3 {
    margin-top: 260px;
  }

  .round-art,
  .round-art img {
    min-height: 320px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }

  .steps li::before {
    width: 42px;
    height: 42px;
  }

  .steps strong,
  .steps span {
    padding-left: 0;
  }

  .site-footer {
    display: grid;
  }
}
