:root {
  color-scheme: light;
  --ink: #19120f;
  --deep: #132c2f;
  --teal: #19616a;
  --saffron: #da7b1f;
  --marigold: #f1ba49;
  --rose: #b94a56;
  --plum: #57385f;
  --leaf: #55733d;
  --paper: #fff8e8;
  --cream: #f8edcf;
  --mist: #f7f3ea;
  --line: rgba(25, 18, 15, 0.15);
  --shadow: 0 20px 70px rgba(25, 18, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    repeating-linear-gradient(0deg, rgba(25, 18, 15, 0.018) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(25, 18, 15, 0.014) 0 1px, transparent 1px 11px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px 5vw;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.95), rgba(248, 237, 207, 0.92));
  border-bottom: 1px solid rgba(25, 18, 15, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(150px, 18vw, 230px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--deep);
  color: #fff8e8;
  border: 2px solid var(--marigold);
  border-radius: 8px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: -2px;
  color: rgba(25, 18, 15, 0.65);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(25, 18, 15, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(25, 18, 15, 0.07);
  color: var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.9);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 74px 5vw 70px;
  color: #fff8e8;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 34, 36, 0.92) 0%, rgba(13, 34, 36, 0.78) 34%, rgba(13, 34, 36, 0.25) 68%, rgba(13, 34, 36, 0.5) 100%),
    linear-gradient(0deg, rgba(25, 18, 15, 0.45), rgba(25, 18, 15, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

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

.hero .eyebrow {
  color: #ffd684;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 630px;
  margin-bottom: 22px;
  font-size: 82px;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: 54px;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 248, 232, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  background: var(--marigold);
  color: #261005;
  box-shadow: 0 14px 30px rgba(241, 186, 73, 0.24);
}

.button.ghost {
  border-color: rgba(255, 248, 232, 0.46);
  background: rgba(255, 248, 232, 0.08);
  color: #fff8e8;
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 248, 232, 0.3);
  border-radius: 6px;
  background: rgba(255, 248, 232, 0.1);
  color: rgba(255, 248, 232, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.memory-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  padding: 20px 5vw;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 232, 0.04) 0 1px, transparent 1px 18px),
    var(--deep);
  color: #fff8e8;
  text-align: center;
}

.memory-strip p {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.memory-strip span {
  color: #ffd684;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 92px 5vw;
}

.section::after {
  position: absolute;
  right: 5vw;
  bottom: 28px;
  width: min(160px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25, 18, 15, 0.22), transparent);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: start;
  background: var(--mist);
}

.section-lead {
  max-width: 720px;
  color: rgba(25, 18, 15, 0.7);
  font-size: 18px;
}

.value-grid {
  display: grid;
  gap: 14px;
}

.value-card,
.usp-card,
.ritual-card,
.language-card,
.language-panel,
.shelf-card,
.collection-row article,
.waitlist-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.9), rgba(248, 237, 207, 0.82));
  box-shadow: 0 14px 28px rgba(25, 18, 15, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.value-card {
  padding: 20px;
}

.value-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.value-card p,
.usp-card p,
.ritual-card p,
.language-card p,
.language-panel p,
.shelf-card p,
.collection-row p {
  margin-bottom: 0;
  color: rgba(25, 18, 15, 0.68);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 34px;
}

.story-ritual {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: 5vw;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(19, 44, 47, 0.07), transparent 38%),
    linear-gradient(270deg, rgba(241, 186, 73, 0.12), transparent 32%),
    repeating-linear-gradient(0deg, rgba(25, 18, 15, 0.018) 0 1px, transparent 1px 9px),
    var(--mist);
}

.ritual-copy {
  max-width: 640px;
}

.story-line {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.story-line span {
  width: fit-content;
  padding: 10px 12px;
  border-left: 4px solid var(--marigold);
  background: rgba(255, 253, 245, 0.9);
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(25, 18, 15, 0.07);
}

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

.ritual-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 22px;
}

