@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,SOFT,wght@0,9..144,0..100,400..700;1,9..144,0..100,400..600&family=Inter:ital,wght@0,400..600;1,400..600&display=swap");

:root {
  color-scheme: light;
  --memory-primary: #1F4E4A;
  --memory-secondary: #F4E9D8;
  --memory-tertiary: #6E8FA3;
  --memory-highlight: #D96F4A;
  --memory-ink: #2B2A27;
  --memory-coral-text: #B5532F;
  --memory-mustard: #E8B84A;
  --paper: var(--memory-secondary);
  --paper-deep: rgb(110 143 163 / 12%);
  --ink: var(--memory-ink);
  --muted: #665d53;
  --line: rgb(31 78 74 / 18%);
  --green: var(--memory-primary);
  --green-dark: #173b38;
  --blue: var(--memory-tertiary);
  --clay: var(--memory-highlight);
  --coral-text: var(--memory-coral-text);
  --white: #fffaf0;
  --shadow: 0 24px 70px rgb(37 26 17 / 12%);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgb(255 250 240 / 86%) 0%, rgb(244 233 216 / 0%) 380px),
    var(--paper);
  font-family: var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: var(--coral-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

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

p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.site-header,
.site-footer {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  text-decoration: none;
}

.brand img {
  display: block;
  flex: 0 0 auto;
}

.brand-symbol {
  border-radius: 8px;
}

.brand-wordmark {
  width: auto;
  object-fit: contain;
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a,
.footer-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--coral-text);
}

.nav .parent-login {
  color: var(--green);
  opacity: .78;
}

.nav .parent-login:hover {
  color: var(--coral-text);
  opacity: 1;
}

.section,
.page-hero {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .65fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 44px 0 82px;
}

.hero-copy {
  max-width: 720px;
}

h1 {
  max-width: 860px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(46px, 7.4vw, 96px);
  font-weight: 600;
  line-height: 1.02;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  max-width: 680px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
}

.lede {
  max-width: 660px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.42;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--clay);
  border-radius: 8px;
  color: var(--ink);
  background: var(--clay);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(217 111 74 / 20%);
}

.button:hover {
  background: var(--coral-text);
  color: #ffffff;
}

.text-link {
  font-size: 16px;
  font-weight: 500;
}

.thread-preview {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgb(255 250 240 / 96%), rgb(110 143 163 / 18%)),
    var(--white);
  box-shadow: var(--shadow);
}

.thread-preview::before {
  position: absolute;
  inset: -16px auto auto -16px;
  width: 86px;
  height: 86px;
  border: 1px solid rgb(217 111 74 / 32%);
  border-radius: 50%;
  background: rgb(217 111 74 / 14%);
  content: "";
}

.thread-label {
  position: relative;
  color: var(--clay);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bubble {
  position: relative;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.45;
}

.bubble.parent {
  margin-left: 22px;
  color: var(--ink);
  background: #fffdf8;
}

.bubble.tuck {
  margin-right: 22px;
  color: #fef9ef;
  background: var(--green);
}

.two-column,
.split-band,
.plain-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 44px;
}

.section {
  padding: 78px 0;
}

.two-column p,
.split-band p,
.plain-grid p {
  margin-top: 18px;
}

.loop-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.loop-list strong {
  color: var(--green);
  font-size: 18px;
}

.loop-list span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.split-band {
  align-items: start;
  padding: 54px;
  border-block: 1px solid var(--line);
  background: rgb(110 143 163 / 12%);
}

.page {
  padding-bottom: 42px;
}

.page-hero {
  padding: 82px 0 40px;
}

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

.timeline article {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 62%);
}

.step-number {
  display: block;
  margin-bottom: 26px;
  color: var(--clay);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.timeline h2 {
  font-size: 25px;
  line-height: 1.12;
}

.timeline p {
  margin-top: 16px;
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 70%);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

details p {
  padding: 0 22px 22px;
  font-size: 17px;
}

.legal-body {
  max-width: 860px;
}

.legal-body h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  margin-top: 12px;
  font-size: 17px;
}

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

.footer-brand {
  color: var(--muted);
}

