:root {
  --ink: #271f1b;
  --mocha: #4d3a31;
  --mocha-deep: #2f2521;
  --mocha-text: #241b18;
  --mint: #c7dfd4;
  --mint-deep: #8bb6a4;
  --sage-text: #79a895;
  --symptom-green: #6fd8bc;
  --rose: #e7a7bd;
  --rose-dark: #b66f86;
  --cta-rose: #e08ca3;
  --cta-rose-hover: #cc6f8c;
  --muted: #625650;
  --line: #e7ddd6;
  --paper: #fffaf2;
  --soft: #fff3ed;
  --section-white: #fffdf9;
  --section-ivory: #fff8f1;
  --section-blush: #fff9f4;
  --platinum: #ede8e2;
  --silver: #aaa19a;
  --blue: #6daec4;
  --graphite: #2f2928;
  --shadow: 0 28px 80px rgba(47, 37, 33, 0.12);
  --radius: 8px;
  --display-font: Optima, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --logo-font: "Iowan Old Style", "New York", Georgia, "Times New Roman", serif;
  --body-font: "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tech-font: "Avenir Next", "Helvetica Neue", Arial, var(--body-font);
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 82% 5%, rgba(200, 226, 212, 0.34), transparent 30rem),
    radial-gradient(circle at 8% 20%, rgba(231, 167, 189, 0.18), transparent 23rem),
    linear-gradient(180deg, #fffdf8 0%, #fff8f1 48%, #fffdf9 100%);
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(231, 221, 214, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(138px, 12vw, 178px);
  height: auto;
}

.brand-mark {
  display: block;
  width: clamp(38px, 4vw, 50px);
  height: auto;
  flex: 0 0 auto;
}

.brand-wordmark-wrap {
  display: grid;
  gap: 5px;
  min-width: clamp(112px, 10vw, 148px);
}

.brand-wordmark {
  color: var(--mocha-deep);
  font-family: var(--logo-font);
  font-size: clamp(2rem, 3vw, 2.72rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0;
  transform: scaleX(0.88);
  transform-origin: left center;
}

.brand-signal {
  position: relative;
  display: block;
  width: 82%;
  height: 2px;
  border-radius: 999px;
  background: rgba(200, 226, 212, 0.95);
}

.brand-signal::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateY(-50%);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: rgba(36, 27, 24, 0.68);
  font-size: 0.92rem;
}

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

.nav-cta,
.button,
.sticky-cta a,
.path-card button {
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 560;
}

.nav-cta,
.button.primary,
.sticky-cta a {
  color: #fffdf8;
  background: var(--cta-rose);
  box-shadow: 0 18px 38px rgba(217, 130, 155, 0.28);
}

.nav-cta:hover,
.button.primary:hover,
.sticky-cta a:hover {
  background: var(--cta-rose-hover);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--mocha-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(77, 58, 49, 0.18);
}

.button.text-button {
  color: var(--rose-dark);
  background: transparent;
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(440px, 1fr);
  column-gap: clamp(34px, 5vw, 82px);
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 64px) clamp(42px, 6vw, 76px);
  position: relative;
  background:
    radial-gradient(circle at 78% 22%, rgba(200, 226, 212, 0.24), transparent 24rem),
    radial-gradient(circle at 96% 84%, rgba(231, 167, 189, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(255, 253, 248, 0.99), rgba(255, 248, 241, 0.9));
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  padding-bottom: 0;
}

.hero::before {
  content: "Private tech for intimate care";
  position: absolute;
  left: clamp(18px, 5vw, 64px);
  bottom: 22px;
  color: rgba(77, 58, 49, 0.16);
  font-family: var(--body-font);
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-dark);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-family: var(--tech-font);
  font-weight: 500;
  letter-spacing: 0.09em;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-family: var(--display-font);
  font-size: clamp(2.18rem, 3.8vw, 4.1rem);
  line-height: 1.08;
  font-weight: 400;
  color: var(--mocha-text);
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-family: var(--display-font);
  font-size: clamp(1.95rem, 3.4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-family: var(--body-font);
  font-size: clamp(1.05rem, 1.18vw, 1.24rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.24;
}

.title-line {
  display: block;
}

.hero-subhead {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--sage-text);
  font-size: clamp(1.18rem, 1.48vw, 1.42rem);
  line-height: 1.46;
  font-weight: 620;
}

.hero-subhead,
.symptom-lede,
.programs-heading p:not(.eyebrow),
.freedom-lede,
.routine-steps-lede,
.recognition-subhead,
.closing-cta-lede,
.intima-addon-lede {
  font-family: var(--body-font);
  letter-spacing: 0;
}

.hero-body {
  max-width: 650px;
  color: #5f534d;
  font-size: clamp(1.02rem, 1.16vw, 1.16rem);
  line-height: 1.62;
  font-weight: 450;
}

.hero-body strong {
  display: block;
  margin-top: 8px;
  color: var(--mocha-text);
  font-weight: 560;
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-benefits {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  position: relative;
  padding-left: 22px;
  color: #2f231f;
  font-size: clamp(0.98rem, 1.08vw, 1.05rem);
  line-height: 1.5;
  font-weight: 500;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-deep), var(--rose));
}

.hero-research-note {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(53, 40, 36, 0.76);
  font-size: 0.88rem;
  line-height: 1.52;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  color: rgba(77, 58, 49, 0.7);
  font-family: var(--body-font);
  font-size: 0.93rem;
  font-weight: 400;
  letter-spacing: 0;
}

.trust-row li + li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: rgba(200, 226, 212, 0.96);
}

.hero-visual {
  position: relative;
  z-index: 1;
  right: auto;
  bottom: auto;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  height: clamp(420px, 49vw, 610px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 221, 214, 0.72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 60% 38%, rgba(255, 255, 255, 0.8), transparent 18rem),
    #fff8f1;
  box-shadow: 0 30px 84px rgba(47, 37, 33, 0.1);
  pointer-events: none;
}

.glow-panel {
  position: relative;
  min-height: 650px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 238, 0.88)),
    radial-gradient(circle at 22% 75%, rgba(200, 226, 212, 0.42), transparent 20rem),
    radial-gradient(circle at 78% 18%, rgba(231, 167, 189, 0.24), transparent 15rem);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 84px rgba(47, 37, 33, 0.11);
}

.glow-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(77, 58, 49, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.glow-panel::after {
  content: "AT-HOME PELVIC FLOOR STIMULATION / 80ML CONDUCTIVE GEL";
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  max-width: 360px;
  color: rgba(77, 58, 49, 0.3);
  font-family: var(--tech-font);
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-align: right;
}

.device-shot {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 0;
  mix-blend-mode: normal;
  filter: saturate(0.9) contrast(1.03) brightness(1.03);
  box-shadow: none;
}

.packaging-card {
  position: absolute;
  left: 7%;
  top: 10%;
  z-index: 2;
  width: 220px;
  min-height: 310px;
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #f1edf0);
  border: 1px solid rgba(158, 164, 173, 0.34);
  box-shadow: 0 18px 45px rgba(24, 22, 27, 0.1);
}

.package-logo {
  font-weight: 560;
  margin-bottom: 52px;
}

.package-title {
  font-size: 1.72rem;
  line-height: 0.96;
  font-weight: 500;
}

.package-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.serum-stack {
  position: absolute;
  right: 8%;
  top: 10%;
  display: flex;
  align-items: end;
  gap: 12px;
}

.mini-bottle,
.mini-tube {
  writing-mode: vertical-rl;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 26px rgba(24, 22, 27, 0.1);
}

.mini-bottle {
  width: 62px;
  height: 170px;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.72), rgba(232,168,191,0.24));
}

.mini-tube {
  width: 44px;
  height: 220px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(95,184,215,0.16));
}

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--graphite);
}

.strip p {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
}

.pain-points,
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 72px clamp(18px, 5vw, 64px);
}

.pain-points article,
.path-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.pain-points article {
  min-height: 224px;
  padding: 24px;
}

.pain-points p,
.product-copy p,
.quiz-section p,
.email-section p,
.safety p {
  color: var(--muted);
  line-height: 1.62;
}

.mechanism-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1.26fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 6.2vw, 86px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 72% 14%, rgba(199, 223, 212, 0.12), transparent 25rem),
    linear-gradient(180deg, #fffaf5 0%, #fff7f1 100%);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.mechanism-visual {
  align-self: center;
  justify-self: end;
  min-width: 0;
  width: min(100%, 520px);
}

.mechanism-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(231, 221, 214, 0.72);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 28px 78px rgba(47, 37, 33, 0.11);
}

.mechanism-content {
  min-width: 0;
  max-width: 820px;
}

.mechanism-heading {
  max-width: 820px;
}

.mechanism-heading h2 {
  max-width: 820px;
}

.mechanism-subhead {
  margin: -2px 0 18px;
  color: var(--sage-text);
  font-size: clamp(1.16rem, 1.42vw, 1.36rem);
  line-height: 1.46;
  font-weight: 560;
}

.mechanism-heading > p:not(.eyebrow, .mechanism-subhead) {
  max-width: 590px;
  color: #352824;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.52;
  font-weight: 500;
}

.mechanism-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-left: 0;
  border-top: 0;
}

.mechanism-grid::before {
  display: none;
}

.mechanism-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
  min-height: auto;
  padding: 16px;
  border: 1px solid rgba(231, 221, 214, 0.6);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.5);
  box-shadow: none;
}

.mechanism-grid article:nth-child(2),
.mechanism-grid article:nth-child(3) {
  background: rgba(255, 250, 242, 0.44);
}

.mechanism-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border: 1px solid rgba(182, 111, 134, 0.28);
  border-radius: 999px;
  color: var(--rose-dark);
  background: rgba(255, 253, 249, 0.9);
  font-size: 0.68rem;
  font-weight: 720;
}

.mechanism-grid h3 {
  margin: 0 0 6px;
  font-family: var(--body-font);
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  font-weight: 650;
  color: var(--mocha-text);
}

.mechanism-grid p {
  margin: 0;
  color: #5a4e48;
  font-size: clamp(0.88rem, 0.93vw, 0.95rem);
  line-height: 1.46;
}

.mechanism-cta {
  margin-top: 26px;
}

.symptom-section {
  padding: clamp(72px, 8vw, 108px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 8% 18%, rgba(199, 223, 212, 0.16), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(231, 167, 189, 0.06), transparent 22rem),
    var(--section-blush);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.symptom-layout {
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  max-width: 1380px;
}

.symptom-scan-layout {
  grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr);
}

.symptom-copy {
  max-width: 680px;
}

.symptom-scan-copy {
  max-width: 780px;
}

.symptom-icon-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(199, 223, 212, 0.14), transparent 23rem),
    radial-gradient(circle at 88% 16%, rgba(231, 167, 189, 0.08), transparent 22rem),
    linear-gradient(180deg, #fffdf9 0%, #fff8f2 100%);
}

.symptom-icon-layout {
  max-width: 1380px;
}

.symptom-icon-copy {
  max-width: 920px;
}

