:root {
  --bg: #dde5d4;
  --ink: #141511;
  --muted: #4b4a43;
  --line: rgba(20, 21, 17, 0.14);
  --card: #e4ead9;
  --matcha: #1f4a35;
  --matcha-deep: #132e21;
  --accent: #1c5038;
  --contrast: #a43e2f;
  --sun: #9e5e53;
  --radius: 24px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.24) 0 16%, transparent 18%),
    radial-gradient(circle at 88% 74%, rgba(255, 255, 255, 0.17) 0 18%, transparent 20%),
    radial-gradient(circle at 30% 42%, rgba(18, 40, 29, 0.05) 0 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 4px 4px, auto;
  color: var(--ink);
  line-height: 1.35;
}

a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 92vw); margin: 0 auto; }
.section { padding: 84px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(221, 229, 212, 0.88);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--matcha-deep);
}
.logo-word { font-weight: 800; letter-spacing: -0.02em; text-transform: lowercase; font-size: 22px; }

.nav { display: flex; align-items: center; gap: 16px; }
.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f5f1e8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  padding: 94px 0 84px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 29% 48%, rgba(164, 62, 47, 0.14) 0 28%, transparent 29%),
    radial-gradient(circle at 66% 58%, rgba(255, 255, 255, 0.12) 0 24%, transparent 26%),
    radial-gradient(circle at 44% 72%, rgba(16, 37, 28, 0.04) 0 1px, transparent 1px),
    linear-gradient(125deg, rgba(255, 255, 255, 0.22), rgba(211, 221, 201, 0.34));
  background-size: auto, auto, 4px 4px, auto;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent 55%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "visual"
    "copy";
  gap: 34px;
  align-items: center;
}
.hero-copy { grid-area: copy; }
.hero-visual { grid-area: visual; }

.kicker {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 21, 17, 0.66);
}
.hero-wordmark {
  margin: 0 0 22px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  font-size: clamp(104px, 24vw, 300px);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 0.86;
  text-transform: lowercase;
  color: #1b1a16;
}
h1 {
  font-size: clamp(54px, 8vw, 86px);
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0 0 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.subhead {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.2;
  color: var(--muted);
  max-width: 620px;
}
.hero-actions { margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
.button.primary {
  background: var(--accent);
  color: #f8f3eb;
  border-color: var(--accent);
  box-shadow: 0 14px 24px rgba(24, 64, 47, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-disc {
  position: absolute;
  width: min(88vw, 640px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--sun);
  left: -112%;
  top: 8%;
  z-index: 0;
  opacity: 0.12;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: min(70%, 520px);
  height: 42px;
  bottom: 42px;
  background: radial-gradient(ellipse at center, rgba(14, 22, 18, 0.2), rgba(14, 22, 18, 0));
  z-index: 1;
  filter: blur(1px);
}
.can {
  width: min(124%, 980px);
  height: auto;
  margin-bottom: -68px;
  transform: translateX(18px);
  filter: drop-shadow(0 34px 34px rgba(14, 22, 18, 0.24));
  position: relative;
  z-index: 2;
}

.calm-statement {
  padding: 26px 0 88px;
}
.calm-statement p {
  margin: 0;
  font-size: clamp(40px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 920px;
}

.belief {
  background: var(--matcha-deep);
  color: #efe8d8;
}
.manifesto-kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(239, 232, 216, 0.72);
}
.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 840px;
  text-transform: uppercase;
}
.section-head p {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.38;
  max-width: 760px;
  color: rgba(239, 232, 216, 0.88);
}
.section-head .button { margin-top: 30px; background: #efe8d8; color: #10271c; border-color: #efe8d8; }

.waitlist { padding-top: 72px; }
.cta {
  border-radius: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.cta h2 {
  margin: 0 0 6px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
}
.cta p { margin: 0; font-size: 18px; color: var(--muted); }

.form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
input[type="email"] {
  flex: 1 1 240px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 17, 0.28);
  background: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  outline: none;
}
input[type="email"]:focus {
  border-color: rgba(19, 46, 33, 0.68);
  box-shadow: 0 0 0 4px rgba(19, 46, 33, 0.14);
}

.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.footer-logo { font-weight: 800; text-transform: lowercase; letter-spacing: -0.02em; }
.footer-note { margin: 8px 0 0; color: rgba(20, 21, 17, 0.66); font-size: 13px; max-width: 420px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-link { font-size: 13px; color: rgba(20, 21, 17, 0.74); }
.footer-link:hover { color: rgba(20, 21, 17, 1); }

.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 0.86fr 1.14fr;
    grid-template-areas: "copy visual";
    gap: 12px;
  }
  .hero-visual {
    min-height: 860px;
    overflow: visible;
  }
  .hero-disc {
    width: min(76vw, 820px);
    left: -132%;
    top: 9%;
  }
  .can {
    width: min(132%, 1140px);
    margin-bottom: -86px;
    transform: translateX(32px);
  }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero {
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .hero-wordmark {
    font-size: clamp(72px, 25vw, 132px);
  }
  .hero-visual {
    min-height: 520px;
  }
  .hero-disc {
    width: 132%;
    left: -78%;
    top: -2%;
    opacity: 0.12;
  }
  .can {
    width: 124%;
    margin-bottom: -52px;
    transform: translateX(12px);
  }
  .calm-statement {
    padding: 18px 0 74px;
  }
}