.footer-copy {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero,
  .two-column,
  .split-band,
  .plain-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .thread-preview {
    max-width: 560px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .section,
  .page-hero {
    width: min(100% - 32px, 1120px);
  }

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

  .nav,
  .footer-links {
    gap: 14px;
  }

  .nav a,
  .footer-links a {
    font-size: 14px;
  }

  .brand-wordmark {
    height: 31px;
  }

  .hero {
    padding: 36px 0 58px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .page-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  h2 {
    font-size: 32px;
  }

  p {
    font-size: 17px;
  }

  .lede {
    font-size: 20px;
  }

  .thread-preview,
  .split-band {
    padding: 22px;
  }

  .thread-preview::before {
    display: none;
  }

  .bubble.parent,
  .bubble.tuck {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 52px 0;
  }

  .page-hero {
    padding: 52px 0 18px;
  }

  .loop-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    padding: 22px;
  }
}

/* ---- Home v2: the finished family book ---- */

.home-v2 {
  background:
    radial-gradient(circle at 82% 5%, rgb(232 184 74 / 13%), transparent 30rem),
    linear-gradient(180deg, #fffaf0 0, var(--paper) 46rem, #f1e4d0 100%);
}

.home-v2 main {
  overflow: hidden;
}

.home-v2 .site-header,
.home-v2 .site-footer {
  width: min(100% - 56px, 1280px);
}

.home-header {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}

.home-header .nav {
  gap: 17px;
}

.home-header .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  color: #fffaf0;
  background: var(--green);
}

.home-header .nav-cta:hover {
  color: #fff;
  background: var(--coral-text);
}

.v2-hero,
.problem-section,
.text-year-section,
.book-section,
.how-section,
.no-guilt-section,
.beyond-quotes,
.control-section,
.plans-section,
.trust-section,
.questions-section,
.start-section {
  width: min(100% - 56px, 1280px);
  margin: 0 auto;
}

.v2-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 62px 0 98px;
}

.v2-hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--coral-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.v2-hero h1 {
  max-width: 700px;
  margin-top: 16px;
  font-size: clamp(54px, 6.4vw, 94px);
  font-variation-settings: "SOFT" 50;
  line-height: .97;
  letter-spacing: -.035em;
}

.v2-lede {
  max-width: 620px;
  margin-top: 25px;
  color: #504b45;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.5;
}

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

.home-v2 .button {
  min-height: 52px;
  padding-inline: 23px;
  border-radius: 999px;
  font-weight: 600;
}

.button-primary {
  border-color: var(--green);
  color: #fffaf0;
  background: var(--green);
  box-shadow: 0 14px 32px rgb(31 78 74 / 18%);
}

.button-primary:hover {
  border-color: var(--coral-text);
  background: var(--coral-text);
}

.button-quiet {
  border-color: var(--line);
  color: var(--green);
  background: rgb(255 250 240 / 70%);
  box-shadow: none;
}

.button-quiet:hover {
  color: var(--green);
  background: #fffdf8;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.book-hero-figure {
  position: relative;
  margin: 0;
}

.book-hero-figure::before {
  position: absolute;
  inset: 9% 11% -6% 12%;
  border-radius: 50%;
  background: rgb(217 111 74 / 10%);
  filter: blur(30px);
  content: "";
}

.book-hero-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(31 78 74 / 14%);
  border-radius: 30px 0 0 30px;
  box-shadow: 0 34px 90px rgb(49 35 22 / 18%);
}

.book-hero-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.book-hero-figure figcaption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px 0 28px;
  color: var(--muted);
  font-size: 12px;
}

.book-hero-figure figcaption span {
  flex: none;
  color: var(--coral-text);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.book-hero-figure figcaption strong {
  color: var(--green);
  font-weight: 500;
  text-align: right;
}

.problem-section {
  padding: 112px 0 130px;
}

.section-heading h2 {
  margin-top: 13px;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin-top: 22px;
  color: var(--muted);
}

.narrow-heading {
  max-width: 900px;
}

.narrow-heading h2 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 70px);
}

.centered-heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading h2,
.centered-heading > p:last-child {
  margin-inline: auto;
}

.fragment-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.fragment {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgb(255 253 248 / 88%);
  box-shadow: 0 18px 50px rgb(37 26 17 / 7%);
}

.fragment:nth-child(1) { transform: rotate(-2deg) translateY(14px); }
.fragment:nth-child(2) { transform: rotate(1.5deg); }
.fragment:nth-child(3) { transform: rotate(-1deg) translateY(22px); }
.fragment:nth-child(4) { transform: rotate(2deg) translateY(5px); }