.symptom-icon-copy h2 {
  max-width: none;
  font-family: var(--body-font);
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
  font-weight: 420;
  line-height: 1.08;
  color: #182733;
}

.symptom-lede {
  max-width: 640px;
  color: #453833;
  font-size: clamp(1.02rem, 1.16vw, 1.12rem);
  line-height: 1.68;
}

.symptom-image-wrap {
  position: relative;
  min-width: 0;
}

.symptom-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 24px;
  box-shadow: 0 28px 78px rgba(47, 37, 33, 0.12);
}

.symptom-floating-card {
  position: absolute;
  left: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, 0.62);
  border-radius: 16px;
  color: #fffaf2;
  background: rgba(47, 37, 33, 0.64);
  box-shadow: 0 18px 54px rgba(47, 37, 33, 0.18);
  backdrop-filter: blur(12px);
}

.symptom-floating-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.symptom-floating-card strong {
  display: block;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.34;
  font-weight: 620;
}

.pelvic-anatomy {
  margin: 0;
  min-width: 0;
}

.anatomy-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 24px 72px rgba(47, 37, 33, 0.08);
}

.anatomy-panel {
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(231, 221, 214, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.anatomy-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.anatomy-panel svg {
  width: 100%;
  height: auto;
}

.anatomy-panel p {
  margin: 4px 0 0;
  color: #5f534d;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pelvis-line,
.tissue-line,
.nerve-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pelvis-line {
  stroke: rgba(77, 58, 49, 0.42);
  stroke-width: 4;
}

.tissue-line {
  stroke-width: 6;
}

.tissue-line.weak {
  stroke: rgba(182, 111, 134, 0.58);
}

.tissue-line.lifted {
  stroke: rgba(95, 159, 136, 0.72);
}

.nerve-line {
  stroke-width: 3;
  stroke-dasharray: 6 8;
}

.muted-path {
  stroke: rgba(98, 86, 80, 0.28);
}

.active-path {
  stroke: rgba(111, 216, 188, 0.86);
}

.signal-dot.low {
  fill: rgba(182, 111, 134, 0.56);
}

.signal-dot.high {
  fill: rgba(111, 216, 188, 0.9);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1380px;
  margin-top: clamp(28px, 4vw, 46px);
}

.symptom-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(231, 221, 214, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
  text-align: left;
}

.symptom-flow {
  display: grid;
  margin-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid rgba(77, 58, 49, 0.14);
}

.symptom-flow article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(77, 58, 49, 0.12);
}

.symptom-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(95, 159, 136, 0.34);
  border-radius: 50%;
  color: #5f9f88;
  background: rgba(255, 253, 249, 0.72);
  font-size: 0.72rem;
  font-weight: 650;
}

.symptom-flow h3 {
  margin: 0 0 6px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: clamp(1.08rem, 1.24vw, 1.28rem);
  font-weight: 680;
  line-height: 1.28;
}

.symptom-flow p {
  margin: 0;
  color: #625650;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.5;
}

.symptom-icon-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(34px, 4.6vw, 60px);
}

.symptom-sign {
  min-width: 0;
  padding: 0;
}

.symptom-badge {
  display: grid;
  place-items: center;
  width: clamp(64px, 5.8vw, 84px);
  height: clamp(64px, 5.8vw, 84px);
  margin-bottom: clamp(16px, 1.8vw, 22px);
  color: var(--badge-color, #5f9f88);
  background: transparent;
}

.symptom-badge svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.symptom-badge path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.symptom-sign h3 {
  margin: 0 0 10px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  font-weight: 700;
  line-height: 1.22;
}

.symptom-sign p {
  margin: 0;
  color: #584b45;
  font-size: clamp(0.94rem, 0.98vw, 1.02rem);
  line-height: 1.5;
}

.sign-leaks {
  --badge-color: #d95882;
}

.sign-loose {
  --badge-color: #4b9f87;
}

.sign-urgency {
  --badge-color: #6474d6;
}

.sign-aging {
  --badge-color: #20a78d;
}

.sign-intimacy {
  --badge-color: #bd557a;
}

.symptom-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  color: var(--symptom-green);
}

.symptom-icon-standard {
  width: 86px;
  height: 86px;
  margin-bottom: 14px;
}

.symptom-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.symptom-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.symptom-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  vector-effect: non-scaling-stroke;
}

.symptom-card h3 {
  max-width: 260px;
  margin: 12px 0 10px;
  font-family: var(--body-font);
  color: #352824;
  font-size: 1.08rem;
  font-weight: 620;
  line-height: 1.28;
}

.symptom-card p {
  margin: 0;
  color: #6a5d57;
  line-height: 1.52;
}

.symptom-card > span {
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.symptom-closing {
  max-width: 880px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(77, 58, 49, 0.1);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.72);
  color: #352824;
  font-size: clamp(1.02rem, 1.16vw, 1.16rem);
  line-height: 1.58;
  font-weight: 520;
}

.symptom-closing strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mocha-text);
  font-size: clamp(1.08rem, 1.24vw, 1.28rem);
  line-height: 1.3;
}

.symptom-closing p {
  margin: 0;
}

.symptom-closing p + p {
  margin-top: 10px;
}

.symptom-icon-closing {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 34px);
  align-items: center;
  max-width: none;
  margin-top: clamp(34px, 4.4vw, 58px);
  padding: clamp(18px, 2.2vw, 26px) 0 0;
  border: 0;
  border-top: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 0;
  background: transparent;
}

.symptom-icon-closing strong {
  margin: 0;
}

.billboard-section {
  padding: clamp(24px, 3.2vw, 38px) clamp(18px, 5vw, 64px);
  color: #fffaf2;
  background:
    radial-gradient(circle at 16% 16%, rgba(199, 223, 212, 0.18), transparent 28rem),
    radial-gradient(circle at 92% 82%, rgba(231, 167, 189, 0.18), transparent 24rem),
    linear-gradient(135deg, #2f2521 0%, #44332c 54%, #2a211e 100%);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.billboard-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.billboard-section .eyebrow {
  color: rgba(199, 223, 212, 0.9);
}

.billboard-section h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: #fffaf2;
  font-size: clamp(1.78rem, 3.6vw, 3.7rem);
  line-height: 1.04;
}

.billboard-section h2 span {
  display: block;
}

.billboard-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 8px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(0.88rem, 0.96vw, 0.96rem);
  line-height: 1.42;
}

.billboard-research-label {
  max-width: none !important;
  margin: 10px auto 0 !important;
  color: rgba(199, 223, 212, 0.82) !important;
  font-size: clamp(0.74rem, 0.82vw, 0.82rem) !important;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.billboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 250, 242, 0.16);
  background: rgba(255, 250, 242, 0.16);
}

.billboard-metrics article {
  min-height: 86px;
  padding: clamp(12px, 1.5vw, 16px);
  background: rgba(255, 250, 242, 0.06);
}

.billboard-metrics strong {
  display: block;
  color: var(--mint);
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: 0;
}

.billboard-metrics span {
  display: block;
  max-width: 260px;
  margin-top: 6px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(0.76rem, 0.86vw, 0.88rem);
  line-height: 1.32;
}

.billboard-source {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255, 250, 242, 0.48);
  font-size: clamp(0.64rem, 0.72vw, 0.74rem);
  line-height: 1.34;
  text-align: center;
}

.billboard-source a {
  color: rgba(199, 223, 212, 0.86);
}

.mini-offer-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(14px, 2.6vw, 24px) clamp(18px, 5vw, 64px);
  color: var(--mocha-text);
  background:
    radial-gradient(circle at 84% 18%, rgba(231, 167, 189, 0.12), transparent 18rem),
    rgba(255, 253, 249, 0.94);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
  border-bottom: 1px solid rgba(231, 221, 214, 0.72);
  text-align: center;
}

.mini-offer-product {
  display: grid;
  place-items: center;
  width: clamp(138px, 13vw, 190px);
  height: clamp(92px, 8vw, 118px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mini-offer-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 14px 18px rgba(47, 37, 33, 0.13))
    drop-shadow(0 3px 6px rgba(47, 37, 33, 0.08));
}

.mini-offer-copy {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
}

.mini-offer-section p,
.mini-offer-section strong {
  margin: 0;
}

.mini-offer-section p {
  color: #5f534d;
}

.mini-offer-section strong {
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
}

.programs-section {
  padding: clamp(64px, 8vw, 106px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 223, 212, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(231, 167, 189, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.programs-heading {
  max-width: 1040px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.programs-heading h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: var(--mocha-text);
}

.programs-heading p:not(.eyebrow) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #5f534d;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.58;
}

.programs-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1380px;
  margin: 0 auto;
}

.programs-device-card {
  display: grid;
  align-content: end;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 221, 214, 0.86);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 24px 70px rgba(47, 37, 33, 0.08);
}

.programs-device-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.programs-device-copy {
  padding: clamp(22px, 3vw, 34px);
}

.programs-device-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programs-device-copy strong {
  display: block;
  color: var(--mocha-text);
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  line-height: 1.12;
}

.programs-device-copy p {
  margin: 12px 0 0;
  color: #5f534d;
  line-height: 1.56;
}

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

.programs-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(231, 221, 214, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.programs-list article:last-child {
  grid-column: 1 / -1;
}

.programs-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(95, 159, 136, 0.34);
  border-radius: 50%;
  color: #5f9f88;
  background: rgba(199, 223, 212, 0.28);
  font-size: 0.78rem;
  font-weight: 650;
}

.programs-list h3 {
  margin: 0 0 8px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: clamp(1.06rem, 1.22vw, 1.28rem);
  font-weight: 680;
  line-height: 1.22;
}

.programs-list p {
  margin: 0;
  color: #625650;
  line-height: 1.5;
}

.programs-progress {
  max-width: 1380px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  padding: clamp(10px, 1.8vw, 18px) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--body-font);
}

.programs-progress p {
  margin: 0 0 clamp(24px, 3vw, 32px);
  color: var(--mocha-text);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.programs-progress ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.programs-progress ol::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 132, 178, 0.64), rgba(243, 182, 66, 0.58), rgba(32, 191, 160, 0.78));
}

.programs-progress li {
  position: relative;
  padding-top: 52px;
}

.programs-progress li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 28px;
  height: 28px;
  border: 5px solid rgba(255, 253, 249, 0.98);
  border-radius: 50%;
  background: #f06fa4;
  box-shadow: 0 0 0 1px rgba(255, 151, 190, 0.52), 0 10px 24px rgba(47, 37, 33, 0.07);
}

.programs-progress li:nth-child(2)::before {
  background: #f3b642;
  box-shadow: 0 0 0 1px rgba(255, 206, 104, 0.58), 0 10px 24px rgba(47, 37, 33, 0.07);
}

.programs-progress li:nth-child(3)::before {
  background: #56d1ad;
  box-shadow: 0 0 0 1px rgba(136, 236, 208, 0.58), 0 10px 24px rgba(47, 37, 33, 0.07);
}

.programs-progress li:nth-child(4)::before {
  background: #20bfa0;
  box-shadow: 0 0 0 1px rgba(95, 226, 198, 0.62), 0 10px 24px rgba(47, 37, 33, 0.07);
}

