/* Garden concept: scoped to the isolated homepage; legal pages retain their layout. */

.home-page {
  --garden-ink: #233d33;
  --garden-cream: #fbf7ee;
  --garden-coral: #ff9d88;
  --garden-coral-small: #ffccbb;
  --garden-coral-rgb: 255,157,136;
  --anchor-offset: 88px;
  background: #243d32;
  color: var(--garden-ink);
  overflow-x: clip;
  isolation: isolate;
}

.home-page p {
  color: #526057;
}

.home-page [hidden] {
  display: none !important;
}

.home-page h1,
.home-page h2 {
  font-weight: 500;
}

.home-page a,
.home-page button {
  -webkit-tap-highlight-color: transparent;
}

.home-page :focus-visible {
  outline: 3px solid #b75a36;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 16px;
  padding: 12px 20px;
  background: #fff;
  color: #233d33;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  padding: 24px 4.5%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: none;
  backdrop-filter: none;
}

.home-page .site-header .wordmark {
  padding: 8px 18px 10px;
}

.home-page .site-header .wordmark,
.home-page .footer-wordmark {
  background: #fffaf2;
  border: 1px solid #fff;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 #fff,0 6px 22px #102b2420;
  transition: box-shadow .2s ease;
}

.home-page .site-header .wordmark img {
  width: 144px;
}

.home-page .site-nav {
  gap: 30px;
  display: flex;
  border: 1px solid #fff5;
  border-radius: 999px;
  padding: 0 24px;
  background: #142a292e;
  backdrop-filter: blur(16px);
}

.home-page .site-nav a {
  color: #fffaf1;
  font-size: .875rem;
  font-weight: 500;
  min-height: 48px;
  background: none;
  padding: 0;
  border: 0;
}

.home-page .site-nav a:hover {
  color: var(--garden-coral-small);
}

.home-page .header-cta-slot {
  flex: 0 0 168px;
  height: 48px;
}

.home-page .header-cta {
  position: static;
  width: 168px;
  min-height: 48px;
  font-size: .875rem;
  padding: 0 24px;
}

.menu-toggle {
  display: none;
}

.home-page .hero-section {
  isolation: isolate;
  min-height: 880px;
  min-height: max(850px,100svh);
  background: transparent;
  border: 0;
  color: #fffaf1;
}

/* The garden moves at the opening and closing; reading chapters use its still. */

.garden-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #255557;
}

.scene-poster,
[data-garden-video] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.garden-backdrop .scene-poster,
.garden-backdrop video {
  object-position: 50% 55%;
}

.garden-backdrop video {
  opacity: calc(1 - var(--quiet-progress,0));
}

.garden-backdrop .scene-poster {
  filter: saturate(calc(1 - .18 * var(--quiet-progress,0)));
}

.garden-backdrop::before,
.garden-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Protect the opening copy while leaving the phone-side garden full of light.
   Scroll progress gently brings back the reading wash, without changing films. */

.garden-backdrop::before {
  background: linear-gradient(0deg,#0c251d55,transparent 26%,transparent 82%,#0c251d26);
  opacity: calc(1 - var(--reading-progress,1));
}

/* The closing glass panel protects its own copy; let the garden around it glow. */

.garden-backdrop::after {
  opacity: calc((1 - var(--faq-progress,0)) * (1 - .75 * var(--closing-progress,0)));
  background: linear-gradient(90deg,
  rgb(7 25 19 / calc(.82 - .08 * var(--reading-progress,1))) 0%,
  rgb(7 25 19 / calc(.70 + .01 * var(--reading-progress,1))) 32%,
  rgb(7 25 19 / calc(.24 + .43 * var(--reading-progress,1))) 62%,
  rgb(7 25 19 / calc(.04 + .60 * var(--reading-progress,1))) 100%);
}

.faq-reading-wash {
  position: absolute;
  inset: 0;
  opacity: var(--faq-progress,0);
  background: radial-gradient(ellipse 65% 90% at 50% 50%,#071913db 0%,#071913c7 48%,#07191380 72%,#0719131f 92%,#0719130a 100%);
}

.home-page .hero-inner {
  position: relative;
  z-index: 1;
  width: 91%;
  max-width: 1530px;
  min-height: max(850px,100svh);
  padding: 152px 0 115px;
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(280px,.8fr);
  gap: clamp(40px,8vw,160px);
  align-items: center;
  justify-items: stretch;
  text-align: left;
}

.home-page .hero-copy {
  display: block;
  max-width: 790px;
  justify-items: start;
}

.home-page .hero-copy h1 {
  max-width: 790px;
  color: #fffaf1;
  font-size: clamp(4.1rem,5.65vw,6.9rem);
  letter-spacing: -.035em;
  line-height: .99;
  text-wrap: balance;
}

.home-page .hero-copy h1 span {
  color: var(--garden-coral);
  font-weight: 500;
  margin-top: 14px;
}

.home-page .hero-lede {
  max-width: 495px;
  color: #fffaf1;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-page .hero-audience {
  margin: 12px 0 0;
  color: #fffaf1;
  font-size: .8125rem;
  line-height: 1.5;
}

.home-page .primary-cta {
  width: fit-content;
  min-height: 54px;
  padding: 0 28px;
  background: #edc09e;
  color: #20382e;
  font-weight: 600;
  font-size: .9375rem;
  box-shadow: none;
  border: 1px solid transparent;
  gap: 28px;
}

.home-page .primary-cta:hover {
  background: #f8d8bb;
}

.home-page .hero-cta {
  margin: 28px 0 0;
  min-width: 190px;
}

/* Both registration entry points share the approved hero glass treatment. */

.home-page .header-cta,
.home-page .hero-cta {
  background: #315342;
  color: #fffaf1;
  font-weight: 600;
  border: 1px solid rgba(var(--garden-coral-rgb),.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4),inset 0 -1px 0 rgba(255,255,255,.08),0 8px 24px rgba(12,32,26,.18);
  text-shadow: 0 1px 3px rgba(12,32,26,.35);
}

.home-page .header-cta:hover,
.home-page .header-cta:focus-visible,
.home-page .hero-cta:hover,
.home-page .hero-cta:focus-visible {
  background: #41634f;
}

.home-page .header-cta,
.home-page .hero-cta {
  transition: background .2s ease,border-color .2s ease,box-shadow .2s ease;
  cursor: pointer;
}

.home-page .header-cta:hover,
.home-page .header-cta:focus-visible,
.home-page .hero-cta:hover,
.home-page .hero-cta:focus-visible {
  border-color: #fffaf1;
  box-shadow: inset 0 1px 0 #fff6,0 6px 22px #0c201a26;
}

.home-page .header-cta:active,
.home-page .hero-cta:active {
  box-shadow: inset 0 2px 8px #0c201a40;
}

@supports ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))) {
  .home-page .header-cta,
  .home-page .hero-cta {
    background: linear-gradient(135deg,rgba(var(--garden-coral-rgb),.3),rgba(var(--garden-coral-rgb),.1)),rgba(16,39,32,.68);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
  }

  .home-page .header-cta:hover,
  .home-page .header-cta:focus-visible,
  .home-page .hero-cta:hover,
  .home-page .hero-cta:focus-visible {
    background: linear-gradient(135deg,rgba(var(--garden-coral-rgb),.4),rgba(var(--garden-coral-rgb),.18)),rgba(16,39,32,.72);
  }
}

