
:root {
  --ink: #10131b;
  --muted: #626878;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: rgba(16, 19, 27, .12);
  --night: #11152d;
  --night-2: #1a1d47;
  --violet: #6958df;
  --violet-2: #9b72ef;
  --gold: #d9ad50;
  --gold-soft: #f2d58c;
  --rose: #f4b9c5;
  --sky: #9fd9ee;
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;
  --shadow: 0 30px 80px rgba(24, 24, 44, .14);
  --shadow-strong: 0 40px 100px rgba(11, 14, 35, .28);
  --max: 1180px;
  --nav-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.clara-page {
  color: #f8f6ff;
  background:
    radial-gradient(circle at 15% 15%, rgba(124, 95, 237, .32), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(63, 178, 217, .18), transparent 28%),
    linear-gradient(180deg, #11142d 0%, #17163b 42%, #0e1126 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 118px 0; }
.section-tight { padding: 78px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head h2,
.display-title {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(14px);
}
.preview-banner {
  position: relative;
  z-index: 50;
  padding: 9px 18px;
  text-align: center;
  background: #10131b;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .02em;
}
.clara-page .preview-banner {
  background: #f2ce7a;
  color: #1a1733;
  font-weight: 700;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: #111;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(247,246,242,.78);
  backdrop-filter: saturate(150%) blur(20px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(247,246,242,.93);
}
.clara-page .site-header {
  background: rgba(16, 19, 43, .68);
}
.clara-page .site-header.is-scrolled {
  border-color: rgba(255,255,255,.1);
  background: rgba(16, 19, 43, .93);
}
.nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  font-size: .85rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: none;
  color: var(--gold-soft);
  box-shadow: none;
}
.clara-page .brand-mark { background: none; color: #17142e; }
.brand-mark img { width: 34px; height: 34px; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  color: #404552;
}
.clara-page .nav-links { color: rgba(255,255,255,.76); }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--ink); }
.clara-page .nav-links a:hover { color: #fff; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(16,19,27,.16);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(16,19,27,.22); }
.button:active { transform: translateY(0); }
.button-light {
  background: #fff;
  color: var(--ink);
}
.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}
.clara-page .button-outline {
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.button-gold {
  color: #17142f;
  background: linear-gradient(135deg, #f6df9f, #d7a945);
  box-shadow: 0 16px 38px rgba(217,173,80,.26);
}
.button-gold:hover { box-shadow: 0 20px 42px rgba(217,173,80,.35); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .84rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Homepage */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--nav-h) - 32px);
  display: grid;
  align-items: center;
  padding: 78px 0 110px;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 10% -18% auto auto;
  width: 640px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,217,238,.34), rgba(155,114,239,.13) 45%, transparent 70%);
  filter: blur(10px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
  align-items: center;
  gap: 70px;
}
.hero-copy h1 {
  max-width: 830px;
  margin: 0 0 26px;
  font-size: clamp(3.75rem, 7.8vw, 7.9rem);
  line-height: .87;
  letter-spacing: -.07em;
  font-weight: 760;
}
.hero-copy h1 em {
  display: block;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.055em;
  color: #5443c7;
}
.hero-copy > p {
  max-width: 650px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
  color: #4f5563;
  font-size: .86rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(217,173,80,.14);
}
.book-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}
.book-glow {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.95), rgba(179,215,243,.56) 31%, rgba(134,110,227,.24) 56%, transparent 72%);
  filter: blur(16px);
}
.book-object {
  position: relative;
  width: min(72%, 400px);
  transform: perspective(1200px) rotateY(-12deg) rotateX(2deg);
  filter: drop-shadow(0 36px 32px rgba(29,29,56,.25));
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.book-object:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(0deg) translateY(-8px); }
.book-object::after {
  content: "";
  position: absolute;
  inset: 2% -11% 2% auto;
  width: 11%;
  background: linear-gradient(90deg, rgba(12,16,42,.5), #272347);
  transform: rotateY(70deg);
  transform-origin: left;
  border-radius: 0 4px 4px 0;
}
.book-object img {
  width: 100%;
  border-radius: 4px 9px 9px 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.float-pill {
  position: absolute;
  right: 0;
  bottom: 15%;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  font-size: .82rem;
  font-weight: 720;
}
.float-pill strong { color: #5946ca; }

.statement {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(14,16,36,.96), rgba(31,27,77,.92)),
    url("../images/clara-glow.webp") center/cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.statement-inner {
  min-height: 520px;
  padding: clamp(44px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.statement h2 {
  max-width: 940px;
  margin: 0 0 24px;
  font-size: clamp(2.6rem, 6.6vw, 6.7rem);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 680;
}
.statement p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 1.06rem;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 9vw, 120px);
}
.cover-panel {
  position: relative;
  padding: 54px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.8), transparent 34%),
    linear-gradient(145deg, #d9e9ef, #dccff7 45%, #f3c6ca);
}
.cover-panel img {
  width: min(100%, 390px);
  margin-inline: auto;
  border-radius: 5px 10px 10px 5px;
  box-shadow: 0 32px 66px rgba(37,30,74,.26);
}
.feature-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.feature-copy p { margin: 0 0 28px; color: var(--muted); font-size: 1.08rem; }
.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}
.fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.65);
}
.fact strong { display: block; font-size: 1.15rem; }
.fact span { color: var(--muted); font-size: .78rem; }

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.world-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1c2142;
  box-shadow: 0 18px 50px rgba(17,19,41,.12);
}
.world-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8,11,28,.88));
}
.world-card:hover img { transform: scale(1.06); }
.world-card-copy {
  position: absolute;
  z-index: 2;
  inset: auto 22px 22px;
  color: #fff;
}
.world-card-copy small { color: rgba(255,255,255,.65); }
.world-card-copy h3 { margin: 3px 0 0; font-size: 1.35rem; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.principle {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.56);
}
.principle-number {
  color: #7363df;
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .13em;
}
.principle h3 { margin: 64px 0 10px; font-size: 1.42rem; }
.principle p { margin: 0; color: var(--muted); }

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 8vw, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 75% 15%, rgba(159,217,238,.25), transparent 30%),
    radial-gradient(circle at 5% 100%, rgba(244,185,197,.22), transparent 35%),
    #14172f;
}
.cta-panel h2 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(2.7rem, 5.7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.cta-panel p { max-width: 600px; color: rgba(255,255,255,.68); margin-bottom: 30px; }

/* Clara landing */
.clara-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 118px;
}
.clara-hero::before {
  content: "";
  position: absolute;
  inset: -18% -10% auto;
  height: 760px;
  background:
    radial-gradient(circle at 22% 35%, rgba(236,185,216,.25), transparent 25%),
    radial-gradient(circle at 67% 26%, rgba(159,217,238,.24), transparent 24%),
    radial-gradient(circle at 50% 40%, rgba(127,93,237,.32), transparent 45%);
  filter: blur(28px);
}
.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(246,216,145,.8) 0 1px, transparent 1.8px);
  background-size: 90px 90px, 140px 140px;
  background-position: 0 0, 34px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}