.programs-progress strong,
.programs-progress span,
.programs-progress em {
  display: block;
}

.programs-progress strong {
  color: rgba(198, 86, 126, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.programs-progress span {
  margin-top: 8px;
  color: #2d2421;
  font-family: var(--body-font);
  font-size: clamp(1.08rem, 1.22vw, 1.24rem);
  font-weight: 650;
  line-height: 1.22;
}

.programs-progress em {
  max-width: 260px;
  margin-top: 8px;
  color: #655b55;
  font-family: var(--body-font);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  font-style: normal;
  line-height: 1.45;
}

.testimonial-section {
  padding: clamp(64px, 8vw, 106px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(231, 167, 189, 0.08), transparent 24rem),
    var(--section-white);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.testimonial-heading {
  max-width: 860px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.testimonial-heading h2 {
  max-width: 820px;
  color: #182733;
  font-family: var(--body-font);
  font-size: clamp(1.48rem, 2.34vw, 2.55rem);
  font-weight: 420;
  line-height: 1.18;
  letter-spacing: 0;
}

#testimonial-title {
  scroll-margin-top: 128px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  max-width: 1180px;
}

.testimonial-video {
  display: grid;
  justify-items: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 9 / 16;
  padding: 7px;
  border: 1px solid rgba(255, 253, 249, 0.74);
  border-radius: 31px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.9), rgba(214, 203, 196, 0.82)),
    #f4eee8;
  box-shadow:
    inset 0 0 0 1px rgba(77, 58, 49, 0.1),
    0 24px 58px rgba(47, 37, 33, 0.16);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: rgba(47, 37, 33, 0.34);
  transform: translateX(-50%);
}

.video-placeholder {
  display: grid;
  place-content: center;
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: 25px;
  color: #fffaf2;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(47, 37, 33, 0.18), rgba(47, 37, 33, 0.58)),
    radial-gradient(circle at 50% 20%, rgba(231, 167, 189, 0.28), transparent 12rem),
    linear-gradient(145deg, #8bb6a4, #4d3a31);
}

.video-cover {
  display: block;
  padding: 0;
  overflow: hidden;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 14px 34px rgba(47, 37, 33, 0.22);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--mocha-deep);
}

.video-placeholder span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-placeholder strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 520;
  line-height: 1.05;
}

.video-placeholder small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.7);
}

.testimonial-card {
  border: 1px solid rgba(231, 221, 214, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.7);
}

.featured-testimonial {
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.84), rgba(255, 248, 241, 0.78));
  box-shadow: 0 24px 70px rgba(47, 37, 33, 0.08);
}

.testimonial-story {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.testimonial-story p {
  margin: 0;
  color: #3a2c27;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.68;
}

.featured-testimonial footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: clamp(26px, 4vw, 42px);
  padding-top: 22px;
  border-top: 1px solid rgba(77, 58, 49, 0.14);
}

.featured-testimonial strong {
  color: var(--mocha-text);
  font-weight: 620;
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.testimonial-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(95, 159, 136, 0.28);
  border-radius: 999px;
  color: #5f9f88;
  background: rgba(199, 223, 212, 0.28);
  font-size: 0.86rem;
  font-weight: 560;
}

.testimonial-rail {
  display: grid;
  gap: 12px;
}

.testimonial-rail article {
  display: grid;
  align-content: end;
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(231, 221, 214, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.testimonial-rail span {
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-rail p {
  margin: 8px 0 0;
  color: var(--mocha-text);
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.3;
}

.testimonial-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(98, 86, 80, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.freedom-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 106px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 86% 14%, rgba(231, 167, 189, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff8f1, #fffdf9);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.freedom-visual {
  min-width: 0;
}

.freedom-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 28px 78px rgba(47, 37, 33, 0.12);
}

.freedom-content {
  max-width: 760px;
}

.freedom-lede {
  max-width: 620px;
  color: #5f534d;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.62;
}

.freedom-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--mocha-text);
  font-size: clamp(1.02rem, 1.16vw, 1.16rem);
  line-height: 1.42;
}

.freedom-list li {
  position: relative;
  padding-left: 28px;
}

.freedom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5f9f88;
  font-weight: 700;
}

.freedom-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(77, 58, 49, 0.12);
  background: rgba(77, 58, 49, 0.12);
}

.freedom-stats article {
  min-height: 152px;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(255, 253, 249, 0.82);
}

.freedom-stats strong {
  display: block;
  color: var(--rose-dark);
  font-family: var(--display-font);
  font-size: clamp(2.6rem, 4.6vw, 5rem);
  font-weight: 520;
  line-height: 0.95;
}

.freedom-stats span {
  display: block;
  margin-top: 12px;
  color: #4d3a31;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.38;
}

.freedom-closing {
  margin: 28px 0 0;
  color: var(--mocha-text);
  font-size: clamp(1.22rem, 1.9vw, 2.12rem);
  font-weight: 560;
  line-height: 1.24;
}

.routine-steps-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  padding: clamp(64px, 8vw, 106px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 14% 20%, rgba(199, 223, 212, 0.16), transparent 24rem),
    var(--section-white);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.routine-steps-content {
  max-width: 760px;
}

.routine-steps-lede {
  max-width: 620px;
  color: #5f534d;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.62;
}

.routine-steps-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.routine-steps-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.routine-steps-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(95, 159, 136, 0.34);
  border-radius: 50%;
  color: #5f9f88;
  background: rgba(199, 223, 212, 0.28);
  font-size: 0.78rem;
  font-weight: 620;
}

.routine-steps-list h3 {
  margin: 0 0 4px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: 1.08rem;
  font-weight: 620;
}

.routine-steps-list p {
  margin: 0;
  color: #625650;
  line-height: 1.52;
}

.routine-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(77, 58, 49, 0.12);
  background: rgba(77, 58, 49, 0.12);
}

.routine-flow li {
  min-height: 112px;
  padding: 18px 14px;
  background: rgba(255, 253, 249, 0.82);
}

.routine-flow span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.routine-flow strong {
  display: block;
  color: var(--mocha-text);
  font-size: clamp(0.9rem, 0.98vw, 1rem);
  font-weight: 620;
  line-height: 1.24;
}

.routine-step-detail {
  max-width: 660px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(77, 58, 49, 0.14);
}

.routine-step-detail h3 {
  margin: 0 0 10px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: clamp(1.08rem, 1.3vw, 1.34rem);
  font-weight: 620;
  line-height: 1.32;
}

.routine-step-detail p {
  margin: 0;
  color: #625650;
  line-height: 1.62;
}

.routine-steps-note {
  margin: 24px 0 0;
  color: rgba(98, 86, 80, 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.routine-steps-visual {
  display: block;
}

.routine-steps-visual img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 24px 68px rgba(47, 37, 33, 0.12);
}

.offer-section {
  padding: 0 clamp(18px, 5vw, 64px);
  background: #fff;
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  max-width: 1480px;
  min-height: clamp(560px, 72vh, 760px);
  margin: 0 auto;
  background: #fff;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(56px, 7vw, 96px) 0;
}

.offer-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #4d3a31;
  font-size: clamp(1.02rem, 1.16vw, 1.16rem);
  line-height: 1.62;
}

.offer-bullets {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.offer-bullets li {
  position: relative;
  padding-left: 26px;
  color: #352824;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
}

.offer-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--mint-deep));
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.offer-actions {
  display: block;
  margin-top: 26px;
}

.offer-actions .button {
  width: min(100%, 460px);
  min-height: 58px;
  font-size: 1.02rem;
}

.offer-trust {
  margin: 18px 0 0;
  color: rgba(98, 86, 80, 0.78);
  font-size: 0.92rem;
  line-height: 1.48;
}

.offer-product {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-width: 0;
  padding: clamp(28px, 5vw, 72px);
  border-left: 0;
  background: #fff;
}

.offer-product img {
  width: min(100%, 660px);
  height: auto;
  max-height: clamp(460px, 64vh, 680px);
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: scale(1.12);
  transform-origin: center;
}

.recognition-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(440px, 1.24fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 18%, rgba(199, 223, 212, 0.16), transparent 24rem),
    var(--section-white);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.recognition-visual {
  min-width: 0;
  justify-self: center;
  width: min(100%, 560px);
}

.recognition-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 18px;
  box-shadow: 0 24px 66px rgba(47, 37, 33, 0.1);
}

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

.recognition-subhead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #5f534d;
  font-size: clamp(1.04rem, 1.18vw, 1.18rem);
  line-height: 1.64;
}

.recognition-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  list-style: none;
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.78), rgba(255, 253, 249, 0.92));
}

.recognition-list li {
  position: relative;
  padding-left: 30px;
  color: #352824;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.42;
}

.recognition-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #5f9f88;
  font-weight: 700;
}

.recognition-close {
  max-width: 680px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: var(--mocha-text);
  font-size: clamp(1.08rem, 1.34vw, 1.42rem);
  font-weight: 560;
  line-height: 1.44;
}

.closing-cta-section {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: clamp(600px, 82vh, 780px);
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 64px);
  color: #fffdf9;
  background: #2f2521;
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.closing-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
  text-align: left;
}

.closing-cta-copy .eyebrow {
  color: rgba(255, 250, 242, 0.72);
}

.closing-cta-copy h2 {
  color: #fffdf9;
  max-width: 500px;
  font-size: clamp(2.45rem, 4.6vw, 5.25rem);
  line-height: 0.96;
}

.closing-cta-copy .compare {
  color: rgba(255, 250, 242, 0.7);
}

.closing-cta-copy .price {
  color: #fffdf9;
}

.closing-cta-copy .save {
  color: #fffdf9;
  background: rgba(224, 140, 163, 0.76);
  border: 1px solid rgba(255, 250, 242, 0.2);
}

.closing-cta-line {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.04rem, 1.18vw, 1.18rem);
  line-height: 1.38;
  font-weight: 560;
}

.closing-cta-lede {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.58;
}

.closing-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin: 26px 0 24px;
}

.closing-cta-copy .button {
  min-width: 220px;
  min-height: 58px;
  font-size: 1.02rem;
}

.closing-cta-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 8% center;
  border-radius: 0;
  box-shadow: none;
}

.closing-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(47, 37, 33, 0.7), rgba(47, 37, 33, 0.4) 32%, rgba(47, 37, 33, 0.06) 62%, rgba(47, 37, 33, 0.18)),
    linear-gradient(180deg, rgba(47, 37, 33, 0.06), rgba(47, 37, 33, 0.3));
}

.intima-addon-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 14%, rgba(199, 223, 212, 0.24), transparent 28rem),
    linear-gradient(135deg, #fffdf8 0%, #f6eee6 100%);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.intima-addon-copy {
  max-width: 600px;
}

.intima-addon-copy h2 {
  max-width: 580px;
}

.intima-addon-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--mocha-text);
  font-size: clamp(1.08rem, 1.32vw, 1.36rem);
  line-height: 1.58;
}

.intima-addon-product {
  max-width: 520px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: #4f4039;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  font-weight: 650;
  line-height: 1.38;
}