.home-page .hero-section .hero-carousel-button {
  border: 1px solid #fff7;
  color: white;
  background: #233d336e;
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.home-page .hero-carousel-button {
  width: 44px;
  height: 44px;
}

.home-page .hero-dots {
  gap: 0;
  margin: 14px 0 0;
}

.home-page .hero-dots button {
  width: 36px;
  height: 44px;
  background: transparent;
  border-radius: 0;
  position: relative;
}

.home-page .hero-dots button::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 14px;
  width: 8px;
  height: 4px;
  background: #8a8f83;
  border-radius: 3px;
}

.home-page .hero-dots button.is-active::after {
  width: 24px;
  left: 6px;
  background: #294e3e;
}

.home-page .hero-section .hero-dots button::after,
.home-page .hero-section .hero-dots button.is-active::after {
  background: #fff8ea;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 4.5%;
  right: 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #fff5;
  padding-top: 18px;
}

.hero-bottom a {
  color: #fffaf1;
  text-decoration: none;
  font-size: .875rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.motion-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid #fff8;
  border-radius: 50%;
  background: #18382eb3;
  color: #fff9ef;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 #ffffff30;
}

.motion-control svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.motion-control .motion-play,
.motion-control[data-motion-state=paused] .motion-pause {
  display: none;
}

.motion-control[data-motion-state=paused] .motion-play {
  display: block;
}

.motion-control:disabled {
  opacity: .65;
  cursor: default;
}

.motion-control[hidden] {
  display: none;
}

.motion-control:hover {
  background: #18382e;
}

.home-page .hero-section :focus-visible,
.home-page .site-header :focus-visible {
  outline-color: #ffdf9d;
}

.home-page .page-section {
  padding-block: clamp(64px,6vw,88px);
}

.home-page .eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 600;
  color: #835541;
  margin-bottom: 24px;
}

.home-page .section-heading h2,
.home-page .listen-summary h2 {
  font-size: clamp(3rem,4.8vw,5rem);
  line-height: 1.02;
  color: #233d33;
  text-shadow: none;
  font-weight: 500;
  letter-spacing: -.025em;
}

.home-page .section-heading h2 span,
.home-page .listen-summary h2 span {
  color: #875946;
}

.garden-story {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: transparent;
  color: #fbf7ee;
}

.garden-story .page-section {
  position: relative;
  background: transparent;
  overflow: visible;
}

.garden-story .page-section + .page-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg,#f8ddbe55,transparent);
}

.home-page .garden-story .eyebrow {
  color: var(--garden-coral-small);
}

.home-page .garden-story h2,
.home-page .garden-story h3 {
  color: #fbf7ee;
}

.home-page .garden-story h2 span {
  color: var(--garden-coral);
}

.home-page .garden-story p {
  color: #eeeade;
}

.home-page .garden-story :focus-visible {
  outline-color: #ffdf9d;
}

.home-page .listen-section {
  position: relative;
  padding-inline: 7%;
  background: transparent;
}

.home-page .listen-disclosure {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 660px;
  width: 57%;
  align-items: start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.home-page .listen-summary {
  justify-items: start;
  text-align: left;
  gap: 0;
}

.home-page .listen-copy {
  margin: 0;
  max-width: 550px;
}

.home-page .listen-copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 20px;
  color: #eeeade;
}

.home-page .listen-copy p:last-child {
  margin-bottom: 0;
}

.home-page .why-section {
  background: transparent;
  padding-inline: 7%;
}

.home-page .why-disclosure {
  position: relative;
  width: 59%;
  max-width: 710px;
}

.home-page .why-summary {
  justify-items: start;
  text-align: left;
  margin-bottom: 36px;
}

.home-page .why-summary h2 {
  max-width: 720px;
}

.home-page .reason-grid {
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-auto-rows: 1fr;
  gap: 0 32px;
}

.home-page .reason-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 32px 0;
  gap: 16px;
  border: 0;
  border-top: 1px solid #eeeade40;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .reason-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #233d33;
  line-height: 1.4;
}

.home-page .reason-card p {
  font-size: 1rem;
  line-height: 1.65;
}

.home-page .reason-preview {
  flex: 0 0 var(--trust-icon-size);
  min-height: var(--trust-icon-size);
  border-radius: 50%;
}

.home-page .reason-lottie {
  width: 82%;
  height: 82%;
}

.home-page .reason-preview.is-icon-preview svg {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}

.home-page .reason-lottie .reason-lottie-fallback {
  width: 75%;
  height: 75%;
}

.home-page .garden-story .reason-card h3 {
  color: #fbf7ee;
}

.home-page .app-demo-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr);
  align-items: center;
  gap: 32px 8%;
  padding: 88px 7%;
  background: transparent;
  color: #fbf7ee;
}

.app-demo-heading {
  max-width: 620px;
  align-self: end;
  grid-column: 1;
  grid-row: 1;
}

.app-demo-copy {
  max-width: 620px;
  align-self: start;
  grid-column: 1;
  grid-row: 2;
}

.home-page .app-demo-section .eyebrow {
  color: var(--garden-coral-small);
}

