:root {
  --paper: #E8E4D9;
  --paper-bright: #F3F0E6;
  --paper-deep: #DDD8C8;
  --ink: #17211C;
  --ink-80: rgba(23, 33, 28, 0.82);
  --ink-55: rgba(23, 33, 28, 0.55);
  --line: rgba(23, 33, 28, 0.14);
  --turf: #3B6146;
  --turf-bright: #4A7A58;
  --turf-soft: #8FA97D;
  --prime: #A9BE6B;
  --sustain: #E2703A;
  --finish: #2F8F82;
  --white: #FFFEFA;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1140px;
  --gutter: clamp(18px, 4vw, 36px);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper-bright);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}

section[id] { scroll-margin-top: 76px; }

.mono { font-family: var(--font-mono); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--turf);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- NAV ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header .brand .mark,
.site-header .navlinks a {
  color: var(--white);
}

.site-header .brand .tag {
  color: rgba(255, 254, 250, 0.72);
}

.site-header .navlinks a:hover {
  color: var(--prime);
}

.site-header .navcta {
  background: var(--prime);
  border-color: var(--prime);
  color: var(--ink);
}

.site-header .navcta:hover {
  background: var(--white);
  border-color: var(--white);
}

.site-header.is-solid {
  background: rgba(243, 240, 230, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-solid .brand .mark {
  color: var(--ink);
}

.site-header.is-solid .brand .tag {
  color: var(--ink-55);
}

.site-header.is-solid .navlinks a {
  color: var(--ink-80);
}

.site-header.is-solid .navlinks a:hover {
  color: var(--turf);
}

.site-header.is-solid .navcta {
  background: var(--turf);
  border-color: var(--turf);
  color: var(--white);
}

.site-header.is-solid .navcta:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.brand .mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.brand .tag {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.navlinks {
  display: flex;
  gap: 26px;
  font-size: 14px;
}

.navlinks a {
  transition: color .2s ease;
}

.navcta {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

@media (max-width: 820px) {
  .navlinks { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: start;
  color: var(--white);
  overflow: hidden;
  background: #1a2e22;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 60%;
  transform: scale(1.02);
  animation: hero-ken 18s var(--ease) both;
}

@keyframes hero-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 33, 28, 0.9) 0%, rgba(23, 33, 28, 0.78) 26%, rgba(23, 33, 28, 0.35) 44%, rgba(23, 33, 28, 0.08) 62%, transparent 78%),
    linear-gradient(180deg, rgba(23, 33, 28, 0.4) 0%, transparent 30%, transparent 62%, rgba(23, 33, 28, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - var(--gutter) * 2, 28rem);
  margin-left: max(var(--gutter), calc((100% - var(--wrap)) / 2));
  margin-right: auto;
  padding: clamp(100px, 12vh, 128px) 0 32px;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(68px, 9.5vw, 104px);
  line-height: 0.84;
  letter-spacing: -0.055em;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(23, 33, 28, 0.35);
  animation: hero-rise 0.9s var(--ease) both;
}

.hero-kicker {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--prime);
  animation: hero-rise 0.9s var(--ease) 0.08s both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.9vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-top: 20px;
  color: var(--white);
  animation: hero-rise 0.9s var(--ease) 0.16s both;
}

.hero-sub {
  margin-top: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: rgba(255, 254, 250, 0.8);
  max-width: 28ch;
  animation: hero-rise 0.9s var(--ease) 0.24s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  animation: hero-rise 0.9s var(--ease) 0.32s both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: var(--turf);
  border-color: var(--turf);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--turf-bright);
  border-color: var(--turf-bright);
}

.btn-ghost {
  background: rgba(255, 254, 250, 0.12);
  border-color: rgba(255, 254, 250, 0.55);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper-bright);
}

.btn-ink:hover {
  background: var(--turf);
  border-color: var(--turf);
}