.intima-addon-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(26px, 3.5vw, 42px);
}

.intima-addon-actions span {
  color: var(--rose-dark);
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intima-addon-actions .button {
  min-width: 190px;
}

.intima-addon-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #efe4dc;
  border: 1px solid rgba(231, 221, 214, 0.8);
  box-shadow: 0 30px 90px rgba(47, 37, 33, 0.12);
}

.intima-addon-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-faq-section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 223, 212, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 82%, rgba(231, 167, 189, 0.08), transparent 24rem),
    var(--section-white);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.landing-faq-heading {
  max-width: 860px;
  margin-bottom: clamp(30px, 4.6vw, 58px);
}

.landing-faq-heading h2 {
  max-width: 780px;
}

.landing-faq-heading p:not(.eyebrow) {
  max-width: 690px;
  color: #5f534d;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.58;
}

.landing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1380px;
  border: 1px solid rgba(77, 58, 49, 0.1);
  background: rgba(77, 58, 49, 0.1);
}

.landing-faq-grid article {
  min-height: 250px;
  padding: clamp(22px, 2.8vw, 34px);
  background: rgba(255, 253, 249, 0.86);
}

.landing-faq-grid h3 {
  margin: 0 0 12px;
  color: #182733;
  font-size: clamp(1.06rem, 1.16vw, 1.18rem);
  font-weight: 680;
}

.landing-faq-grid p {
  margin: 0;
  color: #5f534d;
  font-size: clamp(0.96rem, 1vw, 1.02rem);
  line-height: 1.58;
}

.landing-faq-grid a {
  display: inline-block;
  margin-top: 14px;
  color: var(--rose-dark);
  font-weight: 650;
  text-decoration: none;
}

.landing-faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.landing-faq-links a {
  padding: 10px 14px;
  border: 1px solid rgba(182, 111, 134, 0.22);
  border-radius: 999px;
  color: var(--mocha-text);
  background: rgba(255, 253, 249, 0.76);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 72px clamp(18px, 5vw, 64px);
  background: var(--section-white);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.product-feature.serum {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
  background: var(--section-white);
}

.product-copy {
  max-width: 650px;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.feature-list li {
  padding-left: 28px;
  position: relative;
  color: var(--graphite);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--blue));
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.compare {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.price {
  font-size: 2.4rem;
  font-weight: 520;
}

.save {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: var(--soft);
  font-weight: 560;
}

.product-visual {
  position: relative;
}

.product-visual > img,
.gallery figure {
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
}

.product-visual > img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
}

.spec-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(270px, calc(100% - 48px));
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(24, 22, 27, 0.88);
  backdrop-filter: blur(12px);
}

.spec-card span,
.spec-card small {
  display: block;
  color: rgba(255,255,255,0.72);
}

.system-section {
  padding: 78px clamp(18px, 5vw, 64px);
  background: var(--section-blush);
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.section-heading {
  max-width: 760px;
}

.path-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 0 0;
}

.path-card {
  min-height: 280px;
  padding: 28px;
}

.path-card.dark {
  color: #fff;
  background: var(--graphite);
}

.path-card.dark p {
  color: rgba(255,255,255,0.72);
}

.path-number {
  color: var(--rose-dark);
  font-weight: 560;
}

.path-card a,
.path-card button {
  color: var(--rose-dark);
  background: transparent;
  padding: 0;
  min-height: auto;
  font-weight: 560;
}

.path-card.dark button {
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.gallery figcaption {
  padding: 14px 16px;
  color: var(--muted);
  background: #fff;
  font-weight: 400;
}

.quiz-section,
.email-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(231, 221, 214, 0.72);
}

.quiz-section {
  background: var(--section-white);
}

.email-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(199, 223, 212, 0.18), transparent 22rem),
    var(--section-blush);
}

.quiz-section > div,
.email-section > div {
  max-width: 700px;
}

.email-form {
  min-width: min(100%, 420px);
}

.email-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 500;
}

.email-form > div {
  display: flex;
  gap: 8px;
}

.email-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
}

.form-message {
  margin-top: 10px;
  min-height: 20px;
  font-size: 0.9rem;
}

.safety {
  margin: 0;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(231, 221, 214, 0.72);
  background: var(--section-white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 64px) 92px;
  color: #fff;
  background: var(--graphite);
}

.site-footer p {
  color: rgba(255,255,255,0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.legal-page h2 {
  margin-top: 42px;
  font-family: var(--body-font);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-page h3 {
  margin: 24px 0 8px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: 1.14rem;
}

.legal-page ul,
.legal-page ol {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.legal-card {
  margin: 28px 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(231, 221, 214, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
}

.science-page {
  color: var(--mocha-text);
  background:
    radial-gradient(circle at 10% 4%, rgba(199, 223, 212, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(231, 167, 189, 0.08), transparent 25rem),
    linear-gradient(180deg, #fffdf9 0%, #fff8f2 100%);
}

.pelvilift-science-page {
  background:
    radial-gradient(circle at 8% 3%, rgba(199, 223, 212, 0.2), transparent 28rem),
    radial-gradient(circle at 96% 10%, rgba(231, 167, 189, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffdf9 0%, #fbf7f1 56%, #fffdf9 100%);
}

.science-page a {
  color: #3f7f6e;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.science-hero,
.science-section,
.science-panel,
.science-principles,
.science-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(18px, 5vw, 64px);
}

.science-hero {
  padding-top: clamp(70px, 9vw, 118px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.science-report-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
}

.science-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--mocha-text);
  font-size: clamp(3.6rem, 7.5vw, 7.4rem);
}

.pelvilift-science-page .science-hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.98;
}

.science-hero p:not(.eyebrow) {
  max-width: 840px;
  color: #4d403a;
  font-size: clamp(1.16rem, 1.6vw, 1.52rem);
  line-height: 1.58;
}

.report-brief {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(77, 58, 49, 0.14);
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 54px rgba(47, 37, 33, 0.06);
}

.report-brief > span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-brief dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.report-brief div {
  padding-top: 14px;
  border-top: 1px solid rgba(77, 58, 49, 0.12);
}

.report-brief dt {
  color: #776a63;
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-brief dd {
  margin: 6px 0 0;
  color: var(--mocha-text);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  font-weight: 650;
  line-height: 1.32;
}

.science-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-bottom: clamp(54px, 7vw, 88px);
}

.science-principles article {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 249, 0.72);
  border-top: 1px solid rgba(77, 58, 49, 0.12);
}

.report-summary {
  padding-bottom: clamp(26px, 4vw, 44px);
}

.report-summary article {
  border-top: 2px solid rgba(95, 159, 136, 0.32);
  background: rgba(255, 253, 249, 0.84);
}

.science-principles span {
  display: block;
  margin-bottom: 26px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
}

.report-toc {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 64px) clamp(34px, 5vw, 56px);
}

.report-toc a {
  flex: 1;
  min-width: 0;
  padding: 13px 14px;
  color: #584c46;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(77, 58, 49, 0.12);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 680;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.report-toc a:hover {
  color: var(--mocha-text);
  background: rgba(199, 223, 212, 0.34);
}

.science-principles h2,
.science-panel h2,
.science-section h2,
.science-disclaimer h2 {
  color: var(--mocha-text);
}

.science-principles h2 {
  margin: 0 0 12px;
  font-family: var(--body-font);
  font-size: clamp(1.22rem, 1.6vw, 1.58rem);
  line-height: 1.22;
}

.science-principles p {
  margin: 0;
  color: #5c504a;
  line-height: 1.56;
}

.science-panel,
.science-section,
.science-disclaimer {
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: clamp(52px, 7vw, 84px);
  border-top: 1px solid rgba(77, 58, 49, 0.12);
}

.pelvilift-science-page .science-panel,
.pelvilift-science-page .science-section,
.pelvilift-science-page .science-disclaimer {
  background:
    linear-gradient(90deg, rgba(95, 159, 136, 0.16), rgba(95, 159, 136, 0.16)) left top / 4px 100% no-repeat;
}

.science-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.science-panel-copy p:not(.eyebrow),
.science-section-heading p {
  color: #4f443e;
  font-size: clamp(1.02rem, 1.16vw, 1.14rem);
  line-height: 1.68;
}

.science-panel h2,
.science-section h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.science-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(77, 58, 49, 0.12);
  background: rgba(77, 58, 49, 0.12);
}

.science-facts div {
  padding: 20px;
  background: rgba(255, 253, 249, 0.82);
}

.science-facts dt {
  color: #7a6b63;
  font-size: 0.76rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-facts dd {
  margin: 8px 0 0;
  color: var(--mocha-text);
  font-size: clamp(1.18rem, 1.5vw, 1.42rem);
  font-weight: 680;
}

.science-source-line {
  grid-column: 1 / -1;
  margin: 0;
  color: #6a5d57;
  font-size: 0.96rem;
}

.science-section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.pelvilift-science-page .science-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  column-gap: clamp(24px, 4vw, 56px);
  max-width: 1120px;
}

.pelvilift-science-page .science-section-heading .eyebrow {
  margin-top: 0.45em;
}

.pelvilift-science-page .science-section-heading h2,
.pelvilift-science-page .science-section-heading p:not(.eyebrow) {
  grid-column: 2;
}

.science-steps,
.science-evidence-grid,
.science-outcome-list,
.science-boundaries {
  display: grid;
  gap: 1px;
  background: rgba(77, 58, 49, 0.12);
  border: 1px solid rgba(77, 58, 49, 0.12);
}

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

.science-steps article,
.science-evidence-grid article,
.science-outcome-list article,
.science-boundaries article {
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 253, 249, 0.82);
}

.science-steps strong,
.science-evidence-grid h3,
.science-outcome-list h3,
.science-boundaries h3 {
  display: block;
  margin: 0 0 10px;
  color: var(--mocha-text);
  font-family: var(--body-font);
  font-size: clamp(1.12rem, 1.34vw, 1.38rem);
  line-height: 1.22;
}

.science-steps p,
.science-evidence-grid p,
.science-outcome-list p,
.science-outcome-list li,
.science-boundaries li,
.science-disclaimer p,
.science-references li {
  color: #5b504a;
  line-height: 1.62;
}

.science-outcome-list {
  grid-template-columns: 1fr;
}

.science-outcome-list article {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  border-left: 0;
}

.science-outcome-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-outcome-list h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.92rem);
}

.science-outcome-list article > ul {
  position: relative;
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2.2vw, 28px);
  border-left: 1px solid rgba(77, 58, 49, 0.12);
  background: rgba(255, 255, 255, 0.48);
}

.science-outcome-list ul {
  margin: 0;
  padding-left: 1.1rem;
}

.science-outcome-list li + li {
  margin-top: 10px;
}

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

.science-evidence-grid span {
  display: block;
  margin-top: 18px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-boundaries {
  grid-template-columns: 1fr 1fr;
}

.science-boundaries ul {
  margin: 0;
  padding-left: 1.1rem;
}

.science-boundaries li + li {
  margin-top: 10px;
}

.science-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(77, 58, 49, 0.14);
  background: rgba(255, 253, 249, 0.82);
}

