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

:root {
  --terracotta: #BF6448;
  --terracotta-soft: #E6C7B8;
  --terracotta-wash: #EBD4C6;
  --teal: #3D7A7A;
  --teal-deep: #2F5C5C;
  --teal-night: #1E4747;
  --parchment: #F2EDE8;
  --parchment-deep: #EDE5DD;
  --cream: #EDEAE6;
  --charcoal: #1F1B19;
  --ink: #2D2D2D;
  --walnut: #5A4A42;
  --stone: #8B8278;
  --fog: #DEDBD7;
  --hairline: rgba(45,45,45,0.12);
  --hairline-strong: rgba(45,45,45,0.22);
  --white: #FFFFFF;

  --display: 'Cormorant Garamond', 'Lora', Georgia, serif;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt";
  overflow-x: hidden;
}

/* ── Typography utilities ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.eyebrow.muted { color: var(--stone); }
.eyebrow.on-dark { color: rgba(255,255,255,0.55); }
.eyebrow.on-terra { color: rgba(255,255,255,0.75); }

.metalabel {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.metavalue {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--walnut);
  line-height: 1.5;
}

.divider {
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  border: 0;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.display em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.prose {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--walnut);
  text-wrap: pretty;
}
.prose em { font-style: italic; }

/* ── Page chrome ─────────────────────────────────────────────────── */
.shell {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242,237,232,0.0);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.topnav.scrolled {
  background: rgba(242,237,232,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.topnav .wm {
  height: 35px;
  width: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.topnav.scrolled .wm { opacity: 1; }
.topnav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.topnav-links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.topnav-links a:hover { color: var(--terracotta); }
.topnav-cta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--parchment);
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
}
.topnav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 88px;
}
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 116%;
  height: 175%;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
.hero-mark {
  position: relative;
  z-index: 1;
  width: min(560px, 74vw);
  height: auto;
  display: block;
}
.hero-divider {
  width: 24px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto 36px;
}
.hero h1.display {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  color: var(--walnut);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  max-width: 26ch;
  margin: 0 auto;
}
.hero h1.display em {
  font-style: italic;
  color: var(--terracotta);
}
.hero h1.display .lit { white-space: nowrap; }
.hero-sub {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--walnut);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.2s, transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover { border-color: var(--charcoal); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  padding: 0 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-meta .col { display: flex; flex-direction: column; gap: 6px; max-width: 38ch; }
.hero-meta .col.right { text-align: right; align-items: flex-end; }

/* ── Generic section ─────────────────────────────────────────────── */
section {
  position: relative;
  padding: 120px 0;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 72px;
}
.section-divider {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--hairline);
  border: 0;
  margin: 0 auto;
}
.section-divider + section { padding-top: 48px; }
section:has(+ .section-divider) { padding-bottom: 48px; }
.section-header .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-header .eyebrow-rule {
  width: 36px;
  height: 1px;
  background: var(--terracotta);
}
.section-header h2.display {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.05;
  max-width: 18ch;
}
.section-header .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--walnut);
  max-width: 50ch;
}

/* ── Origin (founder story) ──────────────────────────────────────── */
.origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.origin .col-left h2.display {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  max-width: 14ch;
}
.origin .col-right {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.origin .col-right .prose { max-width: 42ch; }
.pullquote {
  margin-top: 18px;
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 23px);
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 36ch;
}
.pullquote .attrib {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Nightsitters (poem on charcoal) ─────────────────────────────── */
.nightsitters {
  background: var(--teal-night);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.nightsitters::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(191,100,72,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.06), transparent 55%);
  pointer-events: none;
}
.nightsitters .shell { position: relative; }
.poem {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.poem .eyebrow { color: rgba(255,255,255,0.55); }
.poem-rule {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.poem-stanza {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.poem-line {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
  font-style: italic;
}
.poem-line.lead {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
}
.poem-line.hush {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.poem-line.accent {
  color: var(--terracotta-soft);
  font-style: italic;
  font-weight: 400;
}

/* ── Teachings (numbered list) ───────────────────────────────────── */
.teachings {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.teachings .col-left { position: sticky; top: 96px; }
.teachings .col-left h2.display {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.1;
  max-width: 14ch;
}
.teachings .col-left .prose { max-width: 38ch; margin-top: 28px; }
.taught-list {
  display: flex;
  flex-direction: column;
}
.taught-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.taught-item:last-child { border-bottom: 1px solid var(--hairline); }
.taught-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 8px;
}
.taught-body { display: flex; flex-direction: column; gap: 6px; }
.taught-label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  color: var(--charcoal);
}
.taught-sub {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--stone);
  font-style: normal;
  letter-spacing: 0.01em;
}

/* ── Loss is universal (terracotta colorblock) ───────────────────── */
.universal {
  background: var(--terracotta);
  color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.universal::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.18), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.10), transparent 45%);
  pointer-events: none;
}
.universal .shell { position: relative; }
.universal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.universal h2.display {
  color: white;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  max-width: 14ch;
}
.universal h2.display em { color: rgba(255,255,255,0.7); }
.universal .litany {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}
.universal .litany .eyebrow {
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.universal .litany-line {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
.universal .litany-line.last {
  color: white;
  margin-top: 12px;
  font-style: italic;
}

/* ── What MORTAL is ──────────────────────────────────────────────── */
.whatitis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.whatitis .col-left h2.display {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  max-width: 14ch;
}
.whatitis .col-right { padding-top: 16px; display: flex; flex-direction: column; gap: 28px; }
.whatitis .col-right .prose { max-width: 42ch; }

.not-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.not-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
}
.not-row .kind {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  width: 64px;
  flex-shrink: 0;
  padding-top: 8px;
}
.not-row .kind.no { color: var(--stone); }
.not-row .kind.yes { color: var(--terracotta); }
.not-row .word { font-style: italic; }
.not-row.no .word {
  color: var(--stone);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--hairline-strong);
}
.not-row.yes .word { color: var(--charcoal); }

