:root {
  --violet-900: #3f3658;
  --violet-800: #322a49;
  --violet-600: #6e6391;
  --violet-300: #c7bce2;
  --violet-100: #ece7f5;
  --violet-050: #e0d8ef;
  --accent-500: #da6a4a;
  --accent-300: #f2b79e;
  --accent-100: #fbeae2;
  --bg: #f4f1f9;
  --surface: #ffffff;
  --surface-alt: #faf8fd;
  --border: #e7e2f0;
  --ink-900: #2c2838;
  --ink-700: #46415a;
  --ink-500: #837d97;
  --success: #4e8e6e;
  --shadow: 0 18px 48px rgba(63, 54, 88, 0.12);
  --soft-shadow: 0 10px 30px rgba(63, 54, 88, 0.08);
  --page-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-700);
  background:
    radial-gradient(circle at 10% 4%, rgba(242, 183, 158, 0.32), transparent 28%),
    linear-gradient(180deg, #fbf9fd 0%, var(--bg) 50%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--page-max));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 20px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 162px;
  height: 48px;
  min-height: 48px;
  overflow: hidden;
}

.brand img {
  width: 162px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--violet-900);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: var(--accent-500);
  box-shadow: 0 12px 26px rgba(218, 106, 74, 0.24);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.primary-button:hover {
  background: #c95e42;
  box-shadow: 0 14px 30px rgba(218, 106, 74, 0.3);
  transform: translateY(-1px);
}

.secondary-button {
  color: var(--violet-900);
  background: var(--surface);
  border: 1px solid var(--border);
}

.hero-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--page-max));
  height: 1050px;
  margin: 16px auto 0;
  padding: 70px 28px 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 50%, rgba(251, 234, 226, 0.82) 100%),
    var(--surface);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.44),
    var(--shadow);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(199, 188, 226, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 188, 226, 0.2) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 0%, black 52%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--violet-600);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(218, 106, 74, 0.45);
  border-radius: 999px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-500);
  box-shadow: 0 0 0 5px var(--accent-100);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 850;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--accent-500);
}

h1 span::after {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: -0.09em;
  height: 0.16em;
  border: 4px solid var(--accent-500);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-copy {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--ink-700);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-phone-wrap {
  position: absolute;
  left: 50%;
  bottom: -50px;
  z-index: 3;
  width: min(430px, 72vw);
  height: 650px;
  margin: 0;
  transform: translateX(-50%);
}

.phone-shadow {
  position: absolute;
  right: 3%;
  bottom: 5%;
  left: 3%;
  height: 58px;
  border-radius: 50%;
  background: rgba(63, 54, 88, 0.25);
  filter: blur(22px);
}

.phone-frame {
  position: relative;
  overflow: hidden;
  height: 650px;
  border: 10px solid #1e1b2a;
  border-radius: 52px 52px 0 0;
  background: var(--surface);
  box-shadow: 0 24px 54px rgba(44, 40, 56, 0.24);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 2;
  width: 116px;
  height: 32px;
  border-radius: 999px;
  background: #0f0d18;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: auto;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 158px;
  padding: 14px 16px;
  border: 1px solid rgba(231, 226, 240, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  color: var(--violet-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.floating-card span {
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.35;
}

.floating-card-left {
  left: -128px;
  bottom: 190px;
}

.floating-card-right {
  right: -142px;
  bottom: 350px;
}

.proof-strip,
.section,
.final-cta,
.site-footer {
  width: min(calc(100% - 40px), var(--page-max));
  margin-inline: auto;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.proof-strip div,
.feature-grid article,
.steps article,
.metric-panel,
.testimonial-section figure,
.faq-list details,
.quote-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.proof-strip div {
  padding: 22px;
}

.proof-strip strong,
.steps h3,
.feature-grid h3 {
  display: block;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.45;
}

.section {
  padding: 92px 0 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.section h2,
.final-cta h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 850;
}

.section p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 19px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  position: relative;
  padding: 24px 24px 24px 82px;
}

.steps span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--violet-900);
  font-weight: 800;
}

.steps p,
.feature-grid p,
.faq-list p {
  margin: 9px 0 0;
  color: var(--ink-500);
  font-size: 16px;
}

.menopause-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: center;
  padding: 58px;
  margin-top: 96px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(63, 54, 88, 0.96), rgba(50, 42, 73, 0.96)),
    var(--violet-900);
  box-shadow: var(--shadow);
}

.menopause-band h2,
.menopause-band p,
.menopause-band .section-kicker {
  color: #ffffff;
}

.menopause-band .section-kicker {
  opacity: 0.78;
}

.menopause-band p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.93);
}