@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-media img {
    object-position: 50% 42%;
    animation: none;
    transform: none;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(23, 33, 28, 0.25) 0%, rgba(23, 33, 28, 0.15) 35%, rgba(23, 33, 28, 0.72) 68%, rgba(23, 33, 28, 0.92) 100%);
  }

  .hero-content {
    width: min(100% - var(--gutter) * 2, var(--wrap));
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0 36px;
  }

  .hero-brand {
    font-size: clamp(64px, 20vw, 88px);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(26px, 7vw, 34px);
    margin-top: 20px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .hero-brand,
  .hero-kicker,
  .hero h1,
  .hero-sub,
  .hero-actions { animation: none; }
}

/* ---------- STRIP ---------- */
.strip {
  background: var(--ink);
  color: var(--paper-bright);
  padding: 14px 0;
}

.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 13px;
  color: rgba(232, 228, 217, 0.78);
}

.strip strong {
  color: var(--prime);
  font-weight: 600;
}

.strip .dot {
  color: var(--sustain);
}

.strip .dot2 {
  color: var(--finish);
}

/* ---------- INTRO ---------- */
.intro {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--paper-bright);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf);
  margin-bottom: 12px;
}

.intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 14ch;
}

.intro p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink-80);
  max-width: 40ch;
}

.intro-photo {
  position: relative;
  background: linear-gradient(160deg, rgba(169, 190, 107, 0.35), transparent 55%), var(--paper);
  padding: 18px;
}

.intro-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.intro-photo figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-55);
}

@media (max-width: 820px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { max-width: 420px; order: -1; }
}

/* ---------- THE ROUND ---------- */
.theround {
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 100px);
  background: var(--paper);
}

.round-head {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto 40px;
  max-width: 36rem;
}

.round-head .label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf);
  margin-bottom: 10px;
}

.round-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.route-shell {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.route {
  position: relative;
  padding-left: 34px;
}

.route::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--prime), var(--sustain), var(--finish));
  opacity: 0.55;
}

.stop {
  position: relative;
  padding: 0 0 40px;
}

.stop:last-child { padding-bottom: 0; }

.stop::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--paper);
}

.stop.prime::before { background: var(--prime); }
.stop.sustain::before { background: var(--sustain); }
.stop.finish::before { background: var(--finish); }

.stop .holes {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-55);
}

.stop h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.stop.prime h3 { color: #5f7340; }
.stop.sustain h3 { color: #b85a2d; }
.stop.finish h3 { color: #247066; }

.stop p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-80);
  max-width: 46ch;
}

.route-photo {
  position: sticky;
  top: 92px;
  background: var(--paper-bright);
  padding: 12px;
  border: 1px solid var(--line);
}

.route-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.route-photo .caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-55);
}

@media (max-width: 860px) {
  .route-shell { grid-template-columns: 1fr; }
  .route-photo {
    position: relative;
    top: 0;
    order: -1;
    max-width: 520px;
  }
  .route-photo img { aspect-ratio: 16 / 10; }
}

/* ---------- RANGE ---------- */
.range {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(169, 190, 107, 0.18), transparent),
    radial-gradient(ellipse 50% 35% at 90% 70%, rgba(47, 143, 130, 0.14), transparent),
    var(--paper-bright);
}

.range-head {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
}

.range-head .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf);
  margin-bottom: 10px;
}

.range-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.range-head p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-80);
  max-width: 34ch;
}

.range-hero {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto 48px;
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.products {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.product {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left-width: 4px;
}

.product.prime { border-left-color: var(--prime); }
.product.sustain { border-left-color: var(--sustain); }
.product.finish { border-left-color: var(--finish); }

.product.reverse { grid-template-columns: 1fr minmax(150px, 210px); }
.product.reverse .product-shot { order: 2; }

.product-shot {
  background:
    radial-gradient(circle at 50% 80%, rgba(23, 33, 28, 0.08), transparent 65%),
    var(--paper);
  padding: 16px 12px 8px;
}

.product-shot img {
  width: 100%;
  max-width: 180px;
  margin-inline: auto;
  filter: drop-shadow(0 14px 24px rgba(23, 33, 28, 0.14));
  transition: transform .45s var(--ease);
}

.product:hover .product-shot img {
  transform: translateY(-5px) scale(1.02);
}

.product .stage {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-55);
}

.product h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-top: 4px;
}

