:root {
  --navy: #061a2c;
  --navy-2: #0b2c45;
  --teal: #0d8b84;
  --aqua: #64eee3;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #071b2c;
  --muted: #667986;
  --line: rgba(7, 27, 44, 0.13);
  --teal-soft: #e8f6f3;
  --navy-soft: #eef3f6;
  --shadow: 0 24px 64px rgba(2, 10, 18, 0.13);
  --soft-shadow: 0 12px 32px rgba(2, 10, 18, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --wrap: 1240px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(18px);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  text-decoration: none;
}

.brand-link img {
  width: 118px;
  height: auto;
}

.brand-link span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.header-nav > a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.header-nav > a:hover {
  color: var(--teal);
}

.plan-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
}

.plan-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  padding: 28px 0 54px;
}

.hero-shell {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: 38px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(100, 238, 227, 0.34);
  border-radius: 999px;
  color: var(--aqua);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  border-color: rgba(13, 139, 132, 0.2);
  color: var(--teal);
  background: var(--teal-soft);
}

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

h1,
h2,
h3 {
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--ink);
  letter-spacing: -0.055em;
}

.hero h1,
.module-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 900;
  line-height: 0.94;
}

.accent {
  color: var(--aqua);
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--aqua);
  color: var(--navy);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-media,
.module-hero-media {
  position: relative;
  min-height: 100%;
  background: var(--navy-2);
}

.hero-media img,
.module-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: 58% center;
}

.hero-proof {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-proof div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(6, 26, 44, 0.88);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--aqua);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.hero-proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.section {
  padding: 90px 0;
}

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

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

.section.navy h2,
.section.navy h3 {
  color: var(--white);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

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

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 0.98;
}

.section-heading p,
.body-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.section.navy .section-heading p,
.section.navy .body-copy {
  color: rgba(255, 255, 255, 0.72);
}

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

.mechanism-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.mechanism-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.mechanism-card .card-body {
  padding: 25px;
}

.step-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mechanism-card h3,
.module-card h3,
.result-card h3,
.related-card h3 {
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.04;
}

.mechanism-card p,
.module-card p,
.result-card p,
.related-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.message-band {
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  color: var(--ink);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 850;
  letter-spacing: -0.035em;
  text-align: center;
}

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

.module-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.module-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.module-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.module-meta,
.summary-row,
.price-formula-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.module-meta {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-price {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.module-price small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.module-card .button-row {
  margin-top: auto;
  padding-top: 22px;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.builder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.builder-option {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
}

.builder-option:hover,
.builder-option.is-selected {
  border-color: var(--aqua);
  background: rgba(100, 238, 227, 0.11);
}

.builder-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--aqua);
}

.builder-option strong,
.builder-option span {
  display: block;
}

.builder-option strong {
  font-size: 16px;
}

.builder-option span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 12px;
}

.builder-option b {
  color: var(--aqua);
  font-size: 18px;
}

.builder-summary {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.builder-summary h3 {
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 900;
}

.builder-summary > p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.45;
}

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

