:root {
  --cream: #F9F6F1;
  --white: #FFFFFF;
  --clay: #B8784A;
  --clay-dark: #965E35;
  --clay-light: #F5E0D2;
  --clay-xlight: #FAF0E8;
  --sage: #4A7A66;
  --sage-light: #DDF0E8;
  --text-dark: #1C1410;
  --text-body: #3A2E26;
  --text-muted: #6A5848;
  --blush: #F5E0D2;
  --blush-mid: #EBC9B2;
  --border: #E8DDD4;
  --dark-bg: #2C1F18;
  --shadow: 0 4px 20px rgba(28, 20, 16, 0.07);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text-body);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.78;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(184, 120, 74, 0.45);
  outline-offset: 3px;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(249, 246, 241, 0.93);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 10px 26px rgba(28, 20, 16, 0.08);
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: var(--text-dark);
}

.logo span {
  color: var(--clay);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-contact {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.report-nav .nav-contact {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 100px;
  padding: 16px 30px;
  background: var(--clay);
  box-shadow: 0 4px 20px rgba(184, 120, 74, 0.3);
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--clay-dark);
  box-shadow: 0 8px 26px rgba(184, 120, 74, 0.38);
  transform: translateY(-2px);
}

.btn.light {
  background: var(--cream);
  color: var(--clay-dark);
  box-shadow: none;
}

.btn.outline {
  border: 1px solid var(--clay);
  background: transparent;
  box-shadow: none;
  color: var(--clay-dark);
}

.btn.sage {
  background: var(--sage);
  box-shadow: none;
}

.btn.small,
.site-nav .btn {
  min-height: 40px;
  padding: 12px 20px;
  font-size: 0.92rem;
}

.page-shell {
  padding-top: 62px;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

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

.section.white + .section.white {
  padding-top: clamp(22px, 3.5vw, 44px);
}

.happening-section {
  padding-bottom: clamp(24px, 3.5vw, 44px);
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow,
.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 100px;
  padding: 6px 14px;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

em {
  color: var(--clay);
}

.lede {
  color: var(--text-body);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.muted {
  color: var(--text-muted);
}

.about-pullquote {
  margin: 28px 0;
  border-left: 4px solid #B87A4A;
  padding: 18px 0 18px 22px;
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.symptom-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 20px;
}

.symptom-pills span {
  border-radius: 999px;
  padding: 8px 12px;
  background: #F0EDE8;
  color: #B87A4A;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

.about-report-preview {
  margin: 44px calc(50% - 50vw) 0;
}

.about-page {
  display: grid;
  gap: 0;
  padding-bottom: 0;
}

.about-section {
  width: 100%;
}

.about-divider {
  width: min(100%, 760px);
  height: 1px;
  margin: 30px auto;
  background: var(--border);
}

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

.domain-card-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(28, 20, 16, 0.035);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.domain-card-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, calc(50% - 6px));
}

.domain-card-grid span {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #B87A4A;
}

.about-receive-section {
  padding: 0;
  background: transparent;
}

.about-receive-section .section-head {
  margin: 0 auto 22px;
}

.about-feature-grid {
  max-width: 820px;
  margin: 0 auto;
}

.about-preview-wrap {
  display: grid;
  justify-items: center;
  margin-top: 28px;
}

.about-preview-wrap .report-preview-card {
  width: min(100%, 420px);
  min-height: 0;
}

.about-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 20px 36px;
  text-align: center;
}

.trust-row.about-trust {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: min(100%, 900px);
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.trust-row.about-trust span {
  white-space: nowrap;
}

.hero {
  display: grid;
  min-height: min(700px, calc(100vh - 62px));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  background: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  padding: clamp(34px, 5vw, 66px) clamp(22px, 6vw, 80px) clamp(42px, 6vw, 76px);
}

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "✓";
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-row.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.trust-row.value-stack,
.intro-value-list.value-stack {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px 12px;
}

.trust-row.value-stack span:first-child,
.intro-value-list.value-stack span:first-child {
  flex-basis: auto;
}

.report-preview-cta .trust-row.value-stack,
.intro-value-list.value-stack {
  justify-content: center;
}

.hero-copy > .trust-row.value-stack {
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -10px;
  text-align: left;
}

.value-stack span {
  white-space: normal;
}

.hero-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.mobile-hero-image {
  display: none;
}

.mobile-hero-subtext,
.mobile-hero-cta,
.mobile-trust-line,
.mobile-report-device {
  display: none;
}

.hero-image::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(249, 246, 241, 0) 100%);
  content: "";
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.16);
  transform-origin: center 24%;
}

.mobile-report-device {
  perspective: 1200px;
  text-align: center;
}

.mobile-report-preview {
  position: relative;
  overflow: hidden;
  width: 200px;
  min-height: 420px;
  margin: 0 auto;
  border: 10px solid #1A1612;
  border-radius: 36px;
  background: #FFFFFF;
  box-shadow: -10px 16px 40px rgba(26, 22, 18, 0.2), -3px 5px 10px rgba(26, 22, 18, 0.12);
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
}

.mobile-report-preview::after {
  display: none;
}

.mobile-report-notch {
  width: 60px;
  height: 8px;
  margin: 0 auto 6px;
  border-radius: 4px;
  background: #1A1612;
}

.mobile-report-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  padding: 9px 13px;
  background: #1A1612;
  font-size: 6.5px;
}