.ritual-card:nth-child(2) {
  transform: rotate(0.35deg);
}

.ritual-card:nth-child(3) {
  transform: rotate(-0.28deg);
}

.ritual-card:first-child {
  grid-row: span 2;
}

.ritual-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.68;
  pointer-events: none;
}

.card-night::before {
  background:
    radial-gradient(circle at 74% 20%, rgba(241, 186, 73, 0.28), transparent 25%),
    linear-gradient(145deg, rgba(19, 44, 47, 0.18), transparent 56%);
}

.card-festival::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(218, 123, 31, 0.3), transparent 24%),
    linear-gradient(135deg, rgba(185, 74, 86, 0.14), transparent 60%);
}

.card-distance::before {
  background:
    radial-gradient(circle at 70% 28%, rgba(25, 97, 106, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(85, 115, 61, 0.12), transparent 60%);
}

.ritual-card > * {
  position: relative;
}

.ritual-time {
  display: inline-block;
  margin: 34px 0 16px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ritual-art {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
}

.moon-art {
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 36%, transparent 0 20px, var(--deep) 21px 34px, transparent 35px),
    radial-gradient(circle, rgba(241, 186, 73, 0.42), rgba(241, 186, 73, 0.08) 64%, transparent 66%);
}

.moon-art span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: -15px 0 0 var(--marigold);
}

.diya-art {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: end;
}

.diya-art span {
  position: relative;
  width: 30px;
  height: 20px;
  border-radius: 4px 4px 18px 18px;
  background: var(--saffron);
}

.diya-art span::before {
  position: absolute;
  top: -24px;
  left: 9px;
  width: 12px;
  height: 24px;
  border-radius: 12px 12px 12px 0;
  background: var(--marigold);
  content: "";
  transform: rotate(18deg);
}

.signal-art {
  align-items: end;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.signal-art span {
  display: block;
  border: 3px solid var(--teal);
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.signal-art span:nth-child(1) {
  height: 34px;
}

.signal-art span:nth-child(2) {
  height: 62px;
}

.signal-art span:nth-child(3) {
  height: 92px;
}

.language-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 232, 0.035) 0 1px, transparent 1px 22px),
    linear-gradient(120deg, rgba(19, 44, 47, 0.94), rgba(47, 61, 44, 0.86)),
    var(--paper);
  color: #fff8e8;
}

.language-section h2,
.language-section .section-kicker {
  color: #fff8e8;
}

.language-section .section-kicker {
  color: #ffd684;
}

.language-section .section-lead {
  color: rgba(255, 248, 232, 0.76);
}

.language-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1.1fr);
  gap: 5vw;
  align-items: center;
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.language-tab {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 248, 232, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.08);
  color: #fff8e8;
  cursor: pointer;
  font-weight: 900;
}

.language-tab.active,
.language-tab:hover,
.language-tab:focus-visible {
  background: var(--marigold);
  color: #251106;
  outline: none;
}

.language-panel {
  min-height: 520px;
  padding: 30px;
  background:
    repeating-linear-gradient(0deg, rgba(25, 18, 15, 0.018) 0 1px, transparent 1px 10px),
    linear-gradient(150deg, rgba(255, 253, 245, 0.97), rgba(248, 237, 207, 0.94)),
    var(--paper);
  color: var(--ink);
}

.language-panel > span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-panel h3 {
  margin: 76px 0 22px;
  color: var(--deep);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.06;
}

.script-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 62px;
}