.summary-row {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.summary-row strong {
  color: var(--ink);
}

.summary-row.total {
  padding-top: 8px;
  border-bottom: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.summary-row.total strong {
  color: var(--teal);
  font-size: 30px;
}

.selected-names {
  min-height: 48px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: var(--navy-soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.builder-summary .button {
  width: 100%;
  margin-top: 18px;
}

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

.timeline-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.timeline-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.timeline-card p {
  color: var(--muted);
  line-height: 1.5;
}

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

.plan-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.plan-card.featured {
  border-color: rgba(13, 139, 132, 0.48);
  box-shadow: var(--shadow);
}

.plan-card h3 {
  margin-bottom: 8px;
  font-size: 34px;
  font-weight: 900;
}

.plan-card .plan-price {
  margin: 18px 0;
  color: var(--teal);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.plan-card .plan-price small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.plan-card p {
  color: var(--muted);
  line-height: 1.5;
}

.plan-card .button {
  margin-top: auto;
}

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

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  line-height: 1.4;
}

.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 32px;
  background: var(--navy);
  color: var(--white);
}

.final-cta h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

.final-cta p {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.5;
}

.disclaimer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 110px;
}

.footer-biotwin-link {
  display: grid;
  flex: 0 0 auto;
  gap: 5px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-biotwin-link:hover span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-brand p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

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

.footer-links a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.module-hero {
  padding: 28px 0 54px;
}

.module-hero-shell {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 38px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.module-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--aqua);
  text-decoration: none;
}

.module-hero h1 {
  font-size: clamp(50px, 5vw, 78px);
}

.module-hero-copy > p {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 1.5;
}

.module-price-lockup {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.module-price-lockup strong {
  color: var(--aqua);
  font-size: 44px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.module-price-lockup span {
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.module-hero-media img {
  object-position: center;
}

.module-question {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.module-question blockquote {
  margin: 0;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.module-question p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.result-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.result-card h3 {
  color: var(--teal);
}

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

.delivery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
}

.delivery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.delivery-card div {
  padding: 24px;
}

.delivery-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
}

.delivery-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.price-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  line-height: 1;
}

.price-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.price-formula {
  display: grid;
  gap: 13px;
  padding: 24px;
  border-radius: 24px;
  background: var(--navy-soft);
}

.price-formula-row {
  color: var(--muted);
}

.price-formula-row strong {
  color: var(--ink);
}

.price-formula-row.total {
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.price-formula-row.total strong {
  color: var(--teal);
  font-size: 30px;
}

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

.related-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.related-card .module-price {
  margin-bottom: 14px;
}

.related-card .text-link {
  margin-top: auto;
}

.module-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 0;
}

.module-switcher a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.module-switcher a[aria-current="page"] {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal);
}

.status-message {
  min-height: 22px;
  margin-top: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .header-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 24px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--soft-shadow);
  }

  .header-nav.is-open {
    display: grid;
    justify-items: start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-shell,
  .module-hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .module-hero-copy {
    padding: 58px 44px;
  }

  .hero-media,
  .module-hero-media {
    min-height: 520px;
  }

  .mechanism-grid,
  .module-grid,
  .delivery-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .builder-layout,
  .price-panel {
    grid-template-columns: 1fr;
  }

  .builder-summary {
    position: relative;
    top: auto;
  }

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

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 24px), var(--wrap));
  }

  .brand-link span {
    display: none;
  }

  .brand-link img {
    width: 104px;
  }

  .hero,
  .module-hero {
    padding-top: 12px;
  }

  .hero-shell,
  .module-hero-shell {
    border-radius: 24px;
  }

  .hero-copy,
  .module-hero-copy {
    padding: 42px 24px;
  }

  .hero h1,
  .module-hero h1 {
    font-size: 50px;
  }

  .hero-media,
  .module-hero-media {
    min-height: 430px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .mechanism-grid,
  .module-grid,
  .delivery-grid,
  .plan-grid,
  .timeline,
  .result-grid,
  .related-grid,
  .builder-options {
    grid-template-columns: 1fr;
  }

  .mechanism-card img,
  .module-card > img,
  .delivery-card img {
    height: 210px;
  }

  .final-cta,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 30px 24px;
  }

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

  .module-price-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-panel {
    padding: 26px 20px;
  }
}

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

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

/* V7 user-led diagnostic journey */
:root {
  --teal: #08736e;
  --muted: #526773;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #073f5f;
}

.v7-hero .hero-shell {
  grid-template-columns: 1.08fr 0.92fr;
}

.v7-hero h1 {
  font-size: clamp(50px, 5.1vw, 78px);
}

.hero-microcopy {
  max-width: 650px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

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

.concern-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.concern-card > span,
.journey-grid article > span,
.participation-grid article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
}

.concern-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.08;
}

.concern-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.concern-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-underline-offset: 4px;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.journey-section {
  overflow: hidden;
}

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

.journey-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.journey-grid article > span {
  background: rgba(100, 238, 227, 0.12);
  color: var(--aqua);
}

.journey-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.08;
}

