* {
  box-sizing: border-box;
}

:root {
  --navy: #06234a;
  --blue: #168fd0;
  --pink: #ed3f73;
  --pink-dark: #d92f64;
  --paper: #fffaf3;
  --paper-warm: #fff7ed;
  --peach-line: rgba(224, 150, 118, 0.34);
  --pink-line: rgba(237, 63, 115, 0.24);
  --display: "Caveat", "Patrick Hand", cursive;
  --body: "Montserrat", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.real-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  background: rgba(255, 250, 243, 0.97);
  border-bottom: 1px solid rgba(6, 35, 74, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  width: min(100%, 1220px);
  height: 100%;
  margin: 0 auto;
  padding: 8px 34px;
}

.site-logo {
  display: block;
  width: clamp(185px, 18vw, 220px);
  text-decoration: none;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 31px);
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--navy);
  font-size: clamp(11px, 1.03vw, 13.5px);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta {
  min-width: 126px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(237, 63, 115, 0.2);
}

.menu-button {
  display: none;
  min-height: 40px;
  border: 1px solid rgba(6, 35, 74, 0.18);
  border-radius: 10px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.button {
  min-width: 158px;
  min-height: 44px;
  padding: 0 24px;
  font-size: 14px;
}

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

.button-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 11px 24px rgba(237, 63, 115, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--pink-dark);
}

.button-secondary {
  border: 2px solid var(--navy);
  background: rgba(255, 250, 243, 0.92);
  color: var(--navy);
}

.button-light {
  min-width: 220px;
  min-height: 66px;
  background: #fff;
  color: var(--pink);
  font-size: 21px;
  box-shadow: 0 12px 24px rgba(6, 35, 74, 0.12);
}

.hero-section {
  display: grid;
  grid-template-columns: 52% 48%;
  width: min(100%, 1440px);
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 520px);
  padding: 24px 22px 24px clamp(34px, 5vw, 70px);
}

.kicker {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 700;
}

.hero-section h1 {
  position: relative;
  width: fit-content;
  max-width: 480px;
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(55px, 6.2vw, 70px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
}

.hero-section h1::after {
  position: absolute;
  right: -0.38em;
  top: 0.06em;
  color: var(--pink);
  content: "♡";
  font-size: 0.68em;
  font-weight: 500;
  transform: rotate(-10deg);
}

.hero-subtitle,
.mission-subtitle {
  margin: 15px 0 10px;
  color: var(--pink);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.03;
}

.hero-text {
  max-width: 485px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(12px, 1.08vw, 14px);
  font-weight: 600;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.hero-visual {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

.hero-visual::after {
  content: none;
}

.hero-visual .hero-background {
  position: absolute;
  z-index: 1;
  inset: -7% -8% -5% -12%;
  width: 120%;
  max-width: none;
  height: 116%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.96;
  mix-blend-mode: multiply;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0, 0, 0, 0.56) 18%, #000 31%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.72) 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0, 0, 0, 0.56) 18%, #000 31%, #000 100%),
    linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.72) 80%, transparent 100%);
  mask-composite: intersect;
  transform: translateY(calc(var(--hero-shift, 0) * 1px));
  transform-origin: center;
  will-change: transform;
}

.hero-visual .hero-book {
  position: absolute;
  z-index: 3;
  bottom: 8px;
  left: 13%;
  width: auto;
  max-width: none;
  height: calc(100% - 20px);
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 16px 22px rgba(52, 32, 22, 0.14));
}

.section-inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding-inline: 28px;
}

.compact-section {
  background: var(--paper);
}

.section-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(35px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-align: center;
}

.section-title span {
  display: inline-block;
  margin-left: 4px;
  color: var(--pink);
  font-size: 0.8em;
  font-weight: 500;
  transform: rotate(-10deg);
}

.small-title {
  margin-bottom: 8px;
  font-size: clamp(31px, 3.4vw, 38px);
}

.interest-section {
  padding: 14px 0 18px;
}

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

.interest-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 154px;
  padding: 11px 17px 14px;
  border: 1px solid var(--peach-line);
  border-radius: 13px;
  background: rgba(255, 250, 243, 0.76);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.interest-card:hover {
  border-color: rgba(237, 63, 115, 0.3);
  transform: translateY(-3px);
}