.fragment-label {
  display: block;
  color: var(--coral-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fragment strong {
  display: block;
  margin-top: 28px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
}

.fragment p {
  margin-top: 15px;
  font-size: 15px;
}

.fragment-note p {
  margin-top: 31px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.3;
}

.fragment small {
  color: var(--muted);
}

.wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 48px;
  margin-top: 24px;
}

.wave i {
  width: 4px;
  border-radius: 4px;
  background: var(--green);
}

.wave i:nth-child(1), .wave i:nth-child(9) { height: 11px; }
.wave i:nth-child(2), .wave i:nth-child(8) { height: 22px; }
.wave i:nth-child(3), .wave i:nth-child(7) { height: 34px; }
.wave i:nth-child(4), .wave i:nth-child(6) { height: 18px; }
.wave i:nth-child(5) { height: 42px; background: var(--clay); }

.relief-line {
  max-width: 780px;
  margin: 75px auto 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.text-year-section {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 7vw, 105px);
  align-items: center;
  padding: 118px 0;
  border-block: 1px solid var(--line);
}

.text-year-copy h2 {
  max-width: 620px;
  margin-top: 13px;
  font-size: clamp(42px, 4.7vw, 68px);
}

.text-year-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.no-app-line {
  display: block;
  max-width: 590px;
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}

.year-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
}

.year-flow-card {
  position: relative;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(255 253 248 / 88%);
  box-shadow: 0 22px 58px rgb(42 31 19 / 9%);
}

.capture-flow-card { transform: rotate(-1.5deg); }
.chapter-flow-card { transform: translateY(-13px); }
.edition-flow-card { transform: rotate(1.5deg); }

.flow-time {
  display: block;
  color: var(--coral-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.flow-convo {
  gap: 7px;
  margin: 0;
}

.flow-convo .day {
  margin: 0 0 9px;
  color: var(--coral-text);
  font-size: 10px;
}

.flow-convo .msg {
  max-width: 91%;
  padding: 8px 10px;
  font-size: 11.5px;
  line-height: 1.38;
}

.flow-convo .msg.parent {
  background: #e1f0ea;
}

.flow-photo-message {
  width: 84%;
}

.flow-photo-message p {
  margin: 7px 1px 1px;
}

.flow-photo {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 9px;
  background: url("/assets/books/tuck-pink-helmet-text-moment-v2.webp") center / cover no-repeat;
}

.capture-flow-card small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.flow-arrow {
  color: var(--clay);
  font-family: var(--font-serif);
  font-size: 25px;
  text-align: center;
}

.chapter-art {
  height: 154px;
  margin-top: 27px;
  overflow: hidden;
  border-radius: 12px;
  background: url("/assets/books/tuck-pink-helmet-weekly-watercolor-v1.webp") center / cover no-repeat;
}

.year-flow-card h3 {
  margin-top: 18px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.15;
}

.year-flow-card > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.mini-book {
  position: relative;
  width: 128px;
  height: 174px;
  margin: 29px auto 0;
  border-radius: 3px 8px 8px 3px;
  background: var(--green);
  box-shadow: 8px 12px 23px rgb(31 78 74 / 23%);
  transform: rotate(3deg);
}

.mini-book::before {
  position: absolute;
  inset: 0 auto 0 8px;
  width: 1px;
  background: rgb(255 255 255 / 17%);
  content: "";
}

.mini-book span::before,
.mini-book span::after {
  position: absolute;
  left: 50%;
  color: #e8b84a;
  transform: translateX(-50%);
}

.mini-book span::before {
  top: 37px;
  content: "tuck";
  font-family: var(--font-serif);
  font-size: 22px;
}

.mini-book span::after {
  top: 75px;
  width: 42px;
  height: 53px;
  border: 1px solid rgb(232 184 74 / 55%);
  content: "";
}

.book-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  padding: 128px 0;
}

.book-showcase {
  position: relative;
  min-height: 590px;
}

.spread-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: 0 30px 80px rgb(42 31 19 / 18%);
}

.spread-card img {
  display: block;
  width: 100%;
  height: auto;
}

.spread-one {
  z-index: 2;
  inset: 9% 7% auto 0;
  transform: rotate(-2.2deg);
}

.spread-two {
  z-index: 1;
  inset: 0 0 auto 13%;
  transform: rotate(3.2deg);
  opacity: .65;
}

.book-copy h2 {
  margin-top: 13px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.book-copy > p:not(.eyebrow):not(.concept-note) {
  margin-top: 24px;
  color: var(--muted);
}

.book-specs {
  margin: 36px 0 0;
}

.book-specs div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.book-specs dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.book-specs dd {
  margin: 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 19px;
}

.concept-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.how-section {
  padding: 120px 0;
}

.v2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 64px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  list-style: none;
  background: rgb(255 253 248 / 76%);
}

.v2-steps li {
  min-height: 290px;
  padding: 30px 27px;
  border-left: 1px solid var(--line);
}

.v2-steps li:first-child {
  border-left: 0;
}

.step-num {
  color: var(--clay);
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
}

.v2-steps h3 {
  margin: 62px 0 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.1;
}

.v2-steps p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.no-guilt-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  padding: 95px 0;
  border-block: 1px solid var(--line);
}

