:root {
  color-scheme: light;
  --ink: #111512;
  --muted: #4c544e;
  --paper: #f8faf7;
  --panel: #ffffff;
  --line: #c8d2c8;
  --field: #edf4ee;
  --signal: #12a150;
  --signal-deep: #087337;
  --caution: #d64b2a;
  --electric: #155cff;
  --shadow: 0 24px 80px rgba(17, 21, 18, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(17, 21, 18, 0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(17, 21, 18, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(17, 21, 18, 0.12);
  background: rgba(248, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--signal);
}

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

.site-nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 9px 12px;
}

main {
  min-height: calc(100vh - 150px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(28px, 4vw, 56px);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--signal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 28px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--signal);
}

.button-primary:hover {
  transform: translate(-1px, -1px);
  box-shadow: 8px 8px 0 var(--signal);
}

.product-visual {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(17, 21, 18, 0.22);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.product-visual figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  list-style: none;
}

.status-strip li {
  min-height: 66px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--field);
  padding: 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 5vw, 72px);
}

.content-card {
  min-height: 230px;
  border: 1px solid rgba(17, 21, 18, 0.14);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.content-card h2,
.waitlist-panel h2 {
  margin: 0 0 12px;
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0;
}

.content-card p,
.waitlist-panel p {
  margin: 0;
  color: var(--muted);
}

.waitlist-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 5vw, 72px);
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: #e6f7ea;
  padding: clamp(22px, 4vw, 36px);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(17, 21, 18, 0.12);
  background: var(--ink);
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

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

@media (max-width: 980px) {
  .hero-shell,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 60px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-shell {
    padding-top: 34px;
  }

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

  .waitlist-panel,
  .site-footer {
    flex-direction: column;
  }
}
