/* =============================================================================
   DANTE LABS — GENOME PAGE STYLES
   Page-specific styles for /genome/ (purchase page)
   Requires: base.css (loaded first)
   ============================================================================= */

/* ─── NAV ALWAYS-SCROLLED OVERRIDE ─────────────────────────────────────────── */
body.nav-always-scrolled .site-header-wrapper {
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08) !important;
}

body.nav-always-scrolled .site-header-wrapper .nav-login,
body.nav-always-scrolled .site-header-wrapper .nav-dropdown-toggle,
body.nav-always-scrolled .site-header-wrapper .nav-links a {
  color: var(--color-dark) !important;
}

/* ─── PRODUCT HERO ──────────────────────────────────────────────────────────── */
.product-hero {
  padding-top: clamp(140px, 14vw, 200px);
  padding-bottom: var(--section-pad-v);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-hero-content .h1 {
  font-size: var(--font-h1-size);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.product-hero-oneliner {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 520px;
  margin-bottom: 28px;
}

.credential-bar-inline {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.credential-bar-inline span {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  white-space: nowrap;
  margin: 0 4px 4px 0;
}

.product-hero-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-label {
  font-size: var(--font-small-size);
  color: var(--color-muted);
}

.price-amount {
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 300;
  color: var(--color-dark);
  letter-spacing: -0.03em;
}

.product-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 32px 60px rgba(28, 33, 40, 0.18))
          drop-shadow(0 12px 24px rgba(28, 33, 40, 0.08));
}

/* ─── VARIANT SELECTOR ──────────────────────────────────────────────────────── */
.variant-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 0;
  /* Subgrid: rows auto-sized, shared across all three cards */
  grid-template-rows: auto;
}


/* Cards are now <a> elements — reset link styles */
a.variant-card {
  text-decoration: none;
  color: inherit;
  display: grid; /* override browser default for <a> */
}

.variant-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0ddd8;
  border-radius: var(--card-radius);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  /* Subgrid: each card spans 3 rows (head / zone / cta) */
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  font-family: inherit;
  padding: 0;
  overflow: hidden;
}

.variant-card:hover {
  box-shadow: 0 8px 32px rgba(28,33,40,0.13), 0 2px 8px rgba(28,33,40,0.06);
  transform: translateY(-2px);
  border-color: rgba(89,49,89,0.35);
}

.variant-card.is-selected {
  background: #ffffff;
  border: 2px solid #593159;
  /* Elevated resting state — recommended card should feel prominent even before hover */
  box-shadow: 0 12px 40px rgba(89,49,89,0.16), 0 4px 12px rgba(89,49,89,0.08);
}

.variant-card.is-selected:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(89,49,89,0.22), 0 6px 16px rgba(89,49,89,0.10);
}

/* selected card: full-card plum via .variant-card.is-selected background */

/* ─── BADGE ─────────────────────────────────────────────────────────────────── */
.variant-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.variant-badge-spacer {
  display: none;
}

.variant-badge--value {
  background: rgba(89, 49, 89, 0.10);
  color: #593159;
}

/* ─── CARD ZONES ────────────────────────────────────────────────────────────── */

/* Zone 1: Identity header */
.vc-head {
  padding: 22px 24px 10px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.vc-tier-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #593159;
  margin-bottom: 14px;
  display: block;
}

.vc-price-row {
  margin-bottom: 4px;
}

.variant-price-amount {
  font-size: clamp(32px, 2.6vw, 40px);
  font-weight: 300;
  color: #1c2128;
  letter-spacing: -0.04em;
  line-height: 1;
}

.vc-one-time {
  font-size: 11.5px;
  color: rgba(28,33,40,0.58);
  margin-top: 6px;
  margin-bottom: 0;
}

.vc-descriptor {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(28,33,40,0.82);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Zones 2 & 3: Feature zones */
.vc-zone {
  padding: 12px 24px 16px;
  border-top: 1px solid #e8e5e0;
}

/* Zone 3 — no background override, picks up .vc-zone's #f7f6f4 */
.vc-zone--active,
.vc-zone--expand { }

.vc-zone-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(28,33,40,0.28);
  margin-bottom: 10px;
}