.home-page .app-demo-section h2 {
  font-size: clamp(3rem,4.8vw,5.3rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #fbf7ee;
}

.home-page .app-demo-section h2 span {
  color: var(--garden-coral);
  font-style: italic;
}

.product-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-steps li {
  border-top: 1px solid #f4ddc433;
}

.demo-step-select {
  display: flex;
  gap: 20px;
  width: 100%;
  min-height: 44px;
  padding: 20px 12px;
  border: 0;
  border-left: 3px solid transparent;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.demo-step-select:hover {
  background: #fff9eb0d;
}

.demo-step-select[aria-current="step"] {
  border-left-color: var(--garden-coral);
  background: rgba(var(--garden-coral-rgb),.08);
}

.demo-step-select:focus-visible {
  outline: 3px solid #ffdf9d;
  outline-offset: 3px;
}

.demo-step {
  flex: 0 0 26px;
  padding-top: 2px;
  font-size: .875rem;
  color: var(--garden-coral-small);
}

.home-page .product-steps strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 7px;
  color: #fbf7ee;
}

.home-page .demo-step-description {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #eeeade;
}

.home-page .demo-current-step {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--garden-coral-small);
  margin: 10px 0 0;
}

.home-page .demo-disclosure {
  color: #cbd2c5;
  font-size: .75rem;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 460px;
}

.app-demo-stage {
  grid-column: 2;
  grid-row: 1/span 2;
  margin: 0;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.demo-phone {
  width: 100%;
  aspect-ratio: 1284 / 2778;
  grid-column: 2;
  overflow: hidden;
  border: 7px solid #121b17;
  border-radius: 36px;
  background: #fbf7ee;
  box-shadow: 0 28px 65px #091c2977,0 0 0 1px #cad0bd66;
}

.demo-phone video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-demo-stage figcaption {
  text-align: center;
}

.home-page .demo-caption {
  font-size: .8125rem;
  color: #fbf7ee;
  margin: 14px 0 0;
}

.demo-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 24px;
  border: 1px solid rgba(var(--garden-coral-rgb),.65);
  border-radius: 999px;
  background: rgba(var(--garden-coral-rgb),.1);
  color: #fbf7ee;
  font: inherit;
  font-size: .875rem;
  cursor: pointer;
}

.demo-play:hover {
  background: rgba(var(--garden-coral-rgb),.19);
}

.demo-play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.home-page .demo-status {
  color: #e6e7d9;
  font-size: .8125rem;
  margin: 10px 0 0;
  min-height: 20px;
}

.demo-transcript {
  grid-column: 1/-1;
  border-top: 1px solid #f4ddc433;
  font-size: .875rem;
}

.demo-transcript summary {
  padding: 18px 0;
  min-height: 48px;
  cursor: pointer;
  color: #e9ddc8;
}

.demo-transcript div {
  max-width: 800px;
  padding-bottom: 10px;
}

.home-page .demo-transcript p {
  color: #e6e7d9;
  line-height: 1.65;
}

.app-demo-section :focus-visible {
  outline-color: #ffdf9d;
}

.home-page .trust-section {
  background: transparent;
  padding: 80px 0 48px;
  border: 0;
}

.home-page .trust-inner {
  width: 84%;
  max-width: 1280px;
}

/* Keep each glass surface self-contained, with its icon and copy inset. */