.no-guilt-section h2 {
  margin-top: 14px;
}

.no-guilt-section > div:last-child p {
  color: var(--muted);
}

.no-guilt-section > div:last-child p + p {
  margin-top: 24px;
  color: var(--green);
}

.beyond-quotes {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 90px;
  padding: 128px 0;
}

.beyond-copy h2 {
  margin-top: 14px;
}

.beyond-copy > p:last-child {
  margin-top: 24px;
  color: var(--coral-text);
  font-family: var(--font-serif);
  font-size: 25px;
  font-style: italic;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  list-style: none;
  background: var(--line);
}

.story-list li {
  min-height: 120px;
  padding: 25px;
  color: var(--green);
  background: #fffaf0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.3;
}

.control-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: 64px 90px;
  padding: 118px 90px;
  border-radius: 30px;
  background: var(--green);
}

.control-section .eyebrow {
  color: #efc77a;
}

.control-section h2,
.control-section p {
  color: #fffaf0;
}

.control-copy h2 {
  margin-top: 14px;
}

.control-copy > p:last-child {
  margin-top: 24px;
  color: rgb(255 250 240 / 76%);
}

.approval-flow {
  display: grid;
  gap: 12px;
}

.approval-flow div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid rgb(255 250 240 / 22%);
  border-radius: 12px;
  color: rgb(255 250 240 / 60%);
}

.approval-flow div span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.approval-flow div strong {
  color: #fffaf0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
}

.approval-flow .approved {
  border-color: #efc77a;
  background: rgb(239 199 122 / 10%);
}

.assurance-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 30px 0 0;
  border-top: 1px solid rgb(255 250 240 / 20%);
  color: #fffaf0;
  list-style: none;
}

.assurance-list li::before {
  content: "✓";
  margin-right: 9px;
  color: #efc77a;
}

.plans-section {
  padding: 138px 0 120px;
}

.v2-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-top: 64px;
}

.v2-plan {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 253 248 / 80%);
}

.featured-plan {
  transform: translateY(-16px);
  border: 2px solid var(--green);
  background: #fffaf0;
  box-shadow: 0 28px 70px rgb(31 78 74 / 13%);
}

.plan-role {
  min-height: 34px;
  color: var(--coral-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.v2-plan h3 {
  margin-top: 15px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 31px;
}

.v2-price {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.v2-price span {
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 55px;
  font-weight: 600;
  line-height: 1;
}

.v2-inclusion {
  display: block;
  margin-top: 14px;
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--green);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.v2-inclusion.digital-inclusion {
  background: rgb(31 78 74 / 10%);
  color: var(--green);
}

.v2-plan > p:not(.plan-role):not(.v2-price) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
}

.v2-plan > a:last-child {
  align-self: flex-start;
  margin-top: auto;
  color: var(--coral-text);
  font-weight: 600;
}

.v2-plan > a.button:last-child {
  align-self: stretch;
  color: #fffaf0;
}

.pricing-note {
  max-width: 780px;
  margin: 35px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: end;
  padding: 100px 0;
  border-block: 1px solid var(--line);
}

.trust-section h2 {
  margin-top: 14px;
}

.trust-section > div > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

.trust-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-section li {
  min-height: 96px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--green);
  background: rgb(255 253 248 / 70%);
  font-family: var(--font-serif);
  font-size: 18px;
}

.questions-section {
  padding: 135px 0 120px;
}

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

.home-faq details {
  align-self: start;
  background: rgb(255 253 248 / 82%);
}

.home-faq summary {
  min-height: 72px;
  padding: 22px 52px 22px 22px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 19px;
  list-style: none;
  position: relative;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq summary::after {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--coral-text);
  content: "+";
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 400;
}

.home-faq details[open] summary::after {
  content: "−";
}

.home-faq details p {
  color: var(--muted);
  font-size: 15px;
}

.start-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  padding: 90px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 0, rgb(232 184 74 / 18%), transparent 28rem),
    #fffaf0;
  box-shadow: 0 30px 90px rgb(42 31 19 / 10%);
}

.start-copy h2 {
  margin-top: 14px;
}

.start-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.start-copy .guarantee-line {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: 15px;
}

.start-compose {
  margin: 0;
}

.start-compose form {
  align-items: stretch;
}

.start-compose .phone-field {
  border-radius: 13px;
}

.start-compose .country-only {
  border-radius: 13px 0 0 13px;
}

.start-compose .phone-field input[type="tel"] {
  border-radius: 0 13px 13px 0;
}

.start-compose button {
  border-radius: 13px;
  background: var(--green);
}

.start-compose button:hover {
  background: var(--coral-text);
}