.vc-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vc-features li {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(28,33,40,0.80);
  padding: 3px 0 3px 14px;
  position: relative;
}

.vc-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(89,49,89,0.25);
}

/* After line — small muted trust sentence */
.vc-after-line {
  font-size: 11px;
  color: rgba(28,33,40,0.38);
  line-height: 1.5;
  padding: 12px 24px;
  border-top: 1px solid #e8e5e0;
  margin: 0;
  font-style: italic;
}

/* Empty placeholder (DISCOVER) — takes space for subgrid alignment */
.vc-after-line--empty {
  visibility: hidden;
  pointer-events: none;
}

/* CTA strip at base of card — looks like a real button */
.vc-cta {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid #e8e5e0;
  color: #593159;
  background: rgba(89,49,89,0.04);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Unselected: plum outline button feel */
.variant-card:not(.is-selected) .vc-cta {
  outline: 1.5px solid rgba(89,49,89,0.40);
  outline-offset: -1.5px;
  border-radius: 0 0 8px 8px;
  color: #593159;
}

/* Selected (recommended): solid plum fill */
.variant-card.is-selected .vc-cta {
  background: #593159;
  color: #ffffff;
  border-top-color: transparent;
  font-size: 14px;
  padding: 18px 24px;
}

/* Hover: deepen the action color on unselected cards */
.variant-card:not(.is-selected):hover .vc-cta {
  background: rgba(89,49,89,0.09);
  color: #593159;
  outline-color: rgba(89,49,89,0.70);
}


.variant-footer {
  max-width: 640px;
}

/* ─── COMPARE REVEAL ────────────────────────────────────────────────────────── */
.compare-reveal {
  margin-top: 28px;
  text-align: center;
}

.compare-toggle {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(28,33,40,0.65);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compare-toggle:hover {
  color: #593159;
}

.compare-toggle-arrow {
  display: inline-block;
  transition: transform 0.28s ease;
  font-style: normal;
  line-height: 1;
}

.compare-toggle[aria-expanded="true"] .compare-toggle-arrow {
  transform: rotate(180deg);
}

/* Animated panel */
.compare-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
  overflow-x: auto;
}

.compare-panel.is-open {
  max-height: 700px;
  opacity: 1;
  margin-top: 20px;
}

/* ─── COMPARISON TABLE ──────────────────────────────────────────────────────── */
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  font-family: inherit;
}

.pricing-compare-table thead th {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(28,33,40,0.40);
  text-align: center;
  padding: 0 16px 14px;
  border-bottom: 1px solid #e0ddd8;
  vertical-align: bottom;
  line-height: 1.4;
}

.pricing-compare-table thead .pct-col--recommended {
  color: #593159;
}

.pricing-compare-table .pct-feature-col {
  text-align: left;
  width: 44%;
  padding-left: 0;
}

.pricing-compare-table .pct-price {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1c2128;
  margin-top: 3px;
  text-transform: none;
}

.pricing-compare-table tbody td {
  padding: 9px 16px;
  border-bottom: 1px solid #eeebe5;
  text-align: center;
  color: rgba(28,33,40,0.50);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-compare-table tbody td:first-child {
  text-align: left;
  color: rgba(28,33,40,0.65);
  font-size: 12px;
  font-weight: 400;
  padding-left: 0;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Highlight UNDERSTAND column */
.pricing-compare-table thead th:nth-child(3),
.pricing-compare-table tbody td:nth-child(3) {
  background: rgba(89,49,89,0.035);
}

/* ─── .pct — clean comparison table ────────────────────────────────────────── */
.pct {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12.5px;
  font-family: inherit;
  margin-top: 16px;
}

.pct .pct-label-col { width: 38%; }

.pct thead th {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(28,33,40,0.40);
  text-align: center;
  padding: 0 12px 14px;
  border-bottom: 1px solid #e0ddd8;
  vertical-align: bottom;
  line-height: 1.5;
}

.pct thead th:first-child { text-align: left; padding-left: 0; }

.pct-col--recommended { color: #593159 !important; }

.pct .pct-price {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1c2128;
  margin-top: 3px;
  text-transform: none;
}

/* Section label rows */
.pct .pct-section td {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,33,40,0.30);
  padding: 18px 0 6px;
  border-bottom: none;
  text-align: left;
}

/* Data rows */
.pct tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid #eeebe5;
  text-align: center;
  color: rgba(28,33,40,0.55);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}

.pct tbody td:first-child {
  text-align: left;
  color: rgba(28,33,40,0.70);
  font-size: 12px;
  font-weight: 400;
  padding-left: 0;
}

.pct tbody tr:last-child td { border-bottom: none; }

/* UNDERSTAND column highlight */
.pct thead th:nth-child(3),
.pct tbody td:nth-child(3) { background: rgba(89,49,89,0.035); }

/* None values */
.pct .pct-none { color: rgba(28,33,40,0.22); }


/* ─── CMP-GRID (replaces table — aligns 1:1 with .variant-cards) ─────────── */
.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px; /* same gap as .variant-cards */
  margin-top: 16px;
}

