:root {
  --paper: #f7f4ec;
  --ink: #182126;
  --muted: #65727a;
  --line: #cfd6d3;
  --panel: #ffffff;
  --rail: #26343b;
  --signal: #c95d2e;
  --aqua: #1f7f78;
  --field: #e8eee9;
  --shadow: 0 18px 60px rgba(24, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(24, 33, 38, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(24, 33, 38, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  background: var(--field);
}

.brand-mark::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 3px solid var(--signal);
  border-left-color: var(--aqua);
  transform: rotate(18deg);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

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

.hero {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: stretch;
}

.eyebrow {
  color: var(--aqua);
  font: 800 12px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.92;
  max-width: 850px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

h3 {
  font-size: 18px;
}

.lede {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 680px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

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

.status-board {
  background: var(--rail);
  color: #eef4f0;
  padding: 22px;
  min-height: 380px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.status-board .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.status-cell {
  background: var(--rail);
  padding: 18px;
}

.status-cell strong {
  display: block;
  color: #fff;
  font-size: 28px;
  margin-bottom: 4px;
}

.status-cell span {
  color: #a9bbb8;
  font: 700 11px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
}

.signal-strip {
  height: 12px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 0.8fr;
  gap: 5px;
}

.signal-strip span:nth-child(1) { background: var(--signal); }
.signal-strip span:nth-child(2) { background: #f0b35a; }
.signal-strip span:nth-child(3) { background: var(--aqua); }
.signal-strip span:nth-child(4) { background: #eef4f0; }

.section {
  padding: 52px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
}

.product-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.product-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 10px 0 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  border: 1px solid var(--line);
  background: var(--field);
  padding: 5px 8px;
  font: 800 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--rail);
  text-transform: uppercase;
}

.product-hero {
  padding: 54px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.product-title-lockup {
  display: grid;
  grid-template-columns: clamp(180px, 18vw, 260px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.product-title-lockup img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(24, 33, 38, 0.22));
}

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

.proof-row div {
  background: rgba(255, 255, 255, 0.74);
  padding: 12px;
}

.proof-row strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font: 800 11px/1.25 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px;
}

.product-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.price-band {
  background: var(--ink);
  color: var(--paper);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 168px;
}

.clip {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
  min-height: 150px;
}

.media-card {
  padding: 8px;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--rail);
  border: 1px solid var(--line);
}

.media-card h3 {
  padding: 12px 8px 0;
}

.media-card p {
  padding: 0 8px 6px;
}

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

.feature p,
.clip p,
.fine-print,
.release-list p {
  color: var(--muted);
  line-height: 1.55;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 8px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 2px 2px;
}

.release-list {
  display: grid;
  gap: 12px;
}

.release {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px;
}

.footer {
  padding: 38px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 850px) {
  .hero,
  .product-hero,
  .product-card,
  .price-band {
    grid-template-columns: 1fr;
  }

  .product-card img {
    width: 120px;
    height: 120px;
  }

  .product-title-lockup {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .clip-grid,
  .launcher-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}
