:root {
  color-scheme: dark;
  --ink: #f7f5ef;
  --muted: #b8bbb8;
  --surface: #101311;
  --surface-raised: #171b18;
  --line: #3d433f;
  --gold: #d9a72d;
  --blue: #42a5ff;
  --green: #45d679;
  --coral: #ff7666;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #050605;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

.site-header {
  min-height: 64px;
  padding: 0 max(22px, 4vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(5, 6, 5, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 20px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

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

.site-header nav a:hover,
.site-header nav a:focus-visible,
footer a:hover,
footer a:focus-visible { color: var(--blue); }

main { overflow: hidden; }

.hero {
  min-height: min(760px, calc(100vh - 64px));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 72px max(24px, 7vw);
  isolation: isolate;
}

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

.hero-art {
  object-fit: cover;
  object-position: center 24%;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 5, 4, 0.96) 0%, rgba(4, 5, 4, 0.78) 48%, rgba(4, 5, 4, 0.28) 100%), linear-gradient(0deg, rgba(4, 5, 4, 0.84), transparent 55%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  margin: 0 0 18px;
  max-width: 720px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 640;
}

.hero-copy > p:not(.eyebrow):not(.lead):not(.release-note) {
  max-width: 660px;
  color: #d9dcd9;
  font-size: 20px;
  line-height: 1.5;
}

.store-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid #f2c750;
  border-radius: 6px;
  background: #d9a72d;
  color: #11130f;
  font-weight: 780;
  text-decoration: none;
}

.store-cta:hover,
.store-cta:focus-visible { background: #f0c54e; }

.release-note {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip span {
  min-width: 0;
  padding: 24px 18px;
  background: #0c0f0d;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
}

.proof-strip strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 30px;
}

.feature-band,
.value-band,
.video-band {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(280px, 520px);
  justify-content: center;
  align-items: center;
  gap: 7vw;
  padding: 84px max(24px, 7vw);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.feature-band.reverse { background: #0a0d0b; }

.feature-band.reverse .feature-copy { order: 2; }
.feature-band.reverse img { order: 1; }

.feature-band img,
.value-band img,
.video-band video {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 680px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-raised);
}

.feature-copy,
.video-copy,
.value-band > div { min-width: 0; }

.feature-copy h2,
.video-copy h2,
.value-band h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.feature-copy p:not(.eyebrow),
.video-copy p:not(.eyebrow),
.value-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.video-band { background: #11150f; }
.video-band .eyebrow { color: var(--green); }
.value-band { background: #0d1015; }
.value-band .eyebrow { color: var(--coral); }

footer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 30px max(24px, 7vw);
  color: var(--muted);
  background: #050605;
}

footer span { margin-right: auto; }

.press-main {
  overflow: visible;
  background: #080a08;
}

.press-hero {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  padding: 72px max(24px, 10vw);
}

.press-hero img,
.press-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.press-hero img {
  z-index: -2;
  object-fit: cover;
  object-position: center 30%;
}

.press-hero::after {
  content: "";
  z-index: -1;
  background: linear-gradient(0deg, rgba(4, 5, 4, 0.98), rgba(4, 5, 4, 0.28));
}

.press-hero-copy { max-width: 840px; }

.press-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.94;
}

.press-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #d9dcd9;
  font-size: 22px;
  line-height: 1.5;
}

.press-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.press-content h2 {
  margin: 54px 0 16px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
}

.press-content p,
.press-content li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.press-content strong { color: var(--ink); }

.press-download {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #f2c750;
  border-radius: 6px;
  background: var(--gold);
  color: #11130f;
  font-weight: 780;
  text-decoration: none;
}

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

.press-images img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 820px) {
  .site-header nav a:not(:last-child) { display: none; }
  .hero {
    min-height: 720px;
    padding-bottom: 48px;
  }
  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 5, 4, 0.98) 0%, rgba(4, 5, 4, 0.72) 62%, rgba(4, 5, 4, 0.28) 100%);
  }
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-band,
  .value-band,
  .video-band {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .feature-band.reverse .feature-copy,
  .feature-band.reverse img { order: initial; }
  .feature-band img,
  .value-band img,
  .video-band video { margin: 0 auto; }
  .press-images { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