/* Tier header row — mirrors card header style */
.cmp-tier {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(28,33,40,0.40);
  text-align: center;
  padding: 0 12px 12px;
  border-bottom: 1px solid #e0ddd8;
}

.cmp-tier--recommended {
  color: #593159;
}

.cmp-price {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1c2128;
  margin-top: 3px;
  text-transform: none;
}

/* Section/group label — spans all 3 columns */
.cmp-group {
  grid-column: 1 / -1;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,33,40,0.30);
  padding: 16px 0 4px;
}

/* Feature label — spans all 3 columns */
.cmp-feat {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(28,33,40,0.60);
  font-weight: 400;
  padding: 8px 0 4px;
}

/* Value cells — one per tier */
.cmp-val {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(28,33,40,0.65);
  text-align: center;
  padding: 4px 8px 10px;
  border-bottom: 1px solid #eeebe5;
}

.cmp-val--none {
  color: rgba(28,33,40,0.25);
}

.cmp-val--highlight {
  background: rgba(89,49,89,0.035);
}

/* Desktop line-break utility */
.d-break { display: block; }
@media (max-width: 768px) {
  .d-break { display: none; }
  .cmp-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cmp-tier { display: none; }
}


/* ─── GENOME TRUST CARD ────────────────────────────────────────────────────── */
.genome-trust-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  row-gap: 8px;
  margin-top: 40px;
  padding: 18px 8px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.genome-trust-card .trust-strip-item {
  color: var(--color-muted);
  font-size: 13px;
  border-right-color: rgba(0, 0, 0, 0.10);
}

.genome-trust-card .trust-strip-item:last-child {
  border-right: none;
}

.genome-trust-card .trust-strip-item strong {
  color: var(--color-dark);
}

.genome-trust-card .trust-strip-icon {
  opacity: 1;
  color: var(--color-accent);
}


/* =============================================================================
   SECTIONS BELOW HERO — Typography & Layout Overrides
   ============================================================================= */

#main-content > .section:not(#variant-selector) {
  padding: 96px 0;
}

#main-content > .section:not(#variant-selector) .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #593159;
}


/* ─── SECTION 2: CLINICAL STANDARDS (dark) ─────────────────────────────────── */
.section--dark .h2 {
  color: #ffffff;
}

.section--dark .body-copy {
  color: rgba(255, 255, 255, 0.65);
}

.credentials-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.credential-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 32px;
}

.credential-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.credential-item p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.60);
}


/* ─── SECTION 3: CLINICAL ACCEPTANCE ───────────────────────────────────────── */
.proof-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto auto;
  column-gap: 24px;
  margin-top: 48px;
}

.proof-case-card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 40px;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  row-gap: 0;
}

.proof-case-card .card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #593159;
}

.proof-case-card .body-copy {
  font-size: 15px;
  line-height: 1.65;
  color: #444444;
  margin-top: 20px;
}

.proof-case-card .pull-quote {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #1c2128;
  margin-top: 32px;
}

.proof-case-card .proof-attribution {
  margin-top: 20px;
  align-self: end;
}

.proof-case-card .proof-attribution-name {
  font-size: 14px;
  font-weight: 600;
  color: #1c2128;
}

.proof-case-card .proof-attribution-institution {
  font-size: 14px;
  font-weight: 400;
  color: #888888;
}


