:root {
  --ink: #07151b;
  --ink-soft: #10272d;
  --cream: #f4efe4;
  --cream-deep: #e8dfcf;
  --paper: #fffaf0;
  --red: #a8202d;
  --red-deep: #74151f;
  --gold: #c8a66a;
  --muted: #627176;
  --line: rgba(7, 21, 27, 0.14);
  --light-line: rgba(255, 250, 240, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --spring-snappy: linear(
    0,
    0.009,
    0.035 2.1%,
    0.141 4.4%,
    0.723 12.9%,
    0.938 16.7%,
    1.017 19.4%,
    1.067 22.5%,
    1.089 26%,
    1.079 30.3%,
    1.049 36%,
    1.024 42.6%,
    1.011 50.3%,
    1.004 59.2%,
    1.001 69.3%,
    1
  );
  --page-progress: 0;
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
video {
  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(--gold);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: var(--red);
  transform: scaleX(var(--page-progress));
  transform-origin: left;
}

.snow-layer {
  position: fixed;
  z-index: 1001;
  top: -100%;
  right: 0;
  left: 0;
  height: 200%;
  pointer-events: none;
  will-change: transform;
}

.snow-layer-back {
  opacity: 0.28;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 0.8px, transparent 1.5px);
  background-position: 0 0, 35px 47px;
  background-size: 86px 86px, 137px 137px;
  animation: snow-fall-back 22s linear infinite;
}

.snow-layer-front {
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1.7px, transparent 2.3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 1.2px, transparent 2px);
  background-position: 18px 12px, 67px 91px;
  background-size: 168px 168px, 224px 224px;
  animation: snow-fall-front 30s linear infinite;
}

@keyframes snow-fall-back {
  from {
    transform: translate3d(-18px, 0, 0);
  }
  to {
    transform: translate3d(46px, 50%, 0);
  }
}

@keyframes snow-fall-front {
  from {
    transform: translate3d(28px, -3%, 0);
  }
  to {
    transform: translate3d(-38px, 47%, 0);
  }
}

.section-shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1100;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 36px), 1380px);
  min-height: 66px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  background: rgba(7, 21, 27, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  color: var(--paper);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: inherit;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.primary-nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  align-items: center;
  justify-content: center;
}

.primary-nav a,
.login-link,
.footer-links a {
  position: relative;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after,
.login-link::after,
.footer-links a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-snap);
}

.primary-nav a:hover::after,
.login-link:hover::after,
.footer-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-cta,
.hero-cta,
.price-cta,
.join-form button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.5s var(--ease-snap),
    box-shadow 0.5s var(--ease-snap),
    color 0.35s var(--ease-in-out),
    background-color 0.35s var(--ease-in-out);
}

.header-cta {
  min-height: 48px;
  padding: 0 22px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-cta:hover,
.hero-cta:hover,
.price-cta:hover,
.join-form button:hover,
.button-outline:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.header-cta:active,
.hero-cta:active,
.price-cta:active,
.join-form button:active,
.button-outline:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 90ms;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}

.hero-backdrop {
  position: absolute;
  z-index: -4;
  inset: -5% 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.035);
  transform-origin: center;
}

.hero-scrim {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 16, 0.96) 0%, rgba(4, 12, 16, 0.78) 35%, rgba(4, 12, 16, 0.2) 69%, rgba(4, 12, 16, 0.26) 100%),
    linear-gradient(0deg, rgba(4, 12, 16, 0.74) 0%, transparent 42%, rgba(4, 12, 16, 0.34) 100%);
}

.hero-atmosphere {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 68% 45%, rgba(232, 185, 107, 0.08), transparent 35%);
}

.hero-snow {
  position: absolute;
  z-index: -1;
  top: -100%;
  right: 0;
  left: 0;
  height: 200%;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 2.1px, transparent 2.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.74) 0 1.35px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 0.9px, transparent 1.6px);
  background-position: 24px 18px, 78px 103px, 42px 65px;
  background-size: 186px 186px, 123px 123px, 76px 76px;
  animation: hero-snow-fall 18s linear infinite;
  will-change: transform;
}

@keyframes hero-snow-fall {
  from {
    transform: translate3d(-22px, 0, 0);
  }
  to {
    transform: translate3d(52px, 50%, 0);
  }
}

.hero-content {
  width: min(100% - 3rem, 1380px);
  margin-inline: auto;
  padding-top: 7rem;
}