.journey-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.v7-module-card .signal-preview {
  margin-top: 16px;
  padding: 13px 14px;
  border-left: 3px solid var(--teal);
  border-radius: 0 11px 11px 0;
  background: var(--teal-soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.v7-module-card .signal-preview strong {
  color: var(--ink);
}

.v7-module-card .text-link,
.module-switcher a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.price-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.price-guardrail {
  padding: 18px 20px;
  border-left: 4px solid #a76c0a;
  border-radius: 0 14px 14px 0;
  background: #fff7e7;
  color: #6b511e;
  font-size: 14px;
  line-height: 1.55;
}

.module-price-map {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.module-price-map dl {
  margin: 0 0 22px;
}

.module-price-map dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.module-price-map dt,
.module-price-map dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.module-price-map dd {
  color: var(--white);
  font-weight: 900;
}

.module-price-map .price-map-total {
  margin-top: 8px;
  border-bottom: 0;
}

.module-price-map .price-map-total dt,
.module-price-map .price-map-total dd {
  color: var(--aqua);
  font-size: 19px;
  font-weight: 900;
}

.module-price-map .button {
  width: 100%;
  background: var(--aqua);
  color: var(--navy);
}

.plan-scope-note {
  margin: 16px 0;
  padding: 12px 13px;
  border-radius: 11px;
  background: var(--navy-soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.other-paths-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.price-map-layout > *,
.other-paths-layout > * {
  min-width: 0;
}

.other-paths-grid {
  display: grid;
  gap: 12px;
}

.other-paths-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.other-paths-grid span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.other-paths-grid h3 {
  margin: 8px 0;
  font-size: 27px;
}

.other-paths-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.final-section {
  padding-top: 60px;
}

/* V7 focus pages */
.v7-module-hero .module-hero-shell {
  min-height: 650px;
}

.v7-module-hero h1 {
  font-size: clamp(48px, 5vw, 74px);
}

.v7-module-hero .hero-microcopy {
  margin-bottom: 0;
}

.lived-signal-list {
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.lived-signal-list li {
  min-height: 130px;
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
}

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

.participation-grid article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.participation-grid h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.08;
}

.participation-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.combines-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
}

.combines-panel span {
  color: var(--aqua);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.combines-panel strong {
  font-size: 18px;
  line-height: 1.45;
}

.module-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.module-timeline article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.module-timeline span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-timeline h3 {
  margin: 15px 0 10px;
  font-size: 26px;
}

.module-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.v7-price-panel .price-formula {
  margin: 0;
}

.v7-price-panel .price-formula-row dt,
.v7-price-panel .price-formula-row dd {
  margin: 0;
}

.v7-price-panel .price-formula-row dd {
  color: var(--ink);
  font-weight: 900;
}

.v7-price-panel .price-formula-row.total dd {
  color: var(--teal);
  font-size: 30px;
}

@media (max-width: 1040px) {
  .concern-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-map-layout,
  .other-paths-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .v7-hero .hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .v7-hero h1,
  .v7-module-hero h1 {
    font-size: 46px;
  }

  .concern-grid,
  .journey-grid,
  .lived-signal-list,
  .participation-grid,
  .module-timeline {
    grid-template-columns: 1fr;
  }

  .concern-card,
  .journey-grid article,
  .participation-grid article,
  .module-timeline article,
  .lived-signal-list li {
    min-height: auto;
  }

  .combines-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .module-price-map {
    padding: 22px;
  }
}

/* V8: simplified offer overview and visual focus pages */
body {
  overflow-x: hidden;
}

.header-row > *,
.v8-hero .hero-shell > *,
.complete-offer-layout > *,
.twin-explainer-layout > *,
.module-input-layout > *,
.module-repeat-layout > *,
.purchase-layout > * {
  min-width: 0;
}

.brand-link {
  min-width: 0;
}

.brand-link span {
  white-space: nowrap;
}

.v8-hero {
  padding: 24px 0 50px;
}

.v8-hero .hero-shell {
  min-height: 600px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
}

.v8-hero .hero-copy {
  padding: clamp(44px, 5vw, 68px);
}

.v8-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(50px, 5.25vw, 76px);
  line-height: 0.97;
}

.v8-hero .hero-lede {
  max-width: 630px;
  margin-bottom: 26px;
  font-size: clamp(18px, 1.7vw, 22px);
}

.v8-hero .hero-media img {
  object-position: 57% center;
}

.hero-focus-strip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(6, 26, 44, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.hero-focus-strip span {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(100, 238, 227, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.v8-offers {
  padding-top: 82px;
}

.offer-choice-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.offer-choice-band > div {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 10px;
  padding: 17px 21px;
  background: var(--white);
}

.offer-choice-band strong {
  color: var(--navy);
}

.offer-choice-band span {
  color: var(--muted);
}

.offer-choice-band a {
  color: var(--teal);
  font-weight: 900;
  text-underline-offset: 4px;
}

.v8-module-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.v8-module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.module-card-image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--navy-soft);
}

.module-card-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(6, 26, 44, 0.28));
  content: "";
  pointer-events: none;
}

.module-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.v8-module-card:hover .module-card-image img {
  transform: scale(1.025);
}

.v8-module-card .module-meta {
  align-items: flex-start;
}

.v8-module-card .module-meta > span:first-child {
  max-width: 48%;
}

.v8-module-card .module-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--teal);
  line-height: 1;
}

.v8-module-card .module-price small {
  margin-bottom: 4px;
  text-transform: none;
}

.v8-module-card h3 {
  font-size: 29px;
}

.v8-module-card .button-row {
  align-items: center;
}

.v8-module-card .button {
  min-height: 46px;
  padding: 11px 16px;
  font-size: 13px;
}

.v8-module-card .text-link {
  font-size: 13px;
}

.complete-offer-section {
  overflow: hidden;
}

.complete-offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

.complete-offer-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  background: var(--navy-2);
  box-shadow: var(--shadow);
}