/* ── Product (AI guide) ──────────────────────────────────────────── */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.product .col-left { display: flex; flex-direction: column; gap: 28px; }
.product .col-left h2.display {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  max-width: 12ch;
}
.product .col-left .prose { max-width: 40ch; }

.chat-card {
  background: var(--charcoal);
  border-radius: 22px;
  padding: 36px 32px 32px;
  box-shadow: 0 40px 80px -50px rgba(31,27,25,0.45), 0 12px 32px -12px rgba(31,27,25,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.chat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-head .dot-ring {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  position: relative;
}
.chat-head .dot-ring::before {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  animation: breathe 5s ease-in-out infinite;
}
.chat-head .dot-ring img {
  width: 16px; height: 16px; object-fit: contain;
  opacity: 0.85;
}
.chat-head .who {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.chat-head .who strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}
.bub {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  animation: bubIn 0.5s ease forwards;
}
.bub.mortal {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}
.bub.user {
  background: var(--terracotta);
  color: white;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}
.bub:nth-child(1) { animation-delay: 0.2s; }
.bub:nth-child(2) { animation-delay: 1.0s; }
.bub:nth-child(3) { animation-delay: 1.8s; }
.bub:nth-child(4) { animation-delay: 2.6s; }
.bub:nth-child(5) { animation-delay: 3.4s; }
@keyframes bubIn {
  to { opacity: 1; transform: translateY(0); }
}

.chat-foot {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-foot .ph {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.chat-foot .send {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

/* ── Systems (Map + Lexicon) ─────────────────────────────────────── */
.systems-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.systems-intro h2.display {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  max-width: 14ch;
}
.systems-intro .prose { max-width: 42ch; padding-bottom: 8px; }

.systems-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.system-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.system-card .index {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.system-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 3.6vw, 48px);
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.system-card h3 em { font-style: italic; color: var(--terracotta); }
.system-card .desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--walnut);
  max-width: 36ch;
}
.system-card .visual {
  margin-top: auto;
  height: 180px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}
.map-visual svg { width: 100%; height: 100%; display: block; }
.lex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--walnut);
}
.lex-grid span {
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline);
}
.lex-grid span.hl { color: var(--terracotta); }

/* ── Ecosystem ───────────────────────────────────────────────────── */
.eco {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.eco .col-left { position: sticky; top: 96px; }
.eco .col-left h2.display {
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.08;
  max-width: 14ch;
}
.eco .col-left .prose { max-width: 36ch; margin-top: 28px; }

.eco-list { display: flex; flex-direction: column; }
.eco-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.eco-row:last-child { border-bottom: 1px solid var(--hairline); }
.eco-row .name {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--charcoal);
  font-style: italic;
  font-weight: 400;
}
.eco-row .desc {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--walnut);
  font-style: italic;
}
.eco-row .when {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  padding-top: 6px;
}

/* ── Waitlist ────────────────────────────────────────────────────── */
.waitlist {
  background: var(--parchment-deep);
  padding: 140px 0 130px;
  position: relative;
  overflow: hidden;
}
.waitlist-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  position: relative;
}
.waitlist-offerings {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  width: 100%;
}

.waitlist-offerings li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  padding-left: 16px;
  border-left: 2px solid var(--terracotta);
}

.waitlist-offerings strong {
  font-weight: 500;
}