.science-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.science-table th,
.science-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(77, 58, 49, 0.12);
  text-align: left;
  vertical-align: top;
}

.science-table th {
  color: #7a5361;
  background: rgba(238, 230, 222, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-table td {
  color: #554a44;
  line-height: 1.52;
  background: rgba(255, 253, 249, 0.52);
}

.science-table td:first-child {
  color: var(--mocha-text);
  font-weight: 680;
  background: rgba(255, 250, 244, 0.92);
}

.science-references ol {
  margin: 0;
  padding-left: 1.2rem;
}

.science-references li + li {
  margin-top: 14px;
}

.science-disclaimer {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.science-disclaimer h2 {
  margin: 0 0 12px;
  font-family: var(--body-font);
  font-size: clamp(1.24rem, 1.6vw, 1.58rem);
}

.science-disclaimer p {
  max-width: 940px;
  margin: 0;
  font-size: 0.98rem;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.sticky-cta span {
  flex: 1;
  font-weight: 500;
}

.sticky-cta a {
  min-height: 40px;
}

.quiz-modal[hidden] {
  display: none;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
}

.quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 27, 0.55);
  backdrop-filter: blur(8px);
}

.quiz-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  padding: 28px;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quiz-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  cursor: pointer;
  font-size: 1.5rem;
}

.quiz-progress {
  height: 6px;
  margin: 12px 48px 28px 0;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.quiz-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--blue));
  transition: width 0.25s ease;
}

.quiz-options {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.quiz-options button {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.quiz-options button:hover,
.quiz-options button:focus-visible {
  border-color: var(--rose-dark);
  outline: none;
}

.result-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 1040px) {
  .hero,
  .mechanism-section,
  .product-feature,
  .product-feature.serum {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-visual {
    width: 100%;
    height: clamp(340px, 60vw, 500px);
    margin-top: 34px;
  }

  .mechanism-heading,
  .mechanism-heading h2 {
    max-width: 820px;
  }

  .mechanism-visual,
  .mechanism-visual img {
    min-height: 0;
  }

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

  .symptom-layout {
    grid-template-columns: 1fr;
  }

  .pelvic-anatomy {
    max-width: 760px;
  }

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

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

  .symptom-icon-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .symptom-icon-closing {
    grid-template-columns: 1fr;
  }

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

  .programs-layout,
  .programs-progress ol {
    grid-template-columns: 1fr;
  }

  .programs-progress ol {
    gap: 0;
  }

  .programs-progress ol::before {
    left: 14px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(231, 167, 189, 0.44), rgba(95, 159, 136, 0.74));
  }

  .programs-progress li {
    min-height: 118px;
    padding: 0 0 26px 52px;
  }

  .programs-progress li::before {
    top: 0;
    left: 0;
  }

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

  .testimonial-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .testimonial-video {
    justify-items: start;
  }

  .phone-frame {
    width: min(48vw, 230px);
  }

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

  .freedom-visual {
    max-width: 620px;
  }

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

  .routine-steps-visual {
    max-width: 720px;
  }

  .routine-flow {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .offer-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .offer-product {
    min-height: 520px;
    padding: clamp(18px, 4vw, 36px);
    border-left: 0;
    border-top: 0;
  }

  .offer-product img {
    width: min(100%, 620px);
    max-height: 560px;
  }

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

  .recognition-visual {
    max-width: 620px;
  }

  .intima-addon-section {
    grid-template-columns: 1fr;
  }

  .intima-addon-copy {
    max-width: 760px;
  }

  .intima-addon-visual {
    min-height: 0;
  }

  .science-principles,
  .science-panel,
  .science-report-hero,
  .science-steps,
  .science-evidence-grid,
  .science-outcome-list article,
  .science-boundaries {
    grid-template-columns: 1fr;
  }

  .pelvilift-science-page .science-section-heading {
    grid-template-columns: 1fr;
  }

  .pelvilift-science-page .science-section-heading h2,
  .pelvilift-science-page .science-section-heading p:not(.eyebrow) {
    grid-column: auto;
  }

  .report-toc {
    position: static;
    overflow-x: auto;
  }

  .report-toc a {
    flex: 0 0 auto;
    min-width: 160px;
  }

}

@media (max-width: 760px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 34px clamp(18px, 5vw, 64px) 42px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    height: min(86vw, 430px);
    margin: 24px 0 0;
    border-radius: 18px;
  }

  .device-shot {
    object-position: 52% center;
  }

  .trust-row {
    display: grid;
    gap: 8px;
  }

  .trust-row li + li::before {
    margin-left: 0;
  }

  h1 {
    font-size: clamp(2.05rem, 7.6vw, 2.9rem);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(1.86rem, 8vw, 2.85rem);
    line-height: 1.12;
  }

  .strip,
  .pain-points,
  .symptom-grid,
  .symptom-icon-map,
  .anatomy-panels,
  .billboard-metrics,
  .programs-list,
  .programs-progress ol,
  .landing-faq-grid,
  .testimonial-rail,
  .freedom-stats,
  .routine-flow,
  .path-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .mini-offer-section {
    flex-direction: column;
  }

  .mini-offer-copy {
    flex-direction: column;
    gap: 4px;
  }

  .featured-testimonial footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .testimonial-tags {
    justify-content: flex-start;
  }

  .phone-frame {
    width: min(76vw, 250px);
  }


  .billboard-metrics article {
    min-height: 96px;
  }

  .change-image {
    width: min(78vw, 260px);
  }

  .symptom-card {
    min-height: 0;
    text-align: left;
  }

  .symptom-sign {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .symptom-badge {
    width: 62px;
    height: 62px;
    margin: 0;
    border-radius: 18px;
  }

  .symptom-sign h3 {
    margin-top: 2px;
  }

  .symptom-sign p {
    grid-column: 2;
  }

  .symptom-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .mechanism-section {
    gap: 28px;
  }

  .mechanism-visual,
  .mechanism-visual img {
    min-height: 0;
  }

  .mechanism-grid article {
    column-gap: 14px;
  }

  .packaging-card {
    width: 170px;
    min-height: 240px;
    padding: 18px;
  }

  .device-shot {
    width: 100%;
  }

.serum-stack {
  display: none;
}

  .product-feature,
  .system-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .gallery img {
    height: 420px;
  }

  .quiz-section,
  .email-section,
  .site-footer {
    display: block;
  }

  .email-form > div {
    display: grid;
  }

  .sticky-cta {
    display: flex;
  }

  .science-hero {
    padding-top: 46px;
  }

  .science-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .science-hero p:not(.eyebrow) {
    font-size: 1.06rem;
  }

  .science-panel h2,
  .science-section h2 {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
  }

  .science-facts {
    grid-template-columns: 1fr;
  }

  .science-outcome-list article > ul {
    border-left: 0;
    border-top: 1px solid rgba(77, 58, 49, 0.12);
  }

  .science-table th,
  .science-table td {
    padding: 14px;
  }
}

.strip {
  padding: 28px clamp(18px, 5vw, 64px);
  color: var(--ink);
  background: rgba(255, 250, 244, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip p {
  color: var(--muted);
  font-weight: 400;
}

.pain-points article,
.path-card {
  background: rgba(255, 255, 255, 0.86);
}

.pain-points article {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-points article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(54, 49, 57, 0.08);
}

.product-feature {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
}

.product-subtitle {
  margin-top: -12px;
  color: var(--rose-dark);
  font-size: 1.15rem;
  font-weight: 400;
}

.price {
  font-weight: 520;
}

.save {
  background: #fff;
  border: 1px solid var(--line);
}

.product-visual > img,
.gallery figure {
  border-radius: 20px;
}

.spec-card {
  color: var(--ink);
  background: rgba(255, 253, 251, 0.92);
  border: 1px solid var(--line);
}

.spec-card span,
.spec-card small {
  color: var(--muted);
}

.system-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(231, 167, 189, 0.12), transparent 24rem),
    var(--section-blush);
}

.path-card.dark {
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #f5eef0);
}

.path-card.dark p {
  color: var(--muted);
}

.path-card.dark button {
  color: var(--rose-dark);
}

.site-footer {
  color: var(--ink);
  background: #f7f1f1;
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero-device-note {
    left: 16px;
    top: 16px;
    max-width: 190px;
    padding: 14px;
  }

  .hero-device-note strong {
    font-size: 1.06rem;
  }

  .hero-system-card {
    left: 16px;
    bottom: 16px;
    width: min(260px, calc(100% - 32px));
    padding: 14px;
  }

  .hero-system-card strong {
    font-size: 1.18rem;
  }

  .glow-panel::after {
    display: none;
  }

}

.serum-hero-image > img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 26px 74px rgba(54, 49, 57, 0.12);
}

.routine-band {
  margin: 0;
  padding: clamp(48px, 7vw, 72px) clamp(18px, 5vw, 64px);
  border: 0;
  border-top: 1px solid rgba(231, 221, 214, 0.72);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 248, 241, 0.94)),
    radial-gradient(circle at 92% 12%, rgba(185, 217, 199, 0.18), transparent 18rem);
}

.routine-band > div:first-child {
  max-width: 780px;
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.routine-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(235, 230, 231, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.routine-grid span {
  color: var(--rose-dark);
  font-weight: 560;
}

.routine-grid p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .routine-grid {
    grid-template-columns: 1fr;
  }
}

.logo-study-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(200, 226, 212, 0.26), transparent 28rem),
    radial-gradient(circle at 10% 36%, rgba(231, 167, 189, 0.14), transparent 24rem),
    #fffaf4;
}

.logo-study {
  padding: clamp(28px, 5vw, 72px);
}

.logo-study-hero {
  max-width: 1040px;
  margin: 0 auto 40px;
}

.logo-study-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.logo-option,
.logo-mini-system {
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 26px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 24px 70px rgba(47, 37, 33, 0.08);
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid var(--line);
}

.logo-card svg {
  width: 100%;
  height: auto;
}

.logo-card.dark {
  background: linear-gradient(135deg, #2f2521, #4d3a31);
}

.logo-card.minimal {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 238, 233, 0.78)),
    radial-gradient(circle at 88% 12%, rgba(200, 226, 212, 0.22), transparent 14rem);
}