.interest-card img {
  width: auto;
  max-width: 112px;
  height: 76px;
  margin-bottom: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.interest-card p,
.learn-item p,
.helpful-card p,
.belief-item p,
.gain-card p,
.matters-note p,
.mission-checklist li {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.34;
}

.interest-card p {
  max-width: 185px;
  font-weight: 700;
}

.learn-section {
  padding: 5px 0 16px;
}

.learn-grid,
.belief-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.learn-item,
.belief-item {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 3px 14px 7px;
  text-align: center;
}

.learn-item + .learn-item::before,
.belief-item + .belief-item::before {
  position: absolute;
  top: 11px;
  bottom: 7px;
  left: 0;
  width: 1px;
  background: var(--pink-line);
  content: "";
}

.learn-item img {
  width: 100px;
  height: 80px;
  margin-bottom: 4px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.learn-item h3,
.helpful-card h3,
.gain-card h3 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.12;
}

.learn-item p {
  max-width: 155px;
  font-size: 10.5px;
  line-height: 1.3;
}

.quote-band {
  display: grid;
  place-items: center;
  width: min(calc(100% - 34px), 1020px);
  min-height: 100px;
  margin: 0 auto;
  padding: 12px 50px;
  background: url("/assets/brushes/blush-brush-clean.png") center / 100% 100% no-repeat;
}

.quote-band blockquote {
  position: relative;
  margin: 0;
  text-align: center;
}

.quote-band p {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 0.98;
}

.large-quote {
  position: absolute;
  top: -3px;
  left: -34px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.large-quote-close {
  top: auto;
  right: -26px;
  bottom: 0;
  left: auto;
}

.quote-band cite {
  display: block;
  margin-top: 4px;
  color: var(--pink);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.helpful-section {
  padding: 7px 0 15px;
}

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

.helpful-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 8px 13px;
  border: 1px solid var(--peach-line);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.76);
}

.helpful-card img {
  width: 57px;
  height: 46px;
  object-fit: contain;
}

.helpful-card h3 {
  color: var(--pink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}

.helpful-card p {
  font-size: 9.5px;
  line-height: 1.3;
}

.testimonial-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  width: min(calc(100% - 36px), 1020px);
  min-height: 118px;
  margin: 0 auto;
  padding: 20px 58px;
  scroll-margin-top: 92px;
  background: url("/assets/brushes/butter-brush-clean.png") center / 100% 100% no-repeat;
}

.testimonial-band figure {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
}

.testimonial-band blockquote {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.02;
}

.testimonial-band figcaption {
  margin-top: 3px;
  color: var(--pink);
  font-size: 9.5px;
  font-style: normal;
  font-weight: 600;
}

.doodle-hearts {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 72px;
  padding: 4px 0 10px;
  overflow: visible;
  color: var(--pink);
  line-height: 1;
}

.doodle-hearts span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.doodle-hearts .heart-outline {
  font-size: 64px;
  transform: rotate(-11deg);
}

.doodle-hearts .heart-filled {
  margin-left: -6px;
  font-size: 31px;
  transform: translateY(2px) rotate(8deg);
}

.testimonial-heart {
  position: absolute;
  right: 18px;
  bottom: -15px;
  width: 68px;
  height: 60px;
  margin: 0;
  pointer-events: none;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  width: min(calc(100% - 24px), 1050px);
  min-height: 114px;
  margin: 0 auto 2px;
  padding: 18px 125px 18px 90px;
  background: url("/assets/brushes/pink-brush-clean.png") left center / 105% 100% no-repeat;
  color: #fff;
}

.final-cta-copy {
  display: flex;
  gap: 18px;
  align-items: center;
}

.final-cta-copy .doodle-hearts {
  color: #fff;
}

.final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(27px, 3.3vw, 38px);
  font-weight: 600;
  line-height: 0.96;
}

.site-footer {
  display: flex;
  gap: 18px 34px;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 14px max(24px, calc((100vw - 1080px) / 2 + 28px));
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.site-footer a {
  color: #fff;
  font-weight: 600;
}

/* Mission page */
.mission-hero {
  height: 440px;
}

.mission-copy h1 {
  font-size: clamp(63px, 7vw, 82px);
}

.mission-subtitle {
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(27px, 3.3vw, 38px);
  font-weight: 600;
  line-height: 0.98;
}

.mission-hero .hero-text {
  max-width: 440px;
  margin-bottom: 16px;
}

.belief-section {
  padding: 11px 0 13px;
}

.belief-item {
  padding-inline: 16px;
}

.belief-item img {
  width: auto;
  max-width: 112px;
  height: 78px;
  margin-bottom: 5px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}

img[src$="shield-heart.png"] {
  clip-path: inset(0 0 3px 0);
}

.belief-item p {
  max-width: 165px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.38;
}

.matters-section {
  padding: 8px 0 13px;
  background: var(--paper);
}

.matters-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.matters-note {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 138px;
  padding: 18px 28px;
  background: url("/assets/brushes/blush-brush-clean.png") center / 100% 100% no-repeat;
}

.matters-note > img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.matters-note .doodle-hearts {
  width: 72px;
}

.matters-note p {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.42;
}

.matters-note strong {
  display: block;
  margin-top: 7px;
  color: var(--pink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.mission-checklist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-checklist li {
  position: relative;
  padding-left: 31px;
  font-size: 12px;
  font-weight: 700;
}

.mission-checklist li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url("/assets/mission-ui/check.webp") center / contain no-repeat;
  content: "";
}

.gains-section {
  padding: 9px 0 13px;
}

.gains-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(224, 150, 118, 0.18);
  border-radius: 14px;
  background: rgba(255, 247, 237, 0.78);
}

.gain-card {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 116px;
  padding: 9px 20px;
}

.gain-card + .gain-card::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 1px;
  background: var(--pink-line);
  content: "";
}