.complete-offer-media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.complete-offer-copy h2 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 900;
  line-height: 0.98;
}

.complete-offer-copy > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.bundle-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 22px;
  align-items: end;
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(100, 238, 227, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.bundle-price span,
.bundle-price del {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.bundle-price strong {
  grid-row: span 2;
  color: var(--aqua);
  font-size: clamp(50px, 6vw, 74px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.bundle-price b {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--aqua);
  font-size: 12px;
}

.prototype-note,
.pricing-footnote {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.hero-microcopy strong {
  color: var(--aqua);
}

.compact-concerns {
  padding-block: 74px;
}

.concern-heading {
  margin-bottom: 28px;
}

.compact-concerns .concern-card {
  min-height: 148px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px 14px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.compact-concerns .concern-card:hover {
  border-color: rgba(8, 115, 110, 0.48);
  transform: translateY(-2px);
}

.compact-concerns .concern-card > span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  margin: 0;
}

.compact-concerns .concern-card strong {
  display: block;
  align-self: end;
  font-size: 16px;
  line-height: 1.4;
}

.compact-concerns .concern-card small {
  align-self: start;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.twin-explainer {
  background: linear-gradient(135deg, #edf7f5, #f7faf9 60%, #eef3f6);
}

.twin-explainer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}

.twin-explainer-media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.concept-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 26, 44, 0.76);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.twin-explainer-media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.twin-explainer-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 0.98;
}

.twin-explainer-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.twin-steps {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.twin-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px;
  border: 1px solid rgba(7, 27, 44, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
}

.twin-steps article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 950;
}

.twin-steps strong {
  display: block;
  margin: 2px 0 5px;
  color: var(--navy);
}

.twin-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.checkpoint-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  list-style: none;
}

.checkpoint-strip > li {
  min-height: 128px;
  padding: 22px;
  background: linear-gradient(145deg, var(--white), #f5faf9);
}

.checkpoint-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkpoint-strip strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}

.checkpoint-note {
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.v8-plan-card {
  position: relative;
  min-height: 470px;
}

.recommended-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.plan-payment {
  display: grid;
  gap: 5px;
  margin: 17px 0 22px;
  padding: 17px;
  border-radius: 16px;
  background: var(--navy-soft);
}

.plan-payment span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.payment-options {
  display: grid;
  gap: 9px;
  margin: 16px 0 18px;
}

.payment-options > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
}

.payment-options .upfront {
  border-color: rgba(8, 115, 110, 0.35);
  background: var(--teal-soft);
}

.payment-options span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.payment-options strong {
  grid-row: span 2;
  color: var(--teal);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.payment-options small {
  color: var(--muted);
  font-size: 11px;
}

.plan-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.plan-actions .button {
  min-height: 46px;
  padding-inline: 12px;
  font-size: 12px;
}

.pricing-footnote {
  max-width: 850px;
  margin: 20px auto 0;
  color: var(--muted) !important;
  text-align: center;
}

.faq-compact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.faq-compact-layout .section-heading {
  position: sticky;
  top: 110px;
  margin: 0;
}

/* V8 focus-page hero */
.v8-module-hero {
  padding-top: 24px;
}

.v8-module-hero .module-hero-shell {
  min-height: 620px;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

.v8-module-hero .module-hero-copy {
  padding: clamp(46px, 5vw, 68px);
}

.v8-module-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 4.8vw, 70px);
  line-height: 0.98;
}

.v8-module-hero .module-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 26, 44, 0.16), transparent 40%);
  content: "";
  pointer-events: none;
}