.mobile-report-label {
  display: inline-block;
  margin-top: 8px;
  color: #B87A4A;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.mobile-report-header-label {
  color: rgba(249, 246, 241, 0.62);
  font-size: 6.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-report-logo {
  color: #F7F4EF;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.mobile-report-logo span {
  color: var(--clay);
}

.mobile-report-meta {
  border-bottom: 0.5px solid #E0DDD7;
  padding: 10px 13px;
  background: #F7F4EF;
  text-align: left;
}

.mobile-report-meta span {
  display: block;
  margin-bottom: 3px;
  color: #B87A4A;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-report-preview h2 {
  margin: 0;
  color: #1A1612;
  font-size: 13px;
  line-height: 1.16;
}

.mobile-report-meta p {
  display: inline-flex;
  margin: 7px 0 0;
  border-radius: 999px;
  padding: 5px 8px;
  background: #1A1612;
  color: #FFFFFF;
  font-size: 7.5px;
  line-height: 1;
}

.mobile-report-body {
  padding: 10px 13px;
  background: #FFFFFF;
}

.mobile-section-label,
.mobile-report-guide span,
.mobile-report-summary span {
  display: block;
  color: #B87A4A;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.mobile-profile-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.mobile-radar-chart {
  display: block;
  width: 76px;
  height: auto;
  margin: 0 auto;
}

.mobile-radar-chart polygon[fill] {
  transform-box: fill-box;
  transform-origin: center;
  animation: radarGrow 700ms ease-out both;
}

.mobile-preview-bars {
  display: grid;
  gap: 5px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.mobile-preview-bars div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  color: var(--text-muted);
  font-size: 6.5px;
}

.mobile-preview-bars i {
  position: relative;
  overflow: hidden;
  height: 4px;
  border-radius: 999px;
  background: #f2e9df;
}

.mobile-preview-bars i::before {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--bar-color, #B87A4A);
  content: "";
  transform-origin: left center;
  animation: barReveal 650ms ease-out both;
}

.mobile-preview-bars .bar-sleep { --bar-color: #1A1612; }
.mobile-preview-bars .bar-mood { --bar-color: #B87A4A; }
.mobile-preview-bars .bar-energy { --bar-color: rgba(184, 122, 74, 0.6); }
.mobile-preview-bars .bar-cognitive,
.mobile-preview-bars .bar-body { --bar-color: #D4CFC7; }
.mobile-preview-bars .bar-mood i::before { animation-delay: 90ms; }
.mobile-preview-bars .bar-energy i::before { animation-delay: 180ms; }
.mobile-preview-bars .bar-cognitive i::before { animation-delay: 270ms; }
.mobile-preview-bars .bar-body i::before { animation-delay: 360ms; }

@keyframes radarGrow {
  from {
    opacity: 0.3;
    transform: scale(0.08);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes barReveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.mobile-report-divider {
  height: 0.5px;
  margin: 10px 0;
  background: #E0DDD7;
}

.mobile-report-summary {
  position: relative;
  background: #FFFFFF;
  text-align: left;
}

.mobile-report-summary span {
  margin-bottom: 5px;
}

.mobile-report-summary p {
  position: relative;
  max-height: 42px;
  margin: 0;
  overflow: hidden;
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-style: italic;
  line-height: 1.55;
}

.mobile-report-summary p::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #FFFFFF 82%);
  content: "";
  pointer-events: none;
}

.mobile-report-guide p {
  margin: 7px 0 0;
  border-left: 1.5px solid #E0C9A8;
  padding-left: 7px;
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8.5px;
  line-height: 1.35;
}

.mobile-report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 0.5px solid #E0DDD7;
  padding: 8px 13px;
  background: #F7F4EF;
}

.mobile-report-footer em {
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
}

.mobile-report-footer span {
  color: #aaa;
  font-size: 7.5px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.55);
}

.stat {
  padding: 38px 28px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  color: var(--blush-mid);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.1;
}

.stat sup {
  margin-left: 3px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.68rem;
  vertical-align: super;
}

.stat sup a {
  color: #B87A4A;
  text-decoration: none;
}

.tag-strip {
  border-block: 1px solid var(--border);
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
}

.report-preview-section {
  background: linear-gradient(180deg, var(--cream) 0%, #FFF9F3 100%);
}

.report-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 48px);
}

.report-preview-section .section-head {
  gap: 8px;
}

.report-preview-section .section-head .eyebrow {
  margin-bottom: 0;
}

.report-preview-section .section-head > p {
  margin-top: 0;
}

.desktop-report-device {
  display: grid;
  align-self: stretch;
  justify-items: center;
  align-items: center;
  min-height: 100%;
  perspective: 1200px;
}

.desktop-report-device .mobile-report-preview {
  width: min(100%, 292px);
  min-height: 612px;
  margin: 0;
  border-width: 12px;
  border-radius: 46px;
}

.desktop-report-device .mobile-report-notch {
  width: 84px;
  height: 10px;
  margin-bottom: 8px;
}

.desktop-report-device .mobile-report-preview-head {
  padding: 13px 18px;
}

.desktop-report-device .mobile-report-logo {
  font-size: 17px;
}

.desktop-report-device .mobile-report-header-label {
  font-size: 9px;
}

.desktop-report-device .mobile-report-meta {
  padding: 15px 18px;
}

.desktop-report-device .mobile-report-meta span,
.desktop-report-device .mobile-section-label,
.desktop-report-device .mobile-report-guide span,
.desktop-report-device .mobile-report-summary span {
  font-size: 8.5px;
}

.desktop-report-device .mobile-report-preview h2 {
  font-size: 19px;
}

.desktop-report-device .mobile-report-meta p {
  padding: 7px 10px;
  font-size: 10.5px;
}

.desktop-report-device .mobile-report-body {
  padding: 15px 18px;
}

.desktop-report-device .mobile-profile-row {
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 13px;
  margin-top: 12px;
}

.desktop-report-device .mobile-radar-chart {
  width: 108px;
}

.desktop-report-device .mobile-preview-bars {
  gap: 8px;
}

.desktop-report-device .mobile-preview-bars div {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 8px;
  font-size: 9px;
}

.desktop-report-device .mobile-preview-bars i {
  height: 6px;
}

.desktop-report-device .mobile-report-divider {
  margin: 15px 0;
}

.desktop-report-device .mobile-report-summary span {
  margin-bottom: 8px;
}

.desktop-report-device .mobile-report-summary p {
  max-height: 58px;
  font-size: 12.5px;
  line-height: 1.55;
}

.desktop-report-device .mobile-report-summary p::after {
  height: 30px;
}

.desktop-report-device .mobile-report-guide p {
  margin-top: 9px;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.35;
}

.desktop-report-device .mobile-report-footer {
  padding: 12px 18px;
}

.desktop-report-device .mobile-report-footer em {
  font-size: 13px;
}

.desktop-report-device .mobile-report-footer span {
  font-size: 10.5px;
}

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

.receive-list article {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 18px rgba(28, 20, 16, 0.04);
}

.receive-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 10px;
  background: #F0EDE8;
  color: #B87A4A;
}

.receive-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.receive-list h3 {
  margin: 0 0 4px;
  color: var(--text-dark);
  font-size: 0.93rem;
}

.receive-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.report-preview-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 21px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-preview-cta {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 2px;
  text-align: center;
}

.report-preview-cta .trust-row {
  align-items: center;
}

.report-preview-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 68px;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--white));
  content: "";
  pointer-events: none;
}

.preview-card-head,
.preview-signal,
.preview-note,
.preview-summary {
  position: relative;
  z-index: 1;
}

.preview-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.preview-card-head .preview-label {
  color: #B87A4A;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.preview-signal {
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 13px 14px;
  background: var(--white);
}

.preview-signal span,
.preview-signal small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
}

.preview-signal strong {
  display: block;
  margin: 3px 0;
  color: var(--text-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.15;
}

.mini-radar {
  display: block;
  width: 150px;
  height: auto;
  margin: 6px auto;
  overflow: visible;
}

.mini-radar::before {
  display: none;
}

.mini-radar .radar-grid polygon,
.mini-radar .radar-axes line {
  stroke: rgba(105, 91, 76, 0.2);
  stroke-width: 1;
}

.mini-radar .radar-shape {
  fill: rgba(184, 122, 74, 0.28);
  stroke: #B87A4A;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mini-radar .radar-points circle {
  fill: #B87A4A;
  stroke: #fff;
  stroke-width: 1.3;
}

.mini-radar .radar-labels text {
  fill: var(--text-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.preview-bars {
  display: grid;
  gap: 8px;
}

.preview-bars div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
}

.preview-bars i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(232, 221, 212, 0.78);
}

.preview-bars i::after {
  display: block;
  width: var(--w);
  height: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  content: "";
}

.preview-summary {
  margin-top: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.preview-summary span {
  display: block;
  margin-bottom: 4px;
  color: #B87A4A;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-summary p {
  position: relative;
  max-height: 52px;
  margin: 0;
  overflow: hidden;
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11.5px;
  line-height: 1.65;
}

.preview-summary p::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white) 84%);
  content: "";
  pointer-events: none;
}

