:root {
  --bg: #f7f1ed;
  --bg-soft: #fffaf7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #24161d;
  --muted: #6f5a63;
  --line: rgba(96, 54, 76, 0.14);
  --accent: #de5b9c;
  --accent-deep: #8e2959;
  --accent-soft: #ffd6ea;
  --shadow: 0 24px 80px rgba(123, 59, 88, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 219, 235, 0.95), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 241, 230, 0.9), transparent 28%),
    linear-gradient(180deg, #fff8f6 0%, #f9f0eb 48%, #fff8f4 100%);
  min-height: 100vh;
}

body.theme-men {
  --text: #163546;
  --muted: #416476;
  --line: rgba(91, 141, 166, 0.22);
  --accent: #55b9e7;
  --accent-deep: #2f84b8;
  --accent-soft: #e1f5ff;
  --shadow: 0 24px 80px rgba(73, 133, 166, 0.18);
  background:
    radial-gradient(circle at top left, rgba(193, 235, 251, 0.95), transparent 34%),
    radial-gradient(circle at top right, rgba(221, 244, 255, 0.92), transparent 32%),
    linear-gradient(180deg, #edf9ff 0%, #d8f1fb 52%, #effbff 100%);
}

body.theme-men .page-shell::before {
  opacity: 0.04;
  mix-blend-mode: multiply;
}

body.theme-men .site-nav,
body.theme-men .hero-notes li,
body.theme-men .button-secondary,
body.theme-men .benefit,
body.theme-men .ingredient-grid div {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(104, 163, 190, 0.16);
}

body.theme-men .site-nav a,
body.theme-men .brand-copy span,
body.theme-men .hero-lead,
body.theme-men .formula-panel p,
body.theme-men .benefit p,
body.theme-men .ingredients-copy p,
body.theme-men .results-copy p,
body.theme-men .site-footer p,
body.theme-men .cta-band p,
body.theme-men .ingredient-card p,
body.theme-men .result-line span,
body.theme-men .floating-proof span,
body.theme-men .hero-split-callout span {
  color: #45687a;
}

body.theme-men .site-nav {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(102, 169, 201, 0.18);
}

body.theme-men .button-secondary,
body.theme-men .hero-notes li,
body.theme-men .floating-proof,
body.theme-men .hero-split-callout,
body.theme-men .lang-chip,
body.theme-men .formula-panel,
body.theme-men .results-points,
body.theme-men .results-copy,
body.theme-men .cta-band,
body.theme-men .ingredient-card,
body.theme-men .choice-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(100, 166, 198, 0.18);
}

body.theme-men .button-secondary {
  color: #163546;
}

body.theme-men .formula-panel.accent {
  background: linear-gradient(180deg, rgba(206, 239, 251, 0.95), rgba(243, 252, 255, 0.8));
}

body.theme-men .choice-card-men {
  background: linear-gradient(180deg, rgba(206, 239, 251, 0.95), rgba(243, 252, 255, 0.82));
}

body.theme-men .choice-card-women {
  background: linear-gradient(180deg, rgba(238, 245, 249, 0.95), rgba(248, 253, 255, 0.82));
}

body.theme-men .choice-label,
body.theme-men .eyebrow,
body.theme-men .formula-tag,
body.theme-men .ingredient-grid span,
body.theme-men .result-line strong {
  color: #2f84b8;
}

body.theme-men .hero-visual::before {
  background:
    linear-gradient(180deg, rgba(219, 243, 252, 0.3), rgba(179, 222, 241, 0.48)),
    url("assets/hero-backdrop.jpg") center center / cover no-repeat;
  opacity: 0.62;
}

body.theme-men .brand-mark {
  background: rgba(255, 255, 255, 0.84);
}

body.theme-men .results-copy blockquote {
  border-left-color: rgba(47, 132, 184, 0.32);
}

body.theme-men .result-line,
body.theme-men .formula-panel li {
  border-top-color: rgba(91, 141, 166, 0.2);
}