.logo-notes span {
  color: var(--mint-deep);
  font-family: var(--tech-font);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-notes p,
.logo-notes li,
.logo-mini-system p {
  color: var(--muted);
  line-height: 1.65;
}

.logo-notes ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.logo-mini-system {
  grid-template-columns: 0.8fr 1.2fr;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mini-row img:first-child {
  width: 86px;
}

.mini-row img:last-child {
  width: min(320px, 100%);
}

.logo-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto 26px;
}

.logo-swatch {
  min-height: 340px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(47, 37, 33, 0.08);
}

.logo-swatch > span,
.logo-usage-board .eyebrow {
  display: block;
  margin-bottom: 28px;
  color: var(--mint-deep);
  font-family: var(--tech-font);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.logo-swatch img {
  display: block;
  max-width: min(420px, 100%);
}

.logo-swatch p {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.dark-swatch {
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 226, 212, 0.16), transparent 16rem),
    linear-gradient(135deg, #2f2521, #4d3a31);
}

.dark-swatch p {
  color: rgba(255, 249, 243, 0.74);
}

.mint-swatch {
  background:
    radial-gradient(circle at 86% 8%, rgba(231, 167, 189, 0.24), transparent 14rem),
    #c8e2d4;
}

.micro-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.micro-row > img {
  width: 112px;
}

.favicon-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(77, 58, 49, 0.08);
}

.favicon-demo img {
  width: 28px;
}

.favicon-demo strong {
  color: var(--mocha-deep);
  font-size: 1.1rem;
}

.scale-test {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(77, 58, 49, 0.08);
}

.scale-test img {
  flex: 0 0 auto;
}

.scale-test .icon-16 {
  width: 16px;
}

.scale-test .icon-24 {
  width: 24px;
}

.scale-test .icon-32 {
  width: 32px;
}

.scale-test span {
  color: var(--muted);
  font-size: 0.85rem;
}

.logo-usage-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 26px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.72);
}

.logo-usage-board p {
  color: var(--muted);
  line-height: 1.68;
}

.package-logo-mocks {
  display: grid;
  grid-template-columns: 0.92fr 0.46fr 1fr;
  gap: 16px;
  align-items: end;
}

.tube-mock,
.box-mock,
.cap-mock {
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(47, 37, 33, 0.12);
}

.tube-mock {
  min-height: 440px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--mint);
  background: linear-gradient(180deg, #4d3a31, #2f2521);
}

.tube-mock img {
  width: 100%;
  filter: invert(92%) sepia(10%) saturate(521%) hue-rotate(86deg) brightness(98%) contrast(84%);
}

.tube-mock span,
.box-mock span {
  font-family: var(--tech-font);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cap-mock {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fffdf8;
}

.cap-mock img {
  width: 76%;
}

.box-mock {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff9f3;
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 226, 212, 0.18), transparent 14rem),
    #2f2521;
}

.box-mock img {
  width: 100%;
}