.home-page .trust-card {
  min-height: 0;
  align-items: start;
  padding: 32px;
  border: 1px solid #fff9f138;
  border-radius: 24px;
  background: linear-gradient(140deg,#fffdf80f,#fff9f105),#16352b26;
  box-shadow: inset 0 1px 0 #fff9f126;
}

.home-page .trust-card > div {
  min-width: 0;
}

.home-page .trust-card h3 {
  margin: 0;
}

.home-page .trust-disclosure .trust-heading {
  margin-bottom: 40px;
}

.home-page .trust-points {
  grid-auto-rows: auto;
  gap: 32px;
}

.home-page .trust-point {
  background: transparent;
  border: 0;
  border-top: 1px solid #a6ae99;
  border-radius: 0;
  box-shadow: none;
  padding: 24px 0;
}

.home-page .faq-section {
  width: 84%;
  max-width: 1200px;
  padding-block: 48px 80px;
  margin-inline: auto;
  background: transparent;
  overflow-anchor: none;
}

.home-page .faq-disclosure {
  display: grid;
  grid-template-columns: minmax(220px,.7fr) minmax(0,1.3fr);
  align-items: start;
  gap: clamp(32px,6vw,88px);
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.home-page .faq-summary {
  padding: 12px 0 0;
  margin: 0;
  text-align: left;
  justify-items: start;
}

.home-page .faq-summary .eyebrow {
  margin: 0 0 16px;
}

.home-page .faq-summary h2 {
  margin: 0;
}

.home-page .faq-list {
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eeeade40;
}

.home-page .faq-item {
  border: 0;
  border-bottom: 1px solid #eeeade40;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  overflow-anchor: none;
}

.home-page .faq-item summary {
  min-height: 60px;
  padding: 18px 42px 18px 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.home-page .faq-item summary::after {
  right: 4px;
  color: var(--garden-coral-small);
  font-size: 1.4rem;
  font-weight: 400;
}

.home-page .faq-item summary:hover {
  color: var(--garden-coral-small);
}

.home-page .faq-item summary:focus-visible {
  outline: 2px solid #ffdf9d;
  outline-offset: -2px;
  border-radius: 3px;
}

.home-page .faq-answer {
  padding: 0 42px 20px 0;
}

.home-page .faq-answer p {
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width:760px) {
  .home-page .faq-disclosure {
    grid-template-columns: minmax(0,1fr);
    gap: 28px;
  }

  .home-page .faq-summary {
    padding: 0;
  }

  .home-page .faq-item summary {
    min-height: 56px;
    padding-block: 16px;
    font-size: .9375rem;
  }

  .home-page .faq-answer {
    padding-right: 24px;
  }

  .home-page .faq-answer p {
    font-size: .9375rem;
  }
}

.home-page .story-section {
  background: transparent;
  padding: 80px 0;
  border-top: 1px solid #eeeade26;
}

.home-page .story-inner {
  width: 84%;
  max-width: 920px;
  grid-template-columns: minmax(0,1fr);
  gap: clamp(48px,7vw,82px);
  align-items: start;
}

.home-page .team-note,
.home-page .founder-note {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  padding: 0;
}

.home-page .team-note h2 {
  color: #233d33;
  font-size: clamp(3rem,4.5vw,4.75rem);
  font-weight: 500;
  margin-bottom: 30px;
}

.home-page .team-note p,
.home-page .founder-letter p {
  color: #4c574d;
  font-size: 1rem;
  line-height: 1.8;
}

.home-page .founder-letter {
  background: #fff9ef0d;
  border: 1px solid #fff9ef26;
  padding: 36px;
  border-radius: 20px;
  box-shadow: none;
  transform: none;
}

.home-page .founder-letter .founder-signoff {
  font-family: "Cormorant Garamond",Georgia,serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #233d33;
}

.home-page .team-profile-photo {
  width: 112px;
  height: 132px;
  border-radius: 64px 64px 8px 8px;
}

.home-page .team-profile figcaption {
  font-size: .875rem;
}

.home-page .team-profile figcaption,
.home-page .team-profile strong {
  color: #233d33;
}

.home-page .story-inner {
  padding: 40px 32px;
  gap: 40px;
  border: 1px solid #fff9ef50;
  border-radius: 32px;
  background: linear-gradient(135deg,#fff9ef24,#fff9ef08 65%),#153b34b3;
  box-shadow: inset 0 1px 0 #ffffff40,0 18px 56px #102b2433;
}

@supports ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))) {
  .home-page .story-inner {
    background: linear-gradient(135deg,#fff9ef24,#fff9ef08 65%),#153b346e;
    -webkit-backdrop-filter: blur(22px) saturate(110%);
    backdrop-filter: blur(22px) saturate(110%);
  }
}

.home-page details.founder-note {
  display: block;
  width: 100%;
  max-width: 920px;
  border: 1px solid #fff9ef40;
  border-radius: 18px;
  background: #fff9ef0a;
  box-shadow: inset 0 1px 0 #fff9ef14;
}

.founder-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  padding: 16px 20px;
  border: 0;
  border-radius: 17px;
  background: transparent;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  transition: background .2s ease;
}

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

.founder-summary:hover {
  background: #fff9ef1a;
}

.founder-summary-icon {
  flex: 0 0 20px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
}

.founder-summary-icon::before {
  content: "+";
}

.founder-note[open] .founder-summary-icon::before {
  content: "−";
}

.home-page details.founder-note .founder-letter {
  margin: 0;
  background: transparent;
  border: 0;
  padding: 8px 20px 24px;
}

.home-page details.founder-note:not([open]) .founder-letter {
  display: none;
}

.home-page .team-note {
  text-align: center;
  justify-items: center;
}

.home-page :is(.trust-section,.faq-section,.story-section) :is(h2,h3,strong,figcaption,summary),
.home-page .founder-letter .founder-signoff {
  color: #fbf7ee;
}

.home-page :is(.trust-section,.faq-section,.story-section) :is(p,li),
.home-page .team-note p,
.home-page .founder-letter p {
  color: #fbf7ee;
}

.home-page :is(.trust-section,.faq-section,.story-section) h2 span {
  color: var(--garden-coral);
}

.home-page :is(.trust-section,.faq-section,.story-section) .eyebrow {
  color: var(--garden-coral-small);
}

.home-page .faq-answer a,
.home-page .trust-card p a {
  color: var(--garden-coral-small);
  text-decoration: underline;
}

.home-page :is(.trust-section,.faq-section,.story-section) :focus-visible {
  outline-color: #ffdf9d;
}

.home-page .trust-icon,
.home-page .reason-preview.is-icon-preview {
  --trust-icon-size: clamp(56px,5.2vw,72px);
  width: var(--trust-icon-size);
  height: var(--trust-icon-size);
  border: 1px solid #fff9f180;
  background: linear-gradient(140deg,#fffdf870,#fff9f11a 55%,#f4d8ce30),#fff9f1a6;
  box-shadow: inset 0 1px 1px #ffffffa6,inset 0 -1px 1px #fff9f126,0 6px 20px #102b241a;
  filter: none;
}

@supports ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))) {
  .home-page .trust-icon,
  .home-page .reason-preview.is-icon-preview {
    background: linear-gradient(140deg,#fffdf87a,#fff9f124 55%,#f4d8ce38),#fff9f15c;
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    backdrop-filter: blur(18px) saturate(115%);
  }
}

.home-page .trust-icon > svg {
  width: 62%;
  height: 62%;
}

.home-page .trust-lottie {
  width: 82%;
  height: 82%;
}

.home-page .trust-lottie > svg {
  width: 100%;
  height: 100%;
}

.home-page .trust-lottie .trust-lottie-fallback {
  width: 75%;
  height: 75%;
}

.home-page .trust-lottie-fallback .icon-line {
  stroke: #20282b;
}

.home-page .trust-lottie-fallback .icon-accent {
  stroke: #c97162;
}

.home-page .trust-lottie-fallback .icon-accent-fill {
  fill: #c97162;
}

.home-page.motion-paused .trust-scan-beam {
  animation-play-state: paused;
}

.home-page .listen-disclosure .listen-copy,
.home-page .faq-disclosure .faq-list {
  display: block;
}

.home-page .trust-disclosure .trust-copy {
  display: grid;
}

.home-page .why-disclosure .reason-grid {
  display: grid;
}

.home-page .site-footer {
  width: 100%;
  max-width: none;
  padding: 40px 8%;
  background: transparent;
  gap: 32px;
  color: #fff9ee;
}

.home-page .footer-wordmark {
  padding: 8px 18px;
}

.home-page .footer-wordmark img {
  width: 140px;
}

.home-page .site-footer a,
.home-page .site-footer nav {
  color: #f3edde;
  font-size: .875rem;
}

.home-page .site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.home-page .synkra-signup-card {
  background: #fbf7ee;
}

.home-page .listen-summary,
.home-page .why-summary,
.home-page .trust-summary,
.home-page .faq-summary {
  cursor: default;
}

@media (max-width:1100px) {
  .home-page .site-header {
    gap: 16px;
  }

  .home-page .site-nav {
    gap: 18px;
    padding-inline: 20px;
  }

  .home-page .hero-inner {
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
  }

  .home-page .hero-copy h1 {
    font-size: 4.1rem;
  }

  .home-page .reason-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 0 32px;
  }
}