/* ─── SECTION 4: WHAT YOU RECEIVE (plum background) ───────────────────────── */
.section--plum {
  background: #593159;
  position: relative;
  overflow: hidden;
}

.section--plum::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/media/biology_hero.png') center / cover no-repeat;
  opacity: 0.02;
  pointer-events: none;
}

.section--plum > * {
  position: relative;
  z-index: 1;
}

.section--plum .eyebrow {
  color: rgba(255, 255, 255, 0.50) !important;
}

.section--plum .h2 {
  color: #ffffff;
}

.section--plum .body-copy {
  color: rgba(255, 255, 255, 0.65);
}

.included-intro {
  max-width: 680px;
  margin-bottom: 48px;
}

.distinction-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
}

.distinction-number {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.distinction-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.distinction-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}


.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}

/* Connector line through icon row */
.how-steps-grid::before {
  content: "";
  position: absolute;
  top: calc(32px + 26px); /* card padding + center of 52px icon */
  left: calc(32px + 26px);
  right: calc(32px + 26px);
  height: 1px;
  border-top: 1.5px dashed rgba(89, 49, 89, 0.20);
  pointer-events: none;
  z-index: 0;
}

.how-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how-step-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}

.how-step-card:hover {
  box-shadow: 0 4px 20px rgba(28,33,40,0.07);
}

.how-step-number {
  font-size: 15px;
  font-weight: 700;
  color: #593159;
  letter-spacing: 0.06em;
}

.how-step-icon {
  background: rgba(89, 49, 89, 0.07);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #593159;
  flex-shrink: 0;
}

.how-step-title {
  font-size: 16px;
  font-weight: 500;
  color: #1c2128;
  margin-top: 20px;
}

.how-step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #444444;
}

/* Process section heading — matches Genome Manager h3 */
#how-h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
}

/* ─── Dark variant: HOW IT WORKS on navy background ─────────────────────── */
.section--dark #how-h2 {
  color: #ffffff;
}

.section--dark .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

/* Connector line — lighter on dark bg */
.section--dark .how-steps-grid::before {
  border-top-color: rgba(255, 255, 255, 0.10);
}

/* Cards — glass-dark surface */
.section--dark .how-step-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.09);
}

.section--dark .how-step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Step number — stays plum but lightened */
.section--dark .how-step-number {
  color: #b07ab0;
}

/* Icon circle — slightly brighter plum tint */
.section--dark .how-step-icon {
  background: rgba(176, 122, 176, 0.15);
  color: #c090c0;
}

/* Titles and descriptions */
.section--dark .how-step-title {
  color: #ffffff;
}

.section--dark .how-step-desc {
  color: rgba(255, 255, 255, 0.55);
}


/* Genome Manager band */
.genome-manager-band-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 56px;
  box-shadow: none;
}

.genome-manager-band-content {
  flex: 0 0 40%;
  min-width: 0;
}

.genome-manager-band-content .h3 {
  font-size: 36px;
  font-weight: 500;
  color: #1c2128;
}

.genome-manager-band-image {
  flex: 1;
  min-width: 0;
}

.genome-manager-band-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}


/* ─── SECTION 6: FINAL CTA ────────────────────────────────────────────────── */
.section--cta-finale {
  background: #1c2128;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

.cta-final-left {}

.cta-final-right {}

.cta-final .h2 {
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.cta-final .body-copy {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-left: 0;
  margin-right: 0;
  line-height: 1.65;
}

/* Trust stats row */
.cta-trust-stats {
  display: flex;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.cta-trust-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.cta-trust-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 24px;
}

.cta-trust-stat:not(:first-child):not(:last-child) {
  padding-left: 24px;
  padding-right: 24px;
}

.cta-trust-stat-value {
  display: block;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cta-trust-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-top: 6px;
}

.compact-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 32px 0 0;
  text-align: left;
}

.compact-option {
  cursor: pointer;
}

.compact-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.compact-option-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f4f3f1;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}

.compact-option input:checked + .compact-option-inner {
  border-color: #593159;
  background: #ffffff;
}