.module-price-lockup small {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.module-question-section {
  padding-block: 78px;
}

.v8-module-question .eyebrow {
  margin-inline: auto;
}

.v8-module-question blockquote {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(38px, 4.6vw, 62px);
}

.v8-module-question .lived-signal-list {
  max-width: none;
}

.v8-module-question .lived-signal-list article {
  display: grid;
  min-height: 130px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  text-align: left;
}

.v8-module-question .lived-signal-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-weight: 950;
}

.v8-module-question .lived-signal-list p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.visual-story-section {
  background: linear-gradient(180deg, var(--paper), #eff6f5);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
}

.visual-story-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy);
  box-shadow: var(--soft-shadow);
}

.visual-story-grid .visual-story-main {
  grid-row: 1 / 3;
}

.visual-story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-story-grid .visual-story-result {
  background: #f2f7f8;
}

.visual-story-grid .visual-story-result img {
  padding: 18px;
  object-fit: contain;
}

.visual-story-grid figcaption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--white);
  background: rgba(6, 26, 44, 0.84);
  backdrop-filter: blur(10px);
}

.visual-story-grid figcaption strong,
.visual-story-grid figcaption span {
  display: block;
}

.visual-story-grid figcaption strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.visual-story-grid figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

.biosignature-section .result-card {
  position: relative;
  min-height: 215px;
  padding: 30px 28px 26px;
}

.biosignature-section .result-card > span {
  display: block;
  margin-bottom: 25px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.biosignature-section .result-card h3 {
  color: var(--ink);
}

.module-input-section {
  background: var(--paper);
}

.module-input-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.module-input-layout > div:first-child h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 0.99;
}

.module-input-layout > div:first-child p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.participation-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.participation-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 950;
}

.participation-list h3 {
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1.08;
}

.participation-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.module-repeat-section {
  overflow: hidden;
}

.module-repeat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}

.module-repeat-layout h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  line-height: 0.98;
}

.module-repeat-layout p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 19px;
  line-height: 1.55;
}

.module-repeat-layout img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.repeat-note {
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 3px solid var(--aqua);
  border-radius: 0 14px 14px 0;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  line-height: 1.5;
}

.module-purchase-section {
  padding-bottom: 70px;
}

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

.purchase-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
}

