:root {
  --ink: #201a1b;
  --ink-soft: #655256;
  --rose: #c95f76;
  --rose-deep: #9f4054;
  --rose-pale: #ffe6eb;
  --peach: #ffd4c2;
  --cream: #fff8f1;
  --lilac: #d8c7ee;
  --line: rgba(150, 80, 92, 0.18);
  --surface: rgba(255, 255, 255, 0.7);
  --shadow: 0 24px 70px rgba(124, 71, 81, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    linear-gradient(120deg, rgba(255, 248, 246, 0.96) 0%, rgba(255, 255, 252, 0.98) 47%, rgba(255, 232, 235, 0.9) 100%);
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 31px, rgba(159, 64, 84, 0.035) 32px),
    linear-gradient(0deg, rgba(255, 255, 255, 0) 0 31px, rgba(159, 64, 84, 0.025) 32px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 54%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 38vh;
  content: "";
  background: linear-gradient(to top, rgba(255, 220, 225, 0.34), rgba(255, 220, 225, 0));
  pointer-events: none;
}

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

#fit,
#shapes,
#ritual,
#signal,
#waitlist {
  scroll-margin-top: 96px;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: #111;
  font-family: "Avenir Next", "Helvetica Neue", var(--sans);
  font-size: 1.95rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  display: none;
}

.brand span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.brand::after {
  width: 0.72rem;
  height: 0.72rem;
  margin-left: -0.32rem;
  margin-top: -1rem;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 67% 37%, rgba(255, 248, 246, 1) 0 42%, transparent 44%),
    var(--rose);
  box-shadow:
    0.62rem 0.08rem 0 -0.26rem var(--rose),
    0.88rem 0.42rem 0 -0.28rem var(--rose);
}

.nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--rose-deep);
}

.nav-cta,
.input-row button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159, 64, 84, 0.3);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 14px 28px rgba(185, 83, 103, 0.22);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta {
  justify-self: end;
  padding: 0 1.1rem;
}

.nav-cta:hover,
.input-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(185, 83, 103, 0.28);
  filter: saturate(1.05);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 36px 0 58px;
}

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

.label {
  margin: 0 0 0.9rem;
  color: var(--rose-deep);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1.1rem;
  color: var(--rose-deep);
  font-size: 5.6rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 4rem;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 1.65rem;
  color: #3e3335;
  font-size: 1.12rem;
}

.waitlist-form {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 560px);
}

.field-label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.input-row input,
.final-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  outline: none;
}

.input-row input {
  padding: 0 1.1rem;
}