.preview-note {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.preview-note strong {
  color: var(--text-dark);
}

.preview-note p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.tag-cloud {
  display: flex;
  max-width: 1050px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
}

.tag-cloud span {
  border-radius: 100px;
  padding: 9px 15px;
  background: var(--blush);
  color: var(--text-body);
  line-height: 1.2;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}

.photo-quote {
  position: relative;
}

.photo-quote img {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.quote-card {
  position: absolute;
  right: -22px;
  bottom: 30px;
  max-width: 292px;
  border: 1px solid rgba(232, 221, 212, 0.9);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 18px 42px rgba(28, 20, 16, 0.12);
}

.quote-stat {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 0.95;
}

.quote-card p {
  margin: 0;
  color: var(--text-body);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.36;
}

.quote-card sup {
  color: #B87A4A;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.58em;
  font-style: normal;
  line-height: 0;
  vertical-align: super;
}

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

.card,
.voice-card,
.step-card,
.path-card,
.locked-item,
.letter,
.email-panel,
.quiz-panel {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.voice-card {
  padding: 26px;
}

.stars {
  color: var(--clay);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0.52;
}

.voice-card blockquote {
  margin: 14px 0 22px;
  color: var(--text-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  margin-inline: auto;
}

.step-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 26px 28px 30px;
  text-align: center;
}

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

.badge {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 auto 2px;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  font-weight: 700;
}

.bottom-cta {
  background: linear-gradient(150deg, #2C1F18 0%, #4A3020 50%, #3A2518 100%);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.bottom-cta h2 {
  color: var(--cream);
}

.site-footer {
  padding: 42px 20px 38px;
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.sources-section {
  padding: 16px 20px 14px;
  border-top: 1px solid rgba(232, 221, 212, 0.45);
  background: var(--cream);
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.45;
  opacity: 0.68;
}

.sources-section h2 {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sources-section p {
  max-width: 760px;
  margin: 0;
}

.footer-source {
  max-width: 980px !important;
  margin: 14px auto 18px !important;
  color: rgba(255, 255, 255, 0.34) !important;
  font-size: 0.62rem !important;
  line-height: 1.35 !important;
}

.site-footer .logo {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
}

.site-footer p {
  max-width: 760px;
  margin: 0 auto 14px;
  opacity: 0.72;
}

.footer-links {
  display: grid;
  justify-content: center;
  gap: 10px;
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  color: #C8C3BB !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px !important;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.34 !important;
  text-align: center;
}

.hormonal-nav .current-page-label {
  color: #B87A4A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hormonal-nav {
  justify-content: center;
}

.hormonal-nav .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hormonal-nav .nav-links {
  margin-left: auto;
}

.hormonal-page {
  padding-top: 62px;
  background: #F7F4EF;
}

.hormonal-hero {
  padding: 44px 32px;
  background: #1A1612;
  text-align: center;
}

.hormonal-pill {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid #B87A4A;
  border-radius: 999px;
  padding: 7px 14px;
  color: #B87A4A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hormonal-hero h1 {
  max-width: 680px;
  margin: 0 auto;
  color: #F7F4EF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.24;
}

.hormonal-hero h1 em {
  color: #B87A4A;
  font-style: italic;
}

.hormonal-hero p {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(247, 244, 239, 0.6);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.hormonal-body {
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px 36px;
}

.hormonal-section p {
  max-width: 900px;
  margin: 14px 0 0;
  color: #444;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.hormonal-label {
  display: block;
  margin-bottom: 16px;
  color: #B87A4A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}

.hormonal-divider {
  height: 0.5px;
  margin: 28px 0;
  background: #E0DDD7;
}

.hh-step-grid {
  display: grid;
  gap: 14px;
}

.hh-step-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  border: 0.5px solid #E0DDD7;
  border-radius: 12px;
  padding: 18px 20px;
  background: #fff;
}

.hh-step-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #B87A4A;
  color: #F7F4EF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.hh-step-card h2 {
  margin: 0 0 7px;
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.hh-step-card p {
  margin: 0;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.hh-step-card em {
  display: block;
  margin-top: 7px;
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.45;
}

.treatment-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.treatment-card {
  overflow: hidden;
  border: 0.5px solid #E0DDD7;
  border-radius: 12px;
  background: #fff;
}

.treatment-card.is-featured {
  border: 1.5px solid #B87A4A;
}

.option-badge {
  padding: 9px 22px;
  background: #B87A4A;
  color: #F7F4EF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.treatment-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: #F0EDE8;
}

.treatment-head h2 {
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}

.treatment-head div {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}

.treatment-head strong {
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.1;
}

.treatment-head span {
  color: #888;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.2;
}

.treatment-body {
  padding: 18px 22px;
}

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

.pros-label,
.consider-label {
  display: block;
  margin-bottom: 9px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pros-label {
  color: #4A8A75;
}

.consider-label {
  color: #888;
}

.pros-cons ul,
.important-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pros-cons li,
.important-list li {
  position: relative;
  padding-left: 14px;
  color: #444;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.pros-cons li + li {
  margin-top: 5px;
}

.pros-cons li::before,
.important-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B87A4A;
  content: "";
}

.pros-cons div:first-child li::before {
  background: #4A8A75;
}

.best-for {
  margin-top: 16px !important;
  border-top: 0.5px solid #E0DDD7;
  padding-top: 12px;
  color: #B87A4A !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 15px !important;
  font-style: italic;
  line-height: 1.45 !important;
}

.progesterone-note,
.partner-card {
  margin-top: 18px;
  border: 0.5px solid #E0DDD7;
  border-left: 3px solid #B87A4A;
  border-radius: 12px;
  padding: 18px 20px;
  background: #fff;
}

.progesterone-note span,
.partner-card span {
  display: block;
  margin-bottom: 9px;
  color: #B87A4A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.progesterone-note p,
.partner-card p {
  margin: 0;
  color: #444;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.plan-note {
  border-radius: 12px;
  padding: 18px 22px;
  background: #F0EDE8;
}

.plan-note p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
}

.verified-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  border: 0.5px solid #E0DDD7;
  border-radius: 10px;
  padding: 16px 20px;
  background: #F7F4EF;
}

.verified-row img {
  width: auto;
  height: 58px;
  flex: 0 0 auto;
}

.verified-row strong {
  display: block;
  color: #1A1612;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.verified-row p {
  margin: 2px 0 0;
  color: #888;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.important-list {
  display: grid;
  gap: 8px;
}

.important-list li {
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

.hormonal-cta {
  border: 0.5px solid #E0DDD7;
  border-radius: 16px;
  padding: 38px 34px;
  background: #fff;
  text-align: center;
}

.hormonal-cta h2 {
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.hormonal-cta p {
  margin: 12px auto 24px;
  color: #888;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.hh-cta-button {
  display: block;
  width: 100%;
  border-radius: 32px;
  padding: 16px;
  background: #B87A4A;
  box-shadow: 0 6px 24px rgba(184, 122, 74, 0.45), 0 2px 6px rgba(184, 122, 74, 0.3);
  color: #F7F4EF;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.hormonal-cta small {
  display: block;
  margin-top: 12px;
  color: #aaa;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.5;
}

.hormonal-cta small + small {
  margin-top: 6px;
  color: #bbb;
  font-size: 10px;
}

.hormonal-disclaimer {
  border-top: 0.5px solid #E0DDD7;
  padding: 20px 32px;
}

.hormonal-disclaimer p {
  max-width: 720px;
  margin: 0 auto;
  color: #bbb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.treatment-options-section {
  justify-items: start;
}

.treatment-options-section .btn {
  width: fit-content;
}

.quiz-wrap,
.results-wrap,
.report-wrap,
.simple-page {
  padding: 104px 20px 70px;
}

.results-wrap {
  padding-top: 58px;
  padding-bottom: 42px;
}

.report-nav {
  justify-content: center;
  min-height: 50px;
  padding-block: 8px;
  background: var(--cream);
  backdrop-filter: none;
}

.processing-wrap {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 88px 20px 42px;
  overflow: hidden;
}

.processing-wrap::before {
  position: absolute;
  inset: 50px 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 224, 210, 0.55), rgba(245, 224, 210, 0) 34%),
    radial-gradient(circle at 78% 22%, rgba(221, 240, 232, 0.45), rgba(221, 240, 232, 0) 30%);
  content: "";
}

.processing-card {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(34px, 6vw, 58px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(28, 20, 16, 0.08);
  text-align: center;
}

.processing-card .eyebrow {
  margin-inline: auto;
  margin-bottom: 16px;
}

.processing-card h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.processing-card > p {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.65;
}

.processing-orbit {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 22px;
  border: 1px solid rgba(232, 221, 212, 0.9);
  border-radius: 50%;
  animation: processing-breathe 2.8s ease-in-out infinite;
}

.processing-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  opacity: 0.74;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(41px);
  animation: processing-orbit 5.6s linear infinite;
}

.processing-orbit span:nth-child(1) {
  --angle: -90deg;
}

.processing-orbit span:nth-child(2) {
  --angle: 30deg;
  background: var(--sage);
}

.processing-orbit span:nth-child(3) {
  --angle: 150deg;
  background: var(--blush-mid);
}

.processing-progress {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 24px auto 0;
}

.processing-steps {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.35;
}

.processing-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  opacity: 0.42;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.processing-steps li::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(184, 122, 74, 0.32);
  content: "";
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.processing-steps li.is-active,
.processing-steps li.is-complete {
  opacity: 1;
  transform: translateY(0);
  color: var(--text-body);
}

.processing-steps li.is-active::before {
  background: var(--clay);
  box-shadow: 0 0 0 7px rgba(184, 122, 74, 0.12);
}

.processing-steps li.is-complete::before {
  background: var(--sage);
}

.processing-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.3;
}

.processing-meta span {
  text-align: left;
  transition: opacity 0.18s ease;
}

.processing-meta strong {
  color: var(--clay-dark);
}

.processing-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 100px;
  background: #f2e9df;
  box-shadow: inset 0 0 0 1px rgba(232, 221, 212, 0.62);
}

.processing-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #B87A4A;
  transition: width 0.22s ease-out;
}

.processing-helper {
  color: var(--text-muted) !important;
  font-size: 0.92rem !important;
}

.processing-complete .processing-card {
  transform: translateY(-3px);
  transition: transform 0.42s ease;
}

@keyframes processing-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 120, 74, 0.08);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(184, 120, 74, 0);
    transform: scale(1.035);
  }
}

@keyframes processing-orbit {
  from {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(41px);
  }

  to {
    transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateX(41px);
  }
}

.quiz-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 82px 20px 36px;
  overflow: hidden;
}

.quiz-wrap::before {
  position: absolute;
  inset: 62px 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 224, 210, 0.62), rgba(245, 224, 210, 0) 34%),
    radial-gradient(circle at 84% 18%, rgba(221, 240, 232, 0.56), rgba(221, 240, 232, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(249, 246, 241, 0));
  content: "";
}

.quiz-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 18px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.2;
}

.progress {
  height: 7px;
  margin: 8px 0 18px;
  overflow: hidden;
  border-radius: 100px;
  background: #f2e9df;
  box-shadow: inset 0 0 0 1px rgba(232, 221, 212, 0.62);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #B87A4A;
  transition: width 0.28s ease;
}