.hero-content > * {
  max-width: 760px;
}

.hero-eyebrow,
.section-kicker,
.moment-label,
.hero-detail-label,
.film-quote span,
.ai-note span,
.media-caption,
.price-topline {
  margin: 0 0 1.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: rgba(255, 250, 240, 0.66);
}

.hero h1 {
  max-width: 8.8ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 8.2vw, 9.2rem);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.87;
  text-wrap: balance;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  padding: 0 0.025em 0.07em 0;
  vertical-align: bottom;
}

.hero h1 .word {
  display: inline-block;
}

.hero-subtitle {
  max-width: 43ch;
  margin: 1.7rem 0 2rem;
  color: rgba(255, 250, 240, 0.75);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

.hero-cta {
  gap: 24px;
  min-height: 58px;
  padding: 0.4rem 0.45rem 0.4rem 1.6rem;
  background: var(--red);
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.025em;
}

.cta-price {
  display: inline-grid;
  min-height: 48px;
  padding-inline: 1rem;
  border-radius: 999px;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-phone-stage {
  position: absolute;
  right: clamp(16rem, calc(33vw - 8rem), 48rem);
  bottom: clamp(1.5rem, 2.5vw, 3rem);
  width: clamp(220px, 19vw, 310px);
  height: min(78dvh, 690px);
  pointer-events: none;
  transform: rotate(1.8deg);
  transform-origin: center bottom;
}

.hero-video-phone {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 82%;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: #05090b;
  box-shadow:
    0 46px 100px rgba(0, 0, 0, 0.5),
    0 0 0 5px rgba(255, 255, 255, 0.045);
}

.hero-video-phone::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 42%, rgba(255, 255, 255, 0.2) 48%, transparent 56% 100%);
  transform: translateX(-125%);
  animation: hero-phone-shine 6.5s var(--ease-in-out) infinite;
}

@keyframes hero-phone-shine {
  0%,
  72% {
    transform: translateX(-125%);
  }
  88%,
  100% {
    transform: translateX(125%);
  }
}

.hero-video-phone video,
.hero-video-phone > img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  background: #05090b;
  object-fit: cover;
}

.hero-phone-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 62px;
  height: 15px;
  border-radius: 999px;
  background: #05090b;
  transform: translateX(-50%);
}

.hero-seal-card {
  position: absolute;
  z-index: 3;
  top: 14%;
  left: -24%;
  display: grid;
  width: 114px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero-seal-card img {
  width: 64px;
  margin-inline: auto;
}

.hero-seal-card span {
  margin-top: 0.45rem;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.hero-detail {
  position: absolute;
  z-index: 4;
  right: auto;
  bottom: 16%;
  left: calc(100% + clamp(1rem, 1.6vw, 1.5rem));
  width: 240px;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 18px;
  background: rgba(7, 21, 27, 0.48);
  backdrop-filter: blur(14px);
  transform: rotate(-1.8deg);
  transform-origin: left center;
}

.hero-detail-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.62rem;
}

.hero-detail p {
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-item {
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: 2.1rem clamp(1.5rem, 4vw, 4rem);
  align-content: center;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.05em;
}

.proof-item span {
  max-width: 29ch;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.family-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(6rem, 11vw, 11rem);
}

.family-story-media {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(7, 21, 27, 0.15);
}

.family-story-media img {
  width: 100%;
  height: 100%;
  min-height: 670px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 16px;
  background: rgba(7, 21, 27, 0.7);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

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

.section-kicker.light {
  color: var(--gold);
}

.family-story-copy h2,
.moments-intro h2,
.section-heading-row h2,
.ai-copy h2,
.membership-copy h2,
.corky-proof-copy h2,
.final-join h2,
.film-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: balance;
}

.family-story-copy .lead,
.ai-copy .lead,
.corky-proof-copy .lead {
  margin-top: 2rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.family-story-copy > p:not(.section-kicker, .lead),
.ai-copy > p:not(.section-kicker, .lead),
.corky-proof-copy > p:not(.section-kicker, .lead) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-link {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.corky-film {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 7vw, 7.5rem);
  background:
    radial-gradient(circle at 78% 42%, rgba(168, 32, 45, 0.22), transparent 32%),
    var(--ink);
  color: var(--paper);
}

.film-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.film-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
}

.film-copy h2 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 5.2vw, 6.2rem);
}