.gain-card img {
  width: 96px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.gain-card h3 {
  color: var(--pink);
  font-family: var(--display);
  font-size: 24px;
}

.gain-card:nth-child(2) h3 {
  color: #7641a4;
}

.gain-card:nth-child(3) h3 {
  color: #1471bd;
}

.gain-card p {
  font-size: 10.5px;
}

.mission-helpful {
  padding-top: 4px;
}

.mission-final-cta {
  min-height: 126px;
}

.mission-final-cta h2 {
  font-size: clamp(25px, 3vw, 35px);
}

/* Signup dialog */
.signup-dialog {
  width: min(calc(100% - 28px), 660px);
  max-height: min(90vh, 720px);
  border: 0;
  border-radius: 16px;
  padding: 0;
  overflow: auto;
  background: var(--paper);
  color: var(--navy);
  box-shadow: 0 24px 80px rgba(6, 35, 74, 0.28);
}

.signup-dialog::backdrop {
  background: rgba(6, 35, 74, 0.58);
  backdrop-filter: blur(3px);
}

.dialog-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 28px 15px;
}

.dialog-kicker {
  margin: 0 0 3px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 43px;
  line-height: 0.9;
}

.dialog-close {
  min-height: 38px;
  border: 1px solid rgba(6, 35, 74, 0.2);
  border-radius: 9px;
  padding: 0 13px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  padding: 13px 28px 28px;
}

.waitlist-form label,
.waitlist-form span {
  display: block;
}

.waitlist-form label > span {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(6, 35, 74, 0.16);
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--navy);
}

.waitlist-form input:focus {
  border-color: var(--blue);
}

.consent {
  grid-column: 1 / -1;
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
}

.consent input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--pink);
}

.consent span {
  margin: 0 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.42;
  text-transform: none !important;
}