.start-compose .compose-consent {
  margin-top: 10px;
  font-size: 11px;
}

.home-footer {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .v2-hero {
    grid-template-columns: 1fr 1fr;
  }

  .v2-hero h1 {
    font-size: clamp(50px, 7vw, 74px);
  }

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

  .book-section {
    grid-template-columns: 1fr;
  }

  .book-copy {
    max-width: 760px;
  }

  .v2-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-steps li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .v2-steps li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .control-section,
  .start-section {
    padding: 70px 55px;
  }
}

@media (max-width: 820px) {
  .home-v2 .site-header,
  .home-v2 .site-footer,
  .v2-hero,
  .problem-section,
  .text-year-section,
  .book-section,
  .how-section,
  .no-guilt-section,
  .beyond-quotes,
  .control-section,
  .plans-section,
  .trust-section,
  .questions-section,
  .start-section {
    width: min(100% - 36px, 1280px);
  }

  .v2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 0 88px;
  }

  .book-hero-figure {
    margin: 12px 0 0;
  }

  .book-hero-frame {
    border-radius: 24px 0 0 24px;
  }

  .book-section {
    padding-block: 95px;
  }

  .text-year-section {
    grid-template-columns: 1fr;
  }

  .text-year-copy {
    max-width: 760px;
  }

  .book-showcase {
    min-height: 470px;
  }

  .no-guilt-section,
  .beyond-quotes,
  .trust-section,
  .start-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .control-section {
    grid-template-columns: 1fr;
  }

  .v2-plan-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .featured-plan {
    transform: none;
  }

  .v2-plan {
    min-height: 360px;
  }

  .assurance-list {
    grid-template-columns: 1fr;
  }

  .home-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-header {
    flex-direction: row;
    align-items: center;
    padding-block: 16px;
  }

  .home-header .nav a:not(.nav-cta) {
    display: none;
  }

  .home-header .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .v2-hero {
    padding-top: 42px;
  }

  .v2-hero h1 {
    font-size: clamp(48px, 14vw, 67px);
  }

  .v2-lede {
    font-size: 18px;
  }

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

  .book-hero-figure figcaption {
    display: grid;
    padding-left: 12px;
  }

  .book-hero-figure figcaption strong {
    text-align: left;
  }

  .problem-section,
  .text-year-section,
  .how-section,
  .plans-section,
  .questions-section {
    padding-block: 86px;
  }

  .narrow-heading h2,
  .book-copy h2 {
    font-size: 39px;
  }

  .fragment-board,
  .story-list,
  .trust-section ul {
    grid-template-columns: 1fr;
  }

  .fragment {
    min-height: 160px;
  }

  .fragment:nth-child(n) {
    transform: none;
  }

  .relief-line {
    margin-top: 58px;
    font-size: 29px;
  }

  .text-year-section {
    gap: 55px;
  }

  .text-year-copy h2 {
    font-size: 39px;
  }

  .year-flow {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .year-flow-card {
    min-height: auto;
  }

  .year-flow-card:nth-of-type(n) {
    transform: none;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .edition-flow-card {
    text-align: center;
  }

  .book-showcase {
    min-height: 320px;
  }

  .spread-one {
    inset: 12% 0 auto 0;
  }

  .spread-two {
    inset: 0 -10% auto 15%;
  }

  .book-specs div {
    grid-template-columns: 80px 1fr;
  }

  .v2-steps {
    grid-template-columns: 1fr;
  }

  .v2-steps li {
    min-height: 240px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .v2-steps li:first-child {
    border-top: 0;
  }

  .v2-steps h3 {
    margin-top: 40px;
  }

  .no-guilt-section,
  .beyond-quotes,
  .trust-section {
    padding-block: 76px;
  }

  .control-section,
  .start-section {
    width: 100%;
    margin-bottom: 0;
    padding: 72px 22px;
    border-radius: 0;
  }

  .control-section {
    gap: 48px;
  }

  .approval-flow div {
    display: grid;
  }

  .v2-plan {
    min-height: 340px;
    padding: 29px 25px;
  }

  .start-compose form {
    flex-direction: column;
  }

  .start-compose .phone-field,
  .start-compose button {
    width: 100%;
  }

  .start-compose .compose-consent {
    font-size: 11px;
  }

  .home-footer {
    margin-top: 70px;
  }
}

/* ---- Home: conversational landing ---- */

.home {
  width: min(100% - 40px, 620px);
  margin: 0 auto;
}

.home-hero {
  padding: 44px 0 10px;
  text-align: center;
}

.home-hero h1 {
  max-width: none;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.04;
}

.home-lede {
  max-width: 460px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.convo {
  margin: 40px 0 0;
  display: grid;
  gap: 10px;
}

.day {
  margin: 18px 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.msg {
  position: relative;
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 16.5px;
  line-height: 1.45;
}

.msg.parent {
  justify-self: end;
  border-bottom-right-radius: 5px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
}

.msg.tuck {
  justify-self: start;
  border-bottom-left-radius: 5px;
  color: #fef9ef;
  background: var(--green);
}

.msg .dots,
.msg .said {
  display: block;
}

.msg q {
  quotes: "\201C" "\201D";
  font-family: var(--font-serif);
  font-style: italic;
}

.voice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.voice .bars {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
  height: 22px;
}

.voice .bars i {
  width: 3px;
  border-radius: 2px;
  background: var(--blue);
}

.voice .bars i:nth-child(1) { height: 8px; }
.voice .bars i:nth-child(2) { height: 14px; }
.voice .bars i:nth-child(3) { height: 20px; }
.voice .bars i:nth-child(4) { height: 11px; }
.voice .bars i:nth-child(5) { height: 17px; }
.voice .bars i:nth-child(6) { height: 7px; }
.voice .bars i:nth-child(7) { height: 13px; }
.voice .bars i:nth-child(8) { height: 19px; }
.voice .bars i:nth-child(9) { height: 9px; }
.voice .bars i:nth-child(10) { height: 15px; }
.voice .bars i:nth-child(11) { height: 6px; }
.voice .bars i:nth-child(12) { height: 12px; }

.voice .play {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
  flex: 0 0 auto;
}

.voice .play::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7.5px;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9px;
  border-color: transparent transparent transparent #fef9ef;
}

.voice .len {
  color: var(--muted);
  font-size: 13px;
}

.msg.card {
  max-width: 88%;
  padding: 16px 18px 14px;
  background: #fffaf0;
  border: 1px solid var(--line);
  color: var(--ink);
}

.msg.card .card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--green);
  margin: 0 0 8px;
}

.msg.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.msg.card li {
  font-size: 15px;
  line-height: 1.4;
}

.msg.card li q {
  color: var(--coral-text);
}

.msg.card .more {
  color: var(--muted);
  font-size: 13px;
  margin-top: 9px;
}

@media (prefers-reduced-motion: no-preference) {
  .js .convo .msg,
  .js .convo .day {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  .js .convo .msg.in,
  .js .convo .day.in {
    animation: msg-rise 0.45s ease-out forwards;
    animation-delay: var(--d, 0s);
  }

  .js .msg.tuck .dots {
    display: none;
  }

  .js .msg.tuck.in .dots {
    display: block;
    overflow: hidden;
    animation: dots-hide 0.01s linear forwards;
    animation-delay: calc(var(--d, 0s) + 0.9s);
  }

  .msg.tuck .dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 4px;
    border-radius: 50%;
    background: rgb(254 249 239 / 65%);
    animation: dot-pulse 1s ease-in-out infinite;
  }

  .msg.tuck .dots span:nth-child(2) { animation-delay: 0.15s; }
  .msg.tuck .dots span:nth-child(3) { animation-delay: 0.3s; }

  .js .msg.tuck.in .said {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    animation: said-show 0.3s ease-out forwards;
    animation-delay: calc(var(--d, 0s) + 0.9s);
  }
}

@media (prefers-reduced-motion: reduce) {
  .msg.tuck .dots {
    display: none;
  }

  .compose button.is-sending::before {
    animation: none;
  }
}

html:not(.js) .msg.tuck .dots {
  display: none;
}

@keyframes msg-rise {
  to { opacity: 1; transform: none; }
}

@keyframes dots-hide {
  to { max-height: 0; opacity: 0; }
}

@keyframes said-show {
  from { max-height: 0; opacity: 0; }
  to { max-height: 200px; opacity: 1; }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@keyframes tuck-spin {
  to { transform: rotate(360deg); }
}

.compose {
  position: relative;
  margin: 34px 0 8px;
}

.compose form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.compose-consent {
  flex-basis: 100%;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 4px 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  text-align: left;
}

.compose-consent input {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--clay);
}

.compose-consent a {
  color: var(--coral-text);
}

.phone-field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fffdf8;
}

