:root {
  color-scheme: dark;
  --bg: #050707;
  --ink: #f6f1e6;
  --muted: #a6b2ac;
  --line: rgba(246, 241, 230, 0.16);
  --panel: rgba(18, 27, 25, 0.78);
  --accent: #63d6b3;
  --accent-strong: #f0c66f;
  --shadow: rgba(0, 0, 0, 0.32);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(99, 214, 179, 0.16), transparent 32rem),
    linear-gradient(150deg, #050707 0%, #0e1514 48%, #17130b 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

code {
  color: #f9ddb0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 34px 24px 44px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-bottom: 28px;
}

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

.eyebrow,
.record-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 8.2vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.lede {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.primary-action {
  border-color: transparent;
  background: var(--accent);
  color: #05241d;
}

.secondary-action {
  background: rgba(246, 241, 230, 0.07);
}

.poster-stack {
  position: relative;
  min-height: 520px;
}

.poster {
  position: absolute;
  width: min(48%, 280px);
  object-fit: cover;
  border: 1px solid rgba(246, 241, 230, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 80px var(--shadow);
}

.poster-a {
  top: 42px;
  left: 8%;
  aspect-ratio: 312 / 460;
  transform: rotate(-7deg);
}

.poster-b {
  right: 7%;
  bottom: 42px;
  width: min(58%, 360px);
  aspect-ratio: 1003 / 650;
  transform: rotate(5deg);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics div {
  min-height: 132px;
  background: rgba(8, 13, 12, 0.82);
  padding: 22px;
}

.metrics strong {
  display: block;
  color: var(--accent-strong);
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 34px;
}

.poster-record,
.deployment-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.poster-record {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.poster-record img {
  width: 132px;
  height: 190px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
}

.poster-record p {
  color: var(--muted);
  line-height: 1.58;
}

.deployment-panel {
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
}

.deployment-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .page-shell {
    padding: 22px 16px 34px;
  }

  .hero,
  .poster-grid,
  .deployment-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 18px;
  }

  .poster-stack {
    min-height: 390px;
  }

  .poster-a {
    left: 0;
  }

  .poster-b {
    right: 0;
  }

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

  .poster-record {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .poster-record img {
    width: 112px;
    height: 164px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.15rem;
  }

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

  .poster-record {
    grid-template-columns: 1fr;
  }

  .poster-record img {
    width: min(210px, 100%);
    height: auto;
  }
}