.clara-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 72px;
}
.clara-copy .eyebrow { color: #f1ce78; }
.clara-copy h1 {
  margin: 0 0 26px;
  font-size: clamp(3.5rem, 7vw, 7.35rem);
  line-height: .9;
  letter-spacing: -.064em;
  font-weight: 720;
}
.clara-copy h1 span {
  display: block;
  color: #f2d78f;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}
.clara-copy > p {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}
.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.benefit {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.83);
  font-size: .8rem;
  backdrop-filter: blur(12px);
}
.signup-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 30px;
  background: rgba(255,255,255,.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(25px);
}
.signup-card::before {
  content: "✦";
  position: absolute;
  top: -21px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8e6ae, #d6a33c);
  color: #1a1733;
  box-shadow: 0 15px 32px rgba(217,173,80,.3);
  font-size: 1.25rem;
}
.signup-card h2 { margin: 0 0 8px; font-size: 1.65rem; letter-spacing: -.025em; }
.signup-card > p { margin: 0 0 22px; color: rgba(255,255,255,.62); font-size: .93rem; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  margin: 0 0 7px;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 700;
}
.form-field input[type="text"],
.form-field input[type="email"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  outline: none;
  background: rgba(7,9,27,.36);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input::placeholder { color: rgba(255,255,255,.38); }
.form-field input:focus {
  border-color: rgba(244,216,145,.75);
  box-shadow: 0 0 0 4px rgba(244,216,145,.1);
}
.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 17px 0 20px;
  color: rgba(255,255,255,.58);
  font-size: .74rem;
  line-height: 1.45;
}
.checkbox input { margin-top: 3px; accent-color: #e6bf65; }
.signup-card .button { width: 100%; }
.form-note {
  margin-top: 14px;
  color: rgba(255,255,255,.48);
  text-align: center;
  font-size: .7rem;
}
.form-success {
  display: none;
  min-height: 390px;
  place-items: center;
  text-align: center;
}
.form-success.is-visible { display: grid; }
.form-success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242,215,143,.14);
  border: 1px solid rgba(242,215,143,.35);
  color: #f2d78f;
  font-size: 1.65rem;
}