.phone-field:focus-within {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.phone-field .country-only {
  flex: 0 0 auto;
  border: none;
  border-right: 1px solid var(--line);
  border-radius: 26px 0 0 26px;
  background: transparent;
  margin: 6px 0;
  padding: 0 16px;
  align-self: stretch;
  display: flex;
  align-items: center;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  white-space: nowrap;
}

.phone-field input[type="tel"] {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0 26px 26px 0;
  background: transparent;
  padding: 0 20px 0 14px;
  min-height: 50px;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.phone-field input[type="tel"]:focus-visible {
  outline: none;
}

.compose-error,
.compose-status {
  margin: 10px 4px 0;
  color: var(--coral-text);
  font-size: 14px;
  text-align: center;
}

.compose-status {
  flex-basis: 100%;
  min-height: 20px;
  margin-top: 4px;
  color: var(--muted);
}

.compose-status:empty {
  display: none;
}

.compose-status.is-pending {
  color: var(--muted);
}

.compose-status.is-success {
  color: var(--green);
}

.compose-status.is-error {
  color: var(--coral-text);
}

.compose button {
  position: relative;
  min-height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 26px;
  background: var(--clay);
  color: #fff7ee;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}

.compose button:hover {
  background: var(--coral-text);
}

.compose button:disabled {
  cursor: default;
  opacity: 0.86;
}

.compose button.is-sending {
  padding-left: 46px;
  background: var(--green);
}

.compose button.is-sending::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border: 2px solid rgb(255 247 238 / 45%);
  border-top-color: #fff7ee;
  border-radius: 50%;
  animation: tuck-spin 0.75s linear infinite;
}

.compose button.is-sent {
  background: var(--green);
}

.compose-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13.5px;
  text-align: center;
}

.compose-reply {
  display: none;
  margin-top: 14px;
}

.compose-reply.visible {
  display: grid;
}

.beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 84px 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.beats svg {
  display: block;
  margin: 0 auto 10px;
}

.beats strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--green);
}