body.theme-neutral {
  background:
    radial-gradient(circle at top left, rgba(228, 239, 243, 0.95), transparent 34%),
    radial-gradient(circle at top right, rgba(244, 234, 239, 0.9), transparent 30%),
    linear-gradient(180deg, #f8fbfc 0%, #eef4f6 50%, #f8fafb 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/ambient-bg.png") center top / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.site-header:has(.lang-switch):not(:has(.site-nav)) {
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logo {
  width: auto;
  height: 44px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(53, 44, 52, 0.12));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.77rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.site-nav a {
  font-size: 0.94rem;
  color: var(--muted);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.lang-chip.is-active {
  color: var(--text);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(151, 48, 95, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(103, 58, 79, 0.12);
  color: var(--text);
}

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

.section {
  padding: 52px 0;
}

.hero {
  min-height: calc(100svh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.hub-page .hero {
  min-height: auto;
  padding-top: 16px;
  padding-bottom: 18px;
}

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

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.ingredients-copy h2,
.cta-band h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.7rem, 9vw, 7.8rem);
}

.hero h1 span {
  display: block;
  color: var(--accent-deep);
}

.hero-lead,
.formula-panel p,
.benefit p,
.ingredients-copy p,
.results-copy p,
.site-footer p,
.cta-band p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lead {
  margin: 22px 0 0;
  font-size: 1.05rem;
  max-width: 570px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-split-callout {
  display: inline-grid;
  gap: 6px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-split-callout strong {
  font-size: 1rem;
}

.hero-split-callout span {
  color: var(--muted);
  line-height: 1.55;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-notes li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(115, 59, 84, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 2% 12% 10%;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.28)),
    url("assets/hero-backdrop.jpg") center center / cover no-repeat;
  opacity: 0.78;
  filter: saturate(0.92);
  box-shadow: var(--shadow);
  z-index: 1;
}

.hub-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, rgba(255, 223, 236, 0.92), rgba(233, 246, 251, 0.82));
}

.hub-page .floating-proof {
  right: auto;
  left: 4%;
  top: 8%;
  width: min(220px, 40%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.orb-one {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(241, 149, 192, 0.3), rgba(241, 149, 192, 0));
  top: 6%;
  right: 6%;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 204, 218, 0.45), rgba(255, 204, 218, 0));
  bottom: 2%;
  left: 2%;
}

.hero-model {
  position: absolute;
  inset: auto 8% 0 auto;
  width: min(92%, 540px);
  z-index: 2;
  filter: drop-shadow(0 30px 65px rgba(60, 22, 40, 0.18));
  animation: floatModel 5.6s ease-in-out infinite;
}

.hero-shot {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: min(48%, 320px);
  z-index: 3;
  filter: drop-shadow(0 24px 54px rgba(104, 47, 76, 0.28));
  animation: floatShot 4.8s ease-in-out infinite;
}

.hub-product {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 24px 54px rgba(104, 47, 76, 0.22));
}

.hub-product-women {
  width: min(34%, 240px);
  left: 10%;
  bottom: 13%;
  transform: rotate(-5deg);
}

.hub-product-men {
  width: min(34%, 240px);
  right: 10%;
  top: 14%;
  transform: rotate(5deg);
}

.floating-proof {
  position: absolute;
  right: 2%;
  top: 16%;
  z-index: 4;
  width: min(250px, 44%);
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-proof strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.ingredients-copy h2,
.cta-band h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

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

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

.choice-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.choice-card-men {
  background: linear-gradient(180deg, rgba(226, 245, 250, 0.84), rgba(255, 255, 255, 0.45));
}

.choice-card-men .button-primary {
  background: linear-gradient(135deg, #55b9e7 0%, #2f84b8 100%);
  box-shadow: 0 18px 38px rgba(74, 151, 197, 0.28);
}

.choice-card-women {
  background: linear-gradient(180deg, rgba(255, 232, 242, 0.86), rgba(255, 255, 255, 0.45));
}

.choice-visual {
  min-height: 100%;
  display: grid;
  place-items: end center;
  padding: 20px 0 0;
}

.choice-visual img {
  max-height: 420px;
  object-fit: contain;
}

.choice-copy {
  padding: 28px 28px 28px 0;
}

.choice-label {
  margin: 0 0 10px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-copy h3 {
  margin: 0;
  font-size: 1.8rem;
}

.choice-copy p:last-of-type {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-video {
  padding-top: 8px;
}

.video-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at left top, rgba(255, 225, 238, 0.85), transparent 28%),
    radial-gradient(circle at right top, rgba(214, 241, 251, 0.82), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 252, 0.78));
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: calc(var(--radius-xl) - 10px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14)),
    url("assets/hero-backdrop.jpg") center center / cover no-repeat;
  opacity: 0.38;
  filter: blur(1px) saturate(0.9);
  transform: scale(1.02);
}

.video-shell video {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 390px);
  height: auto;
  max-height: 78vh;
  aspect-ratio: auto;
  background: transparent;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(48, 69, 84, 0.26);
  border: 8px solid rgba(255, 255, 255, 0.72);
}