.script-cloud span {
  padding: 8px 10px;
  border: 1px solid rgba(25, 18, 15, 0.12);
  border-radius: 8px;
  background: rgba(25, 97, 106, 0.08);
  color: rgba(25, 18, 15, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.language-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.language-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-card h3 {
  margin: 40px 0 18px;
  color: var(--deep);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
}

.usp-section {
  background:
    repeating-linear-gradient(0deg, rgba(25, 18, 15, 0.018) 0 1px, transparent 1px 12px),
    linear-gradient(135deg, rgba(241, 186, 73, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(25, 97, 106, 0.1), transparent 38%),
    var(--paper);
}

.usp-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

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

.usp-card {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  padding: 24px;
  border-top-width: 5px;
}

.usp-card::after {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 12px;
  border-radius: 2px;
  background: rgba(255, 248, 232, 0.72);
  box-shadow: 0 2px 8px rgba(25, 18, 15, 0.08);
  content: "";
  transform: rotate(5deg);
}

.usp-card.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.usp-card.bento-tall {
  grid-row: span 2;
}

.usp-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #fff8e8;
  font-weight: 900;
}

.feature-visual {
  min-height: 96px;
  margin-bottom: 28px;
}

.voice-visual {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 180px;
}

.voice-visual span {
  height: 13px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--marigold), var(--saffron));
  box-shadow: 0 7px 14px rgba(218, 123, 31, 0.13);
}

.voice-visual span:nth-child(1) {
  width: 42%;
}

.voice-visual span:nth-child(2) {
  width: 78%;
}

.voice-visual span:nth-child(3) {
  width: 56%;
}

.voice-visual span:nth-child(4) {
  width: 92%;
}

.voice-visual span:nth-child(5) {
  width: 66%;
}

.script-visual {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    repeating-linear-gradient(45deg, rgba(25, 97, 106, 0.06) 0 6px, transparent 6px 12px),
    rgba(25, 97, 106, 0.1);
  color: var(--teal);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 36px;
}

.age-visual {
  display: flex;
  align-items: end;
  gap: 10px;
}

.age-visual span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(185, 74, 86, 0.13);
  color: var(--rose);
  font-weight: 900;
}

.age-visual span:nth-child(2) {
  width: 78px;
  height: 78px;
}

.age-visual span:nth-child(3) {
  width: 94px;
  height: 94px;
}

.festival-visual {
  display: grid;
  gap: 8px;
}

.festival-visual span {
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(87, 56, 95, 0.12);
  color: var(--plum);
  font-weight: 900;
}

.safe-visual {
  position: relative;
  width: 94px;
  height: 94px;
  border: 8px solid rgba(85, 115, 61, 0.24);
  border-radius: 50%;
}

.safe-visual::before {
  position: absolute;
  inset: 20px 28px 28px;
  border-right: 8px solid var(--leaf);
  border-bottom: 8px solid var(--leaf);
  content: "";
  transform: rotate(38deg);
}

.archive-visual {
  display: grid;
  gap: 10px;
}

.archive-visual span {
  display: block;
  height: 26px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(178, 138, 30, 0.26), rgba(178, 138, 30, 0.08));
}

.archive-visual span:nth-child(2) {
  width: 84%;
}

.archive-visual span:nth-child(3) {
  width: 68%;
}

.accent-saffron {
  border-top-color: var(--saffron);
}

.accent-saffron .usp-icon {
  background: var(--saffron);
}

.accent-teal {
  border-top-color: var(--teal);
}

.accent-teal .usp-icon {
  background: var(--teal);
}

.accent-rose {
  border-top-color: var(--rose);
}

.accent-rose .usp-icon {
  background: var(--rose);
}

.accent-indigo {
  border-top-color: var(--plum);
}

.accent-indigo .usp-icon {
  background: var(--plum);
}

.accent-green {
  border-top-color: var(--leaf);
}

.accent-green .usp-icon {
  background: var(--leaf);
}

.accent-gold {
  border-top-color: #b28a1e;
}

.accent-gold .usp-icon {
  background: #b28a1e;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(380px, 1.08fr);
  gap: 28px;
  align-items: start;
  background:
    repeating-linear-gradient(0deg, rgba(25, 18, 15, 0.018) 0 1px, transparent 1px 10px),
    linear-gradient(115deg, rgba(255, 248, 232, 0.98), rgba(248, 237, 207, 0.92) 48%, rgba(237, 222, 190, 0.96));
  color: var(--ink);
}

.ai-section h2,
.ai-section .section-kicker {
  color: var(--deep);
}