.pocket-scene {
  margin: 90px auto 0;
  max-width: 460px;
  position: relative;
  text-align: center;
}

.pocket-kicker {
  color: var(--clay);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pocket-scene h2 {
  max-width: none;
  margin: 10px 0 30px;
  font-size: clamp(28px, 4vw, 38px);
}

.pocket {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  padding: 0 12px;
}

.pocket-card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 330px;
  padding: 22px 24px 96px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 10px;
  transform: rotate(-2deg);
  text-align: left;
}

.pocket-card .card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--green);
  margin: 0 0 4px;
}

.pocket-card .card-range {
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.pocket-card blockquote {
  margin: 0 0 12px;
  padding: 2px 0 2px 12px;
  border-left: 3px solid var(--clay);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.4;
  color: var(--ink);
}

.pocket-card blockquote cite {
  display: block;
  margin-top: 3px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12.5px;
  color: var(--blue);
}

.pocket-card .card-sun {
  position: absolute;
  top: 18px;
  right: 18px;
}

.pocket-front {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 140px;
  background: var(--green);
  border-radius: 30px 30px 64px 64px;
}

.pocket-front::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgb(244 233 216 / 55%);
  border-radius: 22px 22px 54px 54px;
}

.msg.card .card-open {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink);
}

.msg.card .card-cover {
  display: block;
  width: calc(100% + 16px);
  margin: -2px -8px 12px;
  height: auto;
  border-radius: 9px;
  border: 1px solid var(--line);
}

.chapter-sub {
  max-width: 440px;
  margin: -16px auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.art-card {
  padding: 14px 14px 150px;
}

.art-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.art-card .art-credit {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
}

.pocket-scene .book-line {
  margin: 48px auto 0;
  max-width: 420px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--green);
}

.trust {
  margin: 96px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}

.home + .site-footer {
  margin-top: 72px;
}

@media (max-width: 640px) {
  .home-hero {
    padding-top: 28px;
  }

  .msg {
    max-width: 86%;
  }

  .beats {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .compose form {
    flex-direction: column;
  }

  .phone-field,
  .compose button {
    width: 100%;
  }
}

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

/* ---- Pricing ---- */

.pricing-hero {
  padding: 44px 0 24px;
}

.pricing-hero .lede {
  margin-top: 16px;
}

.pricing-plans {
  padding-top: 32px;
}

.trial-line {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgb(255 255 255 / 70%);
}

.price-card.featured {
  border-color: var(--clay);
  background:
    linear-gradient(160deg, rgb(255 250 240 / 96%), rgb(217 111 74 / 8%)),
    var(--white);
  box-shadow: var(--shadow);
}

.price-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--clay);
  color: #fff7ee;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.price-name {
  margin: 0;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 0;
}

.price-inclusion {
  width: 100%;
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--green);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .045em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.price-inclusion.digital-inclusion {
  background: rgb(31 78 74 / 10%);
  color: var(--green);
}

.price-amount {
  color: var(--green);
  font-family: var(--font-serif);
  font-size: clamp(46px, 7vw, 60px);
  font-weight: 600;
  line-height: 1;
}