.quiz-question-panel {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.quiz-question-panel.question-leaving,
.quiz-question-panel.question-entering {
  opacity: 0;
  transform: translateY(8px);
}

.answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.answer-card {
  position: relative;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 10px 38px 10px 15px;
  background: var(--white);
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: left;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.answer-card.selected {
  border-color: var(--clay);
  background: var(--clay-xlight);
}

@media (hover: hover) and (pointer: fine) {
  .answer-card:hover {
    border-color: var(--clay);
    background: var(--clay-xlight);
  }
}

.answer-card:active {
  border-color: var(--clay);
  background: var(--clay-xlight);
}

.answer-card.selected::after {
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--clay);
  content: "✓";
  font-weight: 800;
  transform: translateY(-50%);
}

.back-link {
  min-height: 40px;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  text-decoration: underline;
}

.quiz-panel h1 {
  max-width: none;
  font-size: clamp(1.32rem, 1.9vw, 1.75rem);
  line-height: 1.14;
}

.quiz-intro {
  display: grid;
  width: min(100%, 1120px);
  max-width: 1120px;
  gap: 0;
  text-align: center;
  padding: clamp(42px, 6vw, 64px) clamp(28px, 6vw, 76px);
  border-radius: 28px;
}

.quiz-intro .eyebrow {
  margin-inline: auto;
  margin-bottom: 18px;
  padding: 8px 24px;
  font-size: 0.86rem;
}

.quiz-intro h1 {
  font-size: clamp(2.45rem, 4.4vw, 4.1rem);
  line-height: 1.02;
}

.quiz-intro p {
  margin: 0;
}

.intro-copy {
  display: grid;
  gap: 20px;
}

.intro-start {
  display: grid;
  gap: 16px;
  margin-top: 2px;
}

.start-form {
  display: grid;
  max-width: 430px;
  gap: 12px;
  margin: 0 auto;
  text-align: left;
}

.start-form label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
}

.start-form .btn {
  width: 100%;
}

.intro-value-list {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.intro-value-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.intro-value-list span::before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
}

.intro-lede {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  line-height: 1.55;
}

.helper-note {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.helper-note {
  text-align: center;
}

.start-form .helper-note {
  font-size: 0.82rem;
  line-height: 1.4;
}

.result-kicker {
  margin: 0 0 4px;
  color: var(--text-muted);
  line-height: 1.35;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 12px;
}

.chart-card,
.domain-panel,
.report-section {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chart-card,
.domain-panel {
  min-height: 270px;
}

.chart-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 4px;
}

.domain-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 8px;
}

.chart-box {
  width: min(100%, 275px);
  margin: 0 auto;
  padding: 0;
  align-self: center;
}

.domain-bars {
  display: grid;
  gap: 8px;
  align-content: center;
}

.domain-row {
  display: grid;
  gap: 4px;
}

.domain-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.domain-label strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.domain-label span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 100px;
  background: var(--border);
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--score-color, var(--sage));
}

.locked-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.locked-item {
  padding: 12px 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: center;
}

.email-panel {
  max-width: 880px;
  margin: 10px auto 0;
  padding: 14px 16px;
  text-align: center;
}

.pattern-portrait-title {
  margin: 16px auto 12px;
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.result-hero {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.result-hero .eyebrow {
  margin-inline: auto;
  margin-bottom: 5px;
  padding: 5px 13px;
  font-size: 0.68rem;
}

.result-hero h2 {
  margin-bottom: 3px;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}

.result-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.38;
}

.pattern-portrait-card {
  position: relative;
  max-width: 880px;
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-left: 4px solid #B87A4A;
  border-radius: 16px;
  padding: 22px 26px;
  background: #F1ECE3;
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
}

.pattern-portrait-card p {
  margin: 0;
}

.pattern-portrait-card p + p {
  margin-top: 12px;
}

.pattern-portrait-card.is-preview {
  max-height: 118px;
}

.pattern-portrait-card.is-preview::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  background: linear-gradient(180deg, rgba(241, 236, 227, 0), #F1ECE3 86%);
  content: "";
  pointer-events: none;
}

.pattern-portrait,
.result-hero .pattern-portrait {
  max-width: 760px;
  margin: 14px auto 0;
  border: 1px solid rgba(232, 221, 212, 0.84);
  border-radius: 16px;
  padding: 18px clamp(18px, 3vw, 26px);
  background: rgba(249, 246, 241, 0.72);
  color: #1A1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}

.report-section > .pattern-portrait {
  max-width: none;
  margin: 16px 0 22px;
}

.report-section > .pattern-portrait-card {
  max-width: none;
  margin: 16px 0 22px;
}

.email-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  max-width: 740px;
  margin-inline: auto;
}

.email-panel h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.email-panel p {
  margin-block: 4px 8px;
  font-size: 0.92rem;
  line-height: 1.32;
  max-width: 680px;
  margin-inline: auto;
}

.email-panel .btn {
  min-height: 46px;
  padding: 12px 20px;
  white-space: nowrap;
}

.email-panel .form-error {
  grid-column: 1 / -1;
}

.email-panel .muted {
  grid-column: 1 / -1;
  margin-bottom: 0;
  margin-top: -2px;
  font-size: 0.78rem;
  text-align: center;
}

.input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--white);
  color: var(--text-dark);
}

.input:focus {
  border-color: var(--clay);
  outline: 0;
}

.form-error {
  min-height: 24px;
  color: #8B2F22;
  font-size: 0.92rem;
}

.report-toolbar {
  position: sticky;
  z-index: 19;
  top: 50px;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.report {
  display: grid;
  max-width: 980px;
  gap: 16px;
  margin: 0 auto;
}

.report-header {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 24px;
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.68);
}

.report-header h1 {
  color: var(--cream);
}

.report-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 28px;
  align-items: end;
}

.report-cover .eyebrow {
  margin-bottom: 14px;
}

.report-lede {
  max-width: 640px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.report-meta-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(249, 246, 241, 0.18);
  border-radius: 16px;
  background: rgba(249, 246, 241, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.report-meta-panel strong {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.report-section {
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border-color: rgba(232, 221, 212, 0.9);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.92));
  box-shadow: 0 16px 44px rgba(28, 20, 16, 0.06);
}

.report-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(184, 122, 74, 0.5), rgba(112, 139, 116, 0.28));
  content: "";
}

.report-section h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  line-height: 1.08;
}

.report-section .section-kicker,
.report-section h2,
.report-section h3 {
  break-after: avoid;
  page-break-after: avoid;
}

.report-section p,
.report-section li {
  font-size: 0.95rem;
  line-height: 1.62;
}

.report-visual-overview {
  padding: 16px 24px;
}

.report-visual-overview::before {
  height: 3px;
}

.report-visual-overview .report-profile-grid {
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
}

.report-visual-overview .domain-bars {
  padding: 4px 18px 4px 0;
}

.opening-section h2 {
  max-width: 760px;
}

.section-kicker {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.symptom-tracker-section {
  gap: 12px;
}

.tracker-part {
  display: grid;
  gap: 7px;
}

.tracker-part + .tracker-part {
  margin-top: 7px;
}

.tracker-part h3 {
  margin: 0;
  color: #1A1612;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.tracker-part > p {
  margin: 0 0 4px;
  color: #6B6560;
}

.tracker-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #E4DED5;
  border-radius: 8px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.tracker-table-wrap:focus-visible {
  outline: 2px solid #C79A77;
  outline-offset: 3px;
}

.tracker-reference-table,
.tracker-log-table {
  width: 100%;
  border-collapse: collapse;
  color: #1A1612;
  font-family: Arial, sans-serif;
}

.tracker-reference-table {
  min-width: 640px;
  font-size: 0.79rem;
}

.tracker-reference-table th,
.tracker-reference-table td {
  border-bottom: 1px solid #EEE9E1;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.tracker-reference-table thead th {
  background: #1A1612;
  color: #fff;
  font-weight: 700;
}

.tracker-reference-table tbody th {
  width: 22%;
  font-weight: 700;
}

.tracker-reference-table tbody tr:nth-child(even) {
  background: #F7F4EF;
}

.tracker-reference-table tbody tr:last-child th,
.tracker-reference-table tbody tr:last-child td {
  border-bottom: 0;
}

.tracker-log-table {
  min-width: 760px;
  table-layout: fixed;
  font-size: 0.75rem;
}

.tracker-day-col {
  width: 12%;
}

.tracker-rating-col {
  width: 11.2%;
}

.tracker-triggers-col {
  width: 32%;
}

.tracker-log-table thead th {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 5px;
  background: #1A1612;
  color: #fff;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.tracker-log-table thead th:first-child {
  text-align: left;
  padding-left: 10px;
}

.tracker-log-table thead .tracker-trigger-header {
  border-left: 2px solid #C79A77;
  background: #C79A77;
  text-align: left;
  padding-left: 10px;
}

.tracker-day-block:nth-of-type(odd) tr {
  background: #fff;
}

.tracker-day-block:nth-of-type(even) tr {
  background: #F7F4EF;
}

.tracker-log-table tbody th,
.tracker-log-table tbody td {
  border-right: 1px solid #EEE9E1;
}

.tracker-log-table tbody th {
  border-bottom: 1px solid #E4DED5;
  padding: 8px 7px;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
}

.tracker-rating-row td {
  height: 34px;
  border-bottom: 1px solid #EEE9E1;
}

.tracker-rating-row .tracker-trigger-cell {
  border-left: 2px solid rgba(199, 154, 119, 0.68);
}

.tracker-notes-row td {
  height: 27px;
  border-bottom: 1px solid #E4DED5;
  padding: 5px 8px;
}

.tracker-notes-row span {
  color: #B5ABA0;
  font-size: 0.68rem;
  font-style: italic;
}

.tracker-scale {
  margin: 2px 0 0 !important;
  color: #6B6560 !important;
  font-size: 0.73rem !important;
  font-style: italic;
}

.tracker-mobile-preview,
.tracker-mobile-prompt {
  display: none;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--sage-light);
  color: var(--sage);
  font-weight: 700;
}