.logo-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-rules article {
  padding: 26px;
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.logo-rules p {
  color: var(--muted);
  line-height: 1.62;
}

@media (max-width: 820px) {
  .logo-option,
  .logo-mini-system,
  .logo-usage-board,
  .logo-showcase-grid,
  .logo-rules {
    grid-template-columns: 1fr;
  }

  .package-logo-mocks {
    grid-template-columns: 1fr;
  }
}

.packaging-study-page {
  background:
    linear-gradient(110deg, rgba(200, 226, 212, 0.18), transparent 34%),
    linear-gradient(260deg, rgba(231, 167, 189, 0.1), transparent 32%),
    linear-gradient(180deg, #fffaf4 0%, #f2e8df 58%, #fffdf8 100%);
}

.packaging-study {
  max-width: 1480px;
  --package-display-font: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --package-lux-font: "Optima", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.packaging-hero h1 {
  max-width: 980px;
}

.packaging-render-board {
  display: grid;
  grid-template-columns: minmax(620px, 1.32fr) minmax(320px, 0.68fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto 28px;
}

.packaging-scene {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(200, 226, 212, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(234, 222, 212, 0.72));
  box-shadow: 0 32px 90px rgba(47, 37, 33, 0.12);
}

.packaging-material-chip {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 4;
  max-width: 330px;
  padding: 10px 13px;
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 999px;
  color: rgba(47, 37, 33, 0.68);
  background: rgba(255, 253, 248, 0.76);
  font-family: var(--tech-font);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.packaging-scene::before {
  content: "";
  position: absolute;
  inset: auto 10% 9% 8%;
  height: 42px;
  border-radius: 999px;
  background: rgba(47, 37, 33, 0.18);
  filter: blur(24px);
}

.pelvilift-box {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 38px 80px rgba(47, 37, 33, 0.25);
}

.pelvilift-box-front {
  left: 18%;
  top: 48px;
  width: min(360px, 43vw);
  min-height: 632px;
  padding: 32px 28px;
  color: #fff9f3;
  background:
    linear-gradient(90deg, rgba(200, 226, 212, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 249, 243, 0.08), transparent 24%),
    linear-gradient(145deg, #2f2521 0%, #4d3a31 64%, #2a211e 100%);
  transform: perspective(1200px) rotateY(-10deg) rotateX(1deg);
  transform-origin: center;
}

.pelvilift-box-front::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 249, 243, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.box-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.box-topline img {
  width: 188px;
}

.box-topline span {
  padding-top: 8px;
  color: rgba(255, 249, 243, 0.72);
  font-family: var(--tech-font);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.box-hero-mark {
  position: absolute;
  right: 18px;
  top: 142px;
  width: 232px;
  height: 318px;
  opacity: 0.86;
}

.box-hero-mark::before,
.box-hero-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 18px solid transparent;
  border-top: 0;
  border-radius: 0 0 140px 140px;
}

.box-hero-mark::before {
  border-right-color: rgba(200, 226, 212, 0.82);
  border-bottom-color: rgba(200, 226, 212, 0.82);
  border-left-color: rgba(200, 226, 212, 0.82);
}

.box-hero-mark::after {
  inset: 48px 42px 58px;
  border-width: 8px;
  border-right-color: rgba(231, 167, 189, 0.72);
  border-bottom-color: rgba(231, 167, 189, 0.72);
  border-left-color: rgba(231, 167, 189, 0.72);
}

.box-device-window {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  top: 178px;
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(255, 249, 243, 0.16);
  border-radius: 9px;
  background: rgba(255, 249, 243, 0.08);
}

.box-device-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 37, 33, 0.62), transparent 28%, rgba(47, 37, 33, 0.5)),
    linear-gradient(180deg, rgba(47, 37, 33, 0.18), rgba(47, 37, 33, 0.34));
}

.box-device-window img {
  width: 126%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 52%;
  filter: saturate(0.82) contrast(0.95);
  opacity: 0.34;
}

.box-front-copy {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 98px;
}

.box-front-copy p {
  margin: 0 0 12px;
  color: var(--mint);
  font-family: var(--tech-font);
  font-size: 0.92rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.box-front-copy h2 {
  margin: 0;
  color: #fff9f3;
  font-family: var(--package-display-font);
  font-size: clamp(3.45rem, 6vw, 5.25rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.box-front-copy span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 249, 243, 0.82);
  font-size: 1rem;
}

.box-trust-row {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.box-trust-row span {
  padding: 9px 11px;
  border: 1px solid rgba(200, 226, 212, 0.34);
  border-radius: 999px;
  color: var(--mint);
  font-size: 0.78rem;
  text-align: center;
}

.pelvilift-box-side {
  right: 20%;
  top: 76px;
  width: 118px;
  min-height: 592px;
  padding: 24px 18px;
  color: var(--mocha-deep);
  background: linear-gradient(180deg, #fff9f3, #eee5dd);
  transform: perspective(1200px) rotateY(20deg) rotateX(1deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pelvilift-box-side img {
  width: 116px;
  transform: rotate(90deg) translate(30px, 10px);
  transform-origin: left top;
}

.pelvilift-box-side div {
  display: grid;
  gap: 8px;
}

.pelvilift-box-side span,
.pelvilift-box-side strong {
  font-family: var(--tech-font);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pelvilift-box-side strong {
  color: var(--muted);
  font-weight: 600;
}

.pelvilift-box-back {
  position: absolute;
  right: 6%;
  bottom: 62px;
  width: min(280px, 32vw);
  min-height: 360px;
  padding: 28px;
  color: var(--mocha-deep);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 238, 233, 0.94));
  transform: perspective(1200px) rotateY(12deg) rotateX(1deg);
  box-shadow: 0 32px 70px rgba(47, 37, 33, 0.16);
}

.back-box-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 44px;
}

.back-box-brand img {
  width: 50px;
}

.back-box-brand span {
  color: var(--mint-deep);
  font-family: var(--tech-font);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.pelvilift-box-back h3 {
  margin: 0 0 18px;
  color: var(--mocha-deep);
  font-family: var(--package-lux-font);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.pelvilift-box-back ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.pelvilift-box-back li,
.pelvilift-box-back p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.pelvilift-box-back p {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(77, 58, 49, 0.12);
}

.packaging-notes {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 28px 76px rgba(47, 37, 33, 0.1);
}

.packaging-notes h2,
.package-panel h2 {
  margin: 0;
  font-family: var(--package-lux-font);
  font-size: clamp(2.3rem, 3.6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.packaging-notes p,
.packaging-notes li,
.package-panel p,
.package-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.packaging-notes ul,
.package-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.package-panel-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 0.88fr;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto 28px;
}

.package-panel {
  min-height: 430px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 18px;
  border: 1px solid rgba(77, 58, 49, 0.14);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 24px 70px rgba(47, 37, 33, 0.08);
}

.front-panel {
  color: #fff9f3;
  background:
    linear-gradient(120deg, rgba(200, 226, 212, 0.18), transparent 42%),
    linear-gradient(145deg, #2f2521, #4d3a31 72%, #2a211e);
}

.front-panel p,
.front-panel .panel-footnote {
  color: rgba(255, 249, 243, 0.72);
}

.front-panel h2 {
  color: #fff9f3;
  font-family: var(--package-display-font);
  font-size: clamp(4rem, 6.5vw, 5.9rem);
  font-weight: 500;
  letter-spacing: 0;
}

.front-panel h3 {
  color: var(--mint);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  color: var(--mint-deep);
  font-family: var(--tech-font);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-header img {
  max-width: 188px;
  max-height: 58px;
}

.side-panel .panel-header img {
  width: 56px;
}

.panel-kicker {
  margin: 0 0 12px;
  color: var(--mint);
  font-family: var(--tech-font);
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.package-panel h3 {
  margin: 12px 0 0;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
}

.panel-badges,
.contents-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.panel-badges span,
.contents-list span {
  padding: 10px 12px;
  border: 1px solid rgba(200, 226, 212, 0.4);
  border-radius: 999px;
  color: var(--mint);
  font-size: 0.82rem;
}

.contents-list span {
  color: var(--mocha);
  border-color: rgba(77, 58, 49, 0.14);
  background: rgba(200, 226, 212, 0.24);
}

.panel-footnote {
  margin-top: 24px;
  font-size: 0.8rem;
}

.packaging-dieline {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(580px, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto 28px;
}

.dieline-copy {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
}

.dieline-copy h2 {
  margin: 0;
  color: var(--mocha-deep);
  font-family: var(--package-lux-font);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
}

.dieline-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.dieline-board {
  display: grid;
  grid-template-columns: 0.62fr 1fr 0.62fr;
  grid-template-rows: 108px 360px 108px;
  gap: 10px;
  padding: 18px;
  border: 1px dashed rgba(77, 58, 49, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(200, 226, 212, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(200, 226, 212, 0.13) 1px, transparent 1px),
    rgba(255, 253, 248, 0.72);
  background-size: 28px 28px;
}

.dieline-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 249, 243, 0.18);
  border-radius: 10px;
  color: #fff9f3;
  background: linear-gradient(145deg, #2f2521, #4d3a31);
}

.dieline-panel span,
.dieline-panel small,
.dieline-panel p {
  color: rgba(255, 249, 243, 0.72);
}

.dieline-panel span,
.dieline-panel small {
  font-family: var(--tech-font);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dieline-panel h3,
.dieline-panel strong {
  margin: 0;
  color: #fff9f3;
  font-family: var(--package-display-font);
  font-size: clamp(1.5rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 0.95;
}

.dieline-panel p {
  margin: 0;
  line-height: 1.48;
}

.dieline-front {
  grid-column: 2;
  grid-row: 2;
  background:
    linear-gradient(130deg, rgba(200, 226, 212, 0.2), transparent 42%),
    linear-gradient(145deg, #2f2521, #4d3a31 72%, #2a211e);
}

.dieline-front img {
  width: min(210px, 80%);
}

.dieline-front h3 {
  font-size: clamp(3.2rem, 5.8vw, 5.5rem);
}

.dieline-side-left {
  grid-column: 1;
  grid-row: 2;
}

.dieline-side-right {
  grid-column: 3;
  grid-row: 2;
}

.dieline-back {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  color: var(--mocha-deep);
  background: linear-gradient(180deg, #fff9f3, #eee5dd);
}

.dieline-back h3,
.dieline-back span,
.dieline-back p {
  color: var(--mocha-deep);
}

.dieline-top {
  grid-column: 1;
  grid-row: 1;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #fff9f3, #eee5dd);
}

.dieline-top span {
  color: var(--mocha);
}

.dieline-top img {
  width: 58px;
}

.dieline-bottom {
  grid-column: 2;
  grid-row: 3;
  color: var(--mocha-deep);
  background: linear-gradient(180deg, #fff9f3, #eee5dd);
}

.dieline-bottom span,
.dieline-bottom small {
  color: var(--mocha);
}

.barcode-zone {
  padding: 8px;
  border: 1px solid rgba(77, 58, 49, 0.22);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--tech-font);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.packaging-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.packaging-rules article {
  padding: 26px;
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.packaging-rules p {
  color: var(--muted);
  line-height: 1.62;
}

.instrument-box-page {
  min-height: 100vh;
  color: #2f2521;
  background:
    linear-gradient(115deg, rgba(200, 226, 212, 0.34), transparent 28%),
    linear-gradient(245deg, rgba(231, 167, 189, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f3e8df 55%, #fff9f3 100%);
}

.instrument-box {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px) 0;
}

.box-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-height: calc(100vh - 108px);
}

.box-hero-copy {
  display: none;
  align-content: center;
  gap: 18px;
}

.box-hero-copy img {
  width: 216px;
  margin-bottom: 20px;
}

.box-hero-copy h1 {
  margin: 0;
  max-width: 580px;
  font-family: var(--logo-font);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.box-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #625650;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
}

.box-stage {
  position: relative;
  min-height: min(760px, calc(100vh - 108px));
  overflow: hidden;
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 253, 249, 0.84), rgba(237, 228, 219, 0.8)),
    #fff9f3;
}

.box-stage::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(77, 58, 49, 0.1);
  pointer-events: none;
}

.box-shadow {
  position: absolute;
  left: 14%;
  right: 8%;
  bottom: 86px;
  height: 44px;
  border-radius: 999px;
  background: rgba(47, 37, 33, 0.2);
  filter: blur(28px);
}

.outer-box {
  position: absolute;
  left: 18%;
  top: 74px;
  width: 430px;
  height: 580px;
  transform: perspective(1200px) rotateY(-18deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.outer-box-face {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 36px 80px rgba(47, 37, 33, 0.24);
  backface-visibility: hidden;
}

.outer-box-front {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: #2f2521;
  background:
    linear-gradient(90deg, rgba(243, 191, 214, 0.2), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #fff9f3 54%, #f1e6de 100%);
}

.outer-box-front::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 4px;
  pointer-events: none;
}

.front-logo-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.front-logo-row img {
  width: 214px;
}

.front-logo-row span,
.outer-box-side p,
.outer-box-top span,
.box-panel > span,
.box-specs article > span {
  font-family: var(--tech-font);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.front-vi-curve {
  position: absolute;
  right: 32px;
  bottom: 54px;
  width: 194px;
  height: 260px;
  border-right: 18px solid rgba(200, 226, 212, 0.72);
  border-bottom: 18px solid rgba(200, 226, 212, 0.72);
  border-left: 18px solid rgba(200, 226, 212, 0.72);
  border-top: 0;
  border-radius: 0 0 150px 150px;
  opacity: 0.42;
}

.front-vi-curve::after {
  content: "";
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 64px;
  height: 84px;
  border-right: 5px solid rgba(231, 167, 189, 0.42);
  border-bottom: 5px solid rgba(231, 167, 189, 0.42);
  border-left: 5px solid rgba(231, 167, 189, 0.42);
  border-top: 0;
  border-radius: 0 0 80px 80px;
}

.front-name {
  position: relative;
  z-index: 2;
}

.front-name p {
  margin: 0 0 12px;
  color: #8bb6a4;
  font-family: var(--tech-font);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.front-name h2 {
  margin: 0;
  color: #2f2521;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.35rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.front-name span {
  display: block;
  margin-top: 16px;
  color: #625650;
  font-size: 1rem;
}

.outer-box-side {
  right: -82px;
  top: 16px;
  width: 82px;
  height: 548px;
  padding: 24px 16px;
  color: #2f2521;
  background: linear-gradient(180deg, #fff9f3, #eee4dc);
  transform: rotateY(90deg);
  transform-origin: left center;
}

.outer-box-side img {
  width: 128px;
  transform: rotate(90deg) translate(16px, 16px);
  transform-origin: left top;
}

.outer-box-side p {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 24px;
  margin: 0;
  color: #4d3a31;
  writing-mode: vertical-rl;
}

.outer-box-top {
  left: 18px;
  top: -70px;
  width: 394px;
  height: 70px;
  padding: 22px 34px;
  color: #2f2521;
  background: linear-gradient(90deg, #fff9f3, #eadfd6);
  transform: rotateX(90deg);
  transform-origin: bottom center;
}

.inner-tray {
  position: absolute;
  right: 8%;
  bottom: 44px;
  width: 300px;
  min-height: 226px;
  padding: 22px;
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 8px;
  background: #fff9f3;
  box-shadow: 0 30px 68px rgba(47, 37, 33, 0.16);
  transform: perspective(1000px) rotateY(12deg) rotateX(1deg);
}

.tray-lid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tray-lid img {
  width: 48px;
}

.tray-lid span {
  color: #8bb6a4;
  font-family: var(--tech-font);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tray-products {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 12px;
  overflow: hidden;
  min-height: 150px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fffdf9, #f2e8df);
}

.tray-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.tray-controller {
  object-position: 50% 44%;
}

.tray-electrode {
  object-position: 50% 50%;
}

.box-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 0.86fr;
  gap: 18px;
  margin-top: 30px;
}

.box-panel {
  min-height: 430px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.76);
}

.box-panel > span,
.box-specs article > span {
  color: #8bb6a4;
}

.panel-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #2f2521;
  background:
    linear-gradient(90deg, rgba(243, 191, 214, 0.22), transparent 36%),
    linear-gradient(180deg, #fffdf9, #fff9f3 58%, #eee4dc);
}

.panel-front img {
  width: 192px;
}

.panel-front p {
  margin: auto 0 10px;
  color: #8bb6a4;
  font-family: var(--tech-font);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-front h2,
.panel-back h2,
.panel-side h2 {
  margin: 0;
  letter-spacing: 0;
}

.panel-front h2 {
  color: #2f2521;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
}

.panel-front small {
  color: #625650;
  font-size: 1rem;
}

.panel-back h2,
.panel-side h2 {
  margin-top: 70px;
  color: #2f2521;
  font-family: var(--logo-font);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.panel-back ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding-left: 18px;
  color: #625650;
  line-height: 1.55;
}

.legal-block {
  margin-top: 36px;
  padding: 14px;
  border: 1px solid rgba(77, 58, 49, 0.16);
  color: #625650;
  background: rgba(255, 249, 243, 0.72);
  font-family: var(--tech-font);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.panel-side img {
  width: 64px;
  margin-top: 64px;
}

.panel-side p {
  color: #625650;
  line-height: 1.65;
}

.box-specs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.box-specs article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(77, 58, 49, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.68);
}

.box-specs p {
  margin: 28px 0 0;
  color: #625650;
  line-height: 1.6;
}

.swatches {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.swatches i {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(77, 58, 49, 0.14);
  border-radius: 50%;
  background: var(--swatch);
}

@media (max-width: 1080px) {
  .box-hero,
  .box-panels,
  .box-specs {
    grid-template-columns: 1fr;
  }

  .box-hero {
    min-height: 0;
  }

  .box-stage {
    min-height: 760px;
  }
}

@media (max-width: 680px) {
  .instrument-box {
    width: min(100% - 24px, 1440px);
    padding: 28px 0;
  }

  .box-hero-copy img {
    width: 180px;
  }

  .box-stage {
    min-height: 780px;
  }

  .box-stage::before {
    inset: 18px;
  }

  .outer-box {
    left: 8%;
    top: 62px;
    width: 280px;
    height: 440px;
  }

  .outer-box-front {
    padding: 24px;
  }

  .front-logo-row img {
    width: 158px;
  }

  .front-vi-curve {
    right: 18px;
    bottom: 50px;
    width: 122px;
    height: 176px;
    border-width: 12px;
  }

  .front-name h2 {
    font-size: 3.15rem;
  }

  .outer-box-side,
  .outer-box-top {
    display: none;
  }

  .inner-tray {
    left: 13%;
    right: auto;
    bottom: 56px;
    width: 74%;
    transform: none;
  }

  .box-panel {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .packaging-render-board,
  .package-panel-grid,
  .packaging-dieline,
  .packaging-rules {
    grid-template-columns: 1fr;
  }

  .packaging-scene {
    min-height: 840px;
  }

  .pelvilift-box-front {
    left: 6%;
    width: 54%;
  }

  .pelvilift-box-side {
    right: 12%;
  }

  .pelvilift-box-back {
    right: 6%;
    bottom: 32px;
    width: 34%;
    min-height: 300px;
    padding: 22px;
  }

  .dieline-board {
    grid-template-columns: 0.56fr 1fr 0.56fr;
  }
}

@media (max-width: 620px) {
  .packaging-scene {
    min-height: 860px;
  }

  .pelvilift-box-front {
    left: 5%;
    top: 42px;
    width: 64%;
    min-height: 500px;
    padding: 24px;
  }

  .box-topline {
    display: grid;
  }

  .box-topline img {
    width: 176px;
  }

  .box-hero-mark {
    right: 20px;
    top: 118px;
    width: 164px;
    height: 238px;
  }

  .box-device-window {
    left: 24px;
    right: 24px;
    top: 148px;
    height: 138px;
  }

  .box-front-copy {
    left: 24px;
    right: 24px;
    bottom: 84px;
  }

  .box-front-copy h2 {
    font-size: 3.35rem;
  }

  .box-trust-row {
    left: 24px;
    right: 24px;
    display: flex;
  }

  .pelvilift-box-side {
    top: 72px;
    right: 5%;
    width: 82px;
    min-height: 470px;
    padding: 18px 12px;
  }

  .pelvilift-box-side img {
    width: 98px;
  }

  .pelvilift-box-back {
    left: 9%;
    right: auto;
    bottom: 28px;
    width: 82%;
    min-height: 240px;
    transform: perspective(1200px) rotateY(0deg);
  }

  .packaging-material-chip {
    left: 18px;
    right: 18px;
    max-width: none;
    border-radius: 12px;
  }

  .dieline-board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .dieline-front,
  .dieline-side-left,
  .dieline-side-right,
  .dieline-back,
  .dieline-top,
  .dieline-bottom {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  .dieline-front {
    min-height: 300px;
  }
}

/* About page */
.about-body {
  background: #fffaf4;
}

.about-page {
  overflow: hidden;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: stretch;
  min-height: 690px;
  background: #fffaf4;
}

.about-hero-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(64px, 9vw, 132px) clamp(24px, 7vw, 112px);
}

.about-hero h1,
.about-learning h2,
.about-system h2,
.about-belief h2,
.about-signoff h2 {
  font-family: var(--logo-font);
  font-weight: 400;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: 720px;
  margin: 18px 0 26px;
  font-size: clamp(4rem, 6vw, 7rem);
  line-height: 0.98;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.74;
}

.about-hero-copy .about-lede {
  color: var(--mocha-deep);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.5;
}

.about-hero-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.about-hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 250, 244, 0.42), transparent 34%);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-visual p {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-section-label {
  display: flex;
  justify-content: space-between;
  color: var(--rose-dark);
}

.about-section-label span {
  font-family: var(--logo-font);
  font-size: 2.8rem;
  line-height: 1;
  opacity: 0.55;
}

.about-origin {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 120px);
  padding: clamp(76px, 10vw, 150px) clamp(24px, 8vw, 148px);
  background: var(--mocha-deep);
  color: #fffaf4;
}

.about-origin blockquote {
  max-width: 1080px;
  margin: 0;
  color: #fffaf4;
  font-family: var(--logo-font);
  font-size: clamp(2.8rem, 4.4vw, 5.2rem);
  font-weight: 400;
  line-height: 1.03;
}

.about-origin-copy > p:not(.quote-attribution):not(.about-emphasis) {
  max-width: 860px;
  color: rgba(255, 250, 244, 0.73);
  font-size: 1.08rem;
  line-height: 1.78;
}

.quote-attribution {
  margin: 24px 0 44px;
  color: var(--mint);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-emphasis {
  margin: 32px 0 0;
  color: var(--rose);
  font-family: var(--logo-font);
  font-size: 2.3rem;
}

.about-learning {
  padding: clamp(76px, 10vw, 148px) clamp(24px, 8vw, 148px);
  background: #fffdf9;
}

.about-learning-intro {
  max-width: 920px;
}

.about-learning h2,
.about-system h2,
.about-signoff h2 {
  margin: 14px 0 0;
  font-size: clamp(3.2rem, 5.3vw, 6.2rem);
  line-height: 1;
}

.about-learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 66px);
  margin-top: clamp(52px, 7vw, 92px);
}

.about-learning-grid article {
  border-top: 1px solid rgba(77, 58, 49, 0.24);
  padding-top: 22px;
}

.about-learning-grid span {
  color: var(--rose-dark);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.about-learning-grid h3 {
  margin: 28px 0 12px;
  font-family: var(--logo-font);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-learning-grid p,
.about-system-heading > p:not(.eyebrow),
.about-product-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.about-system {
  display: grid;
  gap: 28px;
  padding: clamp(76px, 10vw, 148px) clamp(24px, 8vw, 148px);
  background: #f8f2ec;
}

.about-system-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.about-system-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.about-product {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(77, 58, 49, 0.11);
}

.about-product-copy {
  padding: clamp(28px, 5vw, 74px);
}

.about-product h3 {
  margin: 8px 0 16px;
  font-family: var(--logo-font);
  font-size: clamp(3rem, 4.6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.about-product-copy a {
  display: inline-block;
  margin-top: 14px;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration-color: rgba(182, 111, 134, 0.4);
  text-underline-offset: 5px;
}

.about-product img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-product-pelvilift img {
  object-fit: contain;
  max-height: 480px;
  padding: 30px;
  background: #fffaf4;
}

.about-belief {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.about-belief img,
.about-belief-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-belief img {
  object-fit: cover;
  object-position: center;
}

.about-belief-overlay {
  background: linear-gradient(90deg, rgba(36, 27, 24, 0.78), rgba(36, 27, 24, 0.25) 68%, rgba(36, 27, 24, 0.12));
}

.about-belief-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1480px);
  padding: clamp(48px, 8vw, 128px);
}

.about-belief h2 {
  max-width: 810px;
  margin: 14px 0 24px;
  color: #fffaf4;
  font-size: clamp(3.7rem, 6.2vw, 7.2rem);
  line-height: 0.96;
}

.about-belief-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.about-belief .button {
  margin-top: 28px;
}

.about-signoff {
  padding: clamp(70px, 10vw, 150px) 24px;
  text-align: center;
  background: #fffaf4;
}

.about-signoff p {
  color: var(--rose-dark);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-signoff h2 {
  max-width: 860px;
  margin: 18px auto 26px;
}

.about-signoff span {
  color: var(--sage-text);
  font-family: var(--logo-font);
  font-size: 1.8rem;
  font-style: italic;
}

@media (max-width: 920px) {
  .about-hero,
  .about-origin,
  .about-product {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: min(112vw, 670px);
  }

  .about-learning-grid {
    grid-template-columns: 1fr;
  }

  .about-product-intima .about-product-copy {
    order: -1;
  }
}

@media (max-width: 620px) {
  .about-hero-copy {
    padding: 52px 20px;
  }

  .about-hero h1 {
    font-size: clamp(3.3rem, 15vw, 4.5rem);
  }

  .about-origin,
  .about-learning,
  .about-system {
    padding: 68px 20px;
  }

  .about-origin blockquote {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .about-product img,
  .about-product {
    min-height: 320px;
  }

  .about-product-pelvilift img {
    max-height: 360px;
  }

  .about-belief {
    min-height: 620px;
  }

  .about-belief-copy {
    padding: 42px 20px;
  }
}

/* About page: quiet editorial treatment */
.about-header-link {
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.about-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  min-height: 640px;
  background: #fffdf9;
}

.about-hero-copy {
  max-width: 730px;
  padding: clamp(64px, 8vw, 118px) clamp(24px, 7vw, 104px);
}

.about-hero h1 {
  max-width: 590px;
  font-size: clamp(3.15rem, 4.55vw, 5.35rem);
  line-height: 1.04;
}

.about-hero-visual {
  min-height: 640px;
}

.about-origin {
  gap: clamp(40px, 7vw, 118px);
  padding: clamp(76px, 9vw, 132px) clamp(24px, 9vw, 168px);
  color: var(--ink);
  background: #f7f1eb;
}

.about-origin blockquote {
  max-width: 860px;
  color: var(--mocha-deep);
  font-size: clamp(2.35rem, 3.6vw, 4.15rem);
  line-height: 1.08;
}

.about-origin-copy > p:not(.quote-attribution):not(.about-emphasis) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.quote-attribution {
  color: var(--sage-text);
}

.about-learning {
  padding: clamp(78px, 10vw, 144px) clamp(24px, 9vw, 168px);
}

.about-learning-intro {
  max-width: 960px;
}

.about-learning-intro > p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.75;
}

.about-learning h2,
.about-system h2,
.about-signoff h2 {
  font-size: clamp(2.55rem, 4vw, 4.75rem);
  line-height: 1.07;
}

.about-learning-grid {
  gap: clamp(28px, 4vw, 58px);
  margin-top: clamp(46px, 6vw, 76px);
}

.about-learning-grid h3 {
  margin-top: 2px;
  font-size: clamp(1.58rem, 2vw, 2.15rem);
}

.about-system {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  column-gap: clamp(44px, 8vw, 132px);
  row-gap: 42px;
  padding: clamp(78px, 10vw, 144px) clamp(24px, 9vw, 168px);
  background: #f7f4f0;
}

.about-system-heading {
  grid-column: 1 / -1;
  max-width: 900px;
  margin-bottom: 8px;
}

.about-system-image {
  min-height: 520px;
  overflow: hidden;
  background: #eee8e1;
}

.about-system-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-system-list {
  display: grid;
  align-content: center;
}

.about-system-list article {
  padding: 34px 0;
  border-top: 1px solid rgba(77, 58, 49, 0.18);
}

.about-system-list article:last-child {
  border-bottom: 1px solid rgba(77, 58, 49, 0.18);
}

.about-system-list h3 {
  margin: 10px 0 12px;
  font-family: var(--logo-font);
  font-size: clamp(2.3rem, 3.4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.about-system-list p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.01rem;
  line-height: 1.72;
}

.about-system-list a {
  display: inline-block;
  margin-top: 10px;
  color: var(--rose-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration-color: rgba(182, 111, 134, 0.35);
  text-underline-offset: 5px;
}

.about-belief {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: 590px;
  place-items: stretch;
  color: var(--ink);
  background: #fffdf9;
}

.about-belief img {
  position: static;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.about-belief-copy {
  align-self: center;
  width: auto;
  padding: clamp(46px, 7vw, 104px);
}

.about-belief h2 {
  max-width: 660px;
  color: var(--mocha-deep);
  font-size: clamp(2.7rem, 4vw, 4.75rem);
  line-height: 1.06;
}

.about-belief-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-signoff {
  padding: clamp(76px, 9vw, 132px) 24px;
  background: #f7f1eb;
}

.about-signoff h2 {
  max-width: 760px;
}

.about-contact {
  padding: 48px clamp(24px, 9vw, 168px) 54px;
  background: #fffdf9;
  border-top: 1px solid rgba(77, 58, 49, 0.1);
}

.about-contact h2 {
  margin: 10px 0 10px;
  font-family: var(--logo-font);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.about-contact p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-contact a {
  color: var(--rose-dark);
  text-decoration-color: rgba(182, 111, 134, 0.35);
  text-underline-offset: 4px;
}

@media (max-width: 920px) {
  .about-header-link {
    display: none;
  }

  .about-hero,
  .about-origin,
  .about-system,
  .about-belief {
    grid-template-columns: 1fr;
  }

  .about-system-image {
    min-height: min(78vw, 560px);
  }

  .about-belief img {
    min-height: min(88vw, 590px);
  }
}

@media (max-width: 620px) {
  .about-hero h1 {
    font-size: clamp(2.85rem, 12vw, 3.75rem);
  }

  .about-origin blockquote {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .about-learning h2,
  .about-system h2,
  .about-signoff h2 {
    font-size: clamp(2.3rem, 10.5vw, 3.25rem);
  }

  .about-system-image {
    min-height: 280px;
  }

  .about-belief img {
    min-height: 360px;
  }
}