.hub-page .dual-products {
  padding-top: 10px;
}

.hub-page .dual-products .section-heading {
  margin-bottom: 18px;
}

.benefit {
  min-height: 260px;
  padding: 24px 20px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.14));
}

.benefit-index {
  display: inline-block;
  margin-bottom: 34px;
  color: rgba(142, 41, 89, 0.48);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit h3,
.formula-panel h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.formula-layout,
.results-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.formula-panel,
.results-points,
.results-copy,
.cta-band,
.ingredient-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.formula-panel {
  padding: 30px;
}

.formula-panel.accent {
  background: linear-gradient(180deg, rgba(255, 216, 234, 0.76), rgba(255, 255, 255, 0.54));
}

.formula-tag {
  margin: 0 0 14px;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 800;
}

.formula-panel ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.formula-panel li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

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

.ingredients-visual {
  padding: 20px;
}

.ingredients-visual img {
  filter: drop-shadow(0 28px 70px rgba(85, 35, 61, 0.2));
}

.ingredient-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ingredient-grid div {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.ingredient-grid span,
.result-line strong {
  display: block;
  color: var(--accent-deep);
  font-size: 1.7rem;
  font-weight: 800;
}

.micro-copy {
  margin-top: 14px;
  font-size: 0.9rem;
}

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

.ingredient-card {
  padding: 26px 22px;
}

.ingredient-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.ingredient-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.results-copy,
.results-points {
  padding: 30px;
}

.results-copy blockquote {
  margin: 24px 0 12px;
  padding-left: 18px;
  border-left: 2px solid rgba(142, 41, 89, 0.24);
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--text);
}

.results-copy cite {
  color: var(--muted);
  font-style: normal;
}

.results-points {
  display: grid;
  gap: 10px;
  align-content: start;
}

.result-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.result-line span {
  color: var(--muted);
  max-width: 240px;
  text-align: right;
  line-height: 1.45;
}

.cta-band {
  padding: 44px;
  text-align: center;
}

.cta-band p {
  max-width: 700px;
  margin: 18px auto 0;
}

.cta-band .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 0 0 96px;
  max-width: 900px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-small {
  margin-top: 12px;
  font-size: 0.9rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(151, 48, 95, 0.28);
  display: none;
  align-items: center;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatModel {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatShot {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(12px) rotate(2deg);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual::before {
    inset: 6% 0 11% 6%;
  }

  .benefit-track,
  .ingredients,
  .formula-layout,
  .results-layout,
  .ingredient-detail-grid,
  .product-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card {
    grid-template-columns: 1fr;
  }

  .choice-copy {
    padding: 0 24px 24px;
  }

  .benefit:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hub-page .hero {
    gap: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .hub-page .hero-copy {
    display: grid;
    gap: 10px;
  }

  .hub-page .hero-lead {
    margin-top: 0;
  }

  .hub-page .hero-actions {
    margin-top: 8px;
  }

  .hub-page .hero-split-callout {
    margin-top: 4px;
  }

  .lang-switch {
    margin-left: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hub-page .hero-visual {
    min-height: 280px;
    order: -1;
    margin-top: 0;
  }

  .hero-shot {
    width: min(56%, 260px);
    bottom: 12%;
  }

  .floating-proof {
    width: auto;
    max-width: 220px;
  }

  .benefit-track,
  .ingredients,
  .formula-layout,
  .results-layout,
  .ingredient-grid,
  .ingredient-detail-grid,
  .product-choice-grid {
    grid-template-columns: 1fr;
  }

  .hub-page .dual-products {
    padding-top: 0;
  }

  .hub-page .dual-products .section-heading {
    display: none;
  }

  .hub-page .product-choice-grid {
    gap: 12px;
  }

  .hub-page .choice-card {
    gap: 10px;
  }

  .hub-page .choice-visual img {
    max-height: 220px;
  }

  .hub-page .choice-copy {
    padding: 0 18px 18px;
  }

  .hub-page .choice-copy h3 {
    font-size: 1.45rem;
  }

  .benefit:last-child {
    grid-column: auto;
  }

  .result-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-line span {
    max-width: none;
    text-align: left;
  }

  .video-shell {
    min-height: 500px;
    padding: 28px 18px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    position: relative;
    align-items: flex-start;
  }

  .header-cta {
    display: none;
  }

  .lang-switch {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    justify-content: flex-end;
    z-index: 3;
  }

  .lang-chip {
    min-height: 38px;
    padding: 0 10px;
  }

  .brand-logo {
    height: 38px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hub-page .hero {
    padding-top: 0;
  }

  .hub-page .hero-copy {
    gap: 8px;
    padding-top: 0;
  }

  .hub-page .hero h1 {
    font-size: clamp(2.3rem, 12.5vw, 3.4rem);
  }

  .hub-page .hero-lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 18vw, 4.8rem);
  }

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

  .hero-notes {
    gap: 8px;
  }

  .hero-notes li {
    font-size: 0.82rem;
  }

  .hero-split-callout {
    width: 100%;
  }

  .hub-page .hero-split-callout {
    padding: 12px 14px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 6px;
  }

  .hub-page .hero-visual {
    min-height: 220px;
  }

  .hero-visual::before {
    inset: 2% 0 14% 2%;
    border-radius: 28px;
  }

  .hub-page .hero-visual::before {
    inset: 4% 0 10% 0;
  }

  .hero-model {
    right: -4%;
    width: min(96%, 420px);
  }

  .hero-shot {
    width: min(52%, 210px);
    left: -2%;
    bottom: 10%;
  }

  .floating-proof {
    top: 4%;
    right: 0;
    left: auto;
    padding: 14px 16px;
  }

  .hub-page .floating-proof {
    top: 8%;
    right: 4%;
    max-width: 168px;
    padding: 10px 12px;
  }

  .hub-page .floating-proof strong {
    font-size: 0.86rem;
    line-height: 1.2;
  }

  .hub-page .floating-proof span {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hub-page .hero-visual .floating-proof {
    top: -18px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    min-width: 180px;
    max-width: calc(100% - 28px);
    text-align: center;
    z-index: 5;
  }

  .formula-panel,
  .ingredient-card,
  .results-copy,
  .results-points,
  .cta-band {
    padding: 24px 18px;
  }

  .hub-product-women {
    left: 8%;
    bottom: 14%;
    width: min(34%, 130px);
  }

  .hub-product-men {
    right: 8%;
    top: 16%;
    width: min(34%, 130px);
  }

  .hub-page .hero-actions {
    gap: 10px;
  }

  .hub-page .hero-actions .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .hub-page .product-choice-grid {
    gap: 10px;
  }

  .hub-page .choice-card {
    border-radius: 24px;
  }

  .hub-page .choice-visual {
    padding-top: 10px;
  }

  .hub-page .choice-visual img {
    max-height: 162px;
  }

  .hub-page .choice-copy {
    padding: 0 14px 14px;
  }

  .hub-page .choice-copy h3 {
    font-size: 1.24rem;
  }

  .hub-page .choice-copy p:last-of-type {
    margin-top: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
  }

  .video-shell {
    min-height: 420px;
    padding: 20px 12px;
  }

  .video-shell::before {
    inset: 12px;
  }

  .video-shell video {
    width: min(100%, 290px);
    border-radius: 24px;
    border-width: 6px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}