.ai-section .section-kicker {
  color: var(--saffron);
}

.ai-section .section-lead {
  color: rgba(25, 18, 15, 0.7);
}

.ai-manifesto {
  position: sticky;
  top: 110px;
  padding: 4px 0 0 18px;
  border-left: 5px solid var(--marigold);
}

.ai-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.ai-promise span {
  padding: 9px 11px;
  border: 1px solid rgba(25, 18, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 245, 0.82);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.ai-flow,
.ai-benefits,
.ai-boundary {
  grid-column: 2;
}

.ai-flow {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 12px;
  align-items: stretch;
}

.ai-flow-card,
.ai-benefits article,
.ai-boundary div {
  border: 1px solid rgba(25, 18, 15, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.94), rgba(248, 237, 207, 0.84));
  box-shadow: 0 16px 34px rgba(25, 18, 15, 0.09), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.ai-flow-card {
  min-height: 260px;
  padding: 22px;
}

.ai-flow-card span,
.ai-benefits span,
.ai-boundary span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--saffron);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-flow-card h3 {
  color: var(--deep);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.ai-flow-card p,
.ai-benefits p,
.ai-boundary p {
  margin-bottom: 0;
  color: rgba(25, 18, 15, 0.68);
}

.ai-arrow {
  position: relative;
  align-self: center;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--rose) 0 8px, transparent 8px 13px);
}

.ai-arrow::after {
  position: absolute;
  top: -6px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--rose);
  border-right: 3px solid var(--rose);
  content: "";
  transform: rotate(45deg);
}

.human-card {
  border-top: 5px solid var(--marigold);
}

.machine-card {
  border-top: 5px solid var(--teal);
}

.ai-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.ai-benefits article {
  min-height: 210px;
  padding: 20px;
}

.ai-benefits h3,
.ai-boundary h3 {
  color: var(--deep);
}

.ai-boundary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.ai-boundary div {
  padding: 20px;
}

.ai-boundary div:first-child {
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.94), rgba(248, 225, 220, 0.82));
}

.ai-boundary div:last-child {
  background:
    linear-gradient(180deg, rgba(255, 253, 245, 0.94), rgba(225, 236, 210, 0.82));
}

.app-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 7vw;
  align-items: center;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 232, 0.035) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, #173437, #2f3d2c);
  color: #fff8e8;
}

.app-section h2,
.app-section .section-kicker {
  color: #fff8e8;
}

.app-section .section-kicker {
  color: #ffd684;
}

.app-section .section-lead {
  color: rgba(255, 248, 232, 0.76);
}

.phone-stage {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(320px, 100%);
  min-height: 620px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 232, 0.34);
  border-radius: 30px;
  background:
    linear-gradient(135deg, #3a2418, #151a17);
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(255, 248, 232, 0.04);
}

.phone-top {
  width: 96px;
  height: 20px;
  margin: 0 auto 12px;
  border-radius: 0 0 8px 8px;
  background: #050a0b;
}

.phone-screen {
  min-height: 560px;
  padding: 28px;
  border-radius: 20px;
  background:
    repeating-linear-gradient(0deg, rgba(25, 18, 15, 0.018) 0 1px, transparent 1px 10px),
    linear-gradient(160deg, rgba(241, 186, 73, 0.16), transparent 34%),
    linear-gradient(20deg, rgba(185, 74, 86, 0.16), transparent 42%),
    #fff8e8;
  color: var(--ink);
}

.phone-label {
  margin-bottom: 100px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen h3 {
  max-width: 240px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}

.phone-screen p {
  color: rgba(25, 18, 15, 0.72);
}

.audio-wave {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 74px;
  margin: 44px 0 24px;
}

.audio-wave span {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--leaf));
  animation: pulse 1.2s ease-in-out infinite;
}

.audio-wave span:nth-child(1) {
  height: 22px;
}

.audio-wave span:nth-child(2) {
  height: 54px;
  animation-delay: 120ms;
}