.price-cadence {
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.price-sub {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
}

.price-card .price-cta {
  margin: 0;
  align-self: stretch;
  width: 100%;
  cursor: pointer;
}

.price-form {
  align-self: stretch;
  width: 100%;
  margin: 0;
}

.price-card .price-cta.ghost {
  background: transparent;
  color: var(--coral-text);
  box-shadow: none;
}

.price-card .price-cta.ghost:hover {
  background: var(--clay);
  color: #fff7ee;
}

.price-check {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 8px;
  margin: 22px 0 12px;
  color: var(--green);
  font-size: 14.5px;
  font-weight: 500;
}

.price-check::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fef9ef;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.price-foot {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}

.same-line {
  max-width: 560px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.parent-quote {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: center;
}

.parent-quote p {
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
}

.parent-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13.5px;
  font-style: normal;
}

.contributor-note {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}

.contributor-note strong {
  color: var(--green);
}

.guarantee-band {
  padding: 54px;
  border: 1px solid rgb(217 111 74 / 32%);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgb(255 250 240 / 96%), rgb(217 111 74 / 8%)),
    var(--white);
  box-shadow: var(--shadow);
}

.guarantee-band + .split-band {
  margin-top: 72px;
}

.guarantee-intro {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.guarantee-intro .pocket-kicker {
  display: block;
  margin-bottom: 10px;
}

.guarantee-intro h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.guarantee-intro p {
  margin-top: 18px;
  font-size: 17px;
}

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

.guarantee-moment {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 10px 28px rgb(31 78 74 / 8%);
}

.guarantee-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.guarantee-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.guarantee-moment figcaption {
  padding: 22px;
}

.guarantee-step-label {
  display: block;
  margin-bottom: 8px;
  color: var(--coral-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guarantee-moment figcaption > strong {
  display: block;
  color: var(--green);
  font-family: var(--font-serif);
  font-size: 22px;
}

.guarantee-moment p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.guarantee-decision {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: 10px;
  background: var(--green);
  color: #fef9ef;
}

.guarantee-decision > strong {
  font-family: var(--font-serif);
  font-size: 23px;
}

.guarantee-decision p {
  color: inherit;
  font-size: 15px;
}

.guarantee-terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgb(217 111 74 / 24%);
}

.guarantee-terms p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.guarantee-terms strong {
  color: var(--green);
}

.honesty {
  text-align: center;
}

.honesty h2 {
  margin-left: auto;
  margin-right: auto;
}

.honesty > p {
  max-width: 720px;
  margin: 18px auto 0;
}

.keepsake .pocket-kicker {
  display: block;
  margin-bottom: 10px;
}

.cta-band {
  text-align: center;
}

.cta-band h2 {
  max-width: none;
}

.cta-band .lede {
  margin-left: auto;
  margin-right: auto;
}

.cta-band .actions {
  justify-content: center;
}

.cta-fineprint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

}

@media (max-width: 640px) {
  .pricing-hero {
    padding: 28px 0 12px;
  }

  .pricing-hero h1 {
    font-size: 36px;
  }

  .pricing-hero .lede {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.4;
  }

  .pricing-plans {
    padding-top: 18px;
  }

  .trial-line {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .price-card {
    padding: 28px 24px 26px;
  }

  .parent-quote {
    margin-top: 34px;
  }

  .parent-quote p {
    font-size: 18px;
  }

  .guarantee-band,
  .guarantee-flow,
  .guarantee-decision,
  .guarantee-terms {
    grid-template-columns: 1fr;
  }

  .guarantee-band {
    padding: 28px 24px;
  }

  .guarantee-band + .split-band {
    margin-top: 48px;
  }

  .guarantee-intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .guarantee-flow {
    gap: 18px;
  }

  .guarantee-visual {
    aspect-ratio: 16 / 10;
  }

  .guarantee-decision {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 12px;
    padding: 16px 0;
  }

  .site-header .nav {
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }

  .site-header .nav a {
    font-size: 12.5px;
    white-space: nowrap;
  }
}

/* ---- Waitlist modal ---- */

.join-modal {
  width: min(100% - 32px, 460px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.join-modal::backdrop {
  background: rgb(31 42 39 / 45%);
}

.join-modal-body {
  position: relative;
  padding: 30px 28px 26px;
}

.join-modal-dismiss {
  margin: 0;
}

.join-modal-close {
  position: absolute;
  top: -8px;
  right: -6px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.join-modal-close:hover {
  color: var(--coral-text);
}

.join-modal-body h2 {
  max-width: none;
  font-size: clamp(25px, 4vw, 31px);
}

.join-modal-lede {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.join-modal #wl-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.join-modal-submit {
  width: 100%;
}
