*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0c1117;
  --panel-2: #111821;
  --line: #2b3642;
  --text: #f3f6fb;
  --muted: #9aa6b2;
  --gold: #ffcc00;
  --green: #00d064;
  --blue: #2f7bff;
  --red: #ff2d55;
}

html {
  scroll-behavior: smooth;
}

body.landing {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-wordmark {
  width: clamp(116px, 14vw, 176px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.header-cta {
  background: var(--gold);
  color: #080a0e;
  min-width: 96px;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  padding: 122px clamp(20px, 5vw, 74px) 58px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  border-bottom: 1px solid rgba(255, 204, 0, 0.28);
  background: #070a0f;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 72px 0 auto;
  height: 1px;
  background: rgba(255, 204, 0, 0.24);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.92;
  font-weight: 1000;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 1000;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1;
  font-weight: 950;
}

.hero-copy {
  max-width: 620px;
  color: #d6dde7;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.34;
  font-weight: 700;
}

.launch-note {
  display: inline-block;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 204, 0, 0.55);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 204, 0, 0.1);
  color: var(--gold);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 950;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  justify-self: end;
  width: 100%;
  max-width: min(900px, calc((100svh - 210px) * 1.25));
  min-width: 0;
}

.hero-shot-row {
  display: contents;
}

.hero-shot-main {
  grid-column: 1 / 3;
}

.hero-shot,
.hero-shot-main,
.hero-shot-row .hero-shot {
  height: auto;
  aspect-ratio: 16 / 9;
}

.hero-shot-row .hero-shot:first-child {
  grid-column: 1;
}

.hero-shot-row .hero-shot:last-child {
  grid-column: 2;
}

@supports not (display: contents) {
  .hero-shot-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1 / 3;
  }
}

.hero-shot-row {
  gap: 14px;
}

.hero-shot {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0b1016;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  object-fit: cover;
}

.hero-actions,
.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button.primary {
  background: var(--gold);
  color: #080a0e;
}

.button.secondary {
  border-color: var(--gold);
  background: rgba(255, 204, 0, 0.12);
  color: var(--gold);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(11, 16, 22, 0.9);
  color: var(--text);
}

.button.discord {
  background: var(--blue);
  color: white;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.platform-note {
  margin: 18px 0 0;
  color: #bdc6d0;
  font-weight: 800;
}

.sale-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: var(--gold);
  color: #080a0e;
  font-weight: 900;
  text-align: center;
}

.sale-strip a {
  border-bottom: 2px solid #080a0e;
}

.section,
.feature-grid,
.entitlement,
.final-cta,
.site-footer {
  padding-right: clamp(18px, 5vw, 74px);
  padding-left: clamp(18px, 5vw, 74px);
}

.section {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.intro {
  max-width: 1120px;
}

.intro p,
.split p,
.platform-band p,
.entitlement p,
.detail-grid p,
.feature-card p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(54px, 7vw, 96px);
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card:nth-child(2) {
  border-top-color: var(--green);
}

.feature-card:nth-child(3) {
  border-top-color: var(--red);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card div {
  padding: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080c11;
}

.split-image {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #d9e0e8;
  font-weight: 850;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  background: var(--green);
}

.platform-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.platform-actions {
  max-width: 520px;
  justify-content: flex-end;
}

.entitlement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(0, 208, 100, 0.5);
  border-bottom: 1px solid rgba(0, 208, 100, 0.5);
  background: #06120d;
}

.entitlement > div {
  max-width: 860px;
}

.entitlement h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.detail-grid > div {
  border-top: 4px solid var(--blue);
  background: var(--panel-2);
  padding: 24px;
}

.detail-grid > div:nth-child(2) {
  border-top-color: var(--gold);
}

.detail-grid > div:nth-child(3) {
  border-top-color: var(--red);
}

.final-cta {
  padding-top: clamp(58px, 8vw, 110px);
  padding-bottom: clamp(58px, 8vw, 110px);
  border-top: 1px solid rgba(255, 204, 0, 0.24);
  background: #070a0f;
}

.final-cta h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 88px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero-content {
    max-width: 760px;
  }

  .feature-grid,
  .detail-grid,
  .split,
  .platform-band {
    grid-template-columns: 1fr;
  }

  .platform-actions {
    justify-content: flex-start;
  }

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

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

  .brand-wordmark {
    width: 112px;
  }

  .header-cta {
    min-width: 74px;
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding: 94px 18px 42px;
  }

  .hero::before {
    inset: 64px 0 auto;
  }

  .hero-media,
  .hero-shot-row {
    gap: 10px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 0;
    max-width: none;
  }

  .hero-shot-main,
  .hero-shot-row .hero-shot:first-child,
  .hero-shot-row .hero-shot:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-shot,
  .hero-shot-main,
  .hero-shot-row .hero-shot {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-shot-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .platform-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}