.quote-panel p {
  margin: 0;
  color: var(--accent-500);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 34px;
  font-weight: 850;
  line-height: 1.08;
}

.quote-panel span {
  display: block;
  margin-top: 18px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article {
  padding: 24px;
}

.feature-grid article:nth-child(2),
.feature-grid article:nth-child(4) {
  background: var(--surface-alt);
}

.outcome-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 48px;
  align-items: center;
}

.metric-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
}

.metric-panel div {
  padding: 28px;
  border-bottom: 1px solid var(--border);
}

.metric-panel div:last-child {
  border-bottom: 0;
}

.metric-panel strong {
  display: block;
  color: var(--violet-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.metric-panel span {
  display: block;
  margin-top: 6px;
  color: var(--ink-500);
}

.testimonial-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonial-section figure {
  margin: 0;
  padding: 30px;
}

.testimonial-section blockquote {
  margin: 0;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
}

.testimonial-section figcaption {
  margin-top: 18px;
  color: var(--violet-600);
  font-weight: 750;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.final-cta {
  margin-top: 96px;
  padding: 72px 24px;
  text-align: center;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(251, 234, 226, 0.9), rgba(236, 231, 245, 0.92)),
    var(--accent-100);
  box-shadow: var(--soft-shadow);
}

.final-cta .section-kicker,
.final-cta h2 {
  margin-inline: auto;
}

.final-cta .primary-button {
  margin-top: 30px;
}

.site-footer {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px 0 50px;
  color: var(--ink-500);
  font-size: 15px;
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 20px;
}

.site-footer a {
  font-weight: 650;
}

.story-section,
.journey-section,
.clarity-section,
.reviews-section,
.faq-strip,
.final-cta {
  width: min(calc(100% - 40px), var(--page-max));
  margin-inline: auto;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
  padding-top: 72px;
}

.story-copy h2,
.journey-section h2,
.section-heading h2,
.final-cta h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 850;
}

.story-copy h2 span,
.section-heading h2 span {
  color: var(--accent-500);
}

.story-copy p,
.journey-panel p,
.section-heading p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--ink-700);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--accent-500);
  font-weight: 800;
}

.story-cards {
  display: grid;
  gap: 14px;
}

.story-cards article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.story-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent-500);
  font-weight: 850;
}

.story-cards h3,
.clarity-grid h3 {
  font-size: 20px;
  font-weight: 850;
}

.story-cards p,
.clarity-grid p {
  margin: 8px 0 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.45;
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.62fr) minmax(260px, 0.55fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 72px;
}