.compact-option-name {
  font-size: 15px;
  font-weight: 500;
  color: #1c2128;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compact-option-badge,
.compact-option-badge--value {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: #f0ebf0;
  color: #593159;
}

.compact-option-price {
  font-size: 15px;
  font-weight: 500;
  color: #1c2128;
  letter-spacing: 0;
}

/* ─── Tier confirmation chip (Final CTA) ──────────────────────────────────── */
.cta-tier-chip {
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 10px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.12);
  margin-top: 0;
}

.cta-tier-chip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-tier-chip-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-tier-chip-name {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.cta-tier-chip-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.10);
  padding: 3px 8px;
  border-radius: 3px;
}

.cta-tier-chip-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cta-tier-chip-price {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cta-tier-chip-change {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.cta-tier-chip-change:hover {
  color: rgba(255,255,255,0.80);
}

/* Full-width white button in finale */
.section--cta-finale .cta-group {
  margin-top: 14px;
}

.section--cta-finale .cta-group .btn-primary {
  background: #ffffff;
  color: #1c2128;
  font-weight: 700;
  border-color: #ffffff;
  width: 100%;
  justify-content: center;
  padding: 18px 26px;
  font-size: 16px;
}

.section--cta-finale .cta-group .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.20);
}

.section--cta-finale .cta-micro-copy {
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* ─── SECTION: THE PROCESS — mid-offwhite background ──────────────────────── */
.section--mid-offwhite {
  background: #e8e5df;
}


/* ─── MOBILE FIXED BAR ──────────────────────────────────────────────────────── */
.mobile-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  display: none;
}

.mobile-fixed-bar.is-visible {
  transform: translateY(0);
}

.mobile-fixed-bar-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.mobile-nav-open .mobile-fixed-bar {
  display: none !important;
}


/* ─── GEO-CONTROLLED CONTENT ────────────────────────────────────────────────── */
.geo-eu-only {
  display: none;
}


/* ─── RESPONSIVE: 1024px ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-hero-grid {
    gap: 32px;
  }

  #main-content > .section:not(#variant-selector) .h2 {
    font-size: clamp(32px, 4.5vw, 48px);
  }

  .cta-final {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .genome-manager-band-content .h3 {
    font-size: clamp(28px, 3.5vw, 36px);
  }
}

/* ─── RESPONSIVE: 768px ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #main-content > .section:not(#variant-selector) {
    padding: 72px 0;
  }

  .genome-manager-band-inner {
    flex-direction: column;
    padding: 32px 28px;
    gap: 32px;
  }

  .genome-manager-band-content {
    flex: 1 1 auto;
  }

  /* How-steps cards: 2x2 grid on tablet */
  .how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .how-steps-grid::before {
    display: none;
  }

  .how-step-card {
    padding: 24px;
  }

  .product-hero {
    padding-top: 100px;
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-hero-image {
    order: -1;
  }

  .product-img {
    max-width: 320px;
  }

  .variant-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .variant-badge-spacer {
    display: none;
  }

  .genome-trust-card {
    margin-top: 28px;
    padding: 14px 4px;
  }

  .genome-trust-card .trust-strip-item {
    font-size: 11px;
    padding: 0 10px;
  }

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

  .credentials-bar {
    grid-template-columns: 1fr;
  }

  .mobile-fixed-bar {
    display: block;
  }

  .product-hero-oneliner {
    text-wrap: pretty;
  }

  .product-hero-content .h1 {
    text-wrap: balance;
  }
}

/* ─── RESPONSIVE: 480px ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  #main-content > .section:not(#variant-selector) {
    padding: 56px 0;
  }

  .genome-manager-band-inner {
    padding: 24px 20px;
  }

  /* How-steps cards: single column on phone */
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-step-card {
    padding: 20px;
  }

  .product-hero-content .h1 {
    font-size: clamp(36px, 9vw, 44px);
  }

  .product-hero-oneliner {
    font-size: 16px;
  }

  .credential-bar-inline span {
    font-size: 11px;
    padding: 5px 8px;
  }

  .vc-head {
    padding: 22px 20px 20px;
  }

  .vc-zone,
  .vc-after-line,
  .vc-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-compare-table {
    font-size: 12px;
  }

  .proof-case-card {
    padding: 28px 24px;
  }

  .compact-option-inner {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 4px;
  }
}