.product.prime h3 { color: #5f7340; }
.product.sustain h3 { color: #b85a2d; }
.product.finish h3 { color: #247066; }

.product .flavour {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-55);
}

.product .body {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-80);
  max-width: 48ch;
}

.product .specs {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-55);
}

.product .specs b {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink);
  font-size: 12.5px;
}

@media (max-width: 820px) {
  .range-head { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .product,
  .product.reverse {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product.reverse .product-shot { order: 0; }
  .product-shot img { max-width: 150px; }
}

/* ---------- PACK ---------- */
.pack {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--ink);
  color: var(--paper-bright);
}

.pack-grid {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.pack .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf-soft);
  margin-bottom: 12px;
}

.pack h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.pack p {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(232, 228, 217, 0.76);
  max-width: 38ch;
}

.pack-points {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.pack-points li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(232, 228, 217, 0.86);
}

.pack-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--prime);
  flex-shrink: 0;
}

.pack-points li:nth-child(2)::before { background: var(--sustain); }
.pack-points li:nth-child(3)::before { background: var(--finish); }

.pack-photo {
  border: 1px solid rgba(232, 228, 217, 0.16);
}

.pack-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 820px) {
  .pack-grid { grid-template-columns: 1fr; }
  .pack-photo { order: -1; }
}

/* ---------- SCIENCE ---------- */
.science {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--paper-bright);
}

.science-inner {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto;
}

.science-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: end;
}

.science .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf);
  margin-bottom: 10px;
}

.science h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.science-lead {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-80);
  max-width: 36ch;
}

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

.fact {
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.fact .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--turf);
}

.fact:nth-child(2) .num { color: var(--sustain); }
.fact:nth-child(3) .num { color: var(--finish); }

.fact h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.fact p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-80);
}

@media (max-width: 900px) {
  .science-top { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
}

/* ---------- FOUNDER ---------- */
.founder {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.founder-media { position: absolute; inset: 0; }

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.founder-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 28, 0.15), rgba(23, 33, 28, 0.78));
}

.founder-content {
  position: relative;
  z-index: 1;
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto;
  padding: 72px 0 52px;
}

.founder blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.founder .attrib {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 254, 250, 0.68);
}

/* ---------- WAITLIST ---------- */
.waitlist {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    linear-gradient(135deg, rgba(169, 190, 107, 0.16), transparent 40%),
    linear-gradient(320deg, rgba(47, 143, 130, 0.12), transparent 35%),
    var(--paper);
}

.waitlist-panel {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
}

.waitlist .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turf);
}

.waitlist h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-top: 10px;
}

.waitlist .copy {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-80);
  max-width: 34ch;
}

.waitlist .count {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-55);
}

.signup { display: grid; gap: 10px; }

.signup input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 14px;
}

.signup input::placeholder { color: var(--ink-55); }

.signup input:focus {
  outline: none;
  border-color: var(--turf);
  background: var(--white);
}

.signup button {
  min-height: 48px;
  border: 1px solid var(--turf);
  background: var(--turf);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease;
}

.signup button:hover { background: var(--turf-bright); }
.signup button:disabled { opacity: .55; cursor: not-allowed; }

.signup .status {
  font-family: var(--font-mono);
  font-size: 11px;
  min-height: 16px;
}

.signup .status.ok { color: var(--turf); }
.signup .status.err { color: var(--sustain); }
.signup .fine { font-size: 11px; color: var(--ink-55); }

@media (max-width: 760px) {
  .waitlist-panel { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 0 0 34px;
  background: var(--paper-bright);
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer .fbrand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.site-footer .fbrand .m {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.site-footer .fbrand .t {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-55);
}

.site-footer .fmeta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-55);
  letter-spacing: 0.04em;
}