.audio-wave span:nth-child(3) {
  height: 35px;
  animation-delay: 240ms;
}

.audio-wave span:nth-child(4) {
  height: 68px;
  animation-delay: 360ms;
}

.audio-wave span:nth-child(5) {
  height: 44px;
  animation-delay: 480ms;
}

.audio-wave span:nth-child(6) {
  height: 28px;
  animation-delay: 600ms;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

.phone-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(25, 18, 15, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 470px;
  margin-top: 30px;
}

.tab {
  min-height: 46px;
  border: 1px solid rgba(255, 248, 232, 0.25);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.1);
  color: #fff8e8;
  cursor: pointer;
  font-weight: 800;
}

.tab.active,
.tab:hover,
.tab:focus-visible {
  background: var(--marigold);
  color: #241105;
  outline: none;
}

.moment-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.moment-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 232, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.12), rgba(255, 248, 232, 0.06));
}

.moment-list span {
  grid-row: span 2;
  color: #ffd684;
  font-weight: 900;
}

.moment-list h3 {
  margin: 0;
  color: #fff8e8;
  font-size: 17px;
}

.moment-list p {
  margin: 0;
  color: rgba(255, 248, 232, 0.7);
  font-size: 14px;
}

.collections {
  background:
    linear-gradient(90deg, rgba(218, 123, 31, 0.14), transparent 44%),
    var(--cream);
}

.story-shelf {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shelf-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.shelf-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 248, 232, 0.92), transparent 0 20px, rgba(25, 18, 15, 0.06) 21px 22px, transparent 23px),
    linear-gradient(180deg, rgba(19, 44, 47, 0.03), rgba(19, 44, 47, 0.16));
  content: "";
  pointer-events: none;
}

.shelf-card > * {
  position: relative;
}

.shelf-stamp {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: auto;
  border: 2px solid rgba(25, 18, 15, 0.12);
  border-radius: 50%;
  background: rgba(255, 248, 232, 0.72);
  color: var(--rose);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
}

.shelf-card span {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shelf-card h3 {
  margin-bottom: 12px;
}

.shelf-folk {
  border-top: 5px solid var(--teal);
}

.shelf-festival {
  border-top: 5px solid var(--saffron);
}

.shelf-home {
  border-top: 5px solid var(--rose);
}

.shelf-diaspora {
  border-top: 5px solid var(--leaf);
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.collection-row article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(19, 44, 47, 0.05), rgba(19, 44, 47, 0.16)),
    rgba(255, 248, 232, 0.74);
}

.collection-row span {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.founders-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1fr);
  gap: 8vw;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(185, 74, 86, 0.14), transparent 40%),
    var(--paper);
}

.note-stack p {
  margin: 0;
  color: rgba(25, 18, 15, 0.72);
  font-size: 22px;
}

.keepsake-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.keepsake-row span {
  padding: 9px 11px;
  border: 1px solid rgba(25, 18, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.78);
  color: var(--deep);
  font-size: 13px;
  font-weight: 900;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 520px);
  gap: 7vw;
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 44, 47, 0.95), rgba(19, 44, 47, 0.76)),
    url("assets/heritage-hero-art.png");
  background-size: cover;
  background-position: center right;
  color: #fff8e8;
}

.waitlist-section h2,
.waitlist-section .section-kicker {
  color: #fff8e8;
}

.waitlist-section .section-kicker {
  color: #ffd684;
}

.waitlist-section .section-lead {
  color: rgba(255, 248, 232, 0.75);
}

.waitlist-seal {
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 248, 232, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.launch-domain {
  display: inline-grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 232, 0.22);
  border-radius: 30px 8px 30px 8px;
  background: rgba(255, 248, 232, 0.07);
}

.launch-domain span {
  color: rgba(255, 248, 232, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-domain strong {
  color: #ffd684;
  font-size: 19px;
}

.waitlist-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: #fff8e8;
  color: var(--ink);
  border-radius: 42px 12px 42px 12px;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 18, 15, 0.2);
  border-radius: 8px;
  background: #fffdf5;
  color: var(--ink);
  padding: 13px 12px;
  resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(25, 97, 106, 0.14);
  outline: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  background: #0d1e20;
  color: rgba(255, 248, 232, 0.72);
}