.final-form select {
  padding: 0 1rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--rose-deep) 50%),
    linear-gradient(135deg, var(--rose-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.input-row input:focus,
.final-form select:focus {
  border-color: rgba(159, 64, 84, 0.55);
  box-shadow: 0 0 0 4px rgba(201, 95, 118, 0.12);
}

.input-row button {
  padding: 0 1.25rem;
  cursor: pointer;
}

.input-row button:disabled {
  cursor: wait;
  filter: grayscale(0.2);
  opacity: 0.75;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 0.12rem 0 0;
  accent-color: var(--rose);
}

.form-status {
  min-height: 1.35rem;
  margin: 0;
  color: var(--rose-deep);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.45rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--rose-deep);
  font-weight: 700;
}

.text-link::after {
  width: 1.45rem;
  height: 1px;
  margin-left: 0.55rem;
  content: "";
  background: currentColor;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: -22px -12px 20% 30%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(201, 95, 118, 0.12);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(159, 64, 84, 0.18);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-caption {
  position: absolute;
  right: 24px;
  bottom: -22px;
  display: grid;
  gap: 0.25rem;
  width: min(78%, 390px);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(159, 64, 84, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 46px rgba(124, 71, 81, 0.14);
  backdrop-filter: blur(14px);
}

.media-caption span {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.media-caption strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -22px auto 74px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 20px 60px rgba(124, 71, 81, 0.08);
}

.proof-strip div {
  min-height: 138px;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.64);
}

.proof-strip span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 700;
}

.proof-strip p {
  margin: 0;
  font-size: 0.95rem;
}

.brand-statement {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 118px;
  padding: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.brand-statement p {
  margin: 0;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 3.15rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.split-section,
.editorial-band,
.final-cta {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 130px;
}

.section-copy {
  max-width: 520px;
}

.section-copy p {
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at 35% 35%, #fff 0 18%, var(--rose) 20% 100%);
  box-shadow: 0 0 0 5px rgba(201, 95, 118, 0.12);
}

.portrait-panel,
.shape-stage {
  overflow: hidden;
  border: 1px solid rgba(159, 64, 84, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.portrait-panel img,
.shape-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.difference-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: 1.1rem;
  border: 1px solid rgba(159, 64, 84, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 236, 239, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(216, 199, 238, 0.38), transparent 30%);
  box-shadow: var(--shadow);
}

.difference-panel::before {
  position: absolute;
  inset: -32% auto auto 50%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 95, 118, 0.12);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.difference-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  min-height: 196px;
  padding: 1.35rem;
  border: 1px solid rgba(159, 64, 84, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.difference-card span {
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.difference-card p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.muted-card {
  color: #c3a181;
}

.feature-card {
  color: var(--rose);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 231, 235, 0.66));
}

.generic-strip {
  width: min(100%, 390px);
  height: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.35) 0 1px, transparent 1.5px) 0 0 / 9px 9px,
    linear-gradient(135deg, rgba(218, 176, 126, 0.86), rgba(193, 145, 91, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44), 0 14px 30px rgba(110, 63, 72, 0.12);
}

.mini-shapes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.mini-shapes .tape {
  width: 88px;
  height: 40px;
  margin: 0;
}

.shapes-section,
.signal-section,
.ritual-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 130px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading p:last-child {
  max-width: 680px;
  font-size: 1.04rem;
}

.shape-stage {
  aspect-ratio: 16 / 7.8;
  margin-bottom: 1.25rem;
}

.shape-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.shape-card {
  display: grid;
  min-height: 238px;
  align-content: start;
  gap: 0.7rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.7);
}

.shape-card h3,
.shape-card p {
  margin: 0;
}

.shape-card h3 {
  color: var(--rose-deep);
}

.shape-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tape {
  width: 100%;
  max-width: 148px;
  height: 64px;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 8px 10px rgba(110, 63, 72, 0.12));
}

.tape::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.5px) 0 0 / 10px 10px,
    currentColor;
}

.tone-pink {
  color: #ee9cab;
}

.tone-coral {
  color: #efa27d;
}

.tone-cream {
  color: #f4d69b;
}

.tone-lilac {
  color: #c6aee4;
}

.tone-salmon {
  color: #ed9f8b;
}

.tape-oval::after {
  border-radius: 50%;
}

.tape-wave::after {
  clip-path: path("M 3 38 C 20 8, 42 24, 55 12 C 70 -2, 88 9, 98 25 C 110 44, 132 28, 145 49 C 125 68, 88 61, 69 57 C 46 52, 24 66, 3 38 Z");
}

.tape-petal::after {
  clip-path: path("M 4 37 C 13 16, 34 15, 46 31 C 54 8, 82 8, 91 31 C 105 14, 132 18, 144 42 C 123 62, 96 58, 76 55 C 53 62, 24 59, 4 37 Z");
}

.tape-cloud::after {
  clip-path: path("M 4 43 C 8 21, 31 17, 43 31 C 49 9, 78 6, 89 27 C 104 9, 131 17, 144 40 C 137 62, 109 62, 91 54 C 72 66, 46 61, 35 51 C 22 59, 7 54, 4 43 Z");
}

.tape-band::after {
  clip-path: path("M 2 25 C 34 44, 108 44, 146 24 C 138 59, 111 69, 74 66 C 38 67, 11 58, 2 25 Z");
}

.editorial-band {
  grid-template-columns: 1.08fr 0.92fr;
}

.portrait-panel {
  aspect-ratio: 16 / 10;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.mini-metrics span {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(159, 64, 84, 0.18);
  border-radius: 999px;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.ritual-section {
  padding: 5.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ritual-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ritual-heading p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.ritual-steps article {
  position: relative;
  min-height: 230px;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 247, 247, 0.68));
}

.ritual-steps article + article::before {
  position: absolute;
  top: 50%;
  left: -0.55rem;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 1px solid var(--rose);
  border-right: 1px solid var(--rose);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255, 249, 248, 0.96);
}