.clara-section {
  position: relative;
  padding: 110px 0;
}
.clara-section .section-head p { color: rgba(255,255,255,.6); }
.clara-section .eyebrow { color: #f1ce78; }

.gift-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: start;
}
.gift-card:nth-child(5) { grid-column: span 2; aspect-ratio: 1.769; }
.gift-card {
  position: relative;
  aspect-ratio: .766;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(155deg, rgba(141,114,233,.42), rgba(20,24,55,.94));
}
.gift-card:nth-child(2) { background: linear-gradient(155deg, rgba(69,167,203,.42), rgba(20,24,55,.94)); }
.gift-card:nth-child(3) { background: linear-gradient(155deg, rgba(240,162,189,.36), rgba(20,24,55,.94)); }
.gift-card:nth-child(4) { background: linear-gradient(155deg, rgba(224,183,87,.35), rgba(20,24,55,.94)); }
.gift-card:nth-child(5) { background: linear-gradient(155deg, rgba(107,184,147,.35), rgba(20,24,55,.94)); }
.gift-card:not(:has(img))::before {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%,-50%);
  font-size: clamp(2rem, 4vw, 4rem);
  color: rgba(255,255,255,.42);
  text-shadow: 0 0 35px rgba(255,255,255,.25);
}
.gift-card:not(:has(img))::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 1.7px);
  background-size: 46px 46px;
  opacity: .22;
}

.gift-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}

.gift-label {
  position: absolute;
  z-index: 2;
  inset: auto 14px 14px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(7,9,27,.55);
  backdrop-filter: blur(12px);
}
.gift-label strong { display: block; font-size: .82rem; }
.gift-label span { color: rgba(255,255,255,.55); font-size: .67rem; }

.clara-story {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}
.clara-book-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.clara-book-stage::before {
  content: "";
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154,116,239,.4), rgba(90,178,212,.15) 44%, transparent 70%);
  filter: blur(20px);
}
.clara-book-stage img {
  position: relative;
  width: min(78%, 390px);
  border-radius: 5px 10px 10px 5px;
  box-shadow: 0 42px 90px rgba(0,0,0,.42);
  transform: rotate(-3deg);
}
.clara-story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.clara-story-copy p { color: rgba(255,255,255,.66); font-size: 1.04rem; }
.clara-quote {
  margin-top: 30px;
  padding: 22px 0 0 22px;
  border-left: 1px solid rgba(242,215,143,.55);
  color: #f2d78f;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 1.3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}
.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 50%;
  color: #1b1832;
  background: #f1cf7d;
  font-weight: 800;
}
.step h3 { margin: 0 0 9px; }
.step p { margin: 0; color: rgba(255,255,255,.56); }

.faq {
  border-top: 1px solid rgba(255,255,255,.12);
}
.faq details {
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 23px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: #f2d78f; }
.faq details[open] summary::after { content: "–"; }
.faq p { max-width: 680px; color: rgba(255,255,255,.58); }

/* Utility pages */
.legal-page { background: var(--paper); }
.legal-main { padding: 80px 0 120px; }
.legal-main h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: .95; letter-spacing: -.06em; }
.legal-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.legal-card .warning {
  padding: 16px;
  border-radius: 14px;
  background: #fff3cd;
  color: #5f4b00;
}
.legal-card h2 { margin-top: 36px; }

/* Footer */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.clara-page .site-footer { border-color: rgba(255,255,255,.11); }
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .78rem;
}
.clara-page .footer-row { color: rgba(255,255,255,.46); }
.footer-links { display: flex; gap: 18px; }

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .hero-grid, .clara-hero-grid, .book-feature, .clara-story {
    grid-template-columns: 1fr;
  }
  .home-hero { padding-top: 58px; }
  .book-stage { min-height: 560px; }
  .clara-hero-grid { gap: 52px; }
  .signup-card { width: min(100%, 620px); }
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-preview { grid-template-columns: repeat(3, 1fr); }
  .clara-story-copy { order: -1; }
}
@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section, .clara-section { padding: 82px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .nav-links a:not(.button) { display: none; }
  .brand { font-size: .77rem; }
  .home-hero { min-height: auto; padding: 48px 0 80px; }
  .hero-copy h1, .clara-copy h1 { font-size: clamp(3.3rem, 17vw, 5.2rem); }
  .hero-grid, .clara-hero-grid { gap: 30px; }
  .book-stage { min-height: 470px; }
  .book-object { width: min(70%, 330px); }
  .float-pill { right: 6%; bottom: 5%; }
  .statement-inner { min-height: 460px; padding: 36px 28px; }
  .cover-panel { padding: 34px; }
  .fact-row { grid-template-columns: 1fr; }
  .world-grid { grid-template-columns: 1fr; }
  .world-card { min-height: 420px; }
  .principles, .steps { grid-template-columns: 1fr; }
  .principle { min-height: auto; }
  .principle h3 { margin-top: 40px; }
  .clara-hero { padding: 48px 0 86px; }
  .signup-card { padding: 26px 20px 22px; }
  .gift-preview { grid-template-columns: repeat(2, 1fr); }
  .gift-card:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 1.769; }
  .clara-book-stage { min-height: 500px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 460px) {
  .button-row .button { width: 100%; }
  .hero-meta { flex-direction: column; }
  .gift-preview { gap: 10px; }
  .gift-card { border-radius: 17px; }
  .gift-label { inset: auto 9px 9px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