.footer-logo {
  width: clamp(170px, 20vw, 260px);
  height: auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.92);
}

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

.footer-note p:last-child {
  color: #ffd684;
  font-size: 13px;
  font-weight: 800;
}

.site-footer .brand strong,
.site-footer a {
  color: #fff8e8;
}

.site-footer .brand small {
  color: rgba(255, 248, 232, 0.62);
}

.site-footer p {
  margin: 0;
}

/* Organic, story-led layouts */
.story-ritual,
.language-section,
.usp-section,
.ai-section,
.collections {
  overflow: hidden;
}

.story-ritual > *,
.language-section > *,
.usp-section > *,
.ai-section > *,
.collections > * {
  position: relative;
  z-index: 1;
}

.story-ritual::before,
.language-section::before,
.ai-section::before,
.collections::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 248, 232, 0.94), rgba(255, 248, 232, 0.64) 42%, rgba(255, 248, 232, 0.28)),
    url("assets/heritage-hero-art.png");
  background-size: cover;
  background-position: center right;
  content: "";
  opacity: 0.28;
}

.story-ritual {
  min-height: 760px;
}

.ritual-board {
  position: relative;
  display: block;
  min-height: 650px;
}

.ritual-thread {
  position: absolute;
  inset: 38px 26px 34px;
  border: 3px dashed rgba(185, 74, 86, 0.42);
  border-left-color: transparent;
  border-bottom-color: rgba(218, 123, 31, 0.45);
  border-radius: 48% 52% 44% 56% / 38% 46% 54% 62%;
  transform: rotate(-8deg);
}

.ritual-card {
  position: absolute;
  width: min(330px, 48%);
  min-height: 0;
  border: 0;
  border-radius: 46px 14px 52px 18px;
  background:
    linear-gradient(145deg, rgba(255, 253, 245, 0.96), rgba(248, 237, 207, 0.86));
}

.ritual-card:first-child {
  top: 6px;
  left: 0;
  grid-row: auto;
}

.ritual-card:nth-child(3) {
  top: 190px;
  right: 0;
  transform: rotate(1.2deg);
}

.ritual-card:nth-child(4) {
  bottom: 10px;
  left: 21%;
  transform: rotate(-1.4deg);
}

.ritual-card::after {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(25, 18, 15, 0.14);
  border-radius: 50%;
  content: "";
  opacity: 0.6;
}

.language-section {
  background:
    linear-gradient(120deg, rgba(19, 44, 47, 0.96), rgba(47, 61, 44, 0.88));
}

.language-section::before {
  background-image:
    linear-gradient(100deg, rgba(19, 44, 47, 0.96), rgba(19, 44, 47, 0.72) 52%, rgba(19, 44, 47, 0.48)),
    url("assets/heritage-hero-art.png");
  background-position: center;
  opacity: 0.38;
}

.language-panel {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 42% 58% 52% 48% / 34% 40% 60% 66%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transform: rotate(-1deg);
}

.language-panel h3 {
  margin-top: 42px;
}

.language-tab {
  border-radius: 999px;
}

.script-cloud span {
  border-radius: 999px;
}

.usp-bento {
  position: relative;
  display: block;
  min-height: 790px;
}

.feature-thread {
  position: absolute;
  inset: 70px 5% 80px;
  border: 3px dashed rgba(25, 97, 106, 0.26);
  border-right-color: rgba(218, 123, 31, 0.32);
  border-radius: 54% 46% 52% 48% / 42% 54% 46% 58%;
  transform: rotate(5deg);
}

.usp-card {
  position: absolute;
  width: 27%;
  min-height: 0;
  border-top-width: 0;
  border-radius: 40px 16px 48px 16px;
}