.report-profile-grid {
  align-items: center;
}

.report-chart-shell {
  max-width: 280px;
  margin: 0 auto;
}

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

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

.insight-card,
.explore-card {
  border: 1px solid rgba(232, 221, 212, 0.9);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 8px 22px rgba(28, 20, 16, 0.035);
}

.insight-card h3,
.explore-card h3 {
  margin-bottom: 8px;
}

.priority-note {
  border-left: 4px solid var(--clay);
  padding: 14px 16px;
  border-radius: 12px;
  background: #fbf0e8;
  color: var(--text-body);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.insight-list,
.question-list,
.symptom-list {
  margin: 0;
  padding-left: 20px;
}

.insight-list li,
.question-list li,
.symptom-list li {
  margin: 8px 0;
}

.note-box {
  border-radius: 18px;
  padding: 20px;
  background: var(--sage-light);
  color: var(--text-body);
}

.letter {
  padding: clamp(24px, 4vw, 42px);
  color: #1f1a17;
  line-height: 1.55;
}

.appointment-summary {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fffdf9;
}

.summary-letter-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.letter .logo {
  margin-bottom: 22px;
}

.summary-letter-head .logo {
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}

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

.path-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(232, 221, 212, 0.9);
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 8px 22px rgba(28, 20, 16, 0.035);
}

.melody-next-step-section {
  display: grid;
  gap: 0;
  max-width: 980px;
  width: 100%;
  margin: -4px auto 0;
}

.melody-next-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0 40px;
  background: #E0DDD7;
}

.melody-next-source {
  display: block;
  color: #B87A4A;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.melody-next-card {
  border: 1px solid #E0DDD7;
  border-left: 5px solid #B87A4A;
  border-radius: 18px;
  padding: 34px 38px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(28, 20, 16, 0.09);
}

.melody-next-card > .melody-next-heading,
.melody-next-card h2 {
  display: block;
  margin-bottom: 14px;
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.melody-next-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #1A1612;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
}

.melody-next-card > .melody-next-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #B87A4A;
  color: #F7F4EF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.melody-next-card p {
  max-width: 850px;
  margin: 0 0 18px;
  color: #444;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.melody-next-card a {
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  text-decoration: none;
}

.melody-next-card small {
  display: block;
  margin-top: 16px;
  color: #bbb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.melody-next-card.melody-sponsor-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid #EADFD2;
  border-top: 4px solid #B5622A;
  border-radius: 16px;
  padding: 34px 40px;
  background: #FBF7F1;
  box-shadow: 0 16px 40px rgba(28, 20, 16, 0.07);
  text-align: center;
}

.melody-sponsor-sunrise {
  display: block;
  width: 104px;
  height: auto;
  margin: 0 auto 14px;
}

.melody-next-card.melody-sponsor-card > .melody-next-eyebrow {
  margin-bottom: 8px;
  color: #B87A4A;
}