.film-copy > p:not(.section-kicker) {
  max-width: 50ch;
  margin: 1.65rem 0 0;
  color: rgba(255, 250, 240, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

.film-copy .button-outline {
  width: max-content;
  margin-top: 2rem;
}

.button-outline {
  min-height: 52px;
  padding: 0 1.4rem;
  border: 1px solid rgba(255, 250, 240, 0.3);
  color: var(--paper);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-outline:hover {
  background: var(--paper);
  color: var(--ink);
}

.film-portrait {
  position: relative;
  width: min(100%, 540px);
  margin: 0;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 250, 240, 0.04);
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.025);
  transform: rotate(1.2deg);
}

.film-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 33px;
  object-fit: cover;
  object-position: center 42%;
}

.film-quote {
  position: absolute;
  z-index: 3;
  right: -2.5rem;
  bottom: 2rem;
  width: min(330px, 72%);
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--light-line);
  border-radius: 18px;
  background: rgba(7, 21, 27, 0.78);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.film-quote span {
  color: var(--gold);
}

.film-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.message-ways {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.message-ways-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 1rem clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.message-ways-heading .section-kicker,
.message-ways-heading h2 {
  grid-column: 1;
}

.message-ways-heading h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 6.2rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.message-ways-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 44ch;
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.message-way-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.message-way-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(7, 21, 27, 0.1);
  transition:
    transform 0.5s var(--ease-snap),
    box-shadow 0.5s var(--ease-snap);
}

.message-way-card:hover {
  box-shadow: 0 34px 86px rgba(7, 21, 27, 0.16);
  transform: translateY(-6px);
}

.message-way-instant {
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 166, 106, 0.3), transparent 28%),
    var(--ink);
  color: var(--paper);
}

.message-way-original {
  background:
    radial-gradient(circle at 90% 10%, rgba(168, 32, 45, 0.12), transparent 30%),
    #f8f2e7;
  color: var(--ink);
}

.message-way-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.58;
  text-transform: uppercase;
}

.message-way-label {
  margin: auto 0 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-way-original .message-way-label {
  color: var(--red);
}

.message-way-card h3 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.message-way-card > p:not(.message-way-label) {
  max-width: 54ch;
  margin: 1.5rem 0 0;
  color: rgba(255, 250, 240, 0.62);
  line-height: 1.7;
}

.message-way-original > p:not(.message-way-label) {
  color: var(--muted);
}

.message-way-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.message-way-card li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.message-way-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.message-way-original li::before {
  background: var(--red);
}

.message-way-status {
  width: fit-content;
  margin-top: 1.8rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.72;
  text-transform: uppercase;
}

.message-ways-trust {
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.moments {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(7rem, 12vw, 12rem);
}

.moments-intro {
  position: sticky;
  top: 8.2rem;
  align-self: start;
}

.moments-intro h2 {
  font-size: clamp(3rem, 4.7vw, 5.6rem);
}

.moments-intro > p:last-child {
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.75;
}

.moment-stack {
  position: relative;
  padding-bottom: 10vh;
}

.moment-card {
  position: sticky;
  z-index: calc(10 + var(--stack-index));
  top: calc(7.5rem + (var(--stack-index) * 0.65rem));
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 590px;
  margin-bottom: 20vh;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 28px;
  background: var(--ink-soft);
  box-shadow: 0 30px 80px rgba(7, 21, 27, 0.18);
  color: var(--paper);
  transform-origin: center top;
  transition:
    transform 0.5s var(--ease-snap),
    box-shadow 0.5s var(--ease-snap);
}

.moment-card:hover {
  box-shadow: 0 38px 100px rgba(7, 21, 27, 0.26);
  transform: translateY(-4px);
}

.moment-number {
  padding: 1.8rem 0 0 1.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.moment-copy {
  align-self: center;
  padding: 4rem 2.5rem 3rem 1rem;
}

.moment-label {
  color: var(--gold);
}

.moment-copy h3 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.moment-copy > p:last-child {
  max-width: 46ch;
  color: rgba(255, 250, 240, 0.64);
  line-height: 1.7;
}

.moment-card img {
  grid-column: 1 / -1;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.9s var(--ease-out);
}

.moment-card:hover img {
  transform: scale(1.035);
}

.how-it-works {
  padding-block: clamp(7rem, 12vw, 12rem);
  background: var(--ink);
  color: var(--paper);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.section-heading-row h2 {
  max-width: 10ch;
}

.section-heading-row > p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
  line-height: 1.75;
}

.steps {
  margin-top: 5rem;
  border-top: 1px solid var(--light-line);
}

.step-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--light-line);
  transition:
    transform 0.45s var(--ease-snap),
    border-color 0.35s var(--ease-in-out);
}

.step-card:hover {
  border-color: rgba(200, 166, 106, 0.7);
  transform: translateX(8px);
}

.step-number {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.step-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 2.8rem);
  letter-spacing: -0.035em;
}