@media (max-width:800px) {
  .home-page .site-header {
    padding: 20px 5%;
    gap: 14px;
  }

  .home-page .site-header .wordmark {
    padding: 7px 14px;
  }

  .home-page .site-header .wordmark img {
    width: 122px;
  }

  .home-page .header-cta-slot {
    display: none;
  }

  .home-page .header-cta {
    width: 112px;
    padding: 4px 12px;
    font-size: .875rem;
    min-height: 44px;
    white-space: normal;
    line-height: 1.2;
    text-wrap: balance;
  }

  .menu-toggle {
    display: block;
    color: #fff9ee;
    background: #142a292e;
    border: 1px solid #fff5;
    border-radius: 999px;
    min-width: 76px;
    min-height: 44px;
    padding: 0 20px;
    font-size: .875rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .menu-toggle[aria-expanded="true"] {
    background: #142a2966;
  }

  .home-page .site-nav {
    display: grid;
    gap: 4px;
    position: absolute;
    top: 84px;
    left: 5%;
    right: 5%;
    border-radius: 18px;
    padding: 18px 24px;
    background: #243d32;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease-out,transform 180ms ease-out,visibility 0s linear 180ms;
  }

  .home-page .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .home-page .site-nav a {
    min-height: 44px;
  }

  .home-page .hero-inner {
    width: 88%;
    padding: 144px 0 112px;
    gap: 48px;
    min-height: 0;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(3rem,6.8vw,4rem);
  }

  .home-page .hero-lede {
    margin-top: 26px;
  }

  .home-page .listen-disclosure {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-page .listen-disclosure,
  .home-page .why-disclosure {
    width: 78%;
    max-width: 640px;
  }

  .home-page .app-demo-section {
    gap: 36px;
    grid-template-columns: 1.1fr .9fr;
  }

  .demo-step-select {
    padding: 16px 8px;
    gap: 12px;
  }

  .home-page .listen-copy {
    margin-top: 0;
  }

  .home-page .page-section {
    padding-block: 80px;
  }

  .home-page .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-page .trust-section {
    padding: 80px 0;
  }
}

@media (max-width:620px) {
  .home-page .hero-section {
    min-height: 0;
  }

  .home-page .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 128px;
    gap: 65px;
    padding-bottom: 115px;
  }

  .home-page .hero-copy {
    max-width: 500px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.6rem,10.4vw,3.65rem);
    line-height: 1.02;
    text-wrap: pretty;
  }

  .home-page .hero-copy h1 span {
    margin-top: 10px;
  }

  .home-page .hero-lede {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 24px;
  }

  .home-page .hero-cta {
    min-height: 52px;
    margin-top: 26px;
  }

  .garden-backdrop .scene-poster,
  .garden-backdrop video {
    object-position: 59% center;
  }

  .garden-backdrop::after {
    background: linear-gradient(90deg,
      rgb(7 25 19 / calc(.64 + .04 * var(--reading-progress,1))),
      rgb(7 25 19 / calc(.52 + .16 * var(--reading-progress,1))));
  }

  .hero-bottom {
    left: 6%;
    right: 6%;
    bottom: 20px;
    gap: 12px;
  }

  .hero-bottom a {
    gap: 14px;
    font-size: .75rem;
  }

  .home-page .section-heading h2,
  .home-page .listen-summary h2 {
    font-size: clamp(2.7rem,10.5vw,3.5rem);
  }

  .home-page .listen-section,
  .home-page .why-section {
    padding-inline: 7%;
  }

  .home-page .listen-disclosure,
  .home-page .why-disclosure {
    width: 100%;
  }

  .home-page .garden-story .page-section {
    padding-block: 64px;
  }

  .garden-story .page-section + .page-section::before {
    width: 86%;
  }

  .home-page .why-summary {
    margin-bottom: 42px;
  }

  .home-page .reason-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-page .reason-card {
    gap: 20px;
    padding: 32px 0;
  }

  .home-page .app-demo-section {
    grid-template-columns: 1fr;
    padding: 64px 7%;
    gap: 36px;
  }

  .home-page .app-demo-section h2 {
    font-size: clamp(2.7rem,10.5vw,3.5rem);
  }

  .app-demo-stage {
    grid-column: 1;
    grid-row: 2;
  }

  .app-demo-copy {
    grid-row: 3;
  }


  .home-page .trust-inner,
  .home-page .story-inner,
  .home-page .faq-section {
    width: 86%;
  }

  /* Keep the heading and paragraph in one readable column beside the icon. */

  .home-page .trust-card {
    padding: 24px 20px;
    grid-template-columns: 44px minmax(0,1fr);
    column-gap: 12px;
  }

  .home-page .trust-card > div {
    display: block;
  }

  .home-page .trust-card .trust-icon {
    --trust-icon-size: 44px;
  }

  .home-page .trust-card h3 {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .home-page .trust-card p {
    margin: 10px 0 0;
  }

  .home-page .trust-point {
    padding: 24px 0;
  }

  .home-page .trust-points {
    gap: 32px;
  }

  .home-page .story-section {
    padding-block: 80px;
  }

  .home-page .founder-letter {
    padding: 28px;
  }

  .home-page .story-inner {
    padding: 32px 22px;
    gap: 28px;
    border-radius: 24px;
  }

  .home-page details.founder-note .founder-letter {
    padding: 8px 16px 20px;
  }

  .home-page .site-footer {
    padding: 32px 7%;
  }
}

@media (max-width:380px) {
  .home-page .site-header {
    gap: 10px;
  }

  .home-page .site-header .wordmark img {
    width: 100px;
  }

  .home-page .header-cta-slot {
    flex-basis: 100px;
  }

  .home-page .header-cta {
    width: 100px;
    padding-inline: 8px;
    font-size: .875rem;
  }

  .home-page .hero-copy h1 {
    font-size: 2.6rem;
  }
}

.home-page .product-chapter {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(280px,.8fr);
  column-gap: clamp(40px,8vw,160px);
  row-gap: 28px;
  align-items: center;
  padding-inline: max(4.5%,calc((100% - 1530px)/2));
}

.home-page .product-chapter :is(.listen-disclosure,.why-disclosure) {
  width: 100%;
  max-width: none;
}

.home-page #how.product-chapter {
  align-items: start;
}

/* One continuous still surface connects the reading chapters. Only the opening
   and closing boundaries dissolve back into the garden; no seams between sections. */

.quiet-chapters {
  --quiet-lead-in: 89px;
  position: relative;
  isolation: isolate;
  overflow: clip;
  margin-top: calc(-1 * var(--quiet-lead-in));
  padding-top: var(--quiet-lead-in);
  padding-bottom: 100px;
  pointer-events: none;
}

/* The decorative overlap must not intercept the hero's link or pause button. */

.quiet-chapters > * {
  pointer-events: auto;
}

.quiet-chapters::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse at 100% 48%,#49644f 0%,#304f45 42%,#1d3e41 100%);
  -webkit-mask-image: linear-gradient(transparent,rgba(0,0,0,.15) 40px,rgba(0,0,0,.6) 100px,#000 180px,#000 calc(100% - 180px),transparent);
  mask-image: linear-gradient(transparent,rgba(0,0,0,.15) 40px,rgba(0,0,0,.6) 100px,#000 180px,#000 calc(100% - 180px),transparent);
}

.quiet-chapters #why,
.quiet-chapters .trust-section,
.quiet-chapters .faq-section {
  position: relative;
  isolation: isolate;
}

.quiet-chapters #why::after,
.quiet-chapters .trust-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: clamp(220px,25vw,340px);
  height: 520px;
  background: url("assets/garden-coral-blooms.png") center/contain no-repeat;
  opacity: .3;
}