.usp-card.bento-large {
  top: 0;
  left: 0;
  width: 41%;
  min-height: 430px;
  border-radius: 90px 22px 70px 24px;
}

.usp-card:nth-of-type(2) {
  top: 20px;
  left: 47%;
  transform: rotate(-1.2deg);
}

.usp-card:nth-of-type(3) {
  top: 112px;
  right: 0;
  transform: rotate(1.2deg);
}

.usp-card.bento-tall {
  top: 420px;
  left: 33%;
  width: 31%;
  min-height: 310px;
  border-radius: 24px 70px 24px 70px;
  transform: rotate(1deg);
}

.usp-card:nth-of-type(5) {
  right: 5%;
  bottom: 50px;
  transform: rotate(-1deg);
}

.usp-card:nth-of-type(6) {
  left: 4%;
  bottom: 0;
  transform: rotate(-0.6deg);
}

.usp-card::after {
  border-radius: 999px;
}

.feature-visual {
  min-height: 72px;
}

.ai-section {
  background:
    linear-gradient(115deg, rgba(255, 248, 232, 0.96), rgba(248, 237, 207, 0.86) 48%, rgba(237, 222, 190, 0.92));
}

.ai-section::before {
  background-image:
    linear-gradient(90deg, rgba(255, 248, 232, 0.96), rgba(255, 248, 232, 0.78) 40%, rgba(255, 248, 232, 0.58)),
    url("assets/heritage-hero-art.png");
  background-position: center right;
  opacity: 0.24;
}

.ai-flow {
  position: relative;
  display: block;
  min-height: 360px;
}