.journey-panel,
.journey-phone {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.journey-panel {
  padding: 34px;
}

.journey-panel-soft {
  background:
    linear-gradient(135deg, rgba(251, 234, 226, 0.95), rgba(255, 255, 255, 0.92)),
    var(--accent-100);
}

.journey-panel strong {
  display: block;
  color: var(--violet-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.journey-panel strong + span {
  display: block;
  margin: 10px 0 28px;
  color: var(--ink-500);
  font-size: 16px;
  line-height: 1.45;
}

.journey-phone {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 22px 0;
  background: var(--violet-900);
}

.journey-phone img {
  width: 220px;
  max-width: none;
  border: 7px solid #181522;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
}

.clarity-section {
  padding-top: 72px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: end;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.clarity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.clarity-grid article {
  padding: 16px 16px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.mini-visual {
  height: 180px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--surface-alt);
}

.mini-visual-photo {
  background:
    linear-gradient(135deg, rgba(63, 54, 88, 0.72), rgba(218, 106, 74, 0.28)),
    url("app-screenshot.png") center 16% / 130% auto no-repeat;
}

.mini-visual-ring {
  position: relative;
  background: linear-gradient(135deg, var(--surface), var(--violet-100));
}

.mini-visual-ring::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 18px solid var(--violet-050);
  border-top-color: var(--accent-500);
  border-radius: 50%;
}

.mini-visual-ring::after {
  content: "1 380";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 850;
}

.mini-visual-curve {
  position: relative;
  background: linear-gradient(135deg, var(--violet-100), var(--accent-100));
}

.mini-visual-curve::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 42px;
  left: 28px;
  height: 72px;
  border-bottom: 8px solid var(--accent-500);
  border-radius: 0 0 50% 45%;
  transform: rotate(-5deg);
}

.reviews-section {
  padding-top: 72px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.review-grid figure {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface-alt);
}

.review-grid blockquote {
  margin: 0;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.32;
}

.review-grid figcaption {
  margin-top: 18px;
  color: var(--violet-600);
  font-weight: 800;
}

.faq-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 64px;
}

.faq-strip details {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-strip summary {
  cursor: pointer;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  font-size: 19px;
  font-weight: 850;
}

.faq-strip p {
  margin: 10px 0 0;
  color: var(--ink-500);
  font-size: 15px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: center;
  margin-top: 72px;
  padding: 48px 56px;
  overflow: hidden;
  text-align: left;
  border-radius: 28px;
  background:
    linear-gradient(135deg, var(--accent-500), #f06f47),
    var(--accent-500);
  box-shadow: 0 20px 50px rgba(218, 106, 74, 0.28);
}

.final-cta .section-kicker,
.final-cta h2 {
  color: #ffffff;
}

.final-cta h2 {
  max-width: 660px;
}

.final-cta .primary-button {
  margin-top: 28px;
}

.cta-on-accent {
  color: var(--violet-900);
  background: #ffffff;
  box-shadow: none;
}

.cta-on-accent:hover {
  color: var(--violet-900);
  background: var(--surface-alt);
  box-shadow: none;
}

.cta-phone {
  align-self: end;
  height: 310px;
  overflow: hidden;
}

.cta-phone img {
  width: 210px;
  margin: 0 auto;
  border: 7px solid #1e1b2a;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 18px 36px rgba(50, 42, 73, 0.26);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-shell {
    height: 980px;
  }

  .floating-card-left {
    left: -70px;
  }

  .floating-card-right {
    right: -80px;
  }

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

  .story-section {
    gap: 44px;
  }

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

  .journey-section .journey-panel:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

  .final-cta {
    grid-template-columns: minmax(0, 1fr) 240px;
    padding: 42px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: static;
    width: min(calc(100% - 24px), var(--page-max));
    margin-top: 12px;
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .main-nav {
    display: none;
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 48px;
    padding-inline: 18px;
  }

  .hero-shell {
    width: min(calc(100% - 24px), var(--page-max));
    height: 860px;
    margin-top: 14px;
    padding: 50px 18px 0;
    border-radius: 30px;
    box-shadow:
      inset 0 0 0 9px rgba(255, 255, 255, 0.5),
      var(--soft-shadow);
  }

  h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    display: none;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-phone-wrap {
    width: min(350px, 88vw);
    height: 560px;
    bottom: -160px;
    margin-top: 0;
  }

  .phone-frame {
    height: 560px;
    border-width: 8px;
    border-radius: 42px 42px 0 0;
  }

  .phone-frame::before {
    width: 94px;
    height: 28px;
  }

  .floating-card {
    display: none;
  }

  .proof-strip,
  .two-column,
  .menopause-band,
  .outcome-section,
  .testimonial-section,
  .faq-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 24px;
  }

  .section {
    padding-top: 68px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .section p {
    font-size: 17px;
  }

  .menopause-band {
    margin-top: 70px;
    padding: 34px 24px;
    border-radius: 26px;
  }

  .quote-panel p {
    font-size: 29px;
  }

  .outcome-section {
    gap: 26px;
  }

  .site-footer {
    justify-items: start;
  }

  .story-section,
  .journey-section,
  .clarity-section,
  .reviews-section,
  .faq-strip,
  .final-cta {
    width: min(calc(100% - 24px), var(--page-max));
  }

  .story-section,
  .journey-section,
  .section-heading,
  .review-grid,
  .faq-strip,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .story-section {
    gap: 30px;
    padding-top: 72px;
  }

  .story-copy h2,
  .journey-section h2,
  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(32px, 8.5vw, 44px);
  }

  .journey-section,
  .clarity-section,
  .reviews-section {
    padding-top: 72px;
  }

  .journey-panel,
  .journey-phone {
    min-height: auto;
  }

  .journey-phone {
    min-height: 420px;
  }

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

  .mini-visual {
    height: 160px;
  }

  .faq-strip {
    padding-top: 64px;
  }

  .final-cta {
    padding: 34px 24px 0;
    text-align: center;
  }

  .final-cta h2 {
    margin-inline: auto;
  }

  .cta-phone {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 10px 10px 14px;
    gap: 10px;
  }

  .brand,
  .brand img {
    width: 126px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero-shell {
    height: 820px;
    padding-top: 36px;
  }

  .eyebrow {
    font-size: 14px;
  }

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

  .steps article {
    padding: 22px;
  }

  .steps span {
    position: static;
    margin-bottom: 14px;
  }

  .testimonial-section blockquote {
    font-size: 21px;
  }

  .final-cta {
    margin-top: 72px;
    padding: 52px 20px;
  }

  .site-footer div {
    flex-direction: column;
    gap: 8px;
  }

  .story-cards article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey-panel {
    padding: 26px;
  }

  .journey-phone img {
    width: 210px;
  }

  .review-grid blockquote {
    font-size: 20px;
  }

  .faq-strip details {
    padding: 20px;
  }
}