.waitlist-form > button {
  grid-column: 1 / -1;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.waitlist-form > button:hover,
.waitlist-form > button:focus-visible {
  background: var(--pink-dark);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(6, 35, 74, 0.72);
  font-size: 10px;
  line-height: 1.4;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Motion reveals once, then content stays fully visible. */
.js .hero-enter {
  opacity: 0;
  transform: translateY(14px);
}

.js .page-ready .hero-enter {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .page-ready .hero-enter:nth-child(2) {
  transition-delay: 100ms;
}

.js .reveal-section,
.js .reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal-section.is-visible,
.js .reveal-section.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js .reveal-section.is-visible .reveal-item:nth-child(2) {
  transition-delay: 55ms;
}

.js .reveal-section.is-visible .reveal-item:nth-child(3) {
  transition-delay: 110ms;
}

.js .reveal-section.is-visible .reveal-item:nth-child(4) {
  transition-delay: 165ms;
}

.js .reveal-section.is-visible .reveal-item:nth-child(5) {
  transition-delay: 220ms;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 70px;
  }

  .header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 70px;
    padding: 9px 18px;
  }

  .site-logo {
    width: 174px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 14px;
    border: 1px solid rgba(6, 35, 74, 0.1);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(6, 35, 74, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    padding: 14px 6px;
    border-bottom: 1px solid rgba(6, 35, 74, 0.07);
    font-size: 13px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    min-width: 112px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-section,
  .mission-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 30px 24px 22px;
  }

  .hero-section h1 {
    max-width: 560px;
  }

  .hero-visual {
    height: min(68vw, 460px);
  }

  .hero-visual img {
    object-position: center 53%;
  }

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

  .belief-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .belief-item + .belief-item::before {
    display: none;
  }

  .learn-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }

  .learn-item:nth-child(4)::before {
    display: none;
  }

  .helpful-grid,
  .gains-grid {
    grid-template-columns: 1fr;
  }

  .gain-card + .gain-card::before {
    top: 0;
    right: 20px;
    bottom: auto;
    left: 20px;
    width: auto;
    height: 1px;
  }

  .testimonial-band {
    gap: 20px;
    padding-inline: 34px;
  }

  .final-cta {
    padding-inline: 54px;
  }

  .matters-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    padding-inline: 12px;
  }

  .site-logo {
    width: 145px;
  }

  .nav-cta {
    min-width: 102px;
    padding-inline: 10px;
  }

  .menu-button {
    padding-inline: 8px;
  }

  .hero-copy {
    padding: 26px 18px 20px;
  }

  .kicker {
    font-size: 12px;
  }

  .hero-section h1,
  .mission-copy h1 {
    max-width: calc(100% - 28px);
    font-size: clamp(48px, 14.2vw, 60px);
    line-height: 0.9;
  }

  .hero-section h1::after {
    right: -0.48em;
    font-size: 0.62em;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .mission-subtitle {
    font-size: 31px;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.48;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    height: 310px;
    margin: 0 16px 22px;
    border-radius: 4px;
  }

  .hero-visual img {
    object-position: 48% 52%;
  }

  .section-inner {
    padding-inline: 16px;
  }

  .interest-section,
  .learn-section,
  .belief-section,
  .matters-section,
  .gains-section,
  .helpful-section {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .section-title,
  .small-title {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .interest-grid {
    gap: 10px;
  }

  .interest-card {
    min-height: 176px;
    padding-inline: 10px;
  }

  .interest-card img {
    width: auto;
    max-width: 92px;
    height: 70px;
  }

  .interest-card p {
    font-size: 11px;
  }

  .learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 23px;
  }

  .learn-item {
    padding-inline: 10px;
  }

  .learn-item:nth-child(3)::before,
  .learn-item:nth-child(5)::before {
    display: none;
  }

  .learn-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .learn-item p {
    font-size: 10.5px;
  }

  .quote-band {
    width: calc(100% - 16px);
    min-height: 162px;
    padding: 30px 38px;
    background-size: auto 100%;
  }

  .quote-band p {
    font-size: 26px;
  }

  .quote-band p br {
    display: none;
  }

  .large-quote {
    left: -24px;
  }

  .large-quote-close {
    right: -18px;
    left: auto;
  }

  .helpful-grid {
    gap: 10px;
  }

  .helpful-card {
    min-height: 90px;
  }

  .helpful-card p {
    font-size: 10.5px;
  }

  .testimonial-band {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 16px);
    min-height: auto;
    padding: 42px 32px 48px;
    background-size: auto 100%;
  }

  .testimonial-band blockquote {
    font-size: 24px;
  }

  .testimonial-band figcaption {
    font-size: 10px;
  }

  .testimonial-heart {
    top: 28px;
    right: 14px;
    bottom: auto;
    width: 58px;
    height: 52px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 12px);
    min-height: 290px;
    padding: 48px 34px;
    background-size: auto 100%;
    text-align: center;
  }

  .final-cta-copy {
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .final-cta h2,
  .mission-final-cta h2 {
    font-size: 36px;
  }

  .final-cta .button-light {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 22px 18px;
  }

  .belief-grid {
    gap: 18px 0;
  }

  .belief-item {
    padding-inline: 10px;
  }

  .belief-item img {
    width: auto;
    max-width: 96px;
    height: 74px;
  }

  .belief-item p {
    font-size: 10.5px;
  }

  .matters-note {
    grid-template-columns: 64px 1fr;
    padding: 25px 24px;
  }

  .matters-note > img {
    width: 55px;
  }

  .matters-note .doodle-hearts {
    width: 55px;
    transform: scale(0.82);
  }

  .mission-checklist {
    gap: 12px;
    padding: 8px 4px;
  }

  .mission-checklist li {
    font-size: 12px;
    line-height: 1.4;
  }

  .gain-card {
    grid-template-columns: 105px 1fr;
    min-height: 130px;
    padding-inline: 15px;
  }

  .mission-final-cta {
    min-height: 330px;
  }

  .signup-dialog {
    width: calc(100% - 20px);
  }

  .dialog-header {
    padding: 22px 19px 12px;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    padding: 12px 19px 23px;
  }
}

@media (max-width: 390px) {
  .site-logo {
    width: 132px;
  }

  .nav-cta {
    min-width: 92px;
    font-size: 11px;
  }

  .menu-button {
    font-size: 11px;
  }

  .hero-section h1,
  .mission-copy h1 {
    font-size: 49px;
  }

  .hero-visual {
    height: 285px;
  }
}

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

  .js .hero-enter,
  .js .page-ready .hero-enter,
  .js .reveal-section,
  .js .reveal-item,
  .js .reveal-section.is-visible,
  .js .reveal-section.is-visible .reveal-item,
  .hero-visual img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