.ai-thread {
  position: absolute;
  top: 70px;
  left: 8%;
  width: 80%;
  height: 220px;
  border-top: 4px dashed rgba(185, 74, 86, 0.48);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.ai-flow-card {
  position: absolute;
  width: min(380px, 46%);
  min-height: 0;
  border: 0;
  border-radius: 54px 18px 46px 20px;
}

.human-card {
  top: 0;
  left: 0;
  transform: rotate(-1.2deg);
}

.machine-card {
  right: 0;
  bottom: 0;
  transform: rotate(1.1deg);
}

.ai-arrow {
  position: absolute;
  top: 48%;
  left: 44%;
  width: 120px;
}

.ai-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.ai-benefits article {
  flex: 1 1 220px;
  min-height: 0;
  border: 0;
  border-radius: 999px 999px 999px 22px;
  padding: 18px 22px;
}

.ai-benefits article:nth-child(even) {
  border-radius: 22px 999px 999px 999px;
  transform: translateY(18px);
}

.ai-boundary div {
  border: 0;
  border-radius: 42px 12px 42px 12px;
}

.moment-list {
  position: relative;
  gap: 0;
  padding-left: 26px;
  border-left: 3px dashed rgba(255, 248, 232, 0.32);
}

.moment-list article {
  position: relative;
  display: block;
  padding: 0 0 24px;
  border: 0;
  background: transparent;
}

.moment-list article::before {
  position: absolute;
  top: 3px;
  left: -36px;
  width: 18px;
  height: 18px;
  border: 3px solid #ffd684;
  border-radius: 50%;
  background: var(--deep);
  content: "";
}

.moment-list span {
  display: inline-block;
  margin-bottom: 6px;
}

.story-shelf {
  display: flex;
  min-height: 470px;
  align-items: flex-end;
  gap: 0;
}

.collections::before {
  background-image:
    linear-gradient(90deg, rgba(248, 237, 207, 0.95), rgba(248, 237, 207, 0.74) 50%, rgba(248, 237, 207, 0.46)),
    url("assets/heritage-hero-art.png");
  background-position: center;
  opacity: 0.3;
}

.shelf-card {
  flex: 1 1 0;
  min-height: 360px;
  border: 0;
  border-radius: 80px 80px 14px 14px;
  box-shadow: 16px 20px 34px rgba(25, 18, 15, 0.12);
}

.shelf-card:nth-child(1) {
  transform: rotate(-3deg) translateY(18px);
}

.shelf-card:nth-child(2) {
  transform: rotate(2deg) translateY(-6px);
}

.shelf-card:nth-child(3) {
  transform: rotate(-1deg) translateY(28px);
}

.shelf-card:nth-child(4) {
  transform: rotate(3deg) translateY(4px);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 44px;
  }

  .split,
  .story-ritual,
  .language-stage,
  .ai-section,
  .app-section,
  .founders-note,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .ai-manifesto {
    position: static;
  }

  .ai-flow,
  .ai-benefits,
  .ai-boundary {
    grid-column: auto;
  }

  .split {
    gap: 20px;
  }

  .value-grid,
  .usp-grid,
  .language-grid,
  .usp-bento,
  .story-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-row,
  .ritual-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usp-card.bento-large,
  .usp-card.bento-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .ritual-board,
  .usp-bento,
  .ai-flow,
  .story-shelf {
    display: grid;
    min-height: 0;
  }

  .ritual-board,
  .usp-bento,
  .story-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .ai-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ritual-thread,
  .feature-thread,
  .ai-thread {
    display: none;
  }

  .ritual-card,
  .ritual-card:first-child,
  .ritual-card:nth-child(3),
  .ritual-card:nth-child(4),
  .usp-card,
  .usp-card.bento-large,
  .usp-card.bento-tall,
  .usp-card:nth-of-type(2),
  .usp-card:nth-of-type(3),
  .usp-card:nth-of-type(5),
  .usp-card:nth-of-type(6),
  .ai-flow-card,
  .human-card,
  .machine-card,
  .shelf-card,
  .shelf-card:nth-child(1),
  .shelf-card:nth-child(2),
  .shelf-card:nth-child(3),
  .shelf-card:nth-child(4) {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .ai-arrow {
    position: relative;
    top: auto;
    left: auto;
    width: 2px;
    height: 34px;
    justify-self: center;
  }

  .ai-arrow::after {
    top: auto;
    right: -6px;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .shelf-card {
    min-height: 310px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand-logo {
    width: min(190px, 58vw);
    max-height: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero {
    min-height: calc(100svh - 106px);
    padding: 44px 18px 42px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 34, 36, 0.94), rgba(13, 34, 36, 0.72)),
      linear-gradient(0deg, rgba(25, 18, 15, 0.42), rgba(25, 18, 15, 0.08));
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-copy,
  .section-lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

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

  .memory-strip {
    display: block;
  }

  .memory-strip p {
    margin-bottom: 5px;
    font-size: 22px;
  }

  .section {
    padding: 64px 18px;
  }

  .value-grid,
  .usp-grid,
  .language-grid,
  .usp-bento,
  .ai-benefits,
  .ai-boundary,
  .story-shelf,
  .ritual-board,
  .collection-row {
    grid-template-columns: 1fr;
  }

  .ai-flow {
    grid-template-columns: 1fr;
  }

  .ritual-board,
  .usp-bento,
  .story-shelf {
    grid-template-columns: 1fr;
  }

  .ai-arrow {
    width: 2px;
    height: 34px;
    justify-self: center;
  }

  .ai-arrow::after {
    top: auto;
    right: -6px;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .ai-flow-card {
    min-height: 0;
  }

  .ritual-card,
  .ritual-card:first-child {
    grid-row: auto;
    min-height: 280px;
  }

  .language-panel {
    min-height: 0;
    padding: 22px;
  }

  .language-panel h3 {
    margin-top: 52px;
    font-size: 36px;
  }

  .script-cloud {
    margin-top: 36px;
  }

  .story-line span {
    width: 100%;
  }

  .shelf-card {
    min-height: 280px;
  }

  .phone-shell {
    min-height: 0;
  }

  .phone-screen {
    min-height: 520px;
  }

  .preview-tabs {
    grid-template-columns: 1fr;
  }

  .note-stack p {
    font-size: 18px;
  }

  .launch-domain strong {
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