.purchase-card.complete-focus {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.purchase-card h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.purchase-card.complete-focus h2 {
  color: var(--white);
}

.purchase-price {
  display: flex;
  flex-direction: column;
  margin: 16px 0 20px;
}

.purchase-price small {
  margin-bottom: 3px;
  color: var(--muted);
  font-weight: 800;
}

.purchase-price strong {
  color: var(--teal);
  font-size: clamp(52px, 6vw, 78px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.complete-focus .purchase-price small,
.purchase-card.complete-focus p {
  color: rgba(255, 255, 255, 0.68);
}

.complete-focus .purchase-price strong {
  color: var(--aqua);
}

.purchase-card > p {
  color: var(--muted);
  line-height: 1.55;
}

.purchase-card .button {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
}

.purchase-quiz-link {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.purchase-quiz-link a {
  color: var(--teal);
  font-weight: 900;
}

.related-section {
  background: linear-gradient(180deg, var(--paper), #eff6f5);
}

.v8-related-card {
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.v8-related-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.v8-related-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.v8-related-card .text-link {
  margin-top: auto;
}

@media (max-width: 1120px) {
  .brand-link span {
    max-width: 180px;
    white-space: normal;
  }

  .header-nav {
    gap: 15px;
  }

  .header-nav > a {
    font-size: 13px;
  }

  .plan-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .brand-link span {
    max-width: none;
    white-space: nowrap;
  }

  .v8-hero .hero-shell,
  .v8-module-hero .module-hero-shell {
    grid-template-columns: 1fr;
  }

  .v8-hero .hero-media,
  .v8-module-hero .module-hero-media {
    min-height: 500px;
  }

  .complete-offer-layout,
  .twin-explainer-layout,
  .module-input-layout,
  .module-repeat-layout {
    grid-template-columns: 1fr;
  }

  .complete-offer-media img,
  .twin-explainer-media img {
    min-height: 420px;
    max-height: 600px;
  }

  .module-repeat-layout img {
    max-height: 500px;
  }

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

  .faq-compact-layout .section-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-row {
    min-height: 68px;
  }

  .header-nav {
    inset-block-start: 68px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }

  .v8-hero,
  .v8-module-hero {
    padding-top: 10px;
  }

  .v8-hero .hero-copy,
  .v8-module-hero .module-hero-copy {
    padding: 36px 22px 38px;
  }

  .v8-hero h1,
  .v8-module-hero h1 {
    font-size: clamp(41px, 12.5vw, 54px);
  }

  .v8-hero .hero-lede,
  .v8-module-hero .module-hero-copy > p {
    font-size: 17px;
  }

  .v8-hero .hero-actions,
  .v8-module-hero .button-row,
  .complete-offer-copy .button-row,
  .final-cta .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .v8-hero .button,
  .v8-module-hero .button,
  .complete-offer-copy .button,
  .final-cta .button {
    width: 100%;
  }

  .v8-hero .hero-media,
  .v8-module-hero .module-hero-media {
    min-height: 370px;
  }

  .hero-focus-strip {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-focus-strip span {
    min-height: 34px;
    font-size: 10px;
  }

  .v8-offers,
  .compact-concerns,
  .module-question-section,
  .module-purchase-section {
    padding-block: 58px;
  }

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

  .offer-choice-band > div {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .module-card-image {
    height: 205px;
  }

  .v8-module-card .module-meta {
    gap: 16px;
  }

  .v8-module-card .module-meta > span:first-child {
    max-width: 56%;
  }

  .complete-offer-layout,
  .twin-explainer-layout,
  .module-input-layout,
  .module-repeat-layout {
    gap: 34px;
  }

  .complete-offer-media img,
  .twin-explainer-media img {
    min-height: 330px;
  }

  .complete-offer-copy h2,
  .twin-explainer-copy h2,
  .module-input-layout > div:first-child h2,
  .module-repeat-layout h2 {
    font-size: 42px;
  }

  .bundle-price {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .bundle-price strong {
    grid-row: auto;
    margin: 4px 0;
  }

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

  .compact-concerns .concern-card {
    min-height: 130px;
  }

  .twin-steps article,
  .participation-list article {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .twin-steps article > span,
  .participation-list article > span {
    width: 40px;
    height: 40px;
  }

  .v8-plan-card {
    min-height: auto;
  }

  .recommended-badge {
    top: 18px;
    right: 18px;
  }

  .payment-options > div {
    grid-template-columns: 1fr auto;
  }

  .checkpoint-strip {
    grid-template-columns: 1fr;
  }

  .checkpoint-strip > li {
    min-height: auto;
    padding: 18px 20px;
  }

  .plan-actions {
    grid-template-columns: 1fr;
  }

  .module-switcher {
    flex-wrap: nowrap;
    margin-inline: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .module-switcher a {
    flex: 0 0 auto;
  }

  .v8-module-question .lived-signal-list {
    grid-template-columns: 1fr;
  }

  .v8-module-question .lived-signal-list article {
    min-height: 112px;
  }

  .visual-story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .visual-story-grid .visual-story-main {
    grid-row: auto;
  }

  .visual-story-grid figure {
    min-height: 300px;
  }

  .visual-story-grid .visual-story-main {
    min-height: 390px;
  }

  .biosignature-section .result-card {
    min-height: auto;
  }

  .module-repeat-layout img {
    max-height: 360px;
  }

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

  .purchase-card {
    min-height: 370px;
  }

  .purchase-quiz-link {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .v8-related-card {
    min-height: 360px;
  }
}

@media (max-width: 400px) {
  .wrap {
    width: min(calc(100% - 20px), var(--wrap));
  }

  .nav-toggle {
    padding-inline: 13px;
  }

  .v8-hero .hero-copy,
  .v8-module-hero .module-hero-copy {
    padding-inline: 19px;
  }

  .v8-hero h1,
  .v8-module-hero h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .complete-offer-copy h2,
  .twin-explainer-copy h2,
  .module-input-layout > div:first-child h2,
  .module-repeat-layout h2 {
    font-size: 38px;
  }

  .module-card-body,
  .plan-card,
  .purchase-card {
    padding-inline: 20px;
  }

  .v8-module-card .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .v8-module-card .button,
  .v8-module-card .text-link {
    justify-content: center;
    width: 100%;
  }

  .payment-options strong {
    font-size: 21px;
  }

  .final-cta {
    padding-inline: 20px;
  }
}

.catalog-gate {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  border: 1px solid rgba(8, 35, 54, 0.16);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(4, 24, 38, 0.28);
}

.catalog-gate::backdrop {
  background: rgba(4, 24, 38, 0.72);
  backdrop-filter: blur(4px);
}

.catalog-gate-inner {
  padding: 34px;
}

.catalog-gate h2 {
  max-width: 520px;
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.98;
}

.catalog-gate p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.catalog-gate .catalog-gate-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--mist);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.catalog-gate .button-row {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .catalog-gate-inner {
    padding: 26px 22px;
  }

  .catalog-gate .button-row {
    align-items: stretch;
  }

  .catalog-gate .button {
    width: 100%;
  }
}

/* V10 TwinMe detail-page layer, cache revision 10.0 */
:root {
  --purple: #5c53c2;
  --purple-light: #7f77dd;
  --purple-soft: #f8f6fe;
}

.v10-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
}

.v10-biotwin-bar {
  border-bottom: 1px solid rgba(7, 27, 44, 0.08);
  background: #fff;
}

.v10-twinme-bar {
  background: #fbfaf6;
}

.v10-header-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v10-twinme-bar .v10-header-row {
  min-height: 72px;
}

.v10-wordmark {
  color: var(--navy);
  font-family: Montserrat, Inter, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.v10-wordmark-biotwin {
  color: #0d7377;
  font-size: 1.05rem;
}

.v10-wordmark-twinme {
  color: var(--purple);
  font-size: 1.65rem;
}

.v10-science-nav {
  display: flex;
  gap: 24px;
}

.v10-science-nav a {
  color: #52636f;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.v10-site-header .header-nav > a:hover {
  color: var(--purple);
}

.v10-site-header .plan-link {
  background: var(--purple);
}

.v10-module-hero {
  background: linear-gradient(180deg, var(--purple-soft), var(--paper));
}

.v10-module-hero .module-hero-shell {
  background: linear-gradient(135deg, #2f286e 0%, #5c53c2 58%, #7f77dd 100%);
}

.v10-module-hero .module-hero-headline {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.45;
}

.v10-module-hero .module-switcher a[aria-current="page"] {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
}

.v10-module-hero .button.primary,
.purchase-card.complete-focus .button.primary,
.final-cta .button.primary {
  background: var(--purple);
  color: #fff;
}

.purchase-card.complete-focus .button.primary {
  background: #fff;
  color: #3e367e;
}

.v10-module-hero .button.primary:hover,
.purchase-card.complete-focus .button.primary:hover,
.final-cta .button.primary:hover {
  background: #48409d;
}

.biosignature-section .result-card {
  border-top: 4px solid var(--purple-light);
}

.biosignature-section .result-card > span {
  color: var(--purple);
}

.purchase-card.complete-focus {
  background: linear-gradient(145deg, #2f286e, #5c53c2);
}

.v10-footer .footer-biotwin-link strong {
  color: #fff;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

@media (max-width: 1040px) {
  .v10-science-nav {
    display: none;
  }

  .v10-biotwin-bar .v10-header-row {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .v10-biotwin-bar {
    display: none;
  }

  .v10-twinme-bar .v10-header-row {
    min-height: 64px;
  }
}

/* V11, composants partagés conservant l'architecture V10 */
.v11-site-header .v10-twinme-bar {
  background: rgba(255, 255, 255, 0.98);
}

.v11-site-header .v10-header-row {
  min-height: 76px;
}

.v11-brand-lockup {
  display: flex;
  min-width: 168px;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.v11-brand-lockup img {
  width: 126px;
  height: auto;
}

.v11-brand-lockup span {
  margin: 2px 0 0 3px;
  color: #687985;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.v11-site-header .header-nav {
  gap: 18px;
}

.v11-site-header .header-nav > a {
  font-size: 13px;
}

.v11-site-header .plan-link {
  background: var(--navy);
}

.v11-noscript-header {
  min-height: 76px;
}

.v11-noscript-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.v11-noscript-nav > a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.v11-module-fallback .module-card-body > .button {
  width: 100%;
  margin-top: auto;
}

.v11-footer-brand {
  display: inline-flex;
  width: 132px;
  margin-bottom: 12px;
}

.v11-footer-brand img {
  width: 100%;
  height: auto;
}

.module-hero h1,
.section-heading h2,
.complete-offer-copy h2,
.twin-explainer-copy h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body[data-module="exposure"] .module-hero h1 {
  font-size: clamp(46px, 4.4vw, 64px);
}

@media (max-width: 1120px) {
  .v11-site-header .header-nav {
    gap: 13px;
  }

  .v11-site-header .header-nav > a {
    font-size: 12px;
  }
}

@media (max-width: 1040px) {
  .v11-site-header .header-nav {
    inset: 76px 0 auto;
    z-index: 60;
  }

  .v11-site-header .header-nav.is-open {
    gap: 0;
    justify-items: stretch;
  }

  .v11-site-header .header-nav > a {
    width: 100%;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .v11-site-header .header-nav > a:last-child {
    border-bottom: 0;
  }

  .v11-site-header .plan-link {
    width: max-content;
    margin: 12px 0;
    padding-inline: 18px;
    border-bottom: 0;
  }

  .v11-noscript-header {
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .v11-noscript-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 18px;
  }
}

@media (max-width: 720px) {
  .v11-site-header .v10-header-row {
    min-height: 64px;
  }

  .v11-site-header .header-nav {
    inset: 64px 0 auto;
    max-height: calc(100vh - 64px);
  }

  .v11-brand-lockup {
    min-width: 0;
  }

  .v11-brand-lockup img {
    width: 108px;
  }

  .v11-brand-lockup span {
    display: none;
  }

  .module-hero h1 {
    font-size: clamp(34px, 9vw, 50px);
  }
}

.v11-site-header :focus-visible,
main :focus-visible,
.site-footer :focus-visible,
.catalog-gate :focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #073f5f !important;
}

.purchase-card.complete-focus .button.primary:hover {
  background: #f0eefb;
  color: #3e367e;
}