.quiet-chapters #why::after {
  left: -130px;
  top: 20%;
  transform: scaleX(-1);
  opacity: .34;
  filter: brightness(1.08);
}

.quiet-chapters .trust-section::after {
  left: -155px;
  bottom: 0;
  transform: rotate(12deg);
  opacity: .2;
}

.home-page #steps {
  isolation: isolate;
}

.home-page #steps::before {
  content: "";
  position: absolute;
  top: 80px;
  right: calc((100% - 100vw)/2 - 32px);
  width: 180px;
  height: 760px;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background: url("assets/garden-vines.svg") center/contain no-repeat;
}

.home-page #steps::after {
  content: "";
  position: absolute;
  top: 160px;
  right: calc((100% - 100vw)/2 - 130px);
  width: clamp(220px,25vw,340px);
  height: 520px;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background: url("assets/garden-coral-blooms.png") center/contain no-repeat;
}

/* Preserve the FAQ's darker reading centre without returning to moving flowers. */

.quiet-chapters .faq-section::before {
  content: "";
  position: absolute;
  inset: -32px -9%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center,#102f3066,transparent 72%);
}

.home-page #how.product-chapter {
  isolation: isolate;
  overflow: clip;
  padding-top: 200px;
  padding-bottom: 140px;
}

.home-page #how::after {
  content: "";
  position: absolute;
  top: 190px;
  bottom: 130px;
  right: -90px;
  width: clamp(260px,28vw,390px);
  z-index: -1;
  pointer-events: none;
  background: url("assets/garden-coral-blooms.png") right center/contain no-repeat;
  opacity: .48;
}

.home-page #how :is(h2,.listen-copy p,.demo-transcript p,.demo-transcript summary) {
  color: #fbf7ee;
}

.home-page #how h2 span {
  color: var(--garden-coral);
}

.home-page #how .eyebrow {
  color: var(--garden-coral-small);
}

.home-page #how .story-disclosure,
.home-page #how .demo-status {
  color: #e6e7d9;
}

.home-page #how .demo-transcript {
  border-color: #f4ddc440;
}

.home-page #how .motion-control {
  color: #fff9ef;
  border-color: #fff8;
  background: #18382e99;
  box-shadow: inset 0 1px 0 #ffffff30;
}

.home-page #how .motion-control:hover {
  background: #18382e;
}

.home-page #how :focus-visible {
  outline-color: #ffdf9d;
}

@media (max-width:620px) {
  .home-page #how.product-chapter {
    padding-top: 156px;
    padding-bottom: 120px;
  }

  .quiet-chapters::before {
    -webkit-mask-image: linear-gradient(transparent,rgba(0,0,0,.35) 50px,#000 135px,#000 calc(100% - 150px),transparent);
    mask-image: linear-gradient(transparent,rgba(0,0,0,.35) 50px,#000 135px,#000 calc(100% - 150px),transparent);
  }

  .quiet-chapters #why::after {
    top: auto;
    bottom: 180px;
    left: -145px;
    opacity: .32;
  }

  .quiet-chapters .trust-section::after {
    left: -170px;
    opacity: .14;
  }

  .home-page #steps::after {
    top: 260px;
    right: -125px;
    width: 190px;
    height: 360px;
    opacity: .14;
  }

  .home-page #steps::before {
    top: 190px;
    right: -25px;
    width: 95px;
    height: 570px;
    opacity: .14;
  }

  .home-page #how::after {
    top: 50%;
    bottom: 150px;
    right: -95px;
    width: 250px;
    opacity: .45;
  }
}

.story-product {
  grid-column: 2;
  margin: 0;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.story-product figcaption {
  width: 100%;
  text-align: center;
}


.why-carousel .demo-phone img {
  height: 100%;
  object-fit: contain;
}

.why-carousel [data-carousel-swipe] {
  touch-action: pan-y;
}

/* All phone demos share the Why Synkra scale and reserve the same control rails. */
.phone-stage {
  display: grid;
  grid-template-columns: 44px minmax(0,260px) 44px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 368px;
}


.home-page .why-phone-stage .hero-carousel-button {
  border: 1px solid #fff7;
  color: white;
  background: #233d336e;
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.why-carousel-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.home-page .why-carousel .hero-dots {
  margin: 0;
}

.home-page .why-carousel .hero-dots button::after {
  background: #fff8ea;
}

.why-carousel-controls > [data-carousel-motion] {
  position: absolute;
  left: calc(50% + 66px);
  width: 44px;
  padding: 0;
}

.why-carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #fff8;
  border-radius: 999px;
  color: #fffaf1;
  background: #183c34c9;
  font: inherit;
  font-size: .875rem;
  cursor: pointer;
}

.why-carousel-control:hover {
  background: #315a4f;
  border-color: #fffaf1;
}

.why-carousel-control[hidden] {
  display: none;
}

.why-carousel-control:focus-visible {
  outline: 3px solid #ffdf9d;
  outline-offset: 4px;
}

.why-carousel-control span {
  font-size: 1.4rem;
  line-height: 1;
}

.story-media-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.demo-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.home-page .story-product .story-disclosure {
  margin: 8px auto 0;
  color: #cbd2c5;
  font-size: .75rem;
  line-height: 1.6;
}

.home-page .story-product .story-caption {
  margin: 14px 0 0;
  color: #fbf7ee;
  font-size: .875rem;
  line-height: 1.5;
}

.story-product .demo-status:empty {
  display: none;
}

.home-page .product-chapter > .demo-transcript {
  margin-top: 8px;
}

@media (max-width:1100px) {
  .home-page .product-chapter {
    grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr);
    column-gap: 22px;
  }
}

@media (min-width:621px) and (max-width:800px) {
  .home-page .product-chapter {
    padding-inline: 6%;
    column-gap: 48px;
  }

  .home-page .product-chapter h2 {
    font-size: 2.8rem;
  }

  .home-page .product-chapter .reason-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:620px) {
  .home-page .product-chapter {
    grid-template-columns: minmax(0,1fr);
    padding-inline: 7%;
    row-gap: 36px;
  }

  .story-product {
    grid-column: 1;
  }

}