.ritual-steps span {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 95, 118, 0.22);
  border-radius: 50%;
  color: var(--rose-deep);
  background: rgba(255, 229, 235, 0.72);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.ritual-steps h3 {
  color: var(--ink);
}

.ritual-steps p {
  margin: 0;
  font-size: 0.94rem;
}

.signal-section {
  padding: 5.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.signal-grid article {
  min-height: 260px;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 247, 247, 0.66));
}

.signal-number {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.final-cta {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  align-items: start;
  padding: 4.3rem;
  border: 1px solid rgba(159, 64, 84, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 231, 235, 0.7)),
    url("/assets/optimized/customer-wants.jpg") right 3rem bottom / min(42%, 510px) auto no-repeat;
  box-shadow: var(--shadow);
}

.cta-copy {
  max-width: 520px;
}

.final-form {
  padding: 1.45rem;
  border: 1px solid rgba(159, 64, 84, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.site-footer {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}

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

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.disclaimer {
  color: #8a7378;
  font-size: 0.78rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .site-header[data-reveal],
.js .hero [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media {
    animation: float-media 8s ease-in-out infinite;
  }

  .tape {
    animation: float-tape 5s ease-in-out infinite;
  }

  .shape-card:nth-child(2) .tape {
    animation-delay: 400ms;
  }

  .shape-card:nth-child(3) .tape {
    animation-delay: 800ms;
  }

  .shape-card:nth-child(4) .tape {
    animation-delay: 1200ms;
  }

  .shape-card:nth-child(5) .tape {
    animation-delay: 1600ms;
  }
}

@keyframes float-media {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-tape {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .editorial-band,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

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

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .proof-strip,
  .brand-statement,
  .split-section,
  .editorial-band,
  .shapes-section,
  .ritual-section,
  .signal-section,
  .final-cta {
    margin-bottom: 90px;
  }

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

  .final-cta {
    padding: 3rem;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 231, 235, 0.76)),
      url("/assets/optimized/customer-wants.jpg") right 1.4rem bottom 1.2rem / 360px auto no-repeat;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 1180px);
  }

  .nav {
    display: none;
  }

  .brand img {
    display: none;
  }

  .brand {
    font-size: 1.55rem;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 0.95rem;
    font-size: 0.88rem;
  }

  .hero,
  .proof-strip,
  .brand-statement,
  .split-section,
  .editorial-band,
  .shapes-section,
  .ritual-section,
  .signal-section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand-statement {
    padding-bottom: 32px;
  }

  .brand-statement p {
    font-size: 2.2rem;
    text-align: left;
  }

  .hero {
    gap: 34px;
    padding-bottom: 48px;
  }

  .label {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.75rem;
    line-height: 1.03;
  }

  .hero-text {
    font-size: 1rem;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .input-row button {
    width: 100%;
  }

  .hero-actions {
    gap: 0.95rem;
  }

  .hero-video,
  .difference-panel,
  .portrait-panel,
  .shape-stage {
    border-radius: 14px;
  }

  .media-caption {
    position: static;
    width: auto;
    margin-top: 0.75rem;
  }

  .hero-media::before {
    display: none;
  }

  .proof-strip,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
  }

  .shape-stage {
    aspect-ratio: 4 / 3;
  }

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

  .shape-card {
    min-height: 200px;
  }

  .signal-section {
    padding: 3.2rem 0;
  }

  .ritual-section {
    padding: 3.4rem 0;
  }

  .ritual-heading {
    text-align: left;
  }

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

  .ritual-steps article {
    min-height: auto;
  }

  .ritual-steps article + article::before {
    display: none;
  }

  .signal-grid article {
    min-height: auto;
  }

  .final-cta {
    padding: 1.35rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 231, 235, 0.78));
  }

  .final-form {
    padding: 1rem;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions {
    display: grid;
  }

  .text-link::after {
    width: 1rem;
  }
}

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

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