.waitlist h2.display {
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 1.05;
  max-width: 14ch;
}
.waitlist .prose {
  max-width: 46ch;
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--walnut);
}
.bd-signup {
  width: 100%;
  max-width: 520px;
  margin-top: 8px;
}

/* ── Buttondown signup form ──────────────────────────────────────── */
.bd-signup .embeddable-buttondown-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
}
.bd-signup .embeddable-buttondown-form input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 18px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.bd-signup .embeddable-buttondown-form input[type="email"]::placeholder {
  color: var(--ink);
  opacity: 0.45;
}
.bd-signup .embeddable-buttondown-form input[type="email"]:focus {
  border-color: var(--terracotta);
}
.bd-signup .embeddable-buttondown-form button[type="submit"] {
  padding: 14px 28px;
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.bd-signup .embeddable-buttondown-form button[type="submit"]:hover {
  opacity: 0.85;
}

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  padding: 80px 0 56px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 320px;
}
.footer-brand .wm {
  height: auto;
  width: 140px;
  display: block;
  opacity: 0.85;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.65;
  color: var(--walnut);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--walnut);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracotta); }

.footer-founders {
  margin-top: 56px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.footer-base {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Grief Gap ──────────────────────────────────────────────────── */
.grief-gap {
  background: var(--ink);
  color: var(--parchment);
  padding: 120px 0;
}

.grief-gap .eyebrow-rule { background: var(--terracotta); }
.grief-gap .eyebrow { color: var(--terracotta); }

.grief-gap-inner { max-width: 860px; }

.grief-gap-intro {
  margin-top: 32px;
  color: var(--parchment);
  opacity: 0.8;
}

.grief-gap-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.grief-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grief-stat-figure {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  line-height: 1;
  color: var(--terracotta);
}

.grief-stat-label {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--parchment);
}

.grief-stat-source {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Five Myths ─────────────────────────────────────────────────── */
#myths { padding: 120px 0; }

.myths-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.myths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.myth-card {
  background: var(--parchment-mid, #f0ebe2);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.myth-card:hover { background: var(--terracotta); }

.myth-number {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.3s;
  flex-shrink: 0;
}

.myth-card:hover .myth-number {
  opacity: 0;
  transform: translateY(-6px);
  color: #fff;
}

.myth-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s ease;
}

.myth-card:hover .myth-card-content {
  transform: translateY(-36px);
}

.myth-title {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.3s;
}

.myth-card:hover .myth-title { color: #fff; }

.myth-desc {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, color 0.3s;
}

.myth-card:hover .myth-desc {
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.myths-cta { display: flex; }

@media (max-width: 980px) {
  .myths-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .myths-grid { grid-template-columns: 1fr 1fr; }
  #myths { padding: 80px 0; }
}

/* ── Founders & Network ─────────────────────────────────────────── */
#founders { padding: 120px 0; }

.founders-inner { max-width: 720px; }

.founders-body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founders-body a {
  color: var(--terracotta);
  text-decoration: none;
}

.founders-body a:hover { text-decoration: underline; }

/* ── Inventory ──────────────────────────────────────────────────── */
#inventory { padding: 120px 0; }

.inventory-inner {
  max-width: 720px;
}

.inventory-body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.06); opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .shell { padding-left: 28px; padding-right: 28px; }
  .topnav { padding: 18px 28px; }
  .topnav-links { gap: 22px; }
  .topnav-links a:not(.topnav-cta):not(.topnav-link-visible) { display: none; }
  .hero-meta { padding: 0 28px; bottom: 28px; }
  .hero-meta .col { max-width: 26ch; }
  .hero-meta .col .metavalue { font-size: 12px; }

  section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  .origin, .whatitis, .product, .systems-intro, .systems-pair, .eco, .universal-grid, .teachings {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .teachings .col-left, .eco .col-left { position: static; }
  .system-card { padding: 36px 28px; min-height: auto; }
  .eco-row { grid-template-columns: 1fr; gap: 6px; }
  .eco-row .when { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-base { flex-direction: column; gap: 12px; align-items: flex-start; }
  .nightsitters, .universal, .waitlist { padding: 96px 0; }
}

@media (max-width: 640px) {
  .grief-gap-stats { grid-template-columns: 1fr; gap: 40px; }
  .grief-gap { padding: 80px 0; }
  .topnav-links { display: none; }
  .topnav-cta { padding: 10px 16px; font-size: 11px; }
  .hero { padding-top: 120px; padding-bottom: 80px; }
  .hero-mark { width: 70%; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; width: 100%; padding: 0 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { position: relative; bottom: auto; margin-top: 60px; flex-direction: column; gap: 18px; align-items: flex-start; padding: 0 28px; }
  .hero-meta .col.right { text-align: left; align-items: flex-start; }
  .bd-signup { max-width: 100%; }
}