/* Keep the shared phone scale readable before the desktop columns have room. */
@media (min-width:621px) and (max-width:999px) {
  .home-page .product-chapter {
    grid-template-columns: minmax(0,1fr);
  }

  .story-product {
    grid-column: 1;
  }

  .home-page #steps .app-demo-stage {
    grid-column: 1;
    grid-row: 2;
  }

  .home-page #steps .app-demo-copy {
    grid-row: 3;
  }
}

/* Desktop composition; preserve the existing stacked mobile order. */

@media (min-width:1000px) {
  .home-page .hero-inner {
    width: 100%;
    max-width: 1240px;
    padding-inline: 48px;
    grid-template-columns: minmax(0,1.35fr) minmax(300px,.85fr);
    column-gap: clamp(32px,4vw,56px);
  }

  .home-page .hero-copy h1 {
    font-size: clamp(4rem,4.8vw,5.3rem);
  }

  /* Shared centred reading rails; decorative backgrounds remain full-bleed. */

  .home-page :is(#how.product-chapter,#why.product-chapter,#steps.product-chapter,.faq-section,.trust-inner,.story-inner) {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 48px;
  }

  .home-page #how.product-chapter {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    overflow: visible;
    padding: 120px 48px 80px;
    grid-template-columns: minmax(0,1.35fr) minmax(300px,.85fr);
    grid-template-rows: min-content 1fr;
    column-gap: clamp(32px,4vw,56px);
    row-gap: 20px;
  }

  .home-page #how > .listen-disclosure {
    grid-column: 1;
    grid-row: 1;
  }

  .home-page #how > .story-product {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .home-page #how > .demo-transcript {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
  }

  /* Bleed the artwork to the viewport, independently of the centred content. */

  .home-page #how::after {
    top: 120px;
    bottom: 80px;
    right: calc((100% - 100vw)/2 - 90px);
  }

  /* Match the preceding chapter's content rails and shared phone scale. */

  .home-page #why.product-chapter {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding: 80px 48px;
    align-items: start;
    grid-template-columns: minmax(0,1.35fr) minmax(300px,.85fr);
    column-gap: clamp(32px,4vw,56px);
  }

  .home-page #why .story-product {
    gap: 18px;
  }


  .home-page #why::before {
    left: 48px;
  }

  .home-page #why::after {
    left: calc((100% - 100vw)/2 - 130px);
  }

  .home-page #steps.product-chapter {
    padding-block: 80px;
    align-items: start;
    grid-template-columns: minmax(0,1.35fr) minmax(300px,.85fr);
    grid-template-rows: min-content min-content 1fr;
    column-gap: clamp(32px,4vw,56px);
    row-gap: 24px;
  }

  .home-page #steps .app-demo-heading {
    align-self: start;
  }

  .home-page #steps .app-demo-copy {
    max-width: none;
  }

  .home-page #steps .app-demo-stage {
    grid-row: 1 / span 3;
  }

  /* Give each heading a clear lead-in, then centre the complete media group. */
  .home-page #how > .story-product,
  .home-page #why > .story-product,
  .home-page #steps > .app-demo-stage {
    align-self: center;
    margin-block: clamp(48px,5vw,80px) 0;
  }

  .home-page #steps > .demo-transcript {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    margin-top: 0;
  }

  .home-page .trust-section,
  .home-page .faq-section,
  .home-page .story-section {
    padding-block: 80px;
  }

  .home-page .story-inner {
    padding-block: 48px;
    gap: 40px;
  }

  /* Keep the longer story readable within the same outer alignment. */

  .home-page .team-note > p {
    max-width: 70ch;
    margin-inline: auto;
  }

  .home-page .founder-letter > p {
    max-width: 70ch;
    margin-inline: auto;
  }

  .home-page .site-footer {
    padding-inline: max(48px,calc((100% - 1144px)/2));
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-garden-video] {
    display: none;
  }
}

/* Opening and dismissal remain immediate when reduced motion is requested. */

@media (max-width:800px) and (prefers-reduced-motion:reduce) {
  .home-page .site-nav {
    transition: none;
    transform: none;
  }
}

/* Hero composition and transition, kept last for cascade consistency. */
/* Approved hero composition. All page chapters and shared controls retain their styles. */


.home-page [data-immersive-hero] {
  min-height: 680px;
  min-height: max(680px,100svh);
  background: #234439;
  overflow: clip;
  color: #fbf7ee;
}

.hero-garden-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-garden-media {
  position: absolute;
  inset: -8%;
}

.hero-garden-media img,
.hero-garden-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}

.hero-garden-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 53% 62% at 50% 50%,rgb(12 35 30 / .78) 0%,rgb(12 35 30 / .68) 30%,rgb(12 35 30 / .38) 55%,rgb(12 35 30 / .08) 80%,transparent 100%);
}

.home-page [data-immersive-hero] .hero-inner {
  width: 100%;
  max-width: 940px;
  min-height: max(680px,100svh);
  margin-inline: auto;
  padding: 144px 36px 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
}

.home-page [data-immersive-hero] .hero-copy {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: none;
}