.step-card p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 250, 240, 0.56);
  line-height: 1.65;
}

.ai-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(7rem, 12vw, 12rem);
}

.ai-copy h2 {
  font-size: clamp(3rem, 4.5vw, 5.25rem);
}

.ai-checks {
  display: grid;
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ai-checks li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.55;
}

.ai-checks span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ai-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 30px;
}

.ai-media > img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.ai-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 1.25rem;
  border: 1px solid var(--light-line);
  border-radius: 18px;
  background: rgba(7, 21, 27, 0.74);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.ai-note span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.ai-note p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.membership {
  padding-block: clamp(7rem, 12vw, 12rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 38%, rgba(168, 32, 45, 0.25), transparent 28%),
    var(--ink);
  color: var(--paper);
}

.membership-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}

.membership-copy h2 {
  max-width: 9ch;
}

.membership-copy > p:last-child {
  max-width: 45ch;
  color: rgba(255, 250, 240, 0.6);
  line-height: 1.75;
}

.price-card {
  padding: clamp(1.7rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
  color: var(--ink);
  transition:
    transform 0.5s var(--ease-snap),
    box-shadow 0.5s var(--ease-snap);
}

.price-card:hover {
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.price-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.price {
  display: flex;
  gap: 12px;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.price strong {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 7.5rem);
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.price > span {
  padding-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 1.4rem 0 1.7rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.45rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.price-card li::before {
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.price-cta {
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  padding: 0 1.4rem;
  background: var(--red);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-cta span:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.price-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.member-assurance {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.assurance-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 1.5rem clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.assurance-heading .section-kicker {
  grid-column: 1 / -1;
}

.assurance-heading h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 5.7vw, 6.7rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.assurance-heading > p:last-child {
  max-width: 45ch;
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 6vw, 6rem);
  border-block: 1px solid var(--line);
}

.assurance-grid article {
  padding: clamp(1.8rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
}

.assurance-grid article:first-child {
  padding-left: 0;
}

.assurance-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.assurance-grid span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.assurance-grid h3 {
  margin: 1.4rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.3vw, 2.6rem);
  letter-spacing: -0.035em;
}

.assurance-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  width: min(100%, 980px);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.6rem 3.5rem 1.6rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  content: "+";
  color: var(--red);
  font-family: var(--font-body);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 72ch;
  margin: -0.4rem 0 1.6rem;
  color: var(--muted);
  line-height: 1.75;
}

.corky-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-block: clamp(7rem, 12vw, 12rem);
}

.corky-proof-image {
  position: relative;
  height: 740px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--red-deep);
}

.corky-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.proof-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 50%;
  background: rgba(7, 21, 27, 0.75);
  color: var(--paper);
  text-align: center;
  backdrop-filter: blur(14px);
  place-content: center;
}

.proof-badge strong {
  font-family: var(--font-display);
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}

.proof-badge span {
  max-width: 12ch;
  margin-inline: auto;
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-join {
  position: relative;
  display: grid;
  min-height: 880px;
  overflow: hidden;
  color: var(--paper);
  place-items: center;
}

.final-join > img,
.final-join-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-join > img {
  object-fit: cover;
  object-position: center;
}

.final-join-scrim {
  background: linear-gradient(90deg, rgba(7, 21, 27, 0.95), rgba(7, 21, 27, 0.5) 58%, rgba(7, 21, 27, 0.68));
}

.final-join-inner {
  position: relative;
  z-index: 2;
}

.final-join h2 {
  max-width: 10ch;
}

.final-join-inner > p:not(.section-kicker, .form-note) {
  max-width: 52ch;
  color: rgba(255, 250, 240, 0.67);
  line-height: 1.7;
}

.join-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  max-width: 1000px;
  margin-top: 2.2rem;
}

.join-form label {
  display: grid;
  gap: 7px;
}

.join-form label > span {
  padding-left: 0.4rem;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.join-form input {
  min-height: 58px;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 16px;
  outline: 0;
  background: rgba(7, 21, 27, 0.58);
  color: var(--paper);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.35s var(--ease-in-out),
    box-shadow 0.35s var(--ease-in-out);
}

.join-form input::placeholder {
  color: rgba(255, 250, 240, 0.4);
}

.join-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 166, 106, 0.14);
}

.join-form button {
  align-self: end;
  min-height: 58px;
  padding: 0 1.5rem;
  border: 0;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-note {
  margin-top: 0.9rem;
  color: rgba(255, 250, 240, 0.5);
  font-size: 0.72rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem max(1.5rem, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--light-line);
  background: var(--ink);
  color: var(--paper);
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.site-footer > p,
.site-footer > span {
  margin: 0;
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.72rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

/* Motion activates only when JavaScript adds the class, so content stays readable without JS. */
.motion-ready .site-header {
  opacity: 0;
  transform: translate(-50%, -22px);
}

.motion-ready.page-ready .site-header {
  animation: nav-enter 0.58s var(--spring-snappy) both;
}

.motion-ready .hero-eyebrow,
.motion-ready .hero-subtitle,
.motion-ready .hero-cta,
.motion-ready .hero-phone-stage {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(22px);
}

.motion-ready.page-ready .hero-eyebrow {
  animation: enter-up 0.58s var(--spring-snappy) 80ms both;
}

.motion-ready.page-ready .hero h1 .word {
  animation: word-enter 0.64s var(--spring-snappy) calc(130ms + var(--word-index) * 70ms) both;
}

.motion-ready:not(.page-ready) .hero h1 .word {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(110%);
}

.motion-ready.page-ready .hero-subtitle {
  animation: enter-up 0.58s var(--spring-snappy) 300ms both;
}

.motion-ready.page-ready .hero-cta {
  animation: enter-up 0.56s var(--spring-snappy) 390ms both;
}

.motion-ready.page-ready .hero-phone-stage {
  animation: hero-phone-enter 0.66s var(--spring-snappy) 440ms both;
}

@keyframes hero-phone-enter {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(26px) rotate(4deg) scale(0.96);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotate(1.8deg) scale(1);
  }
}

@keyframes nav-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -22px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes enter-up {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes word-enter {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.motion-ready [data-reveal],
.motion-ready [data-reveal-stagger] > * {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(34px);
  transition:
    opacity 0.72s var(--spring-snappy),
    transform 0.72s var(--spring-snappy),
    filter 0.72s var(--spring-snappy);
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal-stagger].is-visible > * {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.motion-ready .moment-card.is-visible:hover,
.motion-ready .price-card.is-visible:hover {
  transform: translateY(-4px);
}

.motion-ready [data-reveal-stagger].is-visible > *:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready [data-reveal-stagger].is-visible > *:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready [data-reveal="clip"] {
  opacity: 1;
  filter: none;
  clip-path: inset(0 100% 0 0);
  transform: none;
  transition: clip-path 0.84s var(--ease-out);
}

.motion-ready [data-reveal="clip"].is-visible {
  clip-path: inset(0);
}

.motion-ready [data-reveal="clip"] img {
  transform: scale(1.06);
  transition: transform 1.05s var(--ease-out);
}

.motion-ready [data-reveal="clip"].is-visible img {
  transform: scale(1);
}

@media (max-width: 1050px) {
  .primary-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-detail {
    right: auto;
    left: calc(100% + 0.75rem);
    width: 210px;
  }

  .family-story,
  .ai-story,
  .corky-proof,
  .membership-inner {
    gap: 3.5rem;
  }

  .film-quote {
    right: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 5rem;
  }

  .section-shell {
    width: min(100% - 2rem, 680px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 60px;
    padding-left: 12px;
  }

  .brand span,
  .login-link {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 17px;
  }

  .hero {
    align-items: end;
  }

  .hero-backdrop {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(4, 12, 16, 0.98) 0%, rgba(4, 12, 16, 0.78) 48%, rgba(4, 12, 16, 0.2) 88%),
      linear-gradient(90deg, rgba(4, 12, 16, 0.7), rgba(4, 12, 16, 0.12));
  }

  .hero-content {
    width: calc(100% - 2rem);
    padding: 8rem 0 3rem;
  }

  .hero-phone-stage {
    z-index: -1;
    top: 9.5rem;
    right: 0.75rem;
    bottom: auto;
    width: 152px;
    height: 300px;
    opacity: 0.72;
  }

  .hero-video-phone {
    width: 100%;
    padding: 6px;
    border-radius: 28px;
  }

  .hero-video-phone video {
    border-radius: 22px;
  }

  .hero-phone-speaker {
    top: 11px;
    width: 42px;
    height: 10px;
  }

  .hero-seal-card,
  .hero-detail {
    display: none;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.8rem, 17vw, 6.8rem);
  }

  .hero-subtitle {
    margin-block: 1.3rem 1.5rem;
  }

  .hero-cta {
    gap: 16px;
    width: 100%;
    justify-content: space-between;
  }

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

  .proof-item {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .family-story,
  .ai-story,
  .corky-proof,
  .membership-inner,
  .moments,
  .film-layout,
  .message-ways-heading,
  .section-heading-row,
  .assurance-heading {
    grid-template-columns: 1fr;
  }

  .message-ways-heading .section-kicker,
  .message-ways-heading h2,
  .message-ways-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .message-ways-heading h2 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .message-way-grid {
    grid-template-columns: 1fr;
  }

  .message-way-card {
    min-height: 560px;
  }

  .assurance-heading .section-kicker {
    grid-column: 1;
  }

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

  .assurance-grid article,
  .assurance-grid article:first-child,
  .assurance-grid article:last-child {
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid article:last-child {
    border-bottom: 0;
  }

  .film-layout {
    gap: 3.5rem;
  }

  .film-portrait {
    width: min(100%, 520px);
    margin-inline: auto;
    justify-self: center;
  }

  .family-story-media,
  .family-story-media img {
    min-height: 480px;
  }

  .family-story-copy h2,
  .moments-intro h2,
  .section-heading-row h2,
  .ai-copy h2,
  .membership-copy h2,
  .corky-proof-copy h2,
  .final-join h2,
  .film-copy h2 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .film-copy .button-outline {
    margin-top: 1.5rem;
  }

  .film-quote {
    right: 0;
    bottom: 1.5rem;
    width: min(290px, 72vw);
  }

  .moments-intro {
    position: relative;
    top: auto;
  }

  .moment-card {
    position: relative;
    top: auto;
    min-height: 0;
    margin-bottom: 1.2rem;
  }

  .moment-copy {
    padding: 3rem 1.5rem 2.5rem 0.5rem;
  }

  .moment-card img {
    height: 250px;
  }

  .step-card {
    grid-template-columns: 52px 1fr;
  }

  .ai-story > .ai-copy {
    order: 2;
  }

  .ai-story > .ai-media {
    order: 1;
  }

  .ai-media,
  .ai-media > img {
    min-height: 520px;
    height: 520px;
  }

  .corky-proof-image {
    height: 580px;
  }

  .join-form {
    grid-template-columns: 1fr;
  }

  .join-form button {
    margin-top: 0.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2rem 1rem;
  }

  .site-footer .brand span {
    display: inline;
  }
}

@media (max-width: 520px) {
  .hero-eyebrow,
  .section-kicker,
  .moment-label {
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.1rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 0.68rem;
  }

  .family-story-media,
  .family-story-media img {
    min-height: 410px;
  }

  .media-caption {
    display: grid;
    gap: 5px;
  }

  .film-portrait {
    border-radius: 25px;
  }

  .film-portrait img {
    border-radius: 24px;
  }

  .film-quote {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

  .message-way-card {
    min-height: 520px;
    border-radius: 24px;
  }

  .message-way-card h3 {
    font-size: 2.75rem;
  }

  .moment-card {
    grid-template-columns: 46px 1fr;
    border-radius: 22px;
  }

  .moment-number {
    padding-left: 1rem;
  }

  .moment-copy h3 {
    font-size: 2.5rem;
  }

  .price-topline {
    display: grid;
    gap: 8px;
  }

  .price {
    align-items: center;
  }

  .price strong {
    font-size: 5rem;
  }

  .corky-proof-image {
    height: 500px;
  }

  .proof-badge {
    width: 122px;
    height: 122px;
  }

  .final-join {
    min-height: 920px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-backdrop,
  .moment-card:hover,
  .moment-card:hover img,
  .price-card:hover,
  .step-card:hover {
    transform: none !important;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal-stagger] > *,
  .motion-ready [data-reveal="clip"],
  .motion-ready [data-reveal="clip"] img {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }

  .snow-layer,
  .hero-snow,
  .hero-video-phone::after {
    animation: none !important;
  }
}