.melody-next-card.melody-sponsor-card h2 {
  margin-bottom: 12px;
  color: #1A1612;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}

.melody-next-card.melody-sponsor-card p {
  max-width: 760px;
  margin-bottom: 22px;
  color: #5C5147;
  font-size: 16px;
}

.melody-next-card.melody-sponsor-card p strong {
  color: #1A1612;
  font-weight: 700;
}

.melody-next-card.melody-sponsor-card a {
  display: inline-flex;
  width: min(100%, 560px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  padding: 14px 32px;
  background: #B5622A;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.melody-next-card.melody-sponsor-card small {
  margin-top: 14px;
  color: #A99E90;
}

.report-disclaimer {
  max-width: 840px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
}

.accordion {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-item summary {
  min-height: 48px;
  padding: 14px 20px;
  color: var(--text-dark);
  font-weight: 700;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 17px;
}

.legal h2,
.simple-page h2 {
  margin-top: 40px;
  font-size: 1.8rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.feature-list .card {
  padding: 22px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media print {
  @page {
    size: A4 portrait;
    margin: 11mm 10mm 12mm;
  }

  html,
  body {
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #1A1612;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-nav,
  .site-footer,
  .report-toolbar,
  .no-print {
    display: none !important;
  }

  a[href]::after {
    content: none !important;
  }

  .report-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .report {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .report > * + * {
    margin-top: 5mm;
  }

  .report-header {
    break-inside: avoid-page;
    page-break-inside: avoid;
    border-radius: 8px;
    padding: 9mm;
    box-shadow: none;
  }

  .report-cover {
    grid-template-columns: minmax(0, 1fr) 58mm;
    gap: 8mm;
  }

  .report-header h1 {
    font-size: 24pt;
    line-height: 1.06;
  }

  .report-lede {
    margin-top: 3mm;
    font-size: 11pt;
    line-height: 1.45;
  }

  .report-meta-panel {
    gap: 2mm;
    padding: 5mm;
    font-size: 8pt;
  }

  .report-meta-panel strong {
    font-size: 13pt;
  }

  .report-section {
    display: block;
    break-inside: auto;
    page-break-inside: auto;
    border-radius: 8px;
    padding: 7mm;
    background: linear-gradient(180deg, #fff, #fffaf5);
    box-shadow: none;
  }

  .report-section > * + * {
    margin-top: 3.5mm;
  }

  .report-section h2 {
    font-size: 19pt;
    line-height: 1.08;
  }

  .report-section h3 {
    font-size: 11.5pt;
  }

  .report-section p,
  .report-section li {
    font-size: 9.3pt;
    line-height: 1.52;
  }

  .report-section .section-kicker {
    display: block;
    margin-bottom: 2mm;
    font-size: 7pt;
  }

  .report-visual-overview {
    break-inside: avoid-page;
    page-break-inside: avoid;
    padding: 5mm 7mm;
  }

  .report-visual-overview .report-profile-grid {
    grid-template-columns: 62mm minmax(0, 1fr);
    gap: 8mm;
  }

  .report-chart-shell {
    width: 58mm;
    max-width: 58mm;
  }

  .report-visual-overview .domain-bars {
    gap: 2.2mm;
    padding: 1mm 4mm 1mm 0;
  }

  .domain-label {
    font-size: 7.5pt;
  }

  .bar {
    height: 2.2mm;
  }

  .section-heading-row {
    break-after: avoid-page;
    page-break-after: avoid;
  }

  .score-pill {
    min-width: 20mm;
    min-height: 11mm;
    border-radius: 4px;
    font-size: 9pt;
  }

  .pattern-portrait-card {
    break-inside: avoid-page;
    page-break-inside: avoid;
    margin: 4mm 0 0 !important;
    border-radius: 8px;
    padding: 5mm 6mm;
    font-size: 10pt;
    line-height: 1.58;
  }

  .pattern-portrait-card p + p {
    margin-top: 3mm;
  }

  .insight-grid,
  .explore-grid,
  .path-grid {
    gap: 3mm;
  }

  .insight-card,
  .explore-card,
  .path-card,
  .priority-note,
  .note-box {
    break-inside: avoid-page;
    page-break-inside: avoid;
    border-radius: 8px;
    padding: 4.5mm;
    box-shadow: none;
  }

  .question-list li,
  .symptom-list li,
  .insight-list li {
    margin: 2mm 0;
  }

  .letter,
  .appointment-summary {
    break-inside: auto;
    page-break-inside: auto;
    border-radius: 8px;
    padding: 6mm;
    box-shadow: none;
  }

  .summary-letter-head {
    break-after: avoid-page;
    page-break-after: avoid;
    margin-bottom: 4mm;
  }

  .melody-next-step-section {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  .report > .melody-next-step-section {
    margin-top: 2mm;
  }

  .melody-next-divider {
    display: none;
  }

  .melody-next-card.melody-sponsor-card {
    break-inside: avoid-page;
    page-break-inside: avoid;
    border-top: 1.2mm solid #B5622A;
    border-radius: 16px;
    padding: 7mm 9mm;
    box-shadow: none;
  }

  .melody-sponsor-sunrise {
    width: 25mm;
    margin-bottom: 3mm;
  }

  .melody-next-card.melody-sponsor-card h2 {
    margin-bottom: 3mm;
    font-size: 17pt;
  }

  .melody-next-card.melody-sponsor-card p {
    margin-bottom: 4mm;
    font-size: 9.5pt;
    line-height: 1.55;
  }

  .melody-next-card.melody-sponsor-card a {
    min-height: 11mm;
    border-radius: 16px;
    padding: 2.5mm 8mm;
    font-size: 10pt;
  }

  .melody-next-card.melody-sponsor-card small {
    margin-top: 3mm;
    font-size: 7.5pt;
  }

  .report-disclaimer {
    break-inside: avoid-page;
    page-break-inside: avoid;
    padding: 0 7mm 3mm;
    font-size: 8pt;
  }

  .report-disclaimer p {
    margin: 0;
  }

  .letter,
  .report-header {
    box-shadow: none;
  }

  .report-section .section-kicker,
  .report-section h2,
  .report-section h3 {
    break-after: avoid-page;
    page-break-after: avoid;
  }

  .pattern-portrait-card,
  .report-profile-grid,
  .insight-card,
  .explore-item {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  .symptom-tracker-section {
    display: block;
    break-before: page;
    break-after: page;
    break-inside: avoid-page;
    page-break-before: always;
    page-break-after: always;
    page-break-inside: avoid;
    border: 0;
    border-radius: 0;
    padding: 11mm 7mm 8mm;
    box-shadow: none;
  }

  .symptom-tracker-section::before {
    display: none;
  }

  .symptom-tracker-section > .section-kicker {
    display: block;
    margin-bottom: 2.5mm;
    font-size: 7pt;
  }

  .symptom-tracker-section > h2 {
    margin: 0 0 4mm;
    font-size: 18pt;
    line-height: 1.05;
  }

  .symptom-tracker-section > p,
  .symptom-tracker-section .tracker-part > p {
    margin: 0 0 4.5mm;
    font-size: 7.5pt;
    line-height: 1.35;
  }

  .symptom-tracker-section .tracker-part {
    display: block;
  }

  .symptom-tracker-section .tracker-part + .tracker-part {
    margin-top: 5mm;
  }

  .symptom-tracker-section .tracker-part h3 {
    margin: 1.5mm 0 2mm;
    font-size: 11pt;
  }

  .tracker-table-wrap {
    overflow: visible;
    border-radius: 0;
  }

  .tracker-mobile-preview,
  .tracker-mobile-prompt {
    display: none !important;
  }

  .tracker-reference-table,
  .tracker-log-table {
    min-width: 0;
  }

  .tracker-reference-table {
    font-size: 6.5pt;
  }

  .tracker-reference-table th,
  .tracker-reference-table td {
    padding: 1.5mm 2mm;
    line-height: 1.2;
  }

  .tracker-log-table {
    font-size: 6.5pt;
  }

  .tracker-log-table thead th {
    padding: 1.7mm 1mm;
  }

  .tracker-log-table thead th:first-child,
  .tracker-log-table thead .tracker-trigger-header {
    padding-left: 2mm;
  }

  .tracker-log-table tbody th {
    padding: 1.6mm;
  }

  .tracker-rating-row td {
    height: 8.75mm;
  }

  .tracker-notes-row td {
    height: 8.75mm;
    padding: 1.2mm 1.8mm;
  }

  .tracker-notes-row span {
    font-size: 6pt;
  }

  .tracker-scale {
    margin-top: 1.5mm !important;
    font-size: 6.5pt !important;
  }
}

@media (max-width: 900px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero,
  .split,
  .two-col,
  .report-preview-grid,
  .report-cover,
  .insight-grid,
  .explore-grid,
  .download-section {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    flex-direction: column;
  }

  .report-meta-panel {
    align-self: stretch;
  }

  .chart-card,
  .domain-panel {
    min-height: auto;
  }

  .quiz-intro {
    max-width: 1120px;
  }

  .hero {
    min-height: 0;
  }

  .desktop-hero-image {
    display: none;
  }

  .mobile-hero-image {
    display: none;
  }

  .hero-copy {
    gap: 12px;
    min-height: calc(100svh - 62px);
    justify-content: start;
    padding: 16px 22px 26px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.16rem, 10.4vw, 3rem);
    line-height: 1.04;
    order: 2;
  }

  .hero-copy .pill {
    order: 1;
  }

  .hero-copy .lede,
  .desktop-hero-cta {
    display: none;
  }

  .hero-copy > .desktop-hero-trust.value-stack {
    display: flex;
    order: 7;
    align-self: stretch;
    align-items: center;
    gap: 7px;
    margin-top: -2px;
    text-align: center;
    font-size: 0.82rem;
  }

  .trust-row.value-stack,
  .intro-value-list.value-stack,
  .trust-row.about-trust {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .trust-row.value-stack span,
  .intro-value-list.value-stack span,
  .trust-row.about-trust span {
    display: grid;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: 22px minmax(0, auto);
    column-gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .trust-row.value-stack span::before,
  .intro-value-list.value-stack span::before,
  .trust-row.about-trust span::before {
    flex: none;
    margin-top: 1px;
  }

  .mobile-hero-subtext {
    display: block;
    order: 3;
    margin: 2px 0 0;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.5;
  }

  .mobile-hero-cta {
    display: inline-flex;
    order: 6;
    width: 100%;
    min-height: 52px;
    justify-content: center;
    margin-top: 2px;
    background: #B87A4A;
  }

  .mobile-trust-line {
    display: block;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.25;
    text-align: center;
  }

  .mobile-trust-line span {
    color: #B87A4A;
    font-weight: 700;
    padding-inline: 5px;
  }

  .mobile-report-device {
    display: block;
    order: 4;
    width: 220px;
    max-width: 100%;
    margin: 6px auto 0;
  }

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

  .card-grid,
  .receive-list,
  .domain-card-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .domain-card-grid article:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }

  .quote-card {
    right: 16px;
  }
}

@media (max-width: 700px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-nav {
    padding-inline: 16px;
  }

  .logo {
    font-size: 1.55rem;
  }

  .site-nav .btn {
    padding-inline: 14px;
  }

  .report-nav .nav-contact {
    display: none;
  }

  .hormonal-nav .current-page-label {
    display: none;
  }

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

  .stat + .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .photo-quote img {
    height: 430px;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -62px 16px 0;
  }

  .report-toolbar {
    flex-wrap: wrap;
    top: 49px;
    gap: 8px;
    padding: 10px 12px;
  }

  .report-toolbar .btn {
    min-width: 0;
    padding: 11px 20px;
    font-size: 0.95rem;
  }

  .report-wrap {
    padding: 88px 12px 52px;
    max-width: 100vw;
  }

  .report {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 16px;
  }

  .report-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 18px;
    padding: 20px 16px;
  }

  .report-section h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .report-visual-overview {
    padding: 14px 14px 16px;
  }

  .report-visual-overview .report-profile-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-visual-overview .domain-bars {
    padding: 0 10px 2px;
  }

  .section-heading-row {
    gap: 12px;
    min-width: 0;
  }

  .section-heading-row h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.06;
  }

  .score-pill {
    min-width: 0;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 1rem;
  }

  .pattern-portrait-card,
  .pattern-portrait,
  .result-hero .pattern-portrait {
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    font-size: 1.02rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .symptom-tracker-section {
    overflow: visible;
  }

  .tracker-table-wrap {
    width: 100%;
  }

  .tracker-reference-table {
    min-width: 0;
  }

  .tracker-reference-wrap {
    overflow: visible;
  }

  .tracker-reference-table,
  .tracker-reference-table tbody {
    display: block;
  }

  .tracker-reference-table thead {
    display: none;
  }

  .tracker-reference-table tr {
    display: grid;
    grid-template-columns: minmax(82px, 0.32fr) minmax(0, 1fr);
  }

  .tracker-reference-table th,
  .tracker-reference-table td {
    width: auto;
    min-width: 0;
    padding: 9px 10px;
    overflow-wrap: break-word;
  }

  .tracker-reference-table tbody th {
    width: auto;
    background: #1A1612;
    color: #fff;
  }

  .tracker-log-wrap {
    display: none;
  }

  .tracker-mobile-preview {
    display: grid;
    gap: 10px;
    overflow: hidden;
    border: 1px solid #E4DED5;
    border-radius: 8px;
    background: #fff;
  }

  .tracker-mobile-preview-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px 12px;
    padding: 10px 12px;
    background: #1A1612;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
  }

  .tracker-mobile-preview-head span {
    color: rgba(255, 255, 255, 0.68);
  }

  .tracker-mobile-day {
    margin: 0 10px;
    border: 1px solid #EEE9E1;
    border-radius: 8px;
    padding: 11px;
    background: #fff;
  }

  .tracker-mobile-day:nth-child(3) {
    margin-bottom: 10px;
    background: #F7F4EF;
  }

  .tracker-mobile-day h4 {
    margin: 0 0 8px;
    color: #1A1612;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1rem;
  }

  .tracker-mobile-ratings {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 9px;
  }

  .tracker-mobile-ratings span {
    display: flex;
    min-width: 0;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid #EEE9E1;
    padding: 3px 0;
    color: #6B6560;
    font-family: Arial, sans-serif;
    font-size: 0.76rem;
  }

  .tracker-mobile-ratings b {
    color: #B87A4A;
  }

  .tracker-mobile-day p {
    margin: 5px 0 0;
    color: #6B6560;
    font-family: Arial, sans-serif;
    font-size: 0.76rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .tracker-mobile-prompt {
    display: block;
    margin: 8px 0 0 !important;
    border-left: 3px solid #B87A4A;
    border-radius: 4px;
    padding: 10px 12px;
    background: #F1ECE3;
    color: #1A1612 !important;
    font-size: 0.82rem !important;
    font-style: normal;
    line-height: 1.5;
  }

  .report-profile-grid {
    width: 100%;
    min-width: 0;
    gap: 18px;
  }

  .report-chart-shell {
    width: 100%;
    min-width: 0;
    max-width: 230px;
    overflow: visible;
  }

  .report-chart-shell canvas {
    max-width: 100% !important;
    height: auto !important;
  }

  .domain-bars {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .domain-label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    font-size: 0.92rem;
  }

  .domain-label strong,
  .domain-label span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .bar {
    max-width: 100%;
  }

  .hormonal-page {
    padding-top: 58px;
  }

  .hormonal-nav {
    justify-content: center;
  }

  .hormonal-hero {
    padding: 34px 20px;
  }

  .hormonal-hero h1 {
    font-size: 24px;
  }

  .hormonal-body {
    padding: 30px 18px;
  }

  .hh-step-card {
    padding: 13px 14px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .hh-step-card > span {
    width: 30px;
    height: 30px;
  }

  .hh-step-card h2 {
    font-size: 19px;
  }

  .hh-step-card p,
  .hh-step-card em {
    font-size: 13px;
  }

  .treatment-head {
    flex-direction: column;
    gap: 8px;
  }

  .treatment-head div {
    justify-items: start;
    text-align: left;
  }

  .pros-cons {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .verified-row {
    align-items: flex-start;
  }

  .verified-row img {
    height: 40px;
  }

  .hormonal-cta {
    padding: 26px 20px;
  }

  .treatment-options-section {
    justify-items: stretch;
  }

  .treatment-options-section .btn {
    width: 100%;
  }

  .melody-next-divider {
    margin: 10px 0 30px;
  }

  .melody-next-card {
    border-left-width: 4px;
    border-radius: 16px;
    padding: 26px 20px;
  }

  .melody-next-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .melody-next-card a {
    font-size: 1.08rem;
  }

  .melody-next-card.melody-sponsor-card {
    border-left-width: 1px;
    padding: 28px 20px;
  }

  .melody-next-card.melody-sponsor-card a {
    width: 100%;
    font-size: 1rem;
  }

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

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

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

  .email-panel .btn {
    width: 100%;
  }

  .quiz-wrap {
    padding-top: 76px;
    padding-bottom: 34px;
  }

  .quiz-intro {
    padding: 24px 18px;
  }

  .quiz-intro .eyebrow {
    margin-bottom: 12px;
    padding: 7px 18px;
    font-size: 0.76rem;
  }

  .intro-copy {
    gap: 14px;
  }

  .intro-lede {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .intro-start {
    gap: 12px;
  }

  .quiz-intro {
    text-align: center;
  }

  .quiz-intro h1 {
    font-size: 2rem;
  }

}

@media (max-height: 760px) and (min-width: 701px) {
  .quiz-wrap {
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .quiz-panel {
    width: min(100%, 940px);
    max-width: 940px;
    padding: 22px 30px;
  }

  .quiz-panel h1 {
    font-size: 1.28rem;
    line-height: 1.1;
  }

  .quiz-intro {
    width: min(100%, 940px);
    max-width: 940px;
    padding: 30px 36px;
  }

  .quiz-intro h1 {
    font-size: 2.65rem;
  }

  .intro-copy {
    gap: 12px;
  }

  .intro-copy p {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .answers {
    gap: 8px;
    margin-top: 13px;
  }

  .answer-card {
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.84rem;
    line-height: 1.22;
  }

  .back-link {
    min-height: 34px;
    margin-top: 6px;
  }
}

/* Melody Report corner system */
.report-meta-panel,
.report-header,
.report-section,
.report-visual-overview,
.report-chart-shell,
.chart-card,
.domain-panel,
.result-hero,
.pattern-portrait,
.pattern-portrait-card,
.insight-card,
.explore-card,
.path-card,
.note-box,
.letter,
.appointment-summary,
.melody-next-card,
.symptom-tracker-section {
  border-radius: 8px;
}

.score-pill,
.domain-bars .bar,
.domain-bars .bar span,
.tracker-table-wrap,
.report-toolbar,
.report-toolbar .btn,
.priority-note,
.summary-letter-head {
  border-radius: 4px;
}

.melody-next-card > .melody-next-eyebrow {
  display: block;
  margin-bottom: 9px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--sage);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.melody-next-card.melody-sponsor-card {
  border-radius: 16px;
}

.melody-next-card.melody-sponsor-card > .melody-next-eyebrow {
  color: #B87A4A;
}

/* FAQ editorial layout */
.faq-page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-inline: 24px;
}

.faq-title-block {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.faq-title-block h1 {
  margin-bottom: 7px;
  font-size: clamp(2.25rem, 4.5vw, 3.65rem);
  line-height: 1;
}

.faq-title-block p {
  max-width: 650px;
  margin: 0 auto;
  color: #6B6560;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  line-height: 1.4;
}

.faq-report-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(18px, 2.8vw, 32px);
  align-items: center;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid #E8DDD4;
  border-radius: 8px;
  background: #F3EEE6;
}

.faq-report-column {
  min-width: 0;
}

.faq-report-preview {
  position: relative;
  min-height: 320px;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 10px 0 0;
}

.faq-report-summary-card,
.faq-report-profile-card {
  border: 1px solid #E0DDD7;
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(26, 22, 18, 0.08);
}

.faq-report-summary-card {
  position: absolute;
  top: 24px;
  left: 34px;
  width: 43%;
  max-width: 168px;
  min-height: 292px;
  padding: 14px 13px;
  background: #fff;
}

.faq-report-summary-card > * {
  position: relative;
  z-index: 1;
}

.faq-report-summary-card span,
.faq-preview-heading span {
  color: #B87A4A;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-report-summary-card h2 {
  margin: 7px 0;
  font-size: 0.92rem;
  line-height: 1.12;
}

.faq-report-summary-card p {
  color: #6B6560;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  line-height: 1.42;
}

.faq-report-summary-card .faq-summary-note {
  margin-top: 10px;
  padding: 8px;
  border: 1px solid rgba(184, 122, 74, 0.16);
  border-radius: 4px;
  background: #F7E8DA;
  color: #7A5A43;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.53rem;
  line-height: 1.45;
}

.faq-report-profile-card {
  position: relative;
  z-index: 1;
  width: 49%;
  max-width: 192px;
  min-height: 272px;
  margin-left: 44%;
  padding: 11px 12px 10px;
  background: #fff;
}

.faq-preview-heading {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  align-items: start;
  padding-bottom: 7px;
  border-bottom: 1px solid #E0DDD7;
}

.faq-preview-heading strong {
  display: block;
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
}

.faq-preview-heading small {
  color: #4A7A66;
  font-size: 0.62rem;
  font-weight: 700;
}

.faq-radar-chart {
  display: block;
  width: 100%;
  max-height: 124px;
  margin: 2px auto 0;
  overflow: visible;
}

.faq-radar-grid {
  fill: none;
  stroke: #E0DDD7;
  stroke-width: 1;
}

.faq-radar-shape {
  fill: url(#faqRadarFill);
  stroke: url(#faqRadarStroke);
  stroke-width: 2;
}

.faq-radar-points {
  fill: url(#faqRadarStroke);
}

.faq-radar-labels {
  fill: #6B6560;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
}

.faq-domain-bars {
  display: grid;
  gap: 3px;
  font-size: 0.5rem;
}

.faq-domain-bars div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1px 5px;
}

.faq-domain-bars small {
  color: #6B6560;
}

.faq-domain-bars i {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: #E0DDD7;
}

.faq-domain-bars b {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #4A7A66 0%, #B8784A 62%, #965E35 100%);
}

.faq-preview-caption {
  margin: 6px 0 0;
  color: #B87A4A;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;
}

.faq-feature-column h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

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

.faq-feature-list article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px;
  align-items: start;
}

.faq-feature-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #EAE2D7;
  color: #B87A4A;
}

.faq-feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.faq-feature-list h3 {
  margin: 0 0 2px;
  font-size: 0.82rem;
}

.faq-feature-list p {
  margin: 0;
  color: #6B6560;
  font-size: 0.72rem;
  line-height: 1.35;
}

.faq-accordion-section {
  margin-top: 14px;
}

.faq-page .accordion {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.faq-page .faq-item {
  overflow: hidden;
  border: 1px solid #E8DDD4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(26, 22, 18, 0.035);
}

.faq-page .faq-item summary {
  position: relative;
  min-height: 0;
  padding: 19px 54px 19px 22px;
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-page .faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #1A1612;
  border-bottom: 1.5px solid #1A1612;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.18s ease;
}

.faq-page .faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-page .faq-item p {
  max-width: 900px;
  padding: 0 54px 22px 22px;
  color: #6B6560;
  line-height: 1.65;
}

.faq-contact-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(260px, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-top: 26px;
  padding: 26px 34px;
  border: 1px solid #E8DDD4;
  border-radius: 8px;
  background: #F3EEE6;
}

.faq-contact-art img {
  display: block;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}

.faq-contact-copy h2 {
  margin: 0 0 5px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.faq-contact-copy p {
  margin: 0;
  color: #6B6560;
  font-size: 1.08rem;
}

.faq-contact-block .btn {
  white-space: nowrap;
}

.site-contact-block {
  width: min(calc(100% - 40px), 1040px);
  margin: 26px auto 48px;
}

.faq-heart-line {
  margin: 26px 0 4px;
  color: #6B6560;
  text-align: center;
}

.faq-heart-line span {
  margin-right: 8px;
  color: #B87A4A;
  font-size: 1.5rem;
  vertical-align: -2px;
}

@media (max-width: 820px) {
  .faq-page {
    padding-inline: 16px;
  }

  .faq-title-block {
    margin-bottom: 16px;
  }

  .faq-report-showcase {
    grid-template-columns: 1fr;
  }

  .faq-feature-column {
    max-width: 600px;
    margin: 0 auto;
  }

  .faq-contact-block {
    grid-template-columns: minmax(160px, 0.75fr) 1fr;
  }

  .faq-contact-block .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .footer-links {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    gap: 9px;
  }

  .footer-link-row {
    flex-wrap: nowrap;
    gap: 8px 10px;
  }

  .footer-links a {
    font-size: 0.74rem;
  }

  .faq-title-block h1 {
    font-size: 2.2rem;
  }

  .faq-report-showcase {
    gap: 16px;
    padding: 13px 11px;
  }

  .faq-report-preview {
    min-height: 302px;
    width: min(100%, 350px);
    padding-left: 0;
  }

  .faq-report-summary-card {
    top: 22px;
    left: 27px;
    width: 43%;
    max-width: 150px;
    min-height: 276px;
    padding: 12px 9px;
  }

  .faq-report-summary-card h2 {
    font-size: 0.82rem;
  }

  .faq-report-summary-card p {
    font-size: 0.58rem;
  }

  .faq-report-profile-card {
    width: 51%;
    max-width: 178px;
    min-height: 260px;
    margin-left: 43%;
    padding: 10px;
  }

  .faq-radar-chart {
    max-height: 120px;
  }

  .faq-radar-labels {
    font-size: 6.5px;
  }

  .faq-feature-list article {
    grid-template-columns: 32px 1fr;
    gap: 9px;
  }

  .faq-feature-icon {
    width: 32px;
    height: 32px;
  }

  .faq-page .faq-item summary {
    padding: 17px 46px 17px 17px;
    font-size: 0.94rem;
  }

  .faq-page .faq-item summary::after {
    right: 18px;
  }

  .faq-page .faq-item p {
    padding: 0 18px 19px;
    font-size: 0.9rem;
  }

  .faq-contact-block {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
    text-align: center;
  }

  .faq-contact-art img {
    max-width: 240px;
  }

  .faq-contact-block .btn {
    grid-column: auto;
    justify-self: center;
  }

  .site-contact-block {
    width: min(calc(100% - 28px), 1040px);
    margin-top: 20px;
    margin-bottom: 34px;
  }

  .about-page {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    overflow-x: hidden;
  }

  .about-page .about-section,
  .about-page .inner,
  .about-preview-wrap,
  .about-preview-wrap .report-preview-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .about-preview-wrap {
    overflow: hidden;
  }

  .about-preview-wrap .report-preview-card {
    padding-inline: 16px;
  }

  .about-preview-wrap .mini-radar {
    max-width: calc(100% - 24px);
    overflow: hidden;
  }

  .about-page h1,
  .about-page h2,
  .about-page h3,
  .about-page p,
  .about-page blockquote,
  .about-page article {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .trust-row.about-trust {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .trust-row.about-trust span {
    white-space: normal;
    text-align: center;
  }

  .simple-page,
  .faq-page,
  .contact-page,
  .legal,
  .hormonal-page,
  .hormonal-body,
  .quiz-wrap,
  .results-wrap,
  .site-footer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .simple-page > *,
  .faq-page > *,
  .contact-page > *,
  .legal > *,
  .hormonal-body > *,
  .faq-report-showcase,
  .faq-report-column,
  .faq-report-preview,
  .faq-feature-column,
  .contact-form-card,
  .treatment-card,
  .partner-card {
    max-width: 100%;
    min-width: 0;
  }

  .faq-radar-chart {
    overflow: hidden;
  }

  .simple-page p,
  .simple-page li,
  .simple-page h1,
  .simple-page h2,
  .simple-page h3,
  .legal a,
  .hormonal-page p,
  .hormonal-page li,
  .hormonal-page h1,
  .hormonal-page h2,
  .hormonal-page h3 {
    overflow-wrap: break-word;
  }
}

/* Contact page */
.contact-page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding-inline: 24px;
}

.contact-title-block {
  max-width: 690px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-title-block .eyebrow {
  margin-inline: auto;
}

.contact-title-block h1 {
  margin: 14px 0 12px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
}

.contact-title-block p {
  max-width: 640px;
  margin: 0 auto;
  color: #6B6560;
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.6;
}

.contact-form-card {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid #E0DDD7;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 38px);
  background: #fff;
  box-shadow: 0 18px 48px rgba(26, 22, 18, 0.07);
}

.contact-form-heading {
  margin-bottom: 24px;
}

.contact-form-heading h2 {
  margin: 0 0 6px;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.contact-form-heading p {
  margin: 0;
  color: #6B6560;
  font-size: 0.94rem;
  line-height: 1.55;
}

#melody-contact-form {
  display: grid;
  gap: 18px;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label {
  color: #1A1612;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-field label span {
  color: #B87A4A;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #D8D2CA;
  border-radius: 4px;
  padding: 13px 14px;
  background: #FDFCFB;
  color: #1A1612;
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-field select {
  min-height: 48px;
}

.contact-field textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #B87A4A;
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 122, 74, 0.12);
}

.contact-field [aria-invalid="true"] {
  border-color: #A84D42;
  box-shadow: 0 0 0 3px rgba(168, 77, 66, 0.09);
}

.contact-field-error,
.contact-form-error {
  color: #8D3F36;
  font-size: 0.78rem;
  line-height: 1.4;
}

.contact-field-error:empty,
.contact-form-error:empty {
  display: none;
}

.contact-form-error {
  border-radius: 4px;
  background: #FAEEEB;
}

.contact-form-error:not(:empty) {
  padding: 10px 12px;
}

.contact-submit {
  width: 100%;
  margin-top: 2px;
  border-radius: 4px;
  background: #B87A4A;
  color: #fff;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-success {
  display: none;
  min-height: 315px;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.contact-success span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #E5EEE8;
  color: #4A7A66;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-success h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.3;
}

.contact-success:not([hidden])[style*="display: block"],
.contact-success:not([hidden])[style*="display:block"] {
  display: grid !important;
}

.contact-email-line,
.contact-reassurance {
  text-align: center;
}

.contact-email-line {
  margin: 24px auto 0;
  color: #6B6560;
  font-size: 0.94rem;
}

.contact-email-line a {
  color: #B87A4A;
  font-weight: 600;
  text-decoration: none;
}

.contact-reassurance {
  max-width: 620px;
  margin: 34px auto 0;
  padding-top: 25px;
  border-top: 1px solid #E0DDD7;
  color: #6B6560;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .contact-page {
    padding: 86px 16px 48px;
  }

  .contact-title-block {
    margin-bottom: 22px;
  }

  .contact-title-block h1 {
    font-size: 2.7rem;
  }

  .contact-form-card {
    padding: 22px 18px;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-field textarea {
    min-height: 140px;
  }
}

@media print {
  .tracker-log-wrap {
    display: block !important;
  }

  .tracker-mobile-preview,
  .tracker-mobile-prompt {
    display: none !important;
  }

  .tracker-reference-table {
    display: table;
  }

  .tracker-reference-table thead {
    display: table-header-group;
  }

  .tracker-reference-table tbody {
    display: table-row-group;
  }

  .tracker-reference-table tr {
    display: table-row;
  }

  .tracker-reference-table th,
  .tracker-reference-table td {
    display: table-cell;
    padding: 1.5mm 2mm;
  }

  .tracker-reference-table tbody th {
    width: 22%;
    background: transparent;
    color: #1A1612;
  }
}