.home-page [data-immersive-hero] h1 {
  max-width: none;
  margin: 0;
  color: #fbf7ee;
  font-size: clamp(52px,5.3vw,80px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 2px 35px #12332b30;
}

.home-page [data-immersive-hero] h1 .headline-sentence {
  display: block;
  margin: 0;
  font-style: normal;
  color: inherit;
}

.home-page [data-immersive-hero] h1 .headline-sentence + .headline-sentence {
  margin-top: .16em;
}

.home-page [data-immersive-hero] h1 em {
  font-weight: 500;
  color: #ffb49f;
}

.home-page [data-immersive-hero] .hero-lede {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: #fffaf1;
  text-wrap: pretty;
}

.home-page [data-immersive-hero] .hero-cta {
  flex-shrink: 0;
  margin-top: 24px;
}

.home-page [data-immersive-hero] .hero-audience {
  margin-top: 12px;
}

@media (max-width:700px) {
  .home-page [data-immersive-hero] {
    min-height: max(680px,100svh);
  }

  .home-page [data-immersive-hero] .hero-inner {
    max-width: 480px;
    min-height: max(680px,100svh);
    padding: 132px 28px 110px;
  }

  .home-page [data-immersive-hero] h1 {
    font-size: clamp(34px,9.5vw,46px);
    line-height: 1.08;
  }

  .home-page [data-immersive-hero] .hero-lede {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.65;
    margin-top: 24px;
  }

  .hero-garden-media img,
  .hero-garden-media video {
    height: 125%;
    object-position: 60% 0%;
  }

  .hero-garden-shade {
    background: radial-gradient(ellipse 90% 60% at 50% 48%,rgb(12 35 30 / .8) 0%,rgb(12 35 30 / .7) 32%,rgb(12 35 30 / .36) 60%,rgb(12 35 30 / .06) 85%,transparent 100%);
  }
}

/* Approved hero-to-reading transition; retain the live green floral surface. */

.home-page [data-immersive-hero] {
  isolation: auto;
}

.hero-garden-media {
  transform: translateY(var(--garden-drift,0px));
}

.home-page .quiet-chapters {
  --quiet-lead-in: 90px;
}

.home-page .quiet-chapters::before {
  -webkit-mask-image: linear-gradient(transparent 0%,#00000012 calc(var(--quiet-lead-in) * .18),#0000004d calc(var(--quiet-lead-in) * .42),#000000ad calc(var(--quiet-lead-in) * .67),#000000f0 calc(var(--quiet-lead-in) * .86),#000 var(--quiet-lead-in),#000 calc(100% - 180px),transparent);
  mask-image: linear-gradient(transparent 0%,#00000012 calc(var(--quiet-lead-in) * .18),#0000004d calc(var(--quiet-lead-in) * .42),#000000ad calc(var(--quiet-lead-in) * .67),#000000f0 calc(var(--quiet-lead-in) * .86),#000 var(--quiet-lead-in),#000 calc(100% - 180px),transparent);
}

@media (max-width:620px) {
  /* Promote the existing nodes into a shorter visual sequence without duplicating copy. */

  .home-page #how.product-chapter {
    padding-top: 72px;
    row-gap: 28px;
  }

  .home-page #how .listen-disclosure,
  .home-page #how .listen-copy {
    display: contents;
  }

  .home-page #how .listen-summary {
    grid-column: 1;
    grid-row: 1;
  }

  .home-page #how .listen-summary .eyebrow,
  .home-page #how .listen-lede {
    display: none;
  }

  .home-page #how .story-product {
    grid-column: 1;
    grid-row: 2;
  }

  .home-page #how .listen-copy > p:not(.listen-lede) {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
    color: #eeeade;
  }

  .home-page #how > .demo-transcript {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-garden-media {
    transform: none;
  }
}

/* Entrances are optional WAAPI effects; content remains visible by default. */

.home-page .story-introduction {
  display: grid;
  justify-items: center;
  width: 100%;
}

.home-page .story-introduction > p {
  max-width: 720px;
  margin: 22px auto 0;
}

.home-page .trust-scan-beam {
  animation: none;
  opacity: .24;
  transform: translateY(-7px);
}

@media (min-width:1000px) {
  .home-page .story-introduction > p {
    max-width: 70ch;
  }
}

/* Softer glass treatment for the hero control; retain its 46px touch target. */

.home-page [data-immersive-hero] .hero-bottom .motion-control {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #fffaf1;
}

.home-page [data-immersive-hero] .hero-bottom .motion-control::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 50%;
  border: .5px solid rgb(255 250 241 / .14);
  background: rgb(14 42 35 / .06);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  box-shadow: none;
  transition: background-color 160ms ease,border-color 160ms ease;
  pointer-events: none;
}

.home-page [data-immersive-hero] .hero-bottom .motion-control svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 1px 2px #102e2b88);
}

@media (hover:hover) and (pointer:fine) {
  .home-page [data-immersive-hero] .hero-bottom .motion-control:hover::before {
    background-color: rgb(14 42 35 / .14);
    border-color: rgb(255 250 241 / .24);
  }
}

.home-page [data-immersive-hero] .hero-bottom .motion-control:focus-visible::before {
  background-color: rgb(14 42 35 / .2);
  border-color: rgb(255 250 241 / .4);
}

@supports not ((backdrop-filter:blur(1px)) or (-webkit-backdrop-filter:blur(1px))) {
  .home-page [data-immersive-hero] .hero-bottom .motion-control::before {
    background-color: rgb(14 42 35 / .12);
  }
}

/* Each screen and its caption share the same content across breakpoints. */
.home-page :is(#why, #steps) .why-app-caption {
  margin-top: 14px;
  min-height: 7.5rem;
}

.home-page :is(#why, #steps) .why-app-caption h3 {
  margin: 0;
  color: #fbf7ee;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.home-page :is(#why, #steps) .why-app-caption p {
  margin: 8px auto 0;
  max-width: 34ch;
  color: #eeeade;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width:620px) {
  .home-page #why .reason-grid,
  .home-page #why .why-summary .eyebrow {
    display: none;
  }

  .home-page #why.product-chapter {
    row-gap: 28px;
  }
}

/* Reuse the image carousel on mobile; retain the desktop video walkthrough. */
.steps-mobile-carousel,
.steps-mobile-count {
  display: none;
}

@media (max-width:620px) {
  .home-page #steps .app-demo-stage,
  .home-page #steps .app-demo-copy,
  .home-page #steps .steps-desktop-count {
    display: none;
  }

  .home-page #steps .steps-mobile-count {
    display: inline;
  }

  .home-page #steps .steps-mobile-carousel {
    display: grid;
    grid-column: 1;
    grid-row: 2;
  }

  .home-page #steps .why-app-caption {
    min-height: 10rem;
  }
}

/* Keep the mobile heading, phone and active explanation on one visual axis. */
@media (max-width:620px) {
  .home-page #how .listen-summary,
  .home-page #why .why-summary,
  .home-page #steps .app-demo-heading {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .home-page #why .why-summary {
    margin-bottom: 0;
  }

  .home-page :is(#how, #why, #steps) .phone-stage {
    grid-template-columns: 44px minmax(0,min(190px,48vw,max(140px,calc(46.2svh - 138.6px)))) 44px;
    max-width: 308px;
  }

  .home-page :is(#how, #why, #steps) .story-product {
    gap: 12px;
  }
}

@media (max-width:620px) {
  .home-page :is(#how, #why, #steps).product-chapter {
    row-gap: 20px;
    scroll-margin-top: -44px;
  }

  .home-page #how .listen-summary h2,
  .home-page #why .why-summary h2,
  .home-page #steps .app-demo-heading h2 {
    font-size: clamp(2rem,8.5vw,2.65rem);
    line-height: 1.08;
  }

  .home-page :is(#why, #steps) .why-app-caption {
    min-height: 0;
    margin-top: 8px;
  }
}

@media (max-width:620px) {
  .home-page #steps .app-demo-heading .eyebrow {
    display: none;
  }
}
