:root {
  --bg: #061b3a;
  --bg-deep: #041328;
  --surface: rgba(13, 47, 94, 0.78);
  --surface-strong: rgba(9, 32, 66, 0.92);
  --surface-soft: rgba(9, 35, 73, 0.65);
  --primary: #1877f2;
  --accent: #49c2ff;
  --glow: #bfe9ff;
  --text: #f6fbff;
  --muted: #a8c0df;
  --success: #62e3c6;
  --border: rgba(135, 196, 255, 0.18);
  --border-strong: rgba(135, 196, 255, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --nav-height: 84px;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-hero: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-synthesis: none;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(73, 194, 255, 0.2), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(24, 119, 242, 0.16), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(98, 227, 198, 0.08), transparent 28%),
    linear-gradient(180deg, #081d3e 0%, #05162f 52%, #041327 100%);
  min-height: 100vh;
  line-height: 1.6;
  padding-top: 0;
}

body:not([data-page="home"]) {
  padding-top: var(--nav-height);
}

strong {
  font-weight: var(--weight-semibold);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  opacity: 0.36;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(191, 233, 255, 0.05);
  box-shadow: 0 8px 22px rgba(3, 14, 30, 0.025);
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.03em;
}

.brand-logo {
  width: auto;
  height: 34px;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  line-height: 1;
}

.brand-copy small {
  color: rgba(168, 192, 223, 0.78);
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(73, 194, 255, 0.28), rgba(24, 119, 242, 0.78)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(191, 233, 255, 0.26);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.06);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: var(--weight-medium);
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav-label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 2px;
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.72;
  white-space: nowrap;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav-links a {
  white-space: nowrap;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--text) !important;
  border: 1px solid rgba(191, 233, 255, 0.18);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.74), rgba(73, 194, 255, 0.24));
  box-shadow: 0 0 24px rgba(24, 119, 242, 0.2);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(12, 39, 78, 0.8);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: var(--weight-semibold);
}

.hero,
.page-hero {
  padding: 88px 0 72px;
}

.hero-layout,
.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 43, 86, 0.7);
  border: 1px solid rgba(191, 233, 255, 0.12);
  color: var(--glow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-hero);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), var(--accent));
  box-shadow: 0 0 18px rgba(98, 227, 198, 0.48);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  margin-top: 18px;
  max-width: 12ch;
}

.hero-copy,
.page-hero-copy {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 22px 0 0;
  font-family: var(--font-hero);
  font-weight: 400;
}

.hero-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.hero-metadata span,
.mini-chip,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-hero);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-hero .btn,
.hero-actions .btn {
  font-family: var(--font-hero);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.95), rgba(73, 194, 255, 0.88));
  box-shadow: 0 24px 50px rgba(24, 119, 242, 0.26);
}

.btn-secondary {
  border-color: rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-visual,
.page-visual,
.dashboard-panel,
.glass-card,
.comparison-card,
.form-card,
.info-card,
.faq-card,
.pricing-card,
.timeline-step,
.domain-card,
.story-card,
.benefit-card,
.metric-card,
.value-card,
.access-card,
.principle-card,
.proof-card {
  position: relative;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.pricing-card {
  background: var(--surface-strong);
}

.hero-visual,
.page-visual {
  min-height: 720px;
  padding: 28px;
}

.hero-visual::before,
.page-visual::before,
.glass-card::before,
.dashboard-panel::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -5%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(73, 194, 255, 0.22), transparent 64%);
  pointer-events: none;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.2) 100%);
}

.floating-chip,
.stat-pill,
.legend-pill {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
  max-width: calc(100% - 40px);
  z-index: 10;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(191, 233, 255, 0.22);
  background: rgba(6, 27, 58, 0.95);
  backdrop-filter: blur(12px);
}

.floating-chip strong,
.stat-pill strong {
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.floating-chip span,
.stat-pill span,
.legend-pill span {
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-chip.top-right,
.stat-pill.top-right,
.legend-pill.top-right {
  top: 36px;
  right: 28px;
}

.floating-chip.mid-left,
.stat-pill.mid-left,
.legend-pill.mid-left {
  top: 180px;
  left: 22px;
}

.floating-chip.bottom-right,
.stat-pill.bottom-right,
.legend-pill.bottom-right {
  bottom: 44px;
  right: 20px;
}

.dashboard-surface {
  position: absolute;
  inset: auto 28px 28px;
  min-height: 260px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 32, 66, 0.96), rgba(5, 20, 40, 0.96));
  border: 1px solid rgba(191, 233, 255, 0.18);
  padding: 22px;
}

.dashboard-surface::after {
  content: "";
  position: absolute;
  inset: auto auto 42px 24px;
  width: calc(100% - 48px);
  height: 120px;
  background:
    linear-gradient(180deg, rgba(73, 194, 255, 0.24), transparent),
    linear-gradient(90deg, transparent 0%, rgba(73, 194, 255, 0.16) 60%, transparent 100%);
  clip-path: polygon(0 82%, 14% 60%, 26% 66%, 40% 38%, 55% 46%, 66% 20%, 78% 35%, 100% 12%, 100% 100%, 0 100%);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.metric-card,
.value-card {
  padding: 18px;
  border-radius: 20px;
}

.metric-card h3,
.value-card h3 {
  font-size: 2rem;
}

.metric-card p,
.value-card p,
.dashboard-list li,
.comparison-table td,
.comparison-table th,
.card-copy,
.section-copy,
.section-label,
.footer-note,
.fine-print {
  color: var(--muted);
}

.form-copy p {
  color: var(--muted);
}

.dashboard-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(191, 233, 255, 0.08);
}

.dashboard-list strong {
  color: var(--text);
}

main section,
.section-block {
  padding: 72px 0;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  max-width: 14ch;
}

.section-heading-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 18px 32px;
}

.section-heading-comparison > div {
  min-width: 0;
}

.section-heading-comparison h2 {
  max-width: 18ch;
}

.section-heading-comparison .section-copy {
  max-width: 38ch;
  justify-self: end;
}

.section-copy {
  max-width: 62ch;
  font-size: 1.03rem;
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.domains-grid,
.story-grid,
.value-grid,
.feature-grid,
.proof-grid,
.principles-grid,
.faq-grid,
.benefit-grid,
.metrics-grid,
.access-grid,
.steps-grid,
.comparison-layout {
  display: grid;
  gap: 20px;
}

.grid-2,
.comparison-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.stats-grid,
.story-grid,
.value-grid,
.proof-grid,
.benefit-grid,
.access-grid,
.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.feature-grid,
.domains-grid,
.metrics-grid,
.principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.comparison-card,
.form-card,
.info-card,
.faq-card,
.pricing-card,
.timeline-step,
.domain-card,
.story-card,
.benefit-card,
.value-card,
.access-card,
.principle-card,
.proof-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card h3,
.info-card h3,
.timeline-step h3,
.domain-card h3,
.story-card h3,
.benefit-card h3,
.access-card h3,
.principle-card h3,
.proof-card h3 {
  font-size: 1.14rem;
  margin-bottom: 12px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kpi strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(191, 233, 255, 0.1);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.comparison-card {
  padding: 12px;
}

.comparison-card-scroll {
  padding: 16px;
}

.comparison-scroll-hint {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.comparison-scroll-hint::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.comparison-scroll-shell {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
  border-radius: 16px;
}

.comparison-scroll-shell:focus-visible {
  outline: 2px solid rgba(73, 194, 255, 0.48);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.comparison-table-wide {
  width: max(100%, 760px);
  min-width: 760px;
  table-layout: fixed;
}

.comparison-col-label {
  width: 190px;
}

.comparison-col-aia,
.comparison-col-typical {
  width: 272px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(191, 233, 255, 0.08);
  vertical-align: top;
}

.comparison-card-scroll .comparison-table th:not(:last-child),
.comparison-card-scroll .comparison-table td:not(:last-child) {
  border-right: 1px solid rgba(191, 233, 255, 0.08);
}

.comparison-table th {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 0.98rem;
}

.comparison-table-wide thead th {
  background: rgba(255, 255, 255, 0.08);
}

.comparison-table-wide thead th:first-child,
.comparison-table-wide tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 1;
}

.comparison-table-wide thead th:first-child {
  z-index: 2;
}

.comparison-table-wide tbody th[scope="row"] {
  min-width: 190px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table tr:last-child th {
  border-bottom: 0;
}

.comparison-card-scroll .status-pill {
  max-width: 100%;
  align-items: flex-start;
  white-space: normal;
  line-height: 1.45;
  border-radius: 16px;
  padding: 12px 14px;
}

.comparison-card-scroll .status-pill::before {
  margin-top: 0.28rem;
  flex-shrink: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-positive {
  color: var(--text);
  background: rgba(98, 227, 198, 0.12);
}

.status-positive::before {
  background: var(--success);
  box-shadow: 0 0 16px rgba(98, 227, 198, 0.5);
}

.status-limited {
  color: var(--text);
  background: rgba(73, 194, 255, 0.08);
}

.status-limited::before {
  background: var(--accent);
}

.status-varies {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.status-varies::before {
  background: rgba(255, 255, 255, 0.72);
}

.timeline-step {
  min-height: 100%;
}

.timeline-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(73, 194, 255, 0.14);
  border: 1px solid rgba(73, 194, 255, 0.22);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 16px;
}

.domain-card ul,
.benefit-card ul,
.access-card ul,
.story-card ul,
.pricing-list,
.detail-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.domain-card li,
.benefit-card li,
.access-card li,
.story-card li,
.pricing-list li,
.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.domain-card li::before,
.benefit-card li::before,
.access-card li::before,
.story-card li::before,
.pricing-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), var(--accent));
}

.dashboard-panel {
  padding: 26px;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.dashboard-chart {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(191, 233, 255, 0.1);
  min-height: 320px;
}

.dashboard-chart-lines {
  position: relative;
  margin-top: 30px;
  height: 180px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  overflow: hidden;
}

.dashboard-chart-lines::before,
.dashboard-chart-lines::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.dashboard-chart-lines::before {
  background:
    linear-gradient(180deg, rgba(73, 194, 255, 0.2), transparent),
    linear-gradient(90deg, transparent 0%, rgba(73, 194, 255, 0.18) 60%, transparent 100%);
  clip-path: polygon(0 78%, 13% 64%, 25% 70%, 39% 43%, 51% 48%, 65% 28%, 81% 36%, 100% 18%, 100% 100%, 0 100%);
}

.dashboard-chart-lines::after {
  background:
    linear-gradient(180deg, rgba(98, 227, 198, 0.2), transparent),
    linear-gradient(90deg, transparent 0%, rgba(98, 227, 198, 0.18) 60%, transparent 100%);
  clip-path: polygon(0 88%, 10% 76%, 24% 74%, 35% 64%, 47% 55%, 60% 57%, 74% 45%, 88% 32%, 100% 26%, 100% 100%, 0 100%);
}

.dashboard-side {
  display: grid;
  gap: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(191, 233, 255, 0.08);
}

.detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-row strong {
  color: var(--text);
}

.pricing-card {
  display: grid;
  gap: 18px;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 10px;
}

.price-line strong {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-family: var(--font-display);
}

.fine-print {
  font-size: 0.88rem;
}

.membership-spotlight-section .container {
  display: grid;
  gap: 22px;
}

.membership-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.98fr);
  gap: 64px;
  align-items: start;
}

.membership-spotlight-visual {
  display: grid;
  gap: 16px;
  align-self: start;
}

.membership-spotlight-copy {
  align-self: start;
}

.membership-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 608px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  border: 1px solid rgba(17, 28, 53, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.96)),
    #fffdf8;
  box-shadow:
    0 22px 70px rgba(17, 28, 53, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  perspective: 1200px;
}

.membership-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(73, 194, 255, 0.13), transparent 31%),
    radial-gradient(circle at 18% 22%, rgba(24, 119, 242, 0.08), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(98, 227, 198, 0.1), transparent 30%);
  opacity: 0.88;
}

.membership-stage-grid,
.membership-stage-glow {
  position: absolute;
  pointer-events: none;
}

.membership-stage-grid {
  inset: 0;
  z-index: 1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(17, 28, 53, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 53, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 78%);
}

.membership-stage-glow {
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.44;
}

.membership-stage-glow-a {
  top: -118px;
  right: -92px;
  background: radial-gradient(circle, rgba(73, 194, 255, 0.34), transparent 68%);
}

.membership-stage-glow-b {
  bottom: -128px;
  left: -92px;
  background: radial-gradient(circle, rgba(98, 227, 198, 0.24), transparent 68%);
}

.membership-stage-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 220ms ease;
}

.membership-stage-frame.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.membership-subscription-card {
  --membership-card-tilt-x: 0deg;
  --membership-card-tilt-y: 0deg;
  --membership-card-lift-x: 0px;
  --membership-card-lift-y: 0px;
  --membership-card-shine-x: 50%;
  --membership-card-shine-y: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(448px, 100%);
  aspect-ratio: 1.62 / 1;
  padding: clamp(20px, 3.2vw, 28px);
  overflow: hidden;
  border-radius: 22px;
  color: #f6fbff;
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 233, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(73, 194, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #071f43 0%, #0a2348 54%, #1f5da5 100%);
  background-size: 135% 135%, 150% 150%, 100% 100%;
  background-position: 12% 18%, 88% 78%, center;
  border: 1px solid rgba(191, 233, 255, 0.22);
  box-shadow:
    0 34px 74px rgba(8, 31, 67, 0.22),
    0 18px 42px rgba(6, 27, 58, 0.18);
  transform-style: preserve-3d;
  transform:
    translate3d(var(--membership-card-lift-x), var(--membership-card-lift-y), 0)
    rotateX(var(--membership-card-tilt-x))
    rotateY(var(--membership-card-tilt-y));
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
  animation: membershipCardGradientShift 14s ease-in-out infinite alternate;
  will-change: transform;
}

.membership-subscription-card::before,
.membership-subscription-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.membership-subscription-card::before {
  background:
    linear-gradient(120deg, rgba(246, 251, 255, 0.08), transparent 24%, rgba(73, 194, 255, 0.08) 72%, transparent),
    repeating-radial-gradient(circle at 31% 39%, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px 25px);
  mix-blend-mode: screen;
  opacity: 0.54;
  animation: membershipCardTextureDrift 18s ease-in-out infinite alternate;
}

.membership-subscription-card::after {
  background: radial-gradient(circle at var(--membership-card-shine-x) var(--membership-card-shine-y), rgba(255, 255, 255, 0.32), transparent 32%);
  opacity: 0.58;
  transition: opacity 180ms ease;
}

.membership-subscription-card:hover {
  box-shadow:
    0 44px 88px rgba(8, 31, 67, 0.28),
    0 20px 48px rgba(6, 27, 58, 0.22);
}

.membership-card-header,
.membership-card-price,
.membership-card-billing,
.membership-card-footer {
  position: relative;
  z-index: 1;
}

.membership-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.membership-card-brand {
  display: grid;
  gap: 2px;
}

.membership-card-brand strong {
  font-size: clamp(1.35rem, 2.8vw, 1.62rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.membership-card-brand span,
.membership-card-footer span {
  color: rgba(246, 251, 255, 0.76);
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
}

.membership-card-price {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin-top: auto;
}

.membership-card-price strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.2vw, 4.75rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.membership-card-currency {
  padding-bottom: 10px;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: rgba(246, 251, 255, 0.95);
}

.membership-card-price span:last-child {
  padding-bottom: 10px;
  color: rgba(246, 251, 255, 0.88);
  font-size: clamp(0.9rem, 2.2vw, 1.02rem);
  font-weight: var(--weight-semibold);
}

.membership-card-billing {
  margin: 8px 0 0;
  color: rgba(246, 251, 255, 0.82);
  font-size: 0.88rem;
  font-weight: var(--weight-semibold);
}

.membership-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.membership-card-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(6, 27, 58, 0.28);
  border: 1px solid rgba(246, 251, 255, 0.16);
}

.membership-subscription-card-offer {
  justify-content: space-between;
}

.membership-subscription-card-platform {
  background:
    radial-gradient(circle at 16% 16%, rgba(209, 237, 255, 0.2), transparent 24%),
    radial-gradient(circle at 84% 76%, rgba(98, 227, 198, 0.16), transparent 30%),
    linear-gradient(135deg, #082349 0%, #12487a 56%, #1b7fb2 100%);
}

.membership-subscription-card-protocol {
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 233, 255, 0.16), transparent 24%),
    radial-gradient(circle at 80% 78%, rgba(125, 204, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #071f43 0%, #12386a 52%, #295c9f 100%);
}

.membership-subscription-card-retest {
  background:
    radial-gradient(circle at 20% 18%, rgba(221, 239, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(115, 228, 214, 0.15), transparent 30%),
    linear-gradient(135deg, #0b2448 0%, #164878 52%, #25718f 100%);
}

.membership-subscription-card-protocol .membership-card-footer {
  gap: 6px;
  margin-top: 12px;
}

.membership-subscription-card-protocol .membership-card-footer span {
  min-height: 28px;
  padding: 0 9px;
  font-size: 0.74rem;
}

.membership-subscription-card-retest .membership-card-footer {
  gap: 6px;
  margin-top: 12px;
}

.membership-subscription-card-retest .membership-card-footer span {
  min-height: 28px;
  padding: 0 9px;
  font-size: 0.74rem;
}

.membership-card-feature {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.membership-card-feature strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.membership-card-feature span {
  max-width: 24ch;
  color: rgba(246, 251, 255, 0.82);
  font-size: 0.92rem;
  font-weight: var(--weight-semibold);
  line-height: 1.45;
}

.membership-blank-panel {
  width: min(448px, 100%);
  aspect-ratio: 1.62 / 1;
  border-radius: 22px;
  border: 1.5px dashed rgba(17, 28, 53, 0.18);
  background:
    linear-gradient(135deg, rgba(17, 28, 53, 0.026), rgba(73, 194, 255, 0.055)),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.membership-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  width: min(520px, 100%);
}

.membership-thumb {
  appearance: none;
  width: 100%;
  font: inherit;
  cursor: pointer;
  touch-action: manipulation;
  display: grid;
  place-items: center;
  height: 72px;
  padding: 8px;
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid rgba(17, 28, 53, 0.08);
  box-shadow: 0 10px 24px rgba(17, 28, 53, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.membership-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 28, 53, 0.09);
}

.membership-thumb:focus-visible {
  outline: 2px solid rgba(45, 95, 254, 0.28);
  outline-offset: 4px;
}

.membership-thumb-active,
.membership-thumb[aria-selected="true"] {
  border-color: rgba(24, 119, 242, 0.34);
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 119, 242, 0.14);
  transform: translateY(-2px);
}

.membership-thumb-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  overflow: hidden;
  color: rgba(17, 28, 53, 0.36);
  background: rgba(17, 28, 53, 0.045);
  font-size: 0.76rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
}

.membership-thumb-card-preview {
  align-content: stretch;
  justify-items: stretch;
  padding: 8px 8px 7px;
  color: #f6fbff;
  background:
    radial-gradient(circle at 20% 20%, rgba(191, 233, 255, 0.18), transparent 25%),
    radial-gradient(circle at 82% 75%, rgba(73, 194, 255, 0.13), transparent 28%),
    linear-gradient(135deg, #071f43, #0a2348 56%, #1f5da5);
  position: relative;
  text-align: left;
}

.membership-thumb-card-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(246, 251, 255, 0.08), transparent 36%),
    repeating-radial-gradient(circle at 34% 42%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 8px);
  opacity: 0.54;
}

.membership-thumb-card-preview .membership-thumb-brand {
  align-self: start;
  font-size: 0.42rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: lowercase;
}

.membership-thumb-card-preview strong {
  align-self: center;
  margin-top: 2px;
  font-size: 0.68rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.membership-thumb-card-preview em,
.membership-thumb-card-preview small {
  display: block;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1;
}

.membership-thumb-card-preview em {
  align-self: start;
  margin-top: 1px;
  font-size: 0.31rem;
  font-weight: var(--weight-semibold);
  opacity: 0.88;
}

.membership-thumb-card-preview small {
  align-self: end;
  font-size: 0.33rem;
  font-weight: var(--weight-semibold);
  opacity: 0.84;
}

.membership-thumb-card-preview-protocol strong,
.membership-thumb-card-preview-retest strong {
  font-size: 0.62rem;
}

.membership-thumb-card-preview-protocol em,
.membership-thumb-card-preview-retest em {
  font-size: 0.29rem;
}

.membership-thumb-card-preview-platform {
  background:
    radial-gradient(circle at 18% 18%, rgba(209, 237, 255, 0.2), transparent 25%),
    radial-gradient(circle at 82% 74%, rgba(98, 227, 198, 0.16), transparent 30%),
    linear-gradient(135deg, #082349, #12487a 56%, #1b7fb2);
}

.membership-thumb-card-preview-protocol {
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 233, 255, 0.16), transparent 25%),
    radial-gradient(circle at 82% 74%, rgba(125, 204, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #071f43, #12386a 54%, #295c9f);
}

.membership-thumb-card-preview-retest {
  background:
    radial-gradient(circle at 18% 18%, rgba(221, 239, 255, 0.18), transparent 25%),
    radial-gradient(circle at 82% 74%, rgba(115, 228, 214, 0.15), transparent 30%),
    linear-gradient(135deg, #0b2448, #164878 54%, #25718f);
}

.membership-thumb-empty {
  border: 1px dashed rgba(17, 28, 53, 0.13);
}

@keyframes membershipCardGradientShift {
  0% {
    background-position: 12% 18%, 88% 78%, center;
  }

  100% {
    background-position: 24% 26%, 74% 66%, center;
  }
}

@keyframes membershipCardTextureDrift {
  0% {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(1%, 1%, 0) scale(1.03);
  }
}

.membership-thumb-copy {
  display: grid;
  gap: 4px;
}

.membership-thumb-copy strong {
  color: #111c35;
  font-size: 0.86rem;
  line-height: 1.15;
}

.membership-thumb-copy span {
  color: rgba(17, 28, 53, 0.62);
  font-size: 0.76rem;
  line-height: 1.4;
}

.membership-spotlight-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}

.membership-proofline {
  margin: 0;
  max-width: 38ch;
  color: rgba(17, 28, 53, 0.68);
  font-size: 1.04rem;
  line-height: 1.45;
}

.membership-spotlight-copy h2 {
  margin: 0;
  max-width: 12ch;
  color: #111c35;
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.membership-spotlight-copy .section-copy {
  margin: 0;
  max-width: 46ch;
}

.membership-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-checklist li {
  position: relative;
  padding-left: 30px;
  color: rgba(17, 28, 53, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.membership-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 8px;
  height: 15px;
  border-right: 2px solid #1877f2;
  border-bottom: 2px solid #1877f2;
  transform: rotate(45deg);
}

.membership-price-block {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 28, 53, 0.12);
}

.membership-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #111c35;
}

.membership-price-row strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.membership-price-currency {
  font-size: 1.55rem;
  padding-bottom: 12px;
}

.membership-price-unit {
  padding-bottom: 12px;
  color: rgba(17, 28, 53, 0.68);
  font-size: 1.08rem;
}

.membership-price-caption {
  margin: 0;
  max-width: 46ch;
  color: rgba(17, 28, 53, 0.64);
  font-size: 0.94rem;
  line-height: 1.5;
}

.membership-spotlight-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.membership-spotlight-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  white-space: nowrap;
}

.membership-spotlight-actions .btn-primary {
  min-width: 0;
}

.membership-spotlight-actions .btn-secondary {
  color: #111c35 !important;
  background: rgba(17, 28, 53, 0.04) !important;
  border-color: rgba(17, 28, 53, 0.12) !important;
  box-shadow: none;
}

.membership-cost-breakdown {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 24%, rgba(116, 181, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(126, 162, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #15335f 0%, #0a2348 100%);
  border: 1px solid rgba(161, 201, 255, 0.14);
  box-shadow: 0 24px 56px rgba(3, 12, 29, 0.2);
}

.membership-cost-breakdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(191, 222, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.membership-cost-label {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(206, 225, 249, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-cost-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.membership-cost-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  border: 1px solid rgba(161, 201, 255, 0.12);
  box-shadow:
    0 16px 38px rgba(3, 12, 29, 0.2),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

.membership-cost-grid strong {
  display: block;
  color: #edf4ff;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.membership-cost-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(205, 220, 244, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .membership-spotlight {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .membership-stage {
    min-height: 560px;
  }

  .membership-spotlight-copy h2 {
    max-width: 13ch;
  }
}

@media (max-width: 860px) {
  .membership-stage {
    min-height: 500px;
    padding: 24px;
    border-radius: 26px;
  }

  .membership-cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-spotlight-copy h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .membership-spotlight-section .container {
    gap: 18px;
  }

  .membership-stage {
    min-height: 360px;
    padding: 18px;
  }

  .membership-stage-frame {
    padding: 18px;
  }

  .membership-thumb-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .membership-thumb {
    height: 58px;
    padding: 6px;
  }

  .membership-card-footer {
    display: none;
  }

  .membership-card-billing {
    font-size: 0.78rem;
  }

  .membership-proofline {
    font-size: 0.96rem;
  }

  .membership-spotlight-copy {
    gap: 16px;
  }

  .membership-spotlight-copy h2 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .membership-checklist li {
    padding-left: 28px;
    font-size: 0.95rem;
  }

  .membership-price-row strong {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }

  .membership-price-currency,
  .membership-price-unit {
    padding-bottom: 8px;
  }

  .membership-spotlight-actions {
    gap: 10px;
  }

  .membership-cost-breakdown {
    padding: 20px;
    border-radius: 22px;
  }

  .membership-cost-grid {
    grid-template-columns: 1fr;
  }
}

body[data-page="how"] .subpage-main .page-hero h1,
body[data-page="platform"] .subpage-main .page-hero h1 {
  max-width: 17ch;
}

body[data-page="how"] .subpage-main .page-hero-copy,
body[data-page="platform"] .subpage-main .page-hero-copy {
  max-width: 60ch;
}

.journey-hero-visual .floating-chip,
.platform-memory-hero .floating-chip {
  max-width: 230px;
}

.journey-dashboard-surface .dashboard-list li,
.platform-memory-surface .dashboard-list li {
  align-items: flex-start;
}

.journey-overview-section,
.signal-layer-section,
.signal-examples-section,
.memory-components-section {
  background: #f6f4ec;
}

.memory-components-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(116, 181, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(102, 140, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #f5f1e6 0%, #f2ede1 100%);
}

.memory-components-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 28, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 53, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.memory-components-section .container {
  position: relative;
  z-index: 1;
}

.memory-components-section .section-heading {
  margin-bottom: 38px;
}

.memory-components-section .section-heading h2 {
  color: #111c35;
}

.memory-components-section .section-copy {
  color: rgba(17, 28, 53, 0.76);
}

.journey-strip {
  --journey-line: rgba(191, 211, 255, 0.16);
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-strip::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 1px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(158, 187, 255, 0.2) 12%, var(--journey-line) 50%, rgba(158, 187, 255, 0.2) 88%, transparent 100%);
}

.journey-strip li {
  position: relative;
  min-height: 190px;
  padding: 18px 14px 16px;
  border: 1px solid rgba(159, 190, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(25, 43, 78, 0.98) 0%, rgba(16, 28, 58, 0.98) 100%);
  color: #f3f7ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 54px rgba(7, 16, 35, 0.28);
}

.journey-strip li::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -8px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(158, 187, 255, 0.4);
  border-right: 1px solid rgba(158, 187, 255, 0.4);
  transform: rotate(45deg);
  background: #192b4e;
}

.journey-strip li:last-child::after {
  display: none;
}

.journey-strip span,
.memory-card span,
.signal-card span,
.story-panel-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(102, 146, 255, 0.16);
  color: #dbe7ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.journey-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #f8fbff;
}

.journey-strip p {
  margin: 10px 0 0;
  color: rgba(226, 235, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.48;
}

.journey-strip li:hover,
.journey-strip li:focus-within {
  border-color: rgba(172, 201, 255, 0.36);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 68px rgba(7, 16, 35, 0.34);
}

.home-journey-strip {
  margin-top: 30px;
}

.how-story-visual-system {
  min-height: 640px;
  background:
    radial-gradient(circle at 18% 18%, rgba(73, 194, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f9f6ed 0%, #eee9dc 100%);
}

.how-story-visual-system::before {
  background:
    linear-gradient(rgba(17, 28, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 53, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.journey-story-panel {
  display: grid;
  place-items: stretch;
  padding: 28px;
}

.journey-story-panel::after {
  display: none;
}

.story-panel-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(17, 28, 53, 0.09);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.84);
  color: #111c35;
  box-shadow: 0 30px 70px rgba(17, 28, 53, 0.12);
}

.story-panel-inner h3 {
  margin: 0;
  max-width: 14ch;
  color: #111c35;
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.story-panel-inner p {
  margin: 0;
  max-width: 62ch;
  color: rgba(17, 28, 53, 0.72);
  font-size: 1.02rem;
  line-height: 1.66;
}

.story-learns {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 79, 157, 0.14);
  border-radius: 18px;
  background: rgba(45, 95, 254, 0.055);
}

.story-learns strong {
  color: #111c35;
}

.story-learns span {
  color: rgba(17, 28, 53, 0.72);
  line-height: 1.56;
}

.story-panel-inner details,
.faq-card details {
  border-radius: 16px;
}

.story-panel-inner details {
  padding: 0;
  border: 1px solid rgba(17, 28, 53, 0.1);
  background: rgba(246, 244, 236, 0.7);
}

.story-panel-inner summary {
  min-height: 48px;
  padding: 14px 16px;
  color: #111c35;
  cursor: pointer;
  font-weight: 600;
}

.story-panel-inner details p {
  padding: 0 16px 16px;
  font-size: 0.94rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.signal-card,
.memory-card,
.signal-example-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 28, 53, 0.08);
  border-radius: 20px;
  background: #fffdf8;
  color: #111c35;
  box-shadow: 0 20px 48px rgba(17, 28, 53, 0.07);
}

.signal-card {
  min-height: 250px;
  padding: 22px;
}

.platform-signal-layer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(116, 181, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(102, 140, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #f5f1e6 0%, #f2ede1 100%);
}

.platform-signal-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 28, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 53, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.platform-signal-layer .container {
  position: relative;
  z-index: 1;
}

.platform-signal-layer .section-heading {
  margin-bottom: 38px;
}

.platform-signal-layer .section-heading h2 {
  color: #111c35;
}

.platform-signal-layer .section-copy {
  color: rgba(17, 28, 53, 0.76);
}

.platform-signal-layer .signal-grid {
  gap: 18px;
}

.platform-signal-layer .signal-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  color: #edf4ff;
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

.platform-signal-layer .signal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 224, 164, 0.42), rgba(191, 223, 255, 0.04));
}

.platform-signal-layer .signal-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.18) 0%, transparent 72%);
  pointer-events: none;
}

.signal-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(236, 248, 255, 0.92));
  border-color: rgba(45, 95, 254, 0.13);
}

.signal-card-system {
  background:
    linear-gradient(180deg, rgba(17, 28, 53, 0.94), rgba(23, 47, 86, 0.96));
  color: #f6f4ec;
}

.signal-card-system span {
  background: rgba(246, 244, 236, 0.12);
  color: #f6f4ec;
}

.platform-signal-layer .signal-card span {
  position: relative;
  z-index: 1;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
}

.signal-card h3,
.memory-card h3,
.signal-example-card h3 {
  margin: 22px 0 0;
  color: inherit;
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.signal-card p,
.memory-card p,
.signal-example-card p {
  margin: 12px 0 0;
  color: rgba(17, 28, 53, 0.7);
  line-height: 1.58;
}

.platform-signal-layer .signal-card h3,
.platform-signal-layer .signal-card p,
.platform-signal-layer .signal-card small {
  position: relative;
  z-index: 1;
}

.platform-signal-layer .signal-card h3 {
  color: #edf4ff;
}

.platform-signal-layer .signal-card p {
  color: rgba(205, 220, 244, 0.78);
}

.platform-signal-layer .signal-card small {
  color: rgba(205, 220, 244, 0.62);
}

.platform-proof-section {
  background: #f6f4ec;
}

.platform-proof-section .container {
  align-items: stretch;
  gap: 18px;
}

body[data-page="platform"] .platform-proof-section .proof-card {
  position: relative;
  display: flex;
  min-height: 284px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(111, 164, 255, 0.24);
  background:
    radial-gradient(circle at 78% 12%, rgba(98, 144, 238, 0.2), transparent 28%),
    linear-gradient(180deg, #2a4f86 0%, #1e3d70 42%, #19345f 100%);
  box-shadow:
    0 24px 52px rgba(6, 18, 41, 0.22),
    inset 0 1px 0 rgba(219, 235, 255, 0.12);
  overflow: hidden;
}

body[data-page="platform"] .platform-proof-section .proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(164, 207, 255, 0.48), rgba(191, 223, 255, 0.04));
}

body[data-page="platform"] .platform-proof-section .proof-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 72%);
  pointer-events: none;
}

body[data-page="platform"] .platform-proof-section .proof-card .card-kicker,
body[data-page="platform"] .platform-proof-section .proof-card h3,
body[data-page="platform"] .platform-proof-section .proof-card .card-copy {
  position: relative;
  z-index: 1;
}

body[data-page="platform"] .platform-proof-section .proof-card .card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(184, 216, 255, 0.12);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

body[data-page="platform"] .platform-proof-section .proof-card h3 {
  color: #f3f7ff;
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body[data-page="platform"] .platform-proof-section .proof-card .card-copy {
  margin-top: 18px;
  color: rgba(219, 229, 245, 0.86);
  line-height: 1.58;
}

.signal-card-system p,
.signal-card-system small {
  color: rgba(246, 244, 236, 0.74);
}

.signal-card small {
  display: block;
  margin-top: 18px;
  color: rgba(17, 28, 53, 0.58);
  font-size: 0.82rem;
  line-height: 1.42;
}

.signal-example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.signal-example-card {
  padding: 26px;
}

.signal-example-card h3 {
  margin-top: 0;
  font-family: var(--font-hero);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.signal-flow {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.signal-flow span {
  position: relative;
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(17, 28, 53, 0.08);
  border-radius: 14px;
  background: rgba(246, 244, 236, 0.74);
  color: rgba(17, 28, 53, 0.78);
  line-height: 1.46;
}

.signal-flow span + span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 28px;
  width: 1px;
  height: 10px;
  background: rgba(17, 28, 53, 0.18);
}

.output-grid .value-card {
  min-height: 240px;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.memory-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
  overflow: hidden;
}

.memory-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 224, 164, 0.42), rgba(191, 223, 255, 0.04));
}

.memory-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.18) 0%, transparent 72%);
  pointer-events: none;
}

.memory-card-large {
  grid-column: span 2;
}

.memory-card h3,
.memory-card p {
  position: relative;
  z-index: 1;
}

.memory-card h3 {
  color: #edf4ff;
}

.memory-card p {
  color: rgba(205, 220, 244, 0.78);
}

.memory-components-section .memory-card span {
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 48px;
  padding: 0 14px;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
}

.loop-cycle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.loop-cycle span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 244, 236, 0.18);
  border-radius: 18px;
  background: rgba(246, 244, 236, 0.08);
  color: #f6f4ec;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-intelligence-section {
  padding-top: 92px;
}

.home-intelligence-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.home-intelligence-media {
  overflow: hidden;
  min-height: 470px;
  border-radius: 28px;
  background: #111c35;
}

.home-intelligence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsap-ready .journey-strip li,
.gsap-ready .signal-card,
.gsap-ready .signal-example-card,
.gsap-ready .memory-card,
.gsap-ready .output-grid .value-card {
  will-change: transform, opacity;
}

@media (max-width: 1180px) {
  .journey-strip,
  .signal-grid,
  .memory-grid,
  .home-intelligence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-strip::before,
  .journey-strip li::after {
    display: none;
  }

  .memory-card-large {
    grid-column: span 1;
  }

  .home-intelligence-media {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  body[data-page="how"] .subpage-main .page-hero h1,
  body[data-page="platform"] .subpage-main .page-hero h1 {
    max-width: 100%;
  }

  .journey-strip,
  .signal-grid,
  .signal-example-grid,
  .memory-grid,
  .home-intelligence-grid {
    grid-template-columns: 1fr;
  }

  .journey-strip li {
    min-height: auto;
    padding: 18px;
  }

  .how-story-visual-system {
    min-height: 560px;
  }

  .journey-story-panel {
    padding: 14px;
  }

  .story-panel-inner {
    padding: 22px;
    border-radius: 22px;
  }

  .story-panel-inner h3 {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .signal-card,
  .memory-card,
  .signal-example-card {
    border-radius: 18px;
  }

  .loop-cycle {
    grid-template-columns: 1fr;
  }

  .home-intelligence-media {
    min-height: 360px;
  }

  body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  body[data-page="biomarkers"] .subpage-main .biomarkers-callout-actions {
    width: 100%;
    justify-content: stretch;
  }

  body[data-page="biomarkers"] .subpage-main .biomarkers-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body[data-page="platform"] .subpage-main .platform-callout-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  body[data-page="platform"] .subpage-main .platform-callout-actions {
    width: 100%;
    justify-content: stretch;
  }

  body[data-page="platform"] .subpage-main .platform-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body[data-page="about"] .subpage-main .about-membership-callout-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  body[data-page="about"] .subpage-main .about-membership-callout-actions {
    width: 100%;
    justify-content: stretch;
  }

  body[data-page="about"] .subpage-main .about-membership-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body[data-page="how"] .subpage-main .how-callout-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  body[data-page="how"] .subpage-main .how-callout-actions {
    width: 100%;
    justify-content: stretch;
  }

  body[data-page="how"] .subpage-main .how-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body[data-page="included"] .subpage-main .included-callout-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  body[data-page="included"] .subpage-main .included-callout-actions {
    width: 100%;
    justify-content: stretch;
  }

  body[data-page="included"] .subpage-main .included-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body[data-page="science"] .subpage-main .science-callout-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  body[data-page="science"] .subpage-main .science-callout-actions {
    width: 100%;
    justify-content: stretch;
  }

  body[data-page="science"] .subpage-main .science-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .membership-stage,
  .membership-subscription-card,
  .membership-subscription-card::before,
  .membership-stage-frame,
  .membership-thumb {
    transition: none !important;
    animation: none !important;
  }
}

.tag {
  font-size: 0.8rem;
  padding: 8px 12px;
}

.tag-included {
  color: var(--text);
  background: rgba(98, 227, 198, 0.12);
}

.tag-access {
  color: var(--text);
  background: rgba(73, 194, 255, 0.12);
}

.tag-review {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.form-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.form-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form .field-full {
  grid-column: 1 / -1;
}

.lead-form .btn {
  width: 100%;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(191, 233, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(168, 192, 223, 0.72);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(73, 194, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(73, 194, 255, 0.12);
}

.form-status {
  min-height: 24px;
  margin-top: 8px;
  color: var(--glow);
  font-size: 0.94rem;
}

.faq-card details {
  border-radius: 16px;
  border: 1px solid rgba(191, 233, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
}

.faq-card details + details {
  margin-top: 12px;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.page-hero h1 {
  max-width: 10ch;
  font-family: var(--font-hero);
}

.page-hero.visual-heavy h1 {
  max-width: 12ch;
}

.callout-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.callout-banner strong {
  font-size: 1.3rem;
  font-family: var(--font-display);
}

.footer {
  padding: 43px 0 132px;
  background: #111c35;
}

.footer .footer-group strong,
.footer .footer-group a,
.footer .footer-note,
.footer .brand {
  color: #f6f4ec;
}

.footer-brand .brand-logo {
  height: 28px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-text {
  color: #f6f4ec;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer .footer-note {
  color: rgba(246, 244, 236, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-group {
  display: grid;
  gap: 8px;
}

.footer-group strong {
  font-family: var(--font-display);
}

.footer-group a,
.footer-note {
  color: var(--muted);
}

.footer-note {
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

html[data-figma-capture="true"] .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.site-nav a:focus-visible,
.menu-toggle:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
.login-link:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(73, 194, 255, 0.62);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .how-story-step.is-active::after {
    animation: none !important;
    opacity: 1;
    transform: scaleY(1);
  }

  .how-story-frame {
    opacity: 0;
    transform: none !important;
    transition: none !important;
  }

  .how-story-frame.is-active {
    opacity: 1;
  }
}

.mobile-cta {
  display: none;
}

.spacer-top {
  margin-top: 18px;
}

.spacer-lg {
  margin-top: 30px;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff, #bfe9ff 70%, #62e3c6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 18% 88%, rgba(118, 151, 191, 0.26), transparent 40%),
    linear-gradient(180deg, #071f43 0%, #0a2348 58%, #5d7898 100%);
}

body:not([data-page="home"]) {
  background: linear-gradient(180deg, #071f43 0%, #071f43 88px, #0a2348 240px, #f6f4ec 240px, #f6f4ec 100%);
}

body[data-page="home"]::before {
  opacity: 0.18;
}

.homepage-header {
  background: linear-gradient(180deg, rgba(7, 22, 48, 0.26), rgba(7, 22, 48, 0.08));
  border-bottom: 1px solid rgba(198, 225, 255, 0.16);
  box-shadow: 0 12px 36px rgba(3, 12, 27, 0.08);
  backdrop-filter: blur(20px) saturate(165%);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
}

.homepage-nav-shell {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.homepage-nav-left,
.homepage-nav-right {
  align-items: center;
  gap: 24px;
}

.homepage-nav-left {
  display: flex;
  justify-content: flex-start;
}

.homepage-nav-right {
  justify-content: flex-end;
}

.homepage-nav-left a,
.homepage-nav-right a {
  color: #10284b;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.homepage-nav-right .site-nav-label {
  color: #10284b;
}

.homepage-brand {
  justify-self: center;
  color: #10284b;
  gap: 0;
}

.homepage-brand .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(24, 119, 242, 0.9), rgba(73, 194, 255, 0.44));
  border: 0;
  box-shadow: none;
}

.homepage-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.homepage-brand-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.22em;
}

.homepage-brand-copy small {
  color: rgba(16, 40, 75, 0.74);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.login-link {
  padding: 10px 14px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text) !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-link:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 233, 255, 0.3);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.homepage-nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: #f5f1e6 !important;
  background: #10284b;
  border: 1px solid #10284b;
  box-shadow: none;
}

.hero-reference {
  padding: 0 0 56px;
}

.hero-reference-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 40px;
  align-items: stretch;
  min-height: calc(100vh - 74px);
}

.hero-reference-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 470px;
  padding: 54px 0 40px;
}

.hero-reference-eyebrow {
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  color: #e9f4ff;
}

.hero-reference-copy h1 {
  max-width: 9.2ch;
  margin-top: 22px;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-reference-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(246, 251, 255, 0.92);
  font-size: 1rem;
}

.hero-reference-points li {
  position: relative;
  padding-left: 18px;
}

.hero-reference-points li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #f4f7fb;
}

.hero-reference-points strong {
  color: #ffffff;
}

.hero-reference-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.hero-reference-primary,
.hero-reference-secondary {
  min-width: 300px;
  min-height: 56px;
  justify-content: center;
  font-size: 1rem;
}

.hero-reference-primary {
  color: #0c2348;
  background: #f5f1e6;
  box-shadow: none;
}

.hero-reference-secondary {
  color: #f6fbff;
  background: transparent;
  border: 1px solid rgba(245, 241, 230, 0.7);
}

.hero-reference-note {
  margin: 14px 0 0;
  color: rgba(246, 251, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-reference-visual {
  display: flex;
  align-items: end;
  padding: 38px 0 0;
}

.hero-portrait-panel {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(17, 42, 77, 0.96), rgba(17, 38, 69, 0.72)),
    linear-gradient(135deg, #223c63 0%, #0d2242 72%);
  border: 1px solid rgba(168, 192, 223, 0.14);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.hero-portrait-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 24%),
    radial-gradient(circle at 40% 22%, rgba(96, 156, 255, 0.12), transparent 28%);
}

.portrait-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 52, 92, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(22, 47, 83, 0.08), rgba(7, 19, 38, 0.02));
}

.portrait {
  position: absolute;
  bottom: 0;
  border-radius: 48% 48% 0 0;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.34));
}

.portrait::before {
  content: "";
  position: absolute;
  inset: 12% 20% auto 20%;
  height: 22%;
  border-radius: 50%;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 58%;
  border-radius: 46% 46% 0 0;
}

.portrait-left {
  left: 16%;
  width: 26%;
  height: 54%;
  background: linear-gradient(180deg, #cbab8b 0%, #8f684b 36%, #12171e 100%);
  clip-path: ellipse(42% 52% at 50% 48%);
  opacity: 0.95;
}

.portrait-left::before {
  background: radial-gradient(circle at 50% 34%, #f0d4bd 0%, #c39c7c 56%, #8d664f 100%);
}

.portrait-left::after {
  background: linear-gradient(180deg, rgba(9, 11, 16, 0.16), #0a0d12 90%);
}

.portrait-center {
  left: 34%;
  width: 33%;
  height: 66%;
  background: linear-gradient(180deg, #d5ad8c 0%, #a17353 42%, #14171d 100%);
  clip-path: ellipse(44% 52% at 50% 46%);
}

.portrait-center::before {
  background: radial-gradient(circle at 50% 34%, #f4dcc9 0%, #c89674 54%, #96684c 100%);
}

.portrait-center::after {
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.12), #090c12 92%);
}

.portrait-right {
  right: 8%;
  width: 35%;
  height: 76%;
  background: linear-gradient(180deg, #5d4338 0%, #211915 28%, #07090c 100%);
  clip-path: ellipse(44% 52% at 50% 46%);
}

.portrait-right::before {
  background: radial-gradient(circle at 50% 34%, #7c5e53 0%, #3a2b25 56%, #17100d 100%);
}

.portrait-right::after {
  background: linear-gradient(180deg, rgba(6, 6, 10, 0.1), #06080b 92%);
}

.insight-card {
  position: absolute;
  right: 8%;
  bottom: 16%;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  width: min(390px, calc(100% - 40px));
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(5, 10, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.insight-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(8, 15, 28, 0.92) 53%, transparent 54%),
    conic-gradient(#dfe9f6 0 338deg, rgba(255, 255, 255, 0.18) 338deg 360deg);
  color: #f4f7fb;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.insight-copy {
  display: grid;
  align-content: start;
  gap: 6px;
}

.insight-copy strong {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insight-copy span,
.insight-copy p {
  color: rgba(246, 251, 255, 0.76);
  margin: 0;
}

@media (max-width: 1120px) {
  .grid-4,
  .feature-grid,
  .domains-grid,
  .metrics-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .stats-grid,
  .story-grid,
  .value-grid,
  .proof-grid,
  .benefit-grid,
  .access-grid,
  .steps-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-card,
  .hero-layout,
  .page-hero-layout,
  .dashboard-columns,
  .comparison-layout {
    grid-template-columns: 1fr;
  }

  .hero-reference-shell {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-reference-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-reference-visual {
    padding-top: 8px;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 76px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(4, 19, 39, 0.98);
    border: 1px solid rgba(191, 233, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-nav-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav-label {
    min-height: 0;
    padding: 4px 14px 0;
  }

  .site-nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-shell {
    position: relative;
  }

  .homepage-nav-shell {
    grid-template-columns: auto auto;
  }

  .homepage-nav-left {
    display: none;
  }

  .homepage-brand {
    justify-self: start;
  }

  .homepage-nav-right {
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    justify-content: flex-start;
  }

  .hero,
  .page-hero,
  main section,
  .section-block {
    padding: 58px 0;
  }

  .hero-visual,
  .page-visual {
    min-height: 460px;
  }

  .dashboard-surface {
    inset: auto 18px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 60;
  }

  .mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 0.88rem;
    position: relative;
    overflow: hidden;
    box-shadow:
      0 14px 30px rgba(5, 19, 39, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(118, 163, 222, 0.12),
      inset 0 0 32px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
  }

  .mobile-cta a::before,
  .mobile-cta a::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mobile-cta a::before {
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 32%),
      radial-gradient(circle at 82% 24%, rgba(183, 221, 255, 0.2), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 38%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0.95;
  }

  .mobile-cta a::after {
    inset: 1px;
    border-radius: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%);
    opacity: 0.8;
  }

  .mobile-cta .mobile-primary {
    color: #f4f7ff;
    border: 1px solid rgba(177, 213, 250, 0.24);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
      linear-gradient(135deg, rgba(25, 61, 112, 0.5), rgba(17, 46, 88, 0.42) 56%, rgba(106, 150, 209, 0.26));
  }

  .mobile-cta .mobile-secondary {
    color: #17325c;
    border: 1px solid rgba(200, 225, 251, 0.26);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
      linear-gradient(135deg, rgba(182, 206, 234, 0.48), rgba(158, 187, 221, 0.4) 56%, rgba(133, 171, 218, 0.28));
  }

  .hero-reference-primary,
  .hero-reference-secondary {
    min-width: 0;
    width: 100%;
  }

  .hero-reference-actions {
    align-items: stretch;
  }

  .hero-portrait-panel {
    min-height: 600px;
  }

  .insight-card {
    grid-template-columns: 90px 1fr;
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 16px;
  }

  .insight-ring {
    width: 90px;
    height: 90px;
    font-size: 1.35rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 24px, 100%);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .domains-grid,
  .story-grid,
  .value-grid,
  .feature-grid,
  .proof-grid,
  .principles-grid,
  .faq-grid,
  .benefit-grid,
  .metrics-grid,
  .access-grid,
  .steps-grid,
  .comparison-layout,
  .trust-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .section-heading h2,
  .form-copy h2 {
    max-width: 100%;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-metadata,
  .hero-actions,
  .section-actions {
    gap: 10px;
  }

  .glass-card,
  .comparison-card,
  .form-card,
  .info-card,
  .faq-card,
  .pricing-card,
  .timeline-step,
  .domain-card,
  .story-card,
  .benefit-card,
  .value-card,
  .access-card,
  .principle-card,
  .proof-card {
    padding: 20px;
  }

  .hero-visual,
  .page-visual {
    min-height: 420px;
    padding: 20px;
  }

  .hero-reference-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero-portrait-panel {
    min-height: 500px;
  }

  .portrait-left {
    left: 8%;
    width: 28%;
  }

  .portrait-center {
    left: 28%;
    width: 34%;
  }

  .portrait-right {
    right: 2%;
    width: 38%;
  }

  .brand-copy small {
    letter-spacing: 0.16em;
  }

  .floating-chip,
  .stat-pill,
  .legend-pill {
    min-width: 132px;
    padding: 14px;
  }
}

body[data-theme="legacy"][data-page="home"] {
  font-family: var(--font-body);
  color: #111c35;
  background: linear-gradient(180deg, #11274d 0%, #4e6987 20%, #f6f4ec 20.1%, #f6f4ec 100%);
}

body[data-theme="legacy"][data-page="home"]::before {
  opacity: 0.08;
}

body[data-theme="legacy"][data-page="home"] h1,
body[data-theme="legacy"][data-page="home"] h2,
body[data-theme="legacy"][data-page="home"] h3,
body[data-theme="legacy"][data-page="home"] h4,
body[data-theme="legacy"][data-page="home"] .home-primary-button,
body[data-theme="legacy"][data-page="home"] .home-secondary-button,
body[data-theme="legacy"][data-page="home"] .home-dark-pill,
body[data-theme="legacy"][data-page="home"] .homepage-brand-copy strong,
body[data-theme="legacy"][data-page="home"] .home-impact-title-row strong {
  font-family: var(--font-display);
}

body[data-theme="legacy"][data-page="home"] .reveal {
  opacity: 1;
  transform: none;
}

.homepage-main {
  position: relative;
}

.homepage-header {
  z-index: 90;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(168, 205, 247, 0.1), rgba(45, 97, 168, 0.04)),
    rgba(4, 14, 36, 0.14);
  border-bottom: 1px solid rgba(186, 214, 248, 0.14);
  backdrop-filter: blur(24px) saturate(175%);
  -webkit-backdrop-filter: blur(24px) saturate(175%);
}

.homepage-nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.homepage-nav-left,
.homepage-nav-right {
  align-items: center;
  gap: 24px;
}

.homepage-nav-left {
  display: flex;
  justify-content: flex-start;
}

.homepage-nav-right {
  justify-content: flex-end;
}

.homepage-nav-left a,
.homepage-nav-right a {
  color: #f4f7ff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.homepage-nav-right .site-nav-label {
  color: #f4f7ff;
}

.homepage-header .nav-shell {
  width: 100%;
}

.homepage-nav-shell {
  position: relative;
  isolation: isolate;
  min-height: var(--nav-height);
  padding: 0 18px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.13), rgba(219, 236, 255, 0.035)),
    rgba(5, 17, 41, 0.08);
  border: 1px solid rgba(210, 233, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(116, 167, 231, 0.05),
    0 16px 34px rgba(3, 12, 27, 0.09);
  backdrop-filter: blur(38px) saturate(185%);
  -webkit-backdrop-filter: blur(38px) saturate(185%);
  overflow: hidden;
}

.homepage-nav-shell::before,
.homepage-nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.homepage-nav-shell::before {
  border-radius: inherit;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.18) 0%, rgba(220, 235, 255, 0.06) 18%, rgba(255, 255, 255, 0.012) 44%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(circle at 20% 0%, rgba(209, 230, 255, 0.09), transparent 34%);
  opacity: 0.56;
}

.homepage-nav-shell::after {
  inset: 1px;
  border-radius: 0;
  border-left: 1px solid rgba(202, 228, 255, 0.06);
  border-right: 1px solid rgba(202, 228, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015) 34%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
}

.homepage-nav-shell > * {
  position: relative;
  z-index: 1;
}

.homepage-brand {
  justify-self: center;
  color: #111c35;
  gap: 12px;
}

.homepage-brand .brand-logo {
  height: 24px;
  filter: none;
}

.homepage-brand-copy,
.subpage-brand-copy {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}

.homepage-brand-copy strong,
.subpage-brand-copy strong {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.homepage-brand-copy strong {
  color: #f4f7ff;
  text-shadow: none;
}

.homepage-brand .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 0;
  background: linear-gradient(150deg, #2d5ffe 0%, #63c8ff 100%);
  box-shadow: none;
  color: #f6f4ec;
  font-size: 0.84rem;
}

.homepage-brand-copy {
  flex-direction: row;
  gap: 0;
}

.homepage-brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.homepage-brand-copy small {
  color: rgba(17, 28, 53, 0.72);
  font-size: 0.46rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  line-height: 1;
}

.login-link {
  padding: 10px 14px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text) !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.homepage-nav-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #111c35;
  background: #111c35;
  color: #f6f4ec !important;
  box-shadow: none;
  font-size: 0.76rem !important;
}

.homepage-header .login-link {
  color: #111c35 !important;
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 8px 18px rgba(5, 19, 39, 0.05);
}

.homepage-header .login-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 22px rgba(5, 19, 39, 0.08);
}

.homepage-header .nav-cta {
  border-color: rgba(10, 26, 53, 0.08);
  background: linear-gradient(180deg, rgba(20, 44, 83, 0.86), rgba(10, 25, 51, 0.92));
  box-shadow:
    0 12px 22px rgba(5, 19, 39, 0.14),
    inset 0 1px 0 rgba(164, 206, 255, 0.16);
}

@media (min-width: 861px) {
  .homepage-nav-right .home-nav-anchor {
    display: none;
  }
}

.home-hero {
  padding: calc(var(--nav-height) + 16px) 0 58px;
  background:
    radial-gradient(circle at 18% 88%, rgba(118, 151, 191, 0.32), transparent 36%),
    linear-gradient(180deg, #071f43 0%, #0a2348 58%, #5d7898 100%);
}

.home-hero > .container {
  width: 100%;
  max-width: none;
  padding: 0 24px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(420px, 1.32fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  justify-content: space-between;
  min-height: clamp(700px, calc(100vh - 124px), 860px);
}

.home-hero-copy {
  max-width: 680px;
  padding-left: 0;
  color: #f6f4ec;
  justify-self: start;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(246, 244, 236, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f6f4ec;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-hero);
}

.home-pill::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f6f4ec;
  box-shadow: inset 0 0 0 2px rgba(17, 28, 53, 0.3);
}

.home-hero-copy h1 {
  max-width: 13ch;
  margin-top: 20px;
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  color: #f6f4ec;
  font-weight: 500;
  font-family: var(--font-hero);
}

.home-hero-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 1rem;
  font-family: var(--font-hero);
}

.home-hero-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(246, 244, 236, 0.95);
  font-size: 0.98rem;
  line-height: 1.45;
}

.home-hero-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.home-hero-list strong {
  color: #ffffff;
  font-weight: 700;
}

.home-hero-list.compact {
  gap: 10px;
  font-size: 0.98rem;
}

.home-hero-list.compact li {
  color: rgba(17, 28, 53, 0.88);
}

.home-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 38px;
}

.home-hero-actions .btn {
  width: min(302px, 100%);
  min-height: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-hero);
}

body[data-page="home"] .home-hero-actions .btn-primary {
  background: rgba(246, 244, 236, 0.98);
  color: #111c35;
  border: 1px solid rgba(246, 244, 236, 0.82);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .home-hero-actions .btn-secondary {
  background: transparent;
  color: rgba(246, 244, 236, 0.95);
  border-color: rgba(246, 244, 236, 0.62);
}

.home-primary-button,
.home-secondary-button,
.home-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-primary-button {
  min-width: 302px;
  background: #f6f4ec;
  color: #111c35;
}

.home-secondary-button {
  min-width: 302px;
  border: 1px solid rgba(246, 244, 236, 0.7);
  color: #f6f4ec;
  background: transparent;
}

.home-dark-pill {
  background: #111c35;
  color: #f6f4ec;
}

.home-hero-note {
  margin: 14px 0 0;
  color: rgba(246, 244, 236, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-hero);
}

.home-hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-hero-stage {
  position: relative;
  width: 100%;
  max-width: 1220px;
  aspect-ratio: 4 / 3;
  min-height: auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 42, 77, 0.92), rgba(13, 31, 58, 0.96));
  box-shadow: 0 34px 98px rgba(0, 0, 0, 0.36);
}

.home-hero-stage::before {
  content: "";
  position: absolute;
  inset: auto 10% -8% 20%;
  height: 118px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.82), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 1;
}

.home-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 28, 58, 0.24) 0 18%, rgba(8, 28, 58, 0.1) 34%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 1;
}

.home-hero-image,
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.01);
  filter: saturate(1.05) contrast(1.03);
  z-index: 0;
}

.home-hero-photo {
  position: absolute;
  bottom: 0;
  border-radius: 48% 48% 0 0;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.26));
}

.home-hero-photo::before {
  content: "";
  position: absolute;
  inset: 12% 22% auto 22%;
  height: 23%;
  border-radius: 50%;
}

.home-hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 8% -6% 8%;
  height: 58%;
  border-radius: 46% 46% 0 0;
}

.home-hero-photo-left {
  left: 16%;
  width: 26%;
  height: 46%;
  background: linear-gradient(180deg, #caa78c 0%, #89654d 36%, #10151b 100%);
  clip-path: ellipse(42% 52% at 50% 47%);
}

.home-hero-photo-left::before {
  background: radial-gradient(circle at 50% 34%, #f0d2bc 0%, #c79e80 58%, #8d684f 100%);
}

.home-hero-photo-left::after {
  background: linear-gradient(180deg, rgba(9, 12, 17, 0.14), #0b1014 90%);
}

.home-hero-photo-center {
  left: 33%;
  width: 33%;
  height: 62%;
  background: linear-gradient(180deg, #d6af90 0%, #996d50 44%, #14181e 100%);
  clip-path: ellipse(44% 52% at 50% 46%);
}

.home-hero-photo-center::before {
  background: radial-gradient(circle at 50% 34%, #f5dcc8 0%, #cb9875 56%, #976a4d 100%);
}

.home-hero-photo-center::after {
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.12), #090c12 92%);
}

.home-hero-photo-right {
  right: 8%;
  width: 34%;
  height: 74%;
  background: linear-gradient(180deg, #5c4439 0%, #211915 30%, #06080b 100%);
  clip-path: ellipse(44% 52% at 50% 46%);
}

.home-hero-photo-right::before {
  background: radial-gradient(circle at 50% 34%, #7f6154 0%, #3a2a23 56%, #18120e 100%);
}

.home-hero-photo-right::after {
  background: linear-gradient(180deg, rgba(6, 6, 10, 0.1), #06080b 92%);
}

.home-hero-overlay-card {
  position: absolute;
  right: 4.5%;
  bottom: 16%;
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 18px;
  width: min(380px, calc(100% - 32px));
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 13, 20, 0.64);
  backdrop-filter: blur(14px);
  z-index: 2;
}

.home-overlay-gauge {
  position: relative;
  width: 122px;
  height: 74px;
  overflow: hidden;
  border-radius: 999px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  color: #f6f4ec;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.home-overlay-gauge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -48px;
  width: 122px;
  height: 122px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(11, 16, 28, 0.92) 58%, transparent 59%),
    conic-gradient(#e6edf8 0 338deg, rgba(255, 255, 255, 0.12) 338deg 360deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-overlay-copy {
  display: grid;
  align-content: start;
  gap: 5px;
}

.home-overlay-copy strong {
  color: #f6f4ec;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-overlay-copy span,
.home-overlay-copy p {
  margin: 0;
  color: rgba(246, 244, 236, 0.76);
  font-size: 0.78rem;
}

.home-stat-strip {
  background: #f6f4ec;
  color: #111c35;
  border-top: 1px solid rgba(17, 28, 53, 0.06);
  border-bottom: 1px solid rgba(17, 28, 53, 0.06);
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(14px, 2.5vw, 28px) 0 clamp(16px, 3vw, 34px);
}

.home-stat-item {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 2px 16px;
  text-align: center;
}

.home-stat-item strong {
  max-width: none;
  color: #111c35;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-app-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 96px;
  background: #f4f1e7;
  color: #111c35;
}

.home-app-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(17, 28, 53, 0.03), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(17, 28, 53, 0.025), transparent 22%);
  pointer-events: none;
}

.home-app-section > .container {
  width: min(1360px, calc(100vw - 48px));
}

.home-app-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(32px, 4vw, 64px);
  border-radius: 34px;
  border: 1px solid rgba(17, 28, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 249, 245, 0.98));
  box-shadow:
    0 18px 50px rgba(17, 28, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-app-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.home-app-copy h2 {
  margin: 0;
  max-width: 11ch;
  color: #111c35;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.home-app-copy-text {
  margin: 0;
  max-width: 36ch;
  color: rgba(17, 28, 53, 0.72);
  font-size: 1.04rem;
  line-height: 1.62;
}

.home-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.home-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(147, 181, 226, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(17, 45, 87, 0.88), rgba(22, 57, 108, 0.78) 56%, rgba(93, 144, 214, 0.38));
  color: #f6f8ff;
  box-shadow:
    0 16px 34px rgba(17, 28, 53, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(110, 156, 222, 0.14);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.home-app-badge::before,
.home-app-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-app-badge::before {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.3), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(188, 220, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 44%, rgba(255, 255, 255, 0.08));
  opacity: 0.96;
}

.home-app-badge::after {
  inset: 1px;
  border-radius: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 56%);
  opacity: 0.82;
}

.home-app-badge > * {
  position: relative;
  z-index: 1;
}

.home-app-badge:hover,
.home-app-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(17, 28, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(110, 156, 222, 0.16);
  border-color: rgba(164, 198, 242, 0.34);
}

.home-app-badge-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 16px rgba(7, 18, 39, 0.14);
  font-size: 1rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.home-app-badge-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-app-badge-copy {
  display: grid;
  gap: 2px;
}

.home-app-badge-copy span {
  color: rgba(246, 244, 236, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-app-badge-copy strong {
  font-size: 1.06rem;
  line-height: 1.1;
}

.home-app-badge-play {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(14, 36, 73, 0.86), rgba(22, 54, 102, 0.76) 56%, rgba(110, 156, 223, 0.34));
}

.home-app-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.home-app-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 28, 53, 0.08);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(17, 28, 53, 0.74);
  font-size: 0.84rem;
  font-weight: 500;
}

.home-app-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-app-gif {
  width: min(100%, 720px);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: cover;
  object-position: center center;
}

.home-cream-section,
.home-faq-section {
  background: #f6f4ec;
  color: #111c35;
  padding: 78px 0;
}

.home-cream-section#how-it-works > .container {
  width: min(1540px, calc(100vw - 80px));
}

.home-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.home-kicker {
  display: inline-block;
  color: rgba(17, 28, 53, 0.82);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-kicker.centered {
  text-align: center;
}

.home-section-head h2,
.home-center-head h2,
.home-pricing-copy h2,
.home-quote-wrap h2,
.home-apply-copy h2,
.home-impact-copy h2 {
  margin-top: 12px;
  color: #111c35;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-head-cta {
  display: grid;
  justify-items: start;
  gap: 10px;
  max-width: 270px;
}

.home-head-cta p,
.home-center-head p,
.home-pricing-copy p,
.home-quote-wrap p,
.home-apply-copy p {
  margin: 0;
  color: rgba(17, 28, 53, 0.74);
  font-size: 0.95rem;
}

.home-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-step-card {
  position: relative;
  padding: 0 0 28px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

.home-step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
  z-index: 2;
}

.home-step-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.18) 0%, transparent 72%);
  pointer-events: none;
}

.home-step-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(41, 76, 129, 0.92) 0%, rgba(22, 46, 84, 0.74) 100%);
  isolation: isolate;
}

.home-step-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 47, 0.08), rgba(8, 23, 47, 0.42));
  pointer-events: none;
}

.home-step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.02);
}

.step-image-baseline {
  object-position: center 60%;
}

.step-image-import {
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.08);
}

.step-image-protocol {
  object-position: center 58%;
}

.step-image-retest {
  object-position: center 48%;
}

.home-step-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.home-step-card h3,
.home-step-card p {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.home-step-card h3 {
  margin-top: 16px;
  color: #edf4ff;
  font-size: 1.02rem;
  line-height: 1.2;
}

.home-step-card p {
  margin-top: 10px;
  color: rgba(205, 220, 244, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-impact-section {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  min-height: 860px;
  padding-bottom: 0;
  background: #f6f4ec;
}

.home-impact-left {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #16355d 0%, #0f2747 100%);
}

.home-impact-portrait {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-impact-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.home-impact-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(8, 24, 47, 0.08) 0%, rgba(8, 24, 47, 0.18) 46%, rgba(8, 24, 47, 0.42) 100%);
  pointer-events: none;
}

.home-impact-section[data-impact-state="mood"] .home-impact-portrait-image {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.03) brightness(0.96);
}

.home-impact-section[data-impact-state="mind"] .home-impact-portrait-image {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.05) brightness(0.98) hue-rotate(4deg);
}

.home-impact-section[data-impact-state="energy"] .home-impact-portrait-image {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}

.home-impact-section[data-impact-state="risk"] .home-impact-portrait-image {
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.08) brightness(0.93) hue-rotate(-8deg);
}

.home-impact-section[data-impact-state="longevity"] .home-impact-portrait-image {
  transform: scale(1.04);
  filter: saturate(1.07) contrast(1.04) brightness(0.97);
}

.home-impact-section[data-impact-state="mood"] .home-impact-portrait::after {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(31, 63, 115, 0.08) 0%, rgba(31, 63, 115, 0.16) 46%, rgba(8, 24, 47, 0.44) 100%);
}

.home-impact-section[data-impact-state="mind"] .home-impact-portrait::after {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(62, 98, 154, 0.08) 0%, rgba(62, 98, 154, 0.14) 46%, rgba(8, 24, 47, 0.42) 100%);
}

.home-impact-section[data-impact-state="energy"] .home-impact-portrait::after {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(165, 121, 57, 0.08) 0%, rgba(165, 121, 57, 0.14) 46%, rgba(8, 24, 47, 0.4) 100%);
}

.home-impact-section[data-impact-state="risk"] .home-impact-portrait::after {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(101, 56, 75, 0.08) 0%, rgba(101, 56, 75, 0.16) 46%, rgba(8, 24, 47, 0.44) 100%);
}

.home-impact-section[data-impact-state="longevity"] .home-impact-portrait::after {
  background:
    radial-gradient(circle at 38% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(44, 84, 129, 0.08) 0%, rgba(44, 84, 129, 0.16) 46%, rgba(8, 24, 47, 0.42) 100%);
}

.home-impact-copy {
  position: absolute;
  top: 48px;
  left: 40px;
  max-width: 360px;
  color: #f6f4ec;
}

.home-impact-copy h2,
.home-quote-wrap h2 {
  color: #f6f4ec;
}

.home-impact-copy p {
  color: rgba(246, 244, 236, 0.82);
  font-size: 0.96rem;
}

.home-impact-right {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 60px 64px;
  background: #f6f4ec;
}

.home-impact-item {
  border-top: 1px solid rgba(17, 28, 53, 0.24);
  padding: 20px 0 22px;
}

.home-impact-item:last-of-type {
  border-bottom: 1px solid rgba(17, 28, 53, 0.24);
}

.home-impact-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.home-impact-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.home-impact-title-group,
.home-impact-meta {
  display: inline-flex;
  align-items: center;
}

.home-impact-title-group {
  gap: 16px;
  min-width: 0;
}

.home-impact-title-row strong {
  color: #111c35;
  font-size: clamp(1.45rem, 2.05vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.home-impact-glyph {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #1d3159;
}

.home-impact-glyph svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-impact-meta {
  gap: 16px;
  margin-left: auto;
}

.home-impact-icon {
  color: #111c35;
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.home-impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 28, 53, 0.08);
  box-shadow: 0 10px 24px rgba(17, 28, 53, 0.08);
  color: #2d3d60;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-impact-badge::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.72;
  transition: transform 0.22s ease, opacity 0.18s ease;
  flex: 0 0 auto;
}

.home-impact-badge--inline {
  margin-bottom: 14px;
}

.home-impact-badge--inline::after {
  display: none;
}

.home-impact-item.active .home-impact-badge::after {
  transform: translateY(1px) rotate(-135deg);
  opacity: 0.92;
}

.home-impact-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding-left: 40px;
  transition: grid-template-rows 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-impact-panel-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.18s ease,
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.home-impact-item.active .home-impact-panel {
  grid-template-rows: 1fr;
}

.home-impact-item.active .home-impact-panel-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 40ms;
}

.home-impact-item.active .home-impact-icon {
  transform: translateY(-1px);
}

.home-impact-item p {
  margin: 0;
  color: rgba(17, 28, 53, 0.74);
  font-size: 1.02rem;
  line-height: 1.55;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.home-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111c35;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 28, 53, 0.08);
  box-shadow: 0 14px 34px rgba(17, 28, 53, 0.08);
}

.home-impact-right .home-dark-pill {
  margin-top: 26px;
  width: fit-content;
}

.home-impact-cta {
  margin-top: 34px;
  width: 100%;
  max-width: 100%;
  align-self: center;
}

.home-center-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.home-center-head p {
  max-width: 600px;
  margin: 14px auto 0;
}

.home-protocol-section {
  padding-top: 82px;
}

.home-device-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.home-app-mockup {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0;
}

.home-app-mockup img {
  width: min(100%, 305px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(10, 18, 35, 0.2));
}

.home-app-mockup figcaption {
  max-width: 22ch;
  margin: 0;
  color: rgba(17, 28, 53, 0.8);
  text-align: center;
}

.laptop-body-map {
  position: absolute;
  inset: 48px 24px 24px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(246, 244, 236, 0.12) 0 14%, transparent 14% 18%, rgba(246, 244, 236, 0.12) 18% 22%, transparent 22% 100%),
    radial-gradient(circle at 50% 40%, rgba(99, 177, 255, 0.35), transparent 18%),
    linear-gradient(180deg, rgba(57, 109, 180, 0.18), rgba(18, 29, 56, 0));
}

.home-center-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
}

.home-center-actions span {
  color: rgba(17, 28, 53, 0.74);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.home-quote-section {
  padding: 84px 0;
  background: #111c35;
  color: #f6f4ec;
}

.home-quote-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-quote-avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #d9ba9a 0%, #9e7358 48%, #516078 100%);
}

.home-quote-wrap p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(246, 244, 236, 0.88);
  font-size: 1.02rem;
}

.home-quote-wrap span {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 244, 236, 0.72);
}

.home-pricing-top {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.home-pricing-card {
  display: grid;
  gap: 18px;
  min-width: 220px;
  padding: 24px;
  border-radius: 10px;
  background: rgba(17, 28, 53, 0.03);
  border: 1px solid rgba(17, 28, 53, 0.08);
}

.home-pricing-card strong {
  color: #111c35;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.filled,
.empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filled::before,
.empty::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.filled::before {
  background: #111c35;
}

.empty::before {
  border: 1px solid rgba(17, 28, 53, 0.52);
  background: transparent;
}


.home-compare-card {
  padding: clamp(18px, 2.5vw, 30px);
  border-radius: 28px;
  border: 1px solid rgba(17, 28, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 247, 240, 0.98));
  box-shadow: 0 18px 36px rgba(17, 28, 53, 0.05);
}

.home-compare-shell {
  display: grid;
  gap: 18px;
}

.home-compare-summary {
  max-width: 48ch;
}

.home-compare-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(17, 28, 53, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-compare-summary h3 {
  margin: 0;
  max-width: 20ch;
  color: #111c35;
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.home-compare-grid {
  display: grid;
  border: 1px solid rgba(17, 28, 53, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.home-compare-grid-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
}

.home-compare-grid-cell {
  padding: 18px 18px 16px;
  min-width: 0;
  color: #111c35;
  font-size: 0.96rem;
  line-height: 1.45;
  border-top: 1px solid rgba(17, 28, 53, 0.08);
}

.home-compare-grid-row:first-child .home-compare-grid-cell {
  border-top: 0;
}

.home-compare-grid-cell:not(:last-child) {
  border-right: 1px solid rgba(17, 28, 53, 0.08);
}

.home-compare-grid-cell--head {
  color: rgba(17, 28, 53, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(247, 246, 243, 0.92);
}

.home-compare-grid-cell--feature {
  font-weight: 600;
}

.home-compare-grid-cell--aia {
  background: rgba(225, 243, 254, 0.48);
}

.home-footnote {
  margin-top: 18px;
  color: rgba(17, 28, 53, 0.58);
  font-size: 0.7rem;
}

.home-apply-section {
  padding: 84px 0;
  background: #111c35;
}

.home-apply-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 244, 236, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 70px rgba(6, 27, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-apply-copy {
  display: grid;
  gap: 18px;
  align-self: start;
  padding-right: 10px;
}

.home-trust-section {
  display: flex;
  align-items: center;
  min-height: 188px;
  padding: 72px 0;
  background: #111c35;
}

.home-trust-section > .container {
  width: 100%;
}

.home-trust-section .section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}

.home-trust-section .section-heading > div {
  display: flex;
  justify-content: center;
  width: 100%;
}

.home-trust-section .section-heading h2 {
  display: block;
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(2.1rem, 2.9vw, 3.4rem);
  line-height: 1.05;
  color: #f6f1e8;
}

.home-lead-form label {
  color: #111c35;
}

.home-lead-form {
  align-self: stretch;
}

.home-data-trust-section {
  padding: 78px 0;
  background: #f6f4ec;
  color: #111c35;
}

.home-data-trust-section .section-heading {
  margin-bottom: 28px;
}

.home-data-trust-section .section-heading h2 {
  max-width: 18ch;
  color: #111c35;
}

.home-data-trust-section .glass-card {
  padding: 24px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

.home-data-trust-section .glass-card::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
}

.home-data-trust-section .glass-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.18) 0%, transparent 72%);
  pointer-events: none;
}

.home-data-trust-section .glass-card > * {
  position: relative;
  z-index: 1;
}

.home-data-trust-section .glass-card h3 {
  color: #edf4ff;
  font-size: 1.12rem;
  line-height: 1.15;
}

.home-data-trust-section .card-copy {
  color: rgba(205, 220, 244, 0.78);
  line-height: 1.55;
}

.home-data-trust-section .section-heading .card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 28, 53, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-data-trust-section .glass-card .card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-lead-form input,
.home-lead-form textarea {
  border: 1px solid rgba(17, 28, 53, 0.12);
  background: rgba(17, 28, 53, 0.04);
  color: #111c35;
}

.home-lead-form input::placeholder,
.home-lead-form textarea::placeholder {
  color: rgba(17, 28, 53, 0.5);
}

.form-submit {
  border: 0;
}

.home-faq-section {
  border-top: 1px solid rgba(17, 28, 53, 0.08);
}

.home-faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 28, 53, 0.22);
}

.home-faq-list details {
  border-bottom: 1px solid rgba(17, 28, 53, 0.22);
  padding: 0;
  background: transparent;
}

.home-faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  color: #111c35;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.home-faq-list summary::-webkit-details-marker {
  display: none;
}

.home-faq-list p {
  margin: 0 0 18px;
  color: rgba(17, 28, 53, 0.76);
}

.home-wordmark-section {
  background: #f6f4ec;
  padding: 10px 0 60px;
  overflow: visible;
}

.home-wordmark-wrap {
  width: min(1760px, calc(100vw - 24px));
  margin: 0 auto;
}

.home-wordmark-lockup {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 2vw, 2.1rem);
  margin: 0;
  padding-bottom: 0.34em;
  font-family: var(--font-hero);
  font-size: clamp(4.6rem, 14.2vw, 13.1rem);
  font-weight: var(--weight-semibold);
  line-height: 1.1;
  letter-spacing: -0.05em;
  overflow: visible;
  transform: translateY(-16%);
}

.home-wordmark-lockup span {
  display: block;
  flex: 0 0 auto;
  line-height: 1.1;
  padding-inline: 0.03em;
  padding-bottom: 0.08em;
  color: transparent;
  background-image:
    radial-gradient(circle at 18% 38%, rgba(150, 216, 255, 0.42) 0 12%, transparent 28%),
    radial-gradient(circle at 82% 44%, rgba(98, 184, 255, 0.3) 0 10%, transparent 22%),
    linear-gradient(100deg, #132a52 0%, #234577 20%, #7ec5ff 41%, #3d679f 58%, #17335f 78%, #98dcff 100%);
  background-position: 0% 50%;
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-wordmark-flow 12s ease-in-out infinite alternate;
  will-change: background-position;
}

.home-wordmark-lockup span:last-child {
  padding-bottom: 0.14em;
}

@keyframes home-wordmark-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 55% 45%;
  }

  100% {
    background-position: 100% 55%;
  }
}

.home-footer {
  padding: 55px 0 132px;
  background: #111c35;
}

.home-footer .footer-group strong,
.home-footer .footer-group a,
.home-footer .footer-note,
.home-footer-brand {
  color: #f6f4ec;
}

.home-footer .footer-note {
  color: rgba(246, 244, 236, 0.72);
}

@media (max-width: 1180px) {
  .home-hero > .container {
    width: var(--container);
  }

  .home-hero-grid,
  .home-impact-section,
  .home-apply-shell,
  .home-pricing-top {
    grid-template-columns: 1fr;
  }

  .home-trust-section .section-heading h2 {
    display: block;
    white-space: normal;
    max-width: 14ch;
    margin: 0 auto;
  }

  .home-impact-section {
    min-height: auto;
  }

  .home-apply-shell {
    padding: 24px;
    gap: 24px;
  }

  .home-data-trust-section {
    padding: 56px 0;
  }

  .home-data-trust-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .included-core-section .benefit-grid {
    grid-template-columns: 1fr;
  }

  .home-impact-left {
    min-height: 560px;
  }

  .home-impact-title-row strong {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .home-hero-stage {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .home-hero-image,
  .home-hero-video {
    inset: 0;
    width: 100%;
    object-position: center 32%;
  }

  .home-section-head {
    grid-template-columns: 1fr;
  }

  .home-steps-grid,
  .home-stat-grid,
  .home-device-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-app-mockup:last-child {
    grid-column: 1 / -1;
  }

  .home-wordmark-wrap {
    width: min(100vw - 32px, 100%);
  }

  .home-app-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .home-app-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 860px) {
  .homepage-nav-shell {
    grid-template-columns: auto auto;
  }

  .homepage-nav-left {
    display: none;
  }

  .homepage-brand {
    justify-self: start;
  }

  .homepage-header .site-nav {
    background: rgba(246, 244, 236, 0.98);
    border: 1px solid rgba(17, 28, 53, 0.12);
  }

  .homepage-header .site-nav a {
    color: #111c35;
  }

  .homepage-header .menu-toggle {
    color: #111c35;
    background: rgba(17, 28, 53, 0.04);
    border-color: rgba(17, 28, 53, 0.16);
  }

  .home-hero {
    padding-top: calc(var(--nav-height) + 24px);
  }

  .home-hero-grid {
    gap: 26px;
    min-height: unset;
  }

  .home-hero-copy {
    max-width: 100%;
    padding-left: 0;
  }

  .home-hero-stage {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .home-hero-image,
  .home-hero-video {
    inset: 0;
    width: 100%;
    object-position: center 30%;
  }

  .home-hero-overlay-card {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
    grid-template-columns: 90px 1fr;
  }

  .home-overlay-gauge {
    width: 90px;
    height: 64px;
    font-size: 1.28rem;
  }

  .home-overlay-gauge::before {
    top: -38px;
    width: 90px;
    height: 90px;
  }

  .home-steps-grid,
  .home-stat-grid,
  .home-app-shell,
  .home-device-stage {
    grid-template-columns: 1fr;
  }

  .home-app-mockup:last-child {
    grid-column: auto;
  }

  .home-impact-right,
  .home-cream-section,
  .home-faq-section,
  .home-apply-section,
  .home-quote-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-impact-right {
    padding: 48px 24px;
  }

  .home-impact-panel {
    padding-left: 40px;
  }

  .home-wordmark-section {
    padding: 14px 0 36px;
  }

  .home-wordmark-lockup {
    gap: 0.55rem;
    font-size: clamp(4.3rem, 18.5vw, 8rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
  }
}

@media (max-width: 640px) {
  .mobile-cta {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page="home"] {
    background:
      radial-gradient(circle at 18% 88%, rgba(118, 151, 191, 0.26), transparent 40%),
      linear-gradient(180deg, #071f43 0%, #0a2348 16%, #5d7898 100%);
  }

  .home-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .home-primary-button,
  .home-secondary-button,
  .home-dark-pill {
    width: 100%;
    min-width: 0;
  }

  .home-hero-actions {
    align-items: stretch;
  }

  .home-hero-stage {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .home-compare-card {
    padding: 16px;
    border-radius: 22px;
  }

  .home-compare-summary h3 {
    font-size: 1.6rem;
  }

  .home-hero-photo-left {
    left: 8%;
    width: 30%;
    height: 40%;
  }

  .home-hero-photo-center {
    left: 28%;
    width: 36%;
    height: 56%;
  }

  .home-hero-photo-right {
    right: 2%;
    width: 40%;
    height: 66%;
  }

  .home-section-head h2,
  .home-center-head h2,
  .home-pricing-copy h2,
  .home-quote-wrap h2,
  .home-apply-copy h2,
  .home-impact-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .home-impact-copy {
    left: 24px;
    top: 24px;
    right: 24px;
  }

  .home-impact-left {
    min-height: 460px;
  }

  .home-impact-portrait-image {
    object-position: center 24%;
  }

  .home-impact-item {
    padding: 16px 0 18px;
  }

  .home-impact-title-row {
    gap: 14px;
  }

  .home-impact-title-group {
    gap: 14px;
  }

  .home-impact-title-row strong {
    font-size: clamp(1.05rem, 6vw, 1.8rem);
  }

  .home-impact-glyph {
    width: 22px;
    height: 22px;
  }

  .home-impact-meta {
    gap: 10px;
  }

  .home-impact-badge {
    min-height: 30px;
    padding: 0 10px 0 12px;
    font-size: 0.64rem;
  }

  .home-impact-badge::after {
    width: 0.36rem;
    height: 0.36rem;
    margin-left: 1px;
    border-right-width: 1.8px;
    border-bottom-width: 1.8px;
  }

  .home-impact-icon {
    font-size: 1.7rem;
  }

  .home-impact-panel {
    padding-left: 36px;
  }

  .home-impact-item p {
    font-size: 0.95rem;
  }

  .home-chip-row span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .home-wordmark-section {
    padding: 12px 0 28px;
  }

  .home-app-section {
    padding: 18px 0 64px;
  }

  .home-app-shell {
    gap: 18px;
    padding: 24px 24px 42px;
    min-height: 1065px;
    align-items: start;
  }

  .home-app-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-app-badge {
    width: auto;
    min-height: 64px;
    padding: 10px 12px;
    gap: 10px;
  }

  .home-app-visual {
    justify-content: center;
    margin-top: 6px;
  }

  .home-app-gif {
    width: min(100%, 430px);
    max-width: 430px;
    transform: scale(1.68);
    transform-origin: center center;
  }

  .home-app-badge-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .home-app-badge-copy span {
    font-size: 0.6rem;
  }

  .home-app-badge-copy strong {
    font-size: 0.86rem;
  }

  .home-app-meta {
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .home-app-meta::-webkit-scrollbar {
    display: none;
  }

  .home-app-meta span {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .home-wordmark-wrap {
    width: min(100vw - 24px, 100%);
  }

  .home-wordmark-lockup {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.18rem;
    font-size: clamp(2.55rem, 12.5vw, 3.7rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    transform: translateY(-10%);
  }

  .home-wordmark-lockup span {
    flex: 0 0 auto;
  }
}

body[data-theme="legacy"]:not([data-page="home"]) {
  font-family: var(--font-body);
  color: #111c35;
  background: #f6f4ec;
}

body[data-theme="legacy"]:not([data-page="home"])::before {
  opacity: 0.06;
}

body[data-theme="legacy"]:not([data-page="home"]) h1,
body[data-theme="legacy"]:not([data-page="home"]) h2,
body[data-theme="legacy"]:not([data-page="home"]) h3,
body[data-theme="legacy"]:not([data-page="home"]) h4,
body[data-theme="legacy"]:not([data-page="home"]) .btn,
body[data-theme="legacy"]:not([data-page="home"]) .homepage-brand-copy strong,
body[data-theme="legacy"]:not([data-page="home"]) .price-line strong {
  font-family: var(--font-display);
}

body[data-theme="legacy"]:not([data-page="home"]) .reveal {
  opacity: 1;
  transform: none;
}

.subpage-header {
  z-index: 80;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(168, 205, 247, 0.1), rgba(45, 97, 168, 0.04)),
    rgba(4, 14, 36, 0.14);
  border-bottom: 1px solid rgba(186, 214, 248, 0.14);
  backdrop-filter: blur(24px) saturate(175%);
  -webkit-backdrop-filter: blur(24px) saturate(175%);
}

.subpage-nav-shell {
  position: relative;
  isolation: isolate;
  min-height: var(--nav-height);
  padding: 0 22px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(245, 250, 255, 0.13), rgba(219, 236, 255, 0.035)),
    rgba(5, 17, 41, 0.08);
  border: 1px solid rgba(210, 233, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(116, 167, 231, 0.05),
    0 16px 34px rgba(3, 12, 27, 0.09);
  backdrop-filter: blur(38px) saturate(185%);
  -webkit-backdrop-filter: blur(38px) saturate(185%);
  overflow: hidden;
}

.subpage-header .nav-shell {
  width: 100%;
}

.subpage-nav-shell::before,
.subpage-nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.subpage-nav-shell::before {
  border-radius: inherit;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.18) 0%, rgba(220, 235, 255, 0.06) 18%, rgba(255, 255, 255, 0.012) 44%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(circle at 20% 0%, rgba(209, 230, 255, 0.09), transparent 34%);
  opacity: 0.56;
}

.subpage-nav-shell::after {
  inset: 1px;
  border-radius: 0;
  border-left: 1px solid rgba(202, 228, 255, 0.06);
  border-right: 1px solid rgba(202, 228, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015) 34%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.4;
}

.subpage-nav-shell > * {
  position: relative;
  z-index: 1;
}

.subpage-brand {
  color: #111c35;
  gap: 12px;
}

.subpage-brand .brand-logo {
  height: 24px;
  filter: none;
}

.subpage-brand-copy strong {
  color: #f4f7ff;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.subpage-brand .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 0;
  background: linear-gradient(150deg, #2d5ffe 0%, #63c8ff 100%);
  box-shadow: none;
  color: #f6f4ec;
  font-size: 0.84rem;
}

.subpage-nav {
  gap: 18px;
}

.subpage-nav a {
  color: #f4f7ff;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subpage-nav .site-nav-label {
  color: #f4f7ff;
}

.subpage-nav-cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 26, 53, 0.08);
  background: linear-gradient(180deg, rgba(20, 44, 83, 0.86), rgba(10, 25, 51, 0.92));
  color: #f6f4ec !important;
  box-shadow:
    0 12px 22px rgba(5, 19, 39, 0.14),
    inset 0 1px 0 rgba(164, 206, 255, 0.16);
  font-size: 0.74rem !important;
}

.subpage-main {
  background: #f6f4ec;
}

.subpage-main > section {
  padding: 74px 0;
  background: #f6f4ec;
}

.subpage-main > section.page-hero {
  padding: 34px 0 58px;
  background: linear-gradient(180deg, #071f43 0%, #071f43 18%, #0a2348 58%, #4e6987 100%);
}

.subpage-main .page-hero > .container {
  width: 100%;
  max-width: none;
  padding: 0 24px;
}

.subpage-main .page-hero-layout {
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.4fr);
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 136px);
}

.subpage-main .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 244, 236, 0.18);
  color: #f6f4ec;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.subpage-main .eyebrow::before {
  background: #f6f4ec;
  box-shadow: none;
}

.subpage-main .page-hero h1 {
  max-width: 10ch;
  margin-top: 18px;
  color: #f6f4ec;
  font-size: clamp(2.7rem, 4.8vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.subpage-main .page-hero-copy {
  color: rgba(246, 244, 236, 0.82);
  font-size: 1rem;
  max-width: 52ch;
}

.subpage-main .hero-metadata span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 244, 236, 0.16);
  color: #f6f4ec;
  font-size: 0.82rem;
}

.subpage-main .btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: inherit;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

.subpage-main .btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.95), rgba(73, 194, 255, 0.88));
  box-shadow: 0 24px 50px rgba(24, 119, 242, 0.26);
}

.subpage-main .btn-secondary {
  border-color: rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.subpage-main .page-hero .btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.95), rgba(73, 194, 255, 0.88));
  box-shadow: 0 24px 50px rgba(24, 119, 242, 0.26);
}

.subpage-main .page-hero .btn-secondary {
  border-color: rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.subpage-main .page-visual,
.subpage-main .hero-visual {
  min-height: auto;
}

.subpage-main .subpage-hero-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.subpage-main .subpage-hero-stage {
  position: relative;
  width: 100%;
  max-width: 1220px;
  aspect-ratio: 4 / 3;
  min-height: auto;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 42, 77, 0.92), rgba(13, 31, 58, 0.96));
  box-shadow: 0 34px 98px rgba(0, 0, 0, 0.36);
  isolation: isolate;
}

.biomarkers-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: none;
  filter: saturate(1.05) contrast(1.03);
}

.platform-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: none;
  filter: saturate(1.05) contrast(1.03);
}

.about-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: none;
  filter: saturate(1.05) contrast(1.03);
}

.how-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 44%;
  transform: none;
  filter: saturate(1.05) contrast(1.03);
}

.included-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  transform: none;
  filter: saturate(1.05) contrast(1.03);
}

.science-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 46%;
  transform: none;
  filter: saturate(1.05) contrast(1.03);
}

.subpage-main .visual-grid {
  opacity: 0.28;
}

.subpage-main .floating-chip,
.subpage-main .stat-pill,
.subpage-main .legend-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 13, 20, 0.72);
}

.subpage-main .floating-chip strong,
.subpage-main .stat-pill strong,
.subpage-main .legend-pill strong {
  color: #f6f4ec;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.subpage-main .floating-chip span,
.subpage-main .stat-pill span,
.subpage-main .legend-pill span {
  color: rgba(246, 244, 236, 0.78);
}

.subpage-main .dashboard-surface {
  background: rgba(10, 19, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.subpage-main .dashboard-topline {
  color: rgba(246, 244, 236, 0.74);
}

.subpage-main .metric-card,
.subpage-main .value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.subpage-main .metric-card h3,
.subpage-main .value-card h3,
.subpage-main .dashboard-list strong {
  color: #f6f4ec;
}

.subpage-main .metric-card p,
.subpage-main .mini-chip,
.subpage-main .dashboard-list li {
  color: rgba(246, 244, 236, 0.74);
}

.subpage-main .dashboard-list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.subpage-main .section-heading {
  align-items: end;
  margin-bottom: 28px;
}

.subpage-main .section-heading h2 {
  max-width: 14ch;
  color: #111c35;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.subpage-main .section-heading-comparison h2 {
  max-width: 18ch;
}

.subpage-main .section-copy,
.subpage-main .card-copy,
.subpage-main .detail-list li,
.subpage-main .pricing-list li,
.subpage-main .faq-card p,
.subpage-main .comparison-table td,
.subpage-main .comparison-table th,
.subpage-main .fine-print {
  color: rgba(17, 28, 53, 0.76);
}

.subpage-main .card-kicker {
  color: rgba(17, 28, 53, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subpage-main .glass-card,
.subpage-main .comparison-card,
.subpage-main .form-card,
.subpage-main .info-card,
.subpage-main .faq-card,
.subpage-main .pricing-card,
.subpage-main .timeline-step,
.subpage-main .domain-card,
.subpage-main .story-card,
.subpage-main .benefit-card,
.subpage-main .value-card,
.subpage-main .access-card,
.subpage-main .principle-card,
.subpage-main .proof-card,
.subpage-main .dashboard-panel {
  background: #fffdf8;
  border: 1px solid rgba(17, 28, 53, 0.08);
  box-shadow: none;
  border-radius: 12px;
}

.subpage-main .glass-card::before {
  display: none;
}

.subpage-main .trust-item {
  padding: 20px;
  border-radius: 12px;
  background: #fffdf8;
  border: 1px solid rgba(17, 28, 53, 0.08);
}

.subpage-main .trust-item strong,
.subpage-main .glass-card h3,
.subpage-main .info-card h3,
.subpage-main .timeline-step h3,
.subpage-main .domain-card h3,
.subpage-main .story-card h3,
.subpage-main .benefit-card h3,
.subpage-main .access-card h3,
.subpage-main .principle-card h3,
.subpage-main .proof-card h3,
.subpage-main .pricing-card h2,
.subpage-main .pricing-card h3,
.subpage-main .value-card h3 {
  color: #111c35;
  font-size: 1.02rem;
}

.subpage-main .access-card li {
  color: #111c35;
}

.subpage-main .access-card li::before {
  background: #111c35;
  opacity: 0.32;
}

.subpage-main .proof-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px 0 0 20px;
}

.subpage-main .proof-card li {
  color: rgba(17, 28, 53, 0.84);
  line-height: 1.55;
}

.subpage-main .privacy-policy-card {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.7;
}

.subpage-main .privacy-policy-card h2 {
  margin: 10px 0 0;
  color: #111c35;
  font-size: 1.3rem;
}

.subpage-main .privacy-policy-card h3 {
  margin: 10px 0 0;
  color: #111c35;
  font-size: 1rem;
}

.subpage-main .privacy-policy-card p,
.subpage-main .privacy-policy-card li {
  margin: 0;
  color: rgba(17, 28, 53, 0.84);
}

.subpage-main .privacy-policy-card ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 10px;
}

body[data-page="science"] .science-principles-grid,
body[data-page="science"] .science-proof-grid,
body[data-page="science"] .science-info-layout,
body[data-page="science"] .science-faq-card {
  position: relative;
}

body[data-page="science"] .science-cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

body[data-page="science"] .science-proof-grid,
body[data-page="science"] .science-info-layout {
  align-items: stretch;
  gap: 18px;
}

body[data-page="science"] .science-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="science"] .science-info-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="science"] .science-card {
  position: relative;
  grid-column: auto;
  min-height: 260px;
  padding: 28px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(16, 40, 79, 0.88) 0%, rgba(9, 28, 58, 0.94) 100%);
  box-shadow:
    0 22px 60px rgba(2, 10, 26, 0.34),
    inset 0 1px 0 rgba(194, 221, 255, 0.08);
  overflow: hidden;
}

body[data-page="science"] .science-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
}

body[data-page="science"] .science-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

body[data-page="science"] .science-card .benefit-card-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body[data-page="science"] .science-card h3,
body[data-page="science"] .science-card .card-copy,
body[data-page="science"] .science-card .science-card-list {
  position: relative;
  z-index: 1;
}

body[data-page="science"] .science-card h3 {
  color: #edf4ff;
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.15;
}

body[data-page="science"] .science-card .card-copy {
  color: rgba(206, 221, 245, 0.8);
  margin-top: auto;
  max-width: 30ch;
  line-height: 1.62;
}

body[data-page="science"] .science-card .science-card-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="science"] .science-card .science-card-list li {
  color: rgba(206, 221, 245, 0.8);
  line-height: 1.62;
}

body[data-page="science"] .science-card:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 204, 255, 0.26);
  box-shadow:
    0 28px 70px rgba(2, 10, 26, 0.44),
    inset 0 1px 0 rgba(206, 229, 255, 0.12);
}

body[data-page="science"] .science-principles-grid {
  counter-reset: science-principle;
}

body[data-page="science"] .science-proof-grid {
  counter-reset: science-proof;
}

body[data-page="science"] .science-info-layout {
  counter-reset: science-info;
}

body[data-page="science"] .science-principles-grid .principle-card,
body[data-page="science"] .science-proof-grid .proof-card,
body[data-page="science"] .science-info-layout .info-card,
body[data-page="science"] .science-clinical-section .info-card {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 24px;
  border-radius: 24px;
  background-color: #17345f !important;
  background-image:
    linear-gradient(180deg, rgba(27, 59, 111, 0.98) 0%, rgba(11, 31, 62, 0.98) 100%),
    linear-gradient(rgba(191, 222, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.05) 1px, transparent 1px) !important;
  background-size: auto, 40px 40px, 40px 40px !important;
  border: 1px solid rgba(161, 201, 255, 0.14) !important;
  box-shadow:
    0 16px 38px rgba(3, 12, 29, 0.2),
    inset 0 1px 0 rgba(211, 231, 255, 0.08) !important;
  color: #edf4ff !important;
}

body[data-page="science"] .science-principles-grid .principle-card,
body[data-page="science"] .science-proof-grid .proof-card,
body[data-page="science"] .science-info-layout .info-card,
body[data-page="science"] .science-clinical-section .info-card {
  background-image:
    linear-gradient(rgba(191, 222, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.05) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
}

body[data-page="science"] .science-principles-grid .principle-card::before,
body[data-page="science"] .science-proof-grid .proof-card::before,
body[data-page="science"] .science-info-layout .info-card::before,
body[data-page="science"] .science-clinical-section .info-card::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 20px;
  min-width: 232px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 221, 255, 0.1) !important;
  border: 1px solid rgba(191, 223, 255, 0.06) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  pointer-events: none;
}

body[data-page="science"] .science-principles-grid .principle-card::after,
body[data-page="science"] .science-proof-grid .proof-card::after,
body[data-page="science"] .science-info-layout .info-card::after,
body[data-page="science"] .science-clinical-section .info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(rgba(191, 222, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px !important;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 92%) !important;
  pointer-events: none;
}

body[data-page="science"] .science-principles-grid .principle-card {
  min-height: 250px !important;
}

body[data-page="science"] .science-proof-grid .proof-card {
  min-height: 250px !important;
}

body[data-page="science"] .science-info-layout .info-card {
  min-height: 280px !important;
}

body[data-page="science"] .science-clinical-section .info-card {
  min-height: 220px !important;
}

body[data-page="science"] .science-principles-grid .principle-card h3,
body[data-page="science"] .science-proof-grid .proof-card h3,
body[data-page="science"] .science-info-layout .info-card h3,
body[data-page="science"] .science-clinical-section .info-card h3,
body[data-page="science"] .science-faq-card h2,
body[data-page="science"] .science-faq-card summary,
body[data-page="science"] .science-faq-card p,
body[data-page="science"] .science-principles-grid .card-copy,
body[data-page="science"] .science-proof-grid .card-copy,
body[data-page="science"] .science-info-layout .card-copy,
body[data-page="science"] .science-clinical-section .card-copy,
body[data-page="science"] .science-info-layout .detail-list li,
body[data-page="science"] .science-faq-card .section-copy {
  position: relative;
  z-index: 1;
}

body[data-page="science"] .science-faq-card {
  padding: 28px 26px 24px !important;
  border-radius: 24px;
  border: 1px solid rgba(161, 201, 255, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%) !important;
  box-shadow:
    0 16px 38px rgba(3, 12, 29, 0.2),
    inset 0 1px 0 rgba(211, 231, 255, 0.08) !important;
  overflow: hidden;
}

body[data-page="science"] .science-faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(191, 222, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 88%);
  pointer-events: none;
}

body[data-page="science"] .science-faq-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(211, 231, 255, 0.28), rgba(211, 231, 255, 0.04));
  pointer-events: none;
}

body[data-page="science"] .science-faq-card .section-heading {
  margin-bottom: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="science"] .science-faq-card .section-heading h2 {
  max-width: 18ch;
  color: #f3f7ff !important;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body[data-page="science"] .science-faq-card details {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(191, 233, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body[data-page="science"] .science-faq-card summary {
  color: #edf4ff !important;
  font-size: 0.96rem;
  line-height: 1.3;
}

body[data-page="science"] .science-faq-card p {
  margin-top: 12px;
  color: rgba(205, 220, 244, 0.82) !important;
  line-height: 1.6;
}

body[data-page="science"] .science-principles-section .benefit-card,
body[data-page="science"] .science-principles-section .benefit-card-featured {
  background: linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  border: 1px solid rgba(161, 201, 255, 0.12);
  box-shadow:
    0 16px 38px rgba(3, 12, 29, 0.2),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

body[data-page="science"] .science-principles-section .benefit-card::after,
body[data-page="science"] .science-principles-section .benefit-card-featured::after {
  content: none;
  display: none;
  background: none;
}

body[data-page="science"] .science-principles-section .benefit-card:hover,
body[data-page="science"] .science-principles-section .benefit-card-featured:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 201, 255, 0.22);
  box-shadow:
    0 20px 46px rgba(3, 12, 29, 0.24),
    inset 0 1px 0 rgba(211, 231, 255, 0.12);
}

body[data-page="science"] .science-principles-section .section-heading {
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  border: 1px solid rgba(161, 201, 255, 0.12);
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

body[data-page="science"] .science-principles-section .card-kicker {
  color: rgba(216, 233, 255, 0.82);
}

body[data-page="science"] .science-principles-section .section-heading h2 {
  color: #edf4ff;
}

body[data-page="science"] .science-principles-section .section-copy {
  color: rgba(205, 220, 244, 0.82);
}

body[data-page="science"] .science-principles-grid .principle-card h3,
body[data-page="science"] .science-proof-grid .proof-card h3,
body[data-page="science"] .science-info-layout .info-card h3,
body[data-page="science"] .science-clinical-section .info-card h3 {
  margin-top: 28px !important;
  color: #f3f7ff !important;
}

body[data-page="science"] .science-principles-grid .card-copy,
body[data-page="science"] .science-proof-grid .card-copy,
body[data-page="science"] .science-info-layout .card-copy,
body[data-page="science"] .science-clinical-section .card-copy,
body[data-page="science"] .science-info-layout .detail-list li,
body[data-page="science"] .science-faq-card p {
  color: rgba(205, 220, 244, 0.82) !important;
}

body[data-page="science"] .science-principles-grid .card-kicker,
body[data-page="science"] .science-proof-grid .card-kicker,
body[data-page="science"] .science-info-layout .card-kicker,
body[data-page="science"] .science-clinical-section .card-kicker,
body[data-page="science"] .science-faq-card .card-kicker {
  color: rgba(216, 233, 255, 0.82) !important;
}

body[data-page="science"] .science-principles-grid .principle-card::before,
body[data-page="science"] .science-proof-grid .proof-card::before,
body[data-page="science"] .science-info-layout .info-card::before,
body[data-page="science"] .science-clinical-section .info-card::before {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: rgba(216, 233, 255, 0.82) !important;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="science"] .science-principles-grid .principle-card::before {
  content: counter(science-principle, decimal-leading-zero);
  counter-increment: science-principle;
}

body[data-page="science"] .science-proof-grid .proof-card::before {
  content: counter(science-proof, decimal-leading-zero);
  counter-increment: science-proof;
}

body[data-page="science"] .science-info-layout .info-card::before {
  content: counter(science-info, decimal-leading-zero);
  counter-increment: science-info;
}

body[data-page="science"] .science-principles-grid .principle-card::before,
body[data-page="science"] .science-proof-grid .proof-card::before,
body[data-page="science"] .science-info-layout .info-card::before,
body[data-page="science"] .science-clinical-section .info-card::before {
  padding-left: 14px !important;
}

body[data-page="science"] .science-principles-grid .principle-card:hover,
body[data-page="science"] .science-proof-grid .proof-card:hover,
body[data-page="science"] .science-info-layout .info-card:hover,
body[data-page="science"] .science-clinical-section .info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 201, 255, 0.22) !important;
  box-shadow:
    0 20px 46px rgba(3, 12, 29, 0.24),
    inset 0 1px 0 rgba(211, 231, 255, 0.12) !important;
}

body[data-page="science"] .science-faq-card .section-heading {
  margin-bottom: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="science"] .science-faq-section {
  padding: 72px 0 84px;
  background: #f6f4ec;
}

body[data-page="science"] .science-faq-section .container {
  width: min(980px, calc(100% - 48px));
  max-width: 980px;
}

body[data-page="science"] .science-faq-card {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

body[data-page="science"] .science-faq-card::before,
body[data-page="science"] .science-faq-card::after {
  display: none;
}

body[data-page="science"] .science-faq-card .section-heading {
  margin: 0 0 20px !important;
  text-align: center;
  width: 100%;
}

body[data-page="science"] .science-faq-card .section-heading .card-kicker {
  display: block;
  margin-bottom: 10px;
}

body[data-page="science"] .science-faq-card .section-heading h2 {
  max-width: none;
  margin: 0 auto;
  color: #111c35 !important;
  font-size: clamp(2.9rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

body[data-page="science"] .science-faq-card details {
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(17, 28, 53, 0.14);
  border-radius: 0;
  background: transparent;
  width: 100%;
}

body[data-page="science"] .science-faq-card details:last-of-type {
  border-bottom: 1px solid rgba(17, 28, 53, 0.14);
}

body[data-page="science"] .science-faq-card summary {
  margin-top: 0 !important;
  color: #111c35 !important;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

body[data-page="science"] .science-faq-card p {
  margin-top: 14px;
  color: rgba(17, 28, 53, 0.74) !important;
  line-height: 1.7;
  max-width: 72ch;
}

body[data-page="science"] .science-clinical-section .science-info-card {
  min-height: 0 !important;
  padding: 26px 24px 24px;
  border-radius: 24px;
  border: 1px solid rgba(17, 28, 53, 0.08) !important;
  background: #fffdf8 !important;
  box-shadow: 0 18px 42px rgba(17, 28, 53, 0.08) !important;
}

body[data-page="science"] .science-clinical-section .science-info-card::before,
body[data-page="science"] .science-clinical-section .science-info-card::after {
  display: none;
}

body[data-page="science"] .science-clinical-section .science-info-card .card-kicker {
  color: rgba(91, 133, 191, 0.8) !important;
}

body[data-page="science"] .science-clinical-section .science-info-card h3 {
  margin-top: 0 !important;
  color: #111c35 !important;
}

body[data-page="science"] .science-clinical-section .science-info-card .card-copy {
  color: rgba(17, 28, 53, 0.66) !important;
}

body[data-page="science"] .science-clinical-section .section-heading .card-kicker {
  color: rgba(17, 28, 53, 0.68) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body[data-page="science"] .science-hero-image-slot {
  min-height: 560px;
  border-radius: 28px;
  border: 1px solid rgba(17, 28, 53, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    #e9e3d6 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 28px 60px rgba(17, 28, 53, 0.08) !important;
}

body[data-page="science"] .science-hero-image-slot::before,
body[data-page="science"] .science-hero-image-slot::after {
  display: none;
}

body[data-page="privacy"] .subpage-main > section.page-hero,
body[data-page="terms"] .subpage-main > section.page-hero {
  padding: 34px 0 30px;
}

body[data-page="privacy"] .subpage-main .page-hero-layout,
body[data-page="terms"] .subpage-main .page-hero-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-height: auto;
}

body[data-page="privacy"] .subpage-main .page-hero h1,
body[data-page="terms"] .subpage-main .page-hero h1 {
  max-width: none;
}

body[data-page="privacy"] .subpage-main .page-hero-copy,
body[data-page="terms"] .subpage-main .page-hero-copy {
  max-width: 28ch;
}

body[data-page="about"] .subpage-main .subpage-hero-stage {
  border: 0;
}

body[data-page="how"] .signal-layer-section .signal-card,
body[data-page="how"] .output-grid .value-card,
body[data-page="how"] .signal-example-card,
body[data-page="how"] .comparison-layout .info-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%) !important;
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08) !important;
}

body[data-page="how"] .signal-layer-section .signal-card::before,
body[data-page="how"] .output-grid .value-card::before,
body[data-page="how"] .signal-example-card::before,
body[data-page="how"] .comparison-layout .info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
}

body[data-page="how"] .signal-layer-section .signal-card::after,
body[data-page="how"] .output-grid .value-card::after,
body[data-page="how"] .signal-example-card::after,
body[data-page="how"] .comparison-layout .info-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.18) 0%, transparent 72%);
  pointer-events: none;
}

body[data-page="how"] .signal-layer-section .signal-card > *,
body[data-page="how"] .output-grid .value-card > *,
body[data-page="how"] .signal-example-card > *,
body[data-page="how"] .comparison-layout .info-card > * {
  position: relative;
  z-index: 1;
}

body[data-page="how"] .signal-layer-section .signal-card span,
body[data-page="how"] .output-grid .value-card .card-kicker,
body[data-page="how"] .comparison-layout .info-card .card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: auto;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="how"] .signal-layer-section .signal-card h3,
body[data-page="how"] .output-grid .value-card h3,
body[data-page="how"] .signal-example-card h3,
body[data-page="how"] .comparison-layout .info-card h3 {
  color: #edf4ff !important;
}

body[data-page="how"] .signal-layer-section .signal-card p,
body[data-page="how"] .signal-layer-section .signal-card small,
body[data-page="how"] .output-grid .value-card .card-copy,
body[data-page="how"] .signal-example-card p,
body[data-page="how"] .comparison-layout .info-card .detail-list li {
  color: rgba(205, 220, 244, 0.78) !important;
}

body[data-page="how"] .signal-layer-section .signal-card small {
  display: block;
  margin-top: 12px;
}

body[data-page="how"] .comparison-layout .info-card .detail-list li::before {
  background: rgba(164, 207, 255, 0.7);
  opacity: 1;
}

body[data-page="how"] .signal-flow span {
  border-radius: 16px;
  border: 1px solid rgba(191, 223, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(205, 220, 244, 0.82);
}

body[data-page="how"] .signal-flow span + span::before {
  background: rgba(191, 223, 255, 0.22);
}

body[data-page="how"] .how-hero-image-slot {
  min-height: 560px;
  border-radius: 28px;
  border: 1px solid rgba(17, 28, 53, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    #e9e3d6 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 28px 60px rgba(17, 28, 53, 0.08) !important;
}

body[data-page="how"] .how-hero-image-slot::before,
body[data-page="how"] .how-hero-image-slot::after {
  display: none;
}

body[data-page="how"] .journey-story-panel {
  padding: 28px;
}

body[data-page="how"] .story-image-slot {
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(17, 28, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
    #e9e3d6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 28px 60px rgba(17, 28, 53, 0.08);
}

body[data-page="how"] .how-story-media-card {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

body[data-page="how"] .how-story-media-card img,
body[data-page="how"] .how-story-media-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

body[data-page="how"] .how-story-media-card-cover img,
body[data-page="how"] .how-story-media-card-cover video {
  object-fit: cover;
}

body[data-page="how"] .how-story-media-card-video {
  background:
    radial-gradient(circle at top, rgba(73, 194, 255, 0.14), transparent 48%),
    rgba(10, 30, 59, 0.06);
}

.subpage-main .timeline-number {
  background: rgba(17, 28, 53, 0.06);
  border: 1px solid rgba(17, 28, 53, 0.1);
  color: #111c35;
}

.subpage-main .comparison-table {
  border-collapse: collapse;
}

.subpage-main .comparison-card-scroll {
  padding: 16px;
}

.subpage-main .comparison-scroll-shell {
  border: 1px solid rgba(17, 28, 53, 0.08);
  background: #fffdf8;
}

.subpage-main .comparison-table th {
  color: #111c35;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subpage-main .comparison-table-wide thead th {
  background: #f6f1e7;
}

.subpage-main .comparison-table-wide tbody th[scope="row"] {
  background: #fffdf8;
  color: #111c35;
  box-shadow: 14px 0 22px #fffdf8;
}

.subpage-main .comparison-card-scroll .status-pill {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.subpage-main .comparison-scroll-hint {
  color: rgba(17, 28, 53, 0.56);
}

.subpage-main .comparison-table td,
.subpage-main .comparison-table th {
  border-bottom: 1px solid rgba(17, 28, 53, 0.12);
}

.subpage-main .comparison-card-scroll .comparison-table th:not(:last-child),
.subpage-main .comparison-card-scroll .comparison-table td:not(:last-child) {
  border-right: 1px solid rgba(17, 28, 53, 0.08);
}

.subpage-main .status-pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.subpage-main .status-positive {
  color: #111c35;
  background: rgba(17, 28, 53, 0.06);
}

.subpage-main .status-positive::before {
  background: #111c35;
  box-shadow: none;
}

.subpage-main .status-limited,
.subpage-main .status-varies {
  color: #111c35;
  background: rgba(17, 28, 53, 0.04);
}

.subpage-main .status-limited::before,
.subpage-main .status-varies::before {
  background: rgba(17, 28, 53, 0.72);
}

.subpage-main .dashboard-chart {
  background: #f8f5ed;
  border: 1px solid rgba(17, 28, 53, 0.08);
}

.subpage-main .dashboard-chart-lines {
  background:
    linear-gradient(rgba(17, 28, 53, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 53, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}

.subpage-main .tag {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.subpage-main .tag-included,
.subpage-main .tag-access,
.subpage-main .tag-review {
  color: #111c35;
  background: rgba(17, 28, 53, 0.05);
}

.included-core-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(116, 181, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(102, 140, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #f5f1e6 0%, #f2ede1 100%);
}

.included-core-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 28, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 28, 53, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.included-core-section .container {
  position: relative;
  z-index: 1;
}

.included-core-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: end;
  gap: 28px 40px;
  margin-bottom: 40px;
  padding: 34px 30px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 20%, rgba(150, 210, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(88, 184, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(32, 58, 104, 0.98) 0%, rgba(33, 61, 107, 0.98) 100%);
  border: 1px solid rgba(138, 194, 255, 0.24);
  box-shadow:
    0 22px 48px rgba(8, 31, 67, 0.2),
    inset 0 1px 0 rgba(224, 241, 255, 0.16);
}

.included-core-section .section-heading > div {
  min-width: 0;
}

.included-core-section .card-kicker {
  color: rgba(188, 225, 255, 0.88);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.included-core-section .section-heading h2 {
  margin: 10px 0 0;
  max-width: 10ch;
  color: #fdfefe;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  text-shadow: 0 1px 0 rgba(7, 20, 46, 0.2);
}

.included-core-section .section-copy {
  align-self: end;
  justify-self: end;
  max-width: 31ch;
  color: rgba(222, 237, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.5;
}

.included-core-section .benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.included-core-section .benefit-card {
  position: relative;
  grid-column: auto;
  min-height: 260px;
  padding: 28px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(16, 40, 79, 0.88) 0%, rgba(9, 28, 58, 0.94) 100%);
  box-shadow:
    0 22px 60px rgba(2, 10, 26, 0.34),
    inset 0 1px 0 rgba(194, 221, 255, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.included-core-section .benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
}

.included-core-section .benefit-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.included-core-section .benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 204, 255, 0.26);
  box-shadow:
    0 28px 70px rgba(2, 10, 26, 0.44),
    inset 0 1px 0 rgba(206, 229, 255, 0.12);
}

.included-core-section .benefit-card:nth-child(2n)::after {
  background: radial-gradient(circle, rgba(119, 188, 255, 0.14) 0%, transparent 72%);
}

.included-core-section .benefit-card:nth-child(3n)::after {
  background: radial-gradient(circle, rgba(255, 220, 154, 0.12) 0%, transparent 72%);
}

.included-core-section .benefit-card-featured {
  grid-column: auto;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(22, 53, 101, 0.96) 0%, rgba(10, 33, 72, 0.98) 100%);
}

.included-core-section .benefit-card-featured::before {
  background: linear-gradient(90deg, rgba(255, 224, 164, 0.58), rgba(191, 223, 255, 0.08));
}

.included-core-section .benefit-card-featured h3 {
  max-width: none;
  font-size: 1.14rem;
}

.included-core-section .benefit-card-featured .card-copy {
  max-width: 30ch;
}

.included-core-section .benefit-card:nth-child(4),
.included-core-section .benefit-card:nth-child(5) {
  transform: none;
}

.included-core-section .benefit-card:hover:nth-child(4),
.included-core-section .benefit-card:hover:nth-child(5) {
  transform: translateY(-4px);
}

.included-core-section .benefit-card-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.included-core-section .benefit-card h3,
.included-core-section .card-copy {
  position: relative;
  z-index: 1;
}

.included-core-section .timeline-number {
  margin-bottom: 14px;
}

.included-core-section .benefit-card h3 {
  color: #edf4ff;
  margin-bottom: 14px;
}

.included-core-section .card-copy {
  color: rgba(206, 221, 245, 0.8);
  margin-top: auto;
  max-width: 30ch;
  line-height: 1.62;
}

.included-access-section {
  background: #f6f4ec;
}

.included-access-section .container {
  align-items: stretch;
  gap: 18px;
}

body[data-page="included"] .included-access-section .access-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(111, 164, 255, 0.24);
  background:
    radial-gradient(circle at 78% 12%, rgba(98, 144, 238, 0.2), transparent 28%),
    linear-gradient(180deg, #2a4f86 0%, #1e3d70 42%, #19345f 100%);
  box-shadow:
    0 24px 52px rgba(6, 18, 41, 0.22),
    inset 0 1px 0 rgba(219, 235, 255, 0.12);
  overflow: hidden;
}

body[data-page="included"] .included-access-section .access-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(164, 207, 255, 0.48), rgba(191, 223, 255, 0.04));
}

body[data-page="included"] .included-access-section .access-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 72%);
  pointer-events: none;
}

body[data-page="included"] .included-access-section .access-card .card-kicker,
body[data-page="included"] .included-access-section .access-card h3,
body[data-page="included"] .included-access-section .access-card ul {
  position: relative;
  z-index: 1;
}

body[data-page="included"] .included-access-section .access-card .card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(184, 216, 255, 0.12);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

body[data-page="included"] .included-access-section .access-card h3 {
  margin: 0;
  color: #f3f7ff;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body[data-page="included"] .included-access-section .access-card ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="included"] .included-access-section .access-card li {
  color: rgba(219, 229, 245, 0.86);
  line-height: 1.58;
}

body[data-page="included"] .included-access-section .access-card li::before {
  background: rgba(164, 207, 255, 0.7);
  opacity: 1;
}

.included-proof-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(116, 181, 255, 0.2), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(102, 140, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #1a3e72 0%, #183965 48%, #153056 100%);
}

.included-proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(191, 222, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.included-proof-section .container {
  position: relative;
  z-index: 1;
}

body[data-page="included"] .included-proof-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: end;
  gap: 28px 40px;
  margin-bottom: 38px;
  padding: 34px 30px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 20%, rgba(150, 210, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(88, 184, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(32, 58, 104, 0.96) 0%, rgba(33, 61, 107, 0.96) 100%);
  border: 1px solid rgba(138, 194, 255, 0.24);
  box-shadow:
    0 22px 48px rgba(8, 31, 67, 0.2),
    inset 0 1px 0 rgba(224, 241, 255, 0.16);
}

body[data-page="included"] .included-proof-section .card-kicker {
  color: rgba(188, 225, 255, 0.88);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

body[data-page="included"] .included-proof-section .section-heading h2 {
  margin: 10px 0 0;
  color: #fdfefe;
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
  text-shadow: 0 1px 0 rgba(7, 20, 46, 0.2);
}

body[data-page="included"] .included-proof-section .section-copy {
  align-self: end;
  justify-self: end;
  color: rgba(222, 237, 255, 0.88);
  max-width: 31ch;
  font-size: 1.02rem;
  line-height: 1.5;
}

body[data-page="included"] .included-proof-section .proof-grid {
  gap: 18px;
}

body[data-page="included"] .included-proof-section .proof-card {
  position: relative;
  min-height: 250px;
  padding: 26px 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(111, 164, 255, 0.24);
  background:
    radial-gradient(circle at 78% 12%, rgba(98, 144, 238, 0.2), transparent 28%),
    linear-gradient(180deg, #2a4f86 0%, #1e3d70 42%, #19345f 100%);
  box-shadow:
    0 24px 52px rgba(6, 18, 41, 0.22),
    inset 0 1px 0 rgba(219, 235, 255, 0.12);
  overflow: hidden;
}

body[data-page="included"] .included-proof-section .proof-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(164, 207, 255, 0.48), rgba(191, 223, 255, 0.04));
}

body[data-page="included"] .included-proof-section .proof-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 72%);
  pointer-events: none;
}

body[data-page="included"] .included-proof-section .proof-card h3,
body[data-page="included"] .included-proof-section .proof-card .card-copy {
  position: relative;
  z-index: 1;
}

body[data-page="included"] .included-proof-section .proof-card h3 {
  color: #f3f7ff;
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

body[data-page="included"] .included-proof-section .proof-card .card-copy {
  margin-top: 18px;
  color: rgba(219, 229, 245, 0.86);
  line-height: 1.58;
}

body[data-page="included"] .membership-cost-grid article,
body[data-page="included"] .included-core-section .benefit-card,
body[data-page="included"] .included-access-section .access-card,
body[data-page="included"] .included-proof-section .proof-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  border: 1px solid rgba(161, 201, 255, 0.12);
  box-shadow:
    0 16px 38px rgba(3, 12, 29, 0.2),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

body[data-page="included"] .membership-cost-grid article::before,
body[data-page="included"] .included-core-section .benefit-card::before,
body[data-page="included"] .included-access-section .access-card::before,
body[data-page="included"] .included-proof-section .proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(rgba(191, 222, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 222, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 88%);
  pointer-events: none;
}

body[data-page="included"] .included-core-section .benefit-card::after,
body[data-page="included"] .included-access-section .access-card::after,
body[data-page="included"] .included-proof-section .proof-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(211, 231, 255, 0.28), rgba(211, 231, 255, 0.04));
  pointer-events: none;
}

body[data-page="included"] .included-core-section .benefit-card:hover,
body[data-page="included"] .included-access-section .access-card:hover,
body[data-page="included"] .included-proof-section .proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(161, 201, 255, 0.22);
  box-shadow:
    0 20px 46px rgba(3, 12, 29, 0.24),
    inset 0 1px 0 rgba(211, 231, 255, 0.12);
}

body[data-page="included"] .included-core-section .benefit-card h3,
body[data-page="included"] .included-access-section .access-card h3,
body[data-page="included"] .included-proof-section .proof-card h3,
body[data-page="included"] .membership-cost-grid strong {
  color: #edf4ff;
}

body[data-page="included"] .included-core-section .benefit-card .card-copy,
body[data-page="included"] .included-access-section .access-card li,
body[data-page="included"] .included-proof-section .proof-card .card-copy,
body[data-page="included"] .membership-cost-grid span {
  color: rgba(205, 220, 244, 0.78);
}

body[data-page="included"] .included-core-section .benefit-card-index,
body[data-page="included"] .included-access-section .access-card .card-kicker {
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
}

body[data-page="about"] .page-visual,
body[data-page="about"] .proof-card,
body[data-page="about"] .principle-card,
body[data-page="about"] .story-card,
body[data-page="about"] .signal-card,
body[data-page="about"] .callout-banner {
  background:
    linear-gradient(180deg, rgba(16, 40, 79, 0.88) 0%, rgba(9, 28, 58, 0.94) 100%);
  border: 1px solid rgba(161, 201, 255, 0.12);
  box-shadow:
    0 22px 60px rgba(2, 10, 26, 0.26),
  inset 0 1px 0 rgba(194, 221, 255, 0.08);
  color: #f6f4ec;
}

body[data-page="about"] .about-hero-visual {
  border: 0;
  box-shadow: none;
  background: transparent;
}

body[data-page="about"] .page-visual::before,
body[data-page="about"] .proof-card::before,
body[data-page="about"] .principle-card::before,
body[data-page="about"] .story-card::before,
body[data-page="about"] .signal-card::before,
body[data-page="about"] .callout-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
  pointer-events: none;
}

body[data-page="about"] .about-hero-visual::before,
body[data-page="about"] .about-hero-visual::after {
  display: none;
}

body[data-page="about"] .page-visual::after,
body[data-page="about"] .proof-card::after,
body[data-page="about"] .principle-card::after,
body[data-page="about"] .story-card::after,
body[data-page="about"] .signal-card::after,
body[data-page="about"] .callout-banner::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

body[data-page="about"] .proof-card:hover,
body[data-page="about"] .principle-card:hover,
body[data-page="about"] .story-card:hover,
body[data-page="about"] .signal-card:hover,
body[data-page="about"] .callout-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 204, 255, 0.26);
  box-shadow:
    0 28px 70px rgba(2, 10, 26, 0.32),
    inset 0 1px 0 rgba(206, 229, 255, 0.12);
}

body[data-page="about"] .proof-card h3,
body[data-page="about"] .principle-card h3,
body[data-page="about"] .story-card h3,
body[data-page="about"] .signal-card h3,
body[data-page="about"] .callout-banner strong,
body[data-page="about"] .section-heading h2,
body[data-page="about"] .card-copy,
body[data-page="about"] .section-copy,
body[data-page="about"] .footer-note,
body[data-page="about"] .hero-metadata span {
  position: relative;
  z-index: 1;
}

body[data-page="about"] .proof-card h3,
body[data-page="about"] .principle-card h3,
body[data-page="about"] .story-card h3,
body[data-page="about"] .signal-card h3 {
  color: #edf4ff;
}

body[data-page="about"] .proof-card .card-copy,
body[data-page="about"] .principle-card .card-copy,
body[data-page="about"] .story-card .card-copy,
body[data-page="about"] .signal-card p,
body[data-page="about"] .signal-card small,
body[data-page="about"] .callout-banner .footer-note {
  color: rgba(205, 220, 244, 0.82);
}

body[data-page="about"] .section-heading h2,
body[data-page="about"] .section-copy {
  color: #111c35;
}

body[data-page="about"] .section-heading {
  align-items: end;
  margin-bottom: 28px;
}

body[data-page="about"] .section-heading .card-kicker {
  color: rgba(17, 28, 53, 0.72);
}

body[data-page="about"] .signal-card span,
body[data-page="about"] .proof-card .card-kicker,
body[data-page="about"] .principle-card .card-kicker,
body[data-page="about"] .story-card .card-kicker {
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
}

body[data-page="about"] .callout-banner::after {
  display: none;
}

body[data-page="about"] .about-contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: end;
  gap: 24px 32px;
  padding: 28px 30px;
  box-shadow: none;
}

body[data-page="about"] .about-contact-banner:hover {
  transform: none;
  border-color: rgba(161, 201, 255, 0.12);
  box-shadow: none;
}

body[data-page="about"] .about-contact-banner > div:first-child {
  min-width: 0;
}

body[data-page="about"] .about-contact-banner strong {
  display: block;
  max-width: 24ch;
  line-height: 1.4;
}

body[data-page="about"] .about-contact-banner .footer-note {
  max-width: 70ch;
  margin-top: 12px;
}

body[data-page="about"] .about-contact-banner .section-actions {
  margin-top: 0;
  align-self: end;
  justify-self: end;
}

body[data-page="about"] .callout-banner .btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.95), rgba(73, 194, 255, 0.88));
  box-shadow: 0 24px 50px rgba(24, 119, 242, 0.26);
}

body[data-page="about"] .callout-banner .btn-secondary {
  border-color: rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

body[data-page="about"] .proof-grid,
body[data-page="about"] .principles-grid,
body[data-page="about"] .story-grid,
body[data-page="about"] .signal-grid {
  align-items: stretch;
}

body[data-page="about"] {
  overflow-x: hidden;
}

body[data-page="about"] .subpage-main {
  overflow-x: clip;
}

body[data-page="about"] .proof-card,
body[data-page="about"] .principle-card,
body[data-page="about"] .story-card,
body[data-page="about"] .signal-card {
  position: relative;
  overflow: hidden;
}

body[data-page="about"] .about-core-people-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 120px;
  background: #111c35;
}

body[data-page="about"] .about-core-people-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  opacity: 1;
}

body[data-page="about"] .about-core-people-section .container {
  position: relative;
  z-index: 1;
}

body[data-page="about"] .about-core-people-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0 auto 52px;
  text-align: center;
}

body[data-page="about"] .about-core-people-heading .card-kicker {
  margin: 0;
  color: rgba(91, 183, 255, 0.9);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

body[data-page="about"] .about-core-people-heading h2 {
  margin: 0;
  max-width: none;
  color: #f3f6ff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

body[data-page="about"] .about-core-people-heading .section-copy {
  max-width: 42ch;
  color: rgba(205, 220, 244, 0.76);
  font-size: 1.02rem;
}

body[data-page="about"] .about-core-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

body[data-page="about"] .about-core-person-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 364px;
  padding: 42px 34px 38px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(146, 185, 236, 0.12);
  background: linear-gradient(180deg, rgba(14, 18, 29, 0.94) 0%, rgba(17, 20, 31, 0.96) 100%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(201, 222, 255, 0.06);
}

body[data-page="about"] .about-core-person-avatar {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  margin-bottom: 6px;
  border-radius: 999px;
  border: 1px solid rgba(179, 210, 255, 0.18);
  background:
    radial-gradient(circle at 30% 28%, rgba(246, 249, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(62, 71, 92, 0.92) 0%, rgba(24, 28, 40, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.24);
  color: rgba(237, 244, 255, 0.94);
  overflow: hidden;
}

body[data-page="about"] .about-core-person-avatar span {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body[data-page="about"] .about-core-person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body[data-page="about"] .about-core-person-photo-khalid {
  object-position: center 10%;
}

body[data-page="about"] .about-core-person-photo-faisal {
  object-position: center 36%;
}

body[data-page="about"] .about-core-person-card h3 {
  margin: 0;
  color: #f2f6ff;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  font-weight: 500;
}

body[data-page="about"] .about-core-person-role {
  margin: -2px 0 6px;
  color: rgba(68, 183, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
}

body[data-page="about"] .about-core-person-card .card-copy {
  max-width: 29ch;
  margin: 0;
  color: rgba(206, 221, 245, 0.8);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .included-core-section .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-core-section .benefit-card,
  .included-core-section .benefit-card-featured {
    grid-column: span 1;
    min-height: 0;
  }

  .included-core-section .benefit-card:nth-child(4),
  .included-core-section .benefit-card:nth-child(5),
  .included-core-section .benefit-card:hover:nth-child(4),
  .included-core-section .benefit-card:hover:nth-child(5) {
    transform: none;
  }

  body[data-page="included"] .included-access-section .access-card {
    min-height: 0;
  }

  body[data-page="about"] .about-core-people-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  body[data-page="included"] .included-proof-section .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px;
    border-radius: 24px;
  }

  body[data-page="included"] .included-proof-section .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  body[data-page="included"] .included-proof-section .section-copy {
    justify-self: start;
    max-width: 100%;
    font-size: 0.94rem;
  }

  .included-core-section .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .included-core-section .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .included-core-section .section-copy {
    justify-self: start;
    max-width: 100%;
    font-size: 0.94rem;
  }

  .included-core-section .benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .included-core-section .benefit-card,
  .included-core-section .benefit-card-featured {
    padding: 22px 20px 20px;
    border-radius: 22px;
  }

  body[data-page="about"] .about-core-people-section {
    padding: 82px 0 92px;
  }

  body[data-page="about"] .about-core-people-heading {
    margin-bottom: 36px;
    gap: 14px;
  }

  body[data-page="about"] .about-core-people-heading h2 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  body[data-page="about"] .about-core-people-grid {
    gap: 18px;
  }

  body[data-page="about"] .about-core-person-card {
    min-height: 0;
    padding: 30px 22px 28px;
    border-radius: 24px;
  }

  body[data-page="about"] .about-core-person-avatar {
    width: 96px;
  }

  body[data-page="about"] .about-core-person-role {
    font-size: 0.92rem;
  }

  .included-core-section .benefit-card-index {
    margin-bottom: 18px;
  }

  .included-core-section .benefit-card-featured h3 {
    max-width: none;
  }
}

.subpage-main .form-card {
  background: #fffdf8;
  border-radius: 16px;
}

.subpage-main .lead-form label {
  color: #111c35;
}

.subpage-main .lead-form input,
.subpage-main .lead-form select,
.subpage-main .lead-form textarea {
  border: 1px solid rgba(17, 28, 53, 0.12);
  background: rgba(17, 28, 53, 0.04);
  color: #111c35;
}

.subpage-main .lead-form input::placeholder,
.subpage-main .lead-form textarea::placeholder {
  color: rgba(17, 28, 53, 0.5);
}

.subpage-main .faq-card details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 28, 53, 0.18);
  border-radius: 0;
  padding: 20px 0;
}

.subpage-main .faq-card details:first-of-type {
  border-top: 1px solid rgba(17, 28, 53, 0.18);
}

.subpage-main .faq-card summary {
  color: #111c35;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.subpage-main .callout-banner {
  border-radius: 16px;
  border: 1px solid #111c35;
  background: #111c35;
  box-shadow: none;
}

.subpage-main .callout-banner strong,
.subpage-main .callout-banner .card-kicker,
.subpage-main .callout-banner .footer-note {
  color: #f6f4ec;
}

.subpage-main .callout-banner .footer-note {
  opacity: 0.76;
}

.subpage-main .callout-banner .btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.95), rgba(73, 194, 255, 0.88));
  box-shadow: 0 24px 50px rgba(24, 119, 242, 0.26);
}

.subpage-main .callout-banner .btn-secondary {
  border-color: rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

body[data-page="biomarkers"] .subpage-main .glass-card,
body[data-page="biomarkers"] .subpage-main .timeline-step,
body[data-page="biomarkers"] .subpage-main .value-card,
body[data-page="biomarkers"] .subpage-main .trust-item,
body[data-page="biomarkers"] .subpage-main .comparison-card,
body[data-page="biomarkers"] .subpage-main .faq-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background: linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  box-shadow:
    0 24px 52px rgba(6, 18, 41, 0.2),
    inset 0 1px 0 rgba(219, 235, 255, 0.12);
}

body[data-page="biomarkers"] .subpage-main .timeline-step {
  background: linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
}

body[data-page="biomarkers"] .subpage-main .glass-card::before,
body[data-page="biomarkers"] .subpage-main .timeline-step::before,
body[data-page="biomarkers"] .subpage-main .value-card::before,
body[data-page="biomarkers"] .subpage-main .trust-item::before,
body[data-page="biomarkers"] .subpage-main .comparison-card::before,
body[data-page="biomarkers"] .subpage-main .faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 223, 255, 0.38), rgba(191, 223, 255, 0.04));
}

body[data-page="biomarkers"] .subpage-main .glass-card::after,
body[data-page="biomarkers"] .subpage-main .timeline-step::after,
body[data-page="biomarkers"] .subpage-main .value-card::after,
body[data-page="biomarkers"] .subpage-main .trust-item::after,
body[data-page="biomarkers"] .subpage-main .comparison-card::after,
body[data-page="biomarkers"] .subpage-main .faq-card::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 164, 255, 0.22) 0%, transparent 72%);
  pointer-events: none;
}

body[data-page="biomarkers"] .subpage-main .timeline-step::after {
  content: none;
  display: none;
  background: none;
}

body[data-page="biomarkers"] .subpage-main .glass-card > *,
body[data-page="biomarkers"] .subpage-main .timeline-step > *,
body[data-page="biomarkers"] .subpage-main .value-card > *,
body[data-page="biomarkers"] .subpage-main .trust-item > *,
body[data-page="biomarkers"] .subpage-main .comparison-card > *,
body[data-page="biomarkers"] .subpage-main .faq-card > * {
  position: relative;
  z-index: 1;
}

body[data-page="biomarkers"] .subpage-main .glass-card,
body[data-page="biomarkers"] .subpage-main .timeline-step,
body[data-page="biomarkers"] .subpage-main .value-card {
  min-height: 250px;
  padding: 24px;
}

body[data-page="biomarkers"] .subpage-main .trust-item {
  min-height: 176px;
  padding: 24px;
}

body[data-page="biomarkers"] .subpage-main .comparison-card,
body[data-page="biomarkers"] .subpage-main .faq-card {
  padding: 22px;
}

body[data-page="biomarkers"] .subpage-main .trust-item strong,
body[data-page="biomarkers"] .subpage-main .glass-card h3,
body[data-page="biomarkers"] .subpage-main .timeline-step h3,
body[data-page="biomarkers"] .subpage-main .value-card h3,
body[data-page="biomarkers"] .subpage-main .faq-card h2,
body[data-page="biomarkers"] .subpage-main .comparison-table th,
body[data-page="biomarkers"] .subpage-main .comparison-table-wide tbody th[scope="row"] {
  color: #edf4ff;
}

body[data-page="biomarkers"] .subpage-main .card-copy,
body[data-page="biomarkers"] .subpage-main .trust-item .section-copy,
body[data-page="biomarkers"] .subpage-main .comparison-table td,
body[data-page="biomarkers"] .subpage-main .faq-card p {
  color: rgba(219, 229, 245, 0.82);
}

body[data-page="biomarkers"] .subpage-main .value-card .card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 22px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(184, 216, 255, 0.12);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

body[data-page="biomarkers"] .subpage-main .timeline-number {
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(190, 221, 255, 0.1);
  color: rgba(216, 233, 255, 0.82);
}

body[data-page="biomarkers"] .subpage-main .comparison-card-scroll {
  padding: 18px;
}

body[data-page="biomarkers"] .subpage-main .comparison-scroll-hint {
  color: rgba(219, 229, 245, 0.62);
}

body[data-page="biomarkers"] .subpage-main .comparison-scroll-shell {
  border-radius: 20px;
  background: rgba(14, 31, 59, 0.24);
}

body[data-page="biomarkers"] .subpage-main .comparison-table-wide thead th,
body[data-page="biomarkers"] .subpage-main .comparison-table-wide tbody th[scope="row"] {
  background: rgba(10, 26, 49, 0.78);
}

body[data-page="biomarkers"] .subpage-main .comparison-card-scroll .comparison-table th:not(:last-child),
body[data-page="biomarkers"] .subpage-main .comparison-card-scroll .comparison-table td:not(:last-child),
body[data-page="biomarkers"] .subpage-main .comparison-table th,
body[data-page="biomarkers"] .subpage-main .comparison-table td {
  border-color: rgba(191, 223, 255, 0.12);
}

body[data-page="biomarkers"] .subpage-main .faq-card details {
  background: transparent;
  border-color: rgba(191, 223, 255, 0.18);
}

body[data-page="biomarkers"] .subpage-main .faq-card summary {
  color: #edf4ff;
}

body[data-page="biomarkers"] .home-compare-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 28, 53, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 247, 240, 0.98));
  box-shadow: 0 18px 36px rgba(17, 28, 53, 0.05);
}

body[data-page="biomarkers"] .home-compare-shell {
  position: relative;
  z-index: 1;
}

body[data-page="biomarkers"] .home-compare-eyebrow {
  color: rgba(17, 28, 53, 0.58);
}

body[data-page="biomarkers"] .home-compare-summary h3 {
  color: #111c35;
}

body[data-page="biomarkers"] .home-compare-grid {
  border-color: rgba(17, 28, 53, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

body[data-page="biomarkers"] .home-compare-grid-cell {
  color: #111c35;
  border-top-color: rgba(17, 28, 53, 0.08);
}

body[data-page="biomarkers"] .home-compare-grid-cell:not(:last-child) {
  border-right-color: rgba(17, 28, 53, 0.08);
}

body[data-page="biomarkers"] .home-compare-grid-cell--head {
  background: rgba(247, 246, 243, 0.92);
  color: rgba(17, 28, 53, 0.58);
}

body[data-page="biomarkers"] .home-compare-grid-cell--aia {
  background: rgba(225, 243, 254, 0.48);
}

body[data-page="biomarkers"] .home-compare-grid-cell--feature {
  color: #111c35;
}

body[data-page="biomarkers"] .home-footnote {
  color: rgba(17, 28, 53, 0.58);
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: end;
  padding: 30px 34px;
  border-radius: 24px;
  border: 1px solid rgba(161, 201, 255, 0.12);
  background: linear-gradient(180deg, rgba(24, 53, 98, 0.96) 0%, rgba(11, 31, 62, 0.94) 100%);
  box-shadow:
    0 18px 44px rgba(3, 12, 29, 0.18),
    inset 0 1px 0 rgba(211, 231, 255, 0.08);
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner .card-kicker {
  color: rgba(216, 233, 255, 0.82);
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner strong {
  color: #edf4ff;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner .footer-note {
  color: rgba(219, 229, 245, 0.82);
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 24px;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner strong {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner .footer-note {
  margin: 0;
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: end;
}

body[data-page="biomarkers"] .subpage-main .biomarkers-callout-actions .btn {
  min-width: 220px;
}

body[data-page="platform"] .subpage-main .platform-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: end;
  padding: 30px 34px;
  border-radius: 24px;
}

body[data-page="platform"] .subpage-main .platform-callout-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body[data-page="platform"] .subpage-main .platform-callout-banner .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body[data-page="platform"] .subpage-main .platform-callout-banner strong {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

body[data-page="platform"] .subpage-main .platform-callout-banner .footer-note {
  margin: 0;
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

body[data-page="platform"] .subpage-main .platform-callout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="platform"] .subpage-main .platform-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="platform"] .subpage-main .platform-callout-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: end;
}

body[data-page="platform"] .subpage-main .platform-callout-actions .btn {
  min-width: 220px;
}

body[data-page="about"] .subpage-main .about-membership-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: end;
  padding: 30px 34px;
  border-radius: 24px;
}

body[data-page="about"] .subpage-main .about-membership-callout-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body[data-page="about"] .subpage-main .about-membership-callout-banner .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body[data-page="about"] .subpage-main .about-membership-callout-banner strong {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

body[data-page="about"] .subpage-main .about-membership-callout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="about"] .subpage-main .about-membership-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="about"] .subpage-main .about-membership-callout-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: end;
}

body[data-page="about"] .subpage-main .about-membership-callout-actions .btn {
  min-width: 220px;
}

body[data-page="how"] .subpage-main .how-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: end;
  padding: 30px 34px;
  border-radius: 24px;
}

body[data-page="how"] .subpage-main .how-callout-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body[data-page="how"] .subpage-main .how-callout-banner .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body[data-page="how"] .subpage-main .how-callout-banner strong {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

body[data-page="how"] .subpage-main .how-callout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="how"] .subpage-main .how-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="how"] .subpage-main .how-callout-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: end;
}

body[data-page="how"] .subpage-main .how-callout-actions .btn {
  min-width: 220px;
}

body[data-page="included"] .subpage-main .included-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: end;
  padding: 30px 34px;
  border-radius: 24px;
}

body[data-page="included"] .subpage-main .included-callout-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body[data-page="included"] .subpage-main .included-callout-banner .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body[data-page="included"] .subpage-main .included-callout-banner strong {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

body[data-page="included"] .subpage-main .included-callout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="included"] .subpage-main .included-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="included"] .subpage-main .included-callout-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: end;
}

body[data-page="included"] .subpage-main .included-callout-actions .btn {
  min-width: 220px;
}

body[data-page="science"] .subpage-main .science-callout-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 24px 32px;
  align-items: end;
  padding: 30px 34px;
  border-radius: 24px;
}

body[data-page="science"] .subpage-main .science-callout-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body[data-page="science"] .subpage-main .science-callout-banner .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

body[data-page="science"] .subpage-main .science-callout-banner strong {
  display: block;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 19ch;
}

body[data-page="science"] .subpage-main .science-callout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="science"] .subpage-main .science-callout-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(191, 233, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 239, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

body[data-page="science"] .subpage-main .science-callout-actions {
  margin-top: 0;
  justify-content: flex-end;
  align-self: end;
}

body[data-page="science"] .subpage-main .science-callout-actions .btn {
  min-width: 220px;
}

@media (max-width: 1180px) {
  body[data-page="biomarkers"] .subpage-main .biomarkers-callout-banner,
  body[data-page="platform"] .subpage-main .platform-callout-banner,
  body[data-page="about"] .subpage-main .about-contact-banner,
  body[data-page="about"] .subpage-main .about-membership-callout-banner,
  body[data-page="how"] .subpage-main .how-callout-banner,
  body[data-page="included"] .subpage-main .included-callout-banner,
  body[data-page="science"] .subpage-main .science-callout-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  body[data-page="biomarkers"] .subpage-main .biomarkers-callout-actions,
  body[data-page="platform"] .subpage-main .platform-callout-actions,
  body[data-page="about"] .subpage-main .about-contact-banner .section-actions,
  body[data-page="about"] .subpage-main .about-membership-callout-actions,
  body[data-page="how"] .subpage-main .how-callout-actions,
  body[data-page="included"] .subpage-main .included-callout-actions,
  body[data-page="science"] .subpage-main .science-callout-actions {
    width: 100%;
    align-self: stretch;
    justify-content: stretch;
  }

  body[data-page="biomarkers"] .subpage-main .biomarkers-callout-actions .btn,
  body[data-page="platform"] .subpage-main .platform-callout-actions .btn,
  body[data-page="about"] .subpage-main .about-membership-callout-actions .btn,
  body[data-page="how"] .subpage-main .how-callout-actions .btn,
  body[data-page="included"] .subpage-main .included-callout-actions .btn,
  body[data-page="science"] .subpage-main .science-callout-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.how-story-section {
  overflow: hidden;
}

.how-story {
  --how-story-progress-duration: 4000ms;
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(420px, 1.06fr);
  gap: 64px;
  align-items: center;
}

.how-story-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: #111c35;
  font-family: var(--font-hero);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.how-story-copy .section-copy {
  margin-top: 18px;
  max-width: 44ch;
  color: rgba(17, 28, 53, 0.68);
}

.how-story-steps {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 38px;
  padding-left: 26px;
}

.how-story-steps::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(17, 28, 53, 0.18), rgba(17, 28, 53, 0.06));
}

.how-story-step {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 84px;
  padding: 16px 18px 16px 20px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(17, 28, 53, 0.44);
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: 0.72;
  box-shadow: inset 0 0 0 1px rgba(17, 28, 53, 0.04);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.how-story-step::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: -26px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #49c2ff 0%, #1877f2 100%);
  opacity: 0.18;
  transform: scaleY(0.24);
  transform-origin: top;
  transition: opacity 220ms ease, transform 220ms ease;
}

.how-story-step:hover,
.how-story-step:focus-visible,
.how-story-step.is-active {
  color: #111c35;
  opacity: 1;
}

.how-story-step:focus-visible {
  outline: 2px solid rgba(24, 119, 242, 0.42);
  outline-offset: 4px;
}

.how-story-step:hover {
  background: rgba(255, 255, 255, 0.34);
}

.how-story-step.is-active {
  transform: translateX(8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  box-shadow:
    0 26px 48px rgba(17, 28, 53, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.56);
}

.how-story-step.is-complete {
  color: rgba(17, 28, 53, 0.58);
  opacity: 0.84;
}

.how-story-step.is-complete::after {
  opacity: 0.4;
  transform: scaleY(0.58);
}

.how-story-step.is-active::after {
  opacity: 1;
  animation: howStoryProgress var(--how-story-progress-duration) linear forwards;
}

.how-story.is-paused .how-story-step.is-active::after {
  animation-play-state: paused;
}

.how-story-step-text {
  display: grid;
  gap: 6px;
}

.how-story-step-text strong {
  color: currentColor;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.how-story-step-text span {
  max-width: 38ch;
  color: rgba(17, 28, 53, 0.62);
  font-size: 0.94rem;
  line-height: 1.52;
}

.how-story-step.is-active .how-story-step-text span {
  color: rgba(17, 28, 53, 0.74);
}

.how-story-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(17, 28, 53, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 18%, rgba(73, 194, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(10, 30, 59, 0.1), rgba(10, 30, 59, 0.18)),
    #f1efe7;
  box-shadow: 0 32px 86px rgba(17, 28, 53, 0.16);
}

.how-story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(7, 21, 44, 0.04), rgba(7, 21, 44, 0.1));
}

.how-story-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px) scale(0.99);
  filter: saturate(0.92);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.how-story-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: saturate(1);
}

.how-story-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.how-story-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.how-story-frame::after {
  content: "";
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(180deg, rgba(17, 28, 53, 0), rgba(17, 28, 53, 0.68));
  pointer-events: none;
}

.how-story-caption {
  position: absolute;
  right: auto;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: 320px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 24, 47, 0.72), rgba(10, 24, 47, 0.84));
  color: #f6f4ec;
  box-shadow: 0 24px 52px rgba(7, 21, 44, 0.28);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.how-story-frame.is-active .how-story-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.how-story-caption strong {
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.how-story-caption p {
  margin: 0;
  color: rgba(246, 244, 236, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

@keyframes howStoryProgress {
  from {
    transform: scaleY(0.12);
  }

  to {
    transform: scaleY(1);
  }
}

body[data-theme="legacy"]:not([data-page="home"]) .footer {
  padding: 53px 0 132px;
  background: #111c35;
}

body[data-theme="legacy"]:not([data-page="home"]) .footer-group strong,
body[data-theme="legacy"]:not([data-page="home"]) .footer-group a,
body[data-theme="legacy"]:not([data-page="home"]) .footer-note,
body[data-theme="legacy"]:not([data-page="home"]) .footer .brand {
  color: #f6f4ec;
}

body[data-theme="legacy"]:not([data-page="home"]) .footer-note {
  color: rgba(246, 244, 236, 0.72);
}

body[data-theme="legacy"]:not([data-page="home"]) .footer .brand-mark {
  color: #111c35;
  background: #f6f4ec;
  border: 0;
  box-shadow: none;
}

@media (max-width: 1180px) {
  .subpage-main .page-hero-layout {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .biomarkers-hero-image {
    object-position: center 38%;
  }

  .how-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .how-story-copy h2 {
    max-width: 16ch;
  }

  .how-story-copy .section-copy {
    max-width: 60ch;
  }

  .how-story-visual {
    min-height: 520px;
  }
}

@media (max-width: 860px) {
  .subpage-header .site-nav {
    background:
      linear-gradient(180deg, rgb(238, 244, 252), rgb(224, 234, 247)),
      linear-gradient(135deg, rgb(173, 201, 235), rgb(232, 239, 248) 52%, rgb(132, 166, 212));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow:
      0 22px 46px rgba(5, 19, 39, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .subpage-header .site-nav a {
    color: #111c35;
  }

  .subpage-header .menu-toggle {
    color: #111c35;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.2));
    border-color: rgba(255, 255, 255, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .subpage-main > section,
  .subpage-main > section.page-hero {
    padding: 56px 0;
  }

  .subpage-main .page-visual,
  .subpage-main .hero-visual {
    min-height: 600px;
  }

  .how-story {
    gap: 28px;
  }

  .how-story-copy h2 {
    font-size: 2.35rem;
  }

  .how-story-step {
    min-height: 78px;
    padding: 14px 16px 14px 18px;
  }

  .how-story-visual {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .section-heading-comparison {
    grid-template-columns: 1fr;
  }

  .section-heading-comparison .section-copy {
    justify-self: start;
    max-width: 100%;
  }

  .comparison-card-scroll {
    padding: 14px;
  }

  .comparison-scroll-hint {
    display: inline-flex;
  }

  .comparison-scroll-shell {
    padding-bottom: 6px;
  }

  .comparison-table-wide {
    min-width: 720px;
  }

  .comparison-table-wide tbody th[scope="row"] {
    min-width: 168px;
  }

  .comparison-card-scroll .comparison-table th,
  .comparison-card-scroll .comparison-table td {
    padding: 16px 14px;
  }

  .comparison-table-wide thead th:first-child,
  .comparison-table-wide tbody th[scope="row"] {
    position: static;
    left: auto;
  }

  .subpage-main .comparison-table-wide tbody th[scope="row"] {
    box-shadow: none;
  }

  .home-compare-card {
    padding: 18px;
  }

  .home-compare-summary h3 {
    max-width: 22ch;
  }

  .home-compare-grid {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .home-compare-grid-head,
  .home-compare-grid-body {
    min-width: 720px;
  }

  .home-compare-grid-row {
    grid-template-columns: 220px 250px 250px;
  }

  .home-compare-grid-cell {
    padding: 16px;
    min-width: 0;
  }

  .home-compare-grid-cell--head {
    display: block;
  }

  .home-compare-grid-body .home-compare-grid-cell {
    border-right: 1px solid rgba(17, 28, 53, 0.08);
  }

  .home-compare-grid-cell--feature {
    padding-bottom: 16px;
  }

  .home-compare-grid-cell--aia::before,
  .home-compare-grid-cell--standard::before {
    content: none;
  }

  .subpage-main .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .subpage-nav {
    gap: 10px;
  }

  .subpage-main .hero-metadata {
    gap: 10px;
  }

  .subpage-main .subpage-hero-shell {
    aspect-ratio: auto;
  }

  .subpage-main .subpage-hero-stage {
    aspect-ratio: 4 / 3;
  }

  .biomarkers-hero-image,
  .platform-hero-image,
  .about-hero-image,
  .included-hero-image,
  .science-hero-image {
    object-fit: cover;
    object-position: center center;
  }

  .how-hero-image {
    object-fit: cover;
    object-position: 62% 44%;
  }

  .how-story-copy h2 {
    font-size: 2rem;
  }

  .how-story-steps {
    margin-top: 24px;
    padding-left: 18px;
  }

  .how-story-step {
    min-height: 72px;
    padding: 14px 14px 14px 16px;
    border-radius: 18px;
    transform: none;
  }

  .how-story-step::after {
    left: -18px;
    top: 12px;
    bottom: 12px;
  }

  .how-story-step.is-active {
    transform: translateX(4px);
  }

  .how-story-step-text span {
    font-size: 0.9rem;
  }

  .how-story-visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .how-story-caption {
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 14px 16px;
  }

  .how-story-caption strong {
    font-size: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.home-hero-copy h1,
.page-hero h1,
.hero-reference-copy h1,
.home-section-head h2,
.home-center-head h2,
.home-pricing-copy h2,
.home-quote-wrap h2,
.home-apply-copy h2,
.home-impact-copy h2 {
  font-weight: var(--weight-medium);
}

.brand,
.site-nav a,
.homepage-nav-left a,
.homepage-nav-right a,
.subpage-nav a,
.home-faq-list summary,
.subpage-main .faq-card summary {
  font-weight: var(--weight-medium);
}

.eyebrow,
.home-pill,
.subpage-main .eyebrow,
.card-kicker,
.subpage-main .card-kicker,
.home-kicker,
.status-pill,
.btn,
.subpage-main .btn,
.home-hero-actions .btn,
.home-primary-button,
.home-secondary-button,
.home-dark-pill,
.home-hero-note,
.nav-cta,
.login-link,
.menu-toggle,
.homepage-nav-cta,
.subpage-nav-cta,
.mobile-cta a,
.comparison-table th,
.subpage-main .comparison-table th,
.faq-card summary,
.home-step-tag,
.phone-nav,
.ai-badge,
.home-stat-icon {
  font-weight: var(--weight-semibold);
}

.floating-chip strong,
.stat-pill strong,
.kpi strong,
.callout-banner strong,
.price-line strong,
.home-pricing-card strong,
.home-impact-title-row strong,
.home-stat-item strong {
  font-weight: var(--weight-medium);
}

.home-hero-list strong,
.home-hero-list li::before,
.hero-reference-points li::before,
.timeline-number {
  font-weight: var(--weight-semibold);
}

.desktop-nav-group {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: max-content;
}

.desktop-nav-label {
  display: inline-flex;
  align-items: center;
  font-size: 0.67rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.56;
  white-space: nowrap;
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.desktop-nav-links a,
.desktop-nav-actions a,
.site-nav a {
  white-space: nowrap;
}

.desktop-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}

.desktop-nav-links a:hover,
.desktop-nav-links a.active {
  opacity: 1;
}

.desktop-nav-links a:focus-visible,
.desktop-nav-actions a:focus-visible {
  outline: 3px solid rgba(73, 194, 255, 0.62);
  outline-offset: 3px;
}

.site-nav {
  display: none;
}

.site-header .nav-shell {
  width: 100%;
}

.homepage-nav-shell,
.subpage-nav-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.homepage-nav-left,
.homepage-nav-right,
.subpage-nav-left,
.subpage-nav-right {
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.homepage-nav-left,
.subpage-nav-left {
  justify-content: flex-start;
}

.homepage-nav-right,
.subpage-nav-right {
  justify-content: flex-end;
}

.homepage-nav-left .desktop-nav-group,
.subpage-nav-left .desktop-nav-group {
  margin-right: auto;
}

.homepage-nav-right .desktop-nav-group,
.subpage-nav-right .desktop-nav-group {
  margin-left: auto;
}

.homepage-brand,
.subpage-brand {
  justify-self: center;
}

.homepage-nav-left a,
.homepage-nav-right a,
.homepage-nav-left .desktop-nav-label,
.homepage-nav-right .desktop-nav-label,
.subpage-nav-left a,
.subpage-nav-right a,
.subpage-nav-left .desktop-nav-label,
.subpage-nav-right .desktop-nav-label {
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.homepage-nav-left .desktop-nav-label,
.homepage-nav-right .desktop-nav-label,
.subpage-nav-left .desktop-nav-label,
.subpage-nav-right .desktop-nav-label {
  font-size: 0.67rem;
  font-weight: var(--weight-semibold);
}

.homepage-header .login-link,
.subpage-header .login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.76rem;
  line-height: 1;
  color: #111c35 !important;
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(5, 19, 39, 0.08);
}

.homepage-header .login-link:hover,
.subpage-header .login-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 28px rgba(5, 19, 39, 0.12);
}

.homepage-header .nav-cta,
.subpage-header .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.76rem !important;
  line-height: 1;
  border-color: rgba(10, 26, 53, 0.08);
  background: linear-gradient(180deg, rgba(19, 41, 77, 0.94), rgba(10, 25, 51, 0.98));
  box-shadow:
    0 18px 30px rgba(5, 19, 39, 0.22),
    inset 0 1px 0 rgba(164, 206, 255, 0.22);
}

.menu-toggle {
  justify-self: end;
}

@media (max-width: 1240px) {
  .homepage-header {
    background:
      linear-gradient(180deg, rgba(168, 205, 247, 0.08), rgba(45, 97, 168, 0.02)),
      rgba(4, 14, 36, 0.08);
    border-bottom-color: rgba(186, 214, 248, 0.1);
  }

  .subpage-header {
    background:
      linear-gradient(180deg, rgba(168, 205, 247, 0.08), rgba(45, 97, 168, 0.02)),
      rgba(4, 14, 36, 0.08);
    border-bottom-color: rgba(186, 214, 248, 0.1);
  }

  .homepage-header.nav-open {
    background:
      linear-gradient(180deg, rgba(168, 205, 247, 0.06), rgba(45, 97, 168, 0.015)),
      rgba(4, 14, 36, 0.04);
    border-bottom-color: rgba(186, 214, 248, 0.08);
  }

  .subpage-header.nav-open {
    background:
      linear-gradient(180deg, rgba(168, 205, 247, 0.06), rgba(45, 97, 168, 0.015)),
      rgba(4, 14, 36, 0.04);
    border-bottom-color: rgba(186, 214, 248, 0.08);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .homepage-nav-left,
  .homepage-nav-right,
  .subpage-nav-left,
  .subpage-nav-right {
    display: none;
  }

  .homepage-nav-shell,
  .subpage-nav-shell {
    grid-template-columns: auto auto;
    gap: 16px;
    overflow: visible;
    min-height: var(--nav-height);
    padding: 0 16px;
    border-radius: 0;
  }

  .homepage-nav-shell {
    padding: 0 16px;
  }

  .homepage-header .homepage-nav-shell {
    background:
      linear-gradient(180deg, rgba(245, 250, 255, 0.11), rgba(219, 236, 255, 0.028)),
      rgba(5, 17, 41, 0.05);
    border-color: rgba(210, 233, 255, 0.09);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(116, 167, 231, 0.04),
      0 14px 28px rgba(3, 12, 27, 0.08);
    backdrop-filter: blur(42px) saturate(185%);
    -webkit-backdrop-filter: blur(42px) saturate(185%);
  }

  .subpage-header .subpage-nav-shell {
    background:
      linear-gradient(180deg, rgba(245, 250, 255, 0.11), rgba(219, 236, 255, 0.028)),
      rgba(5, 17, 41, 0.05);
    border-color: rgba(210, 233, 255, 0.09);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(116, 167, 231, 0.04),
      0 14px 28px rgba(3, 12, 27, 0.08);
    backdrop-filter: blur(42px) saturate(185%);
    -webkit-backdrop-filter: blur(42px) saturate(185%);
  }

  .homepage-header.nav-open .homepage-nav-shell {
    background:
      linear-gradient(180deg, rgba(245, 250, 255, 0.09), rgba(219, 236, 255, 0.02)),
      rgba(5, 17, 41, 0.03);
    border-color: rgba(210, 233, 255, 0.07);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(116, 167, 231, 0.03),
      0 12px 24px rgba(3, 12, 27, 0.06);
  }

  .subpage-header.nav-open .subpage-nav-shell {
    background:
      linear-gradient(180deg, rgba(245, 250, 255, 0.09), rgba(219, 236, 255, 0.02)),
      rgba(5, 17, 41, 0.03);
    border-color: rgba(210, 233, 255, 0.07);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -1px 0 rgba(116, 167, 231, 0.03),
      0 12px 24px rgba(3, 12, 27, 0.06);
  }

  .homepage-brand,
  .subpage-brand {
    justify-self: start;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border-radius: 22px;
    background: rgb(246, 244, 236);
    border: 1px solid rgba(17, 28, 53, 0.12);
    box-shadow: var(--shadow);
    max-height: min(calc(100vh - 120px), 38rem);
    overflow-y: auto;
    z-index: 70;
  }

  .homepage-header .site-nav {
    background:
      linear-gradient(180deg, rgb(238, 244, 252), rgb(224, 234, 247)),
      linear-gradient(135deg, rgb(173, 201, 235), rgb(232, 239, 248) 52%, rgb(132, 166, 212));
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow:
      0 22px 46px rgba(5, 19, 39, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    color: #111c35;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    color: #111c35;
    background: rgba(17, 28, 53, 0.04);
  }

  .site-nav-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav-label {
    min-height: 0;
    padding: 4px 14px 0;
    color: #111c35;
    opacity: 0.56;
  }

  .site-nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .homepage-header .menu-toggle,
  .subpage-header .menu-toggle {
    color: #111c35;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.18));
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }
}

/* ============================================================
   BIOMARKER EXPLORER — Function Health-inspired design
   ============================================================ */

/* ---- Hero ---- */
.bm-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.bm-hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto;
  max-width: 14ch;
}

.bm-hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--success));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.bm-hero-sub {
  margin: 22px auto 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.bm-hero-sub em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

/* Scrolling preview carousel */
.bm-preview-strip {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(6,24,54,0.92), rgba(4,16,36,0.96));
  padding: 36px 0;
}

.bm-preview-strip::before,
.bm-preview-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 4;
  pointer-events: none;
}

.bm-preview-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6,24,54,0.96), transparent);
}

.bm-preview-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(4,16,36,0.96), transparent);
}

.bm-preview-track {
  display: flex;
  gap: 16px;
  padding: 0 48px;
  animation: bmScroll 30s linear infinite;
  width: max-content;
}

.bm-preview-track:hover {
  animation-play-state: paused;
}

@keyframes bmScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bm-preview-card {
  flex-shrink: 0;
  width: 230px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(191, 233, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  text-align: left;
}

.bm-preview-card-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.bm-preview-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.bm-preview-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--success);
  font-weight: 600;
}

.bm-preview-card-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(98, 227, 198, 0.5);
}

/* ---- Explorer Layout ---- */
.bm-explorer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  padding: 0 0 80px;
}

/* ---- Sidebar ---- */
.bm-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bm-search-wrap {
  position: relative;
}

.bm-search {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.94rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bm-search::placeholder {
  color: var(--muted);
}

.bm-search:focus {
  border-color: rgba(73, 194, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(73, 194, 255, 0.1);
}

.bm-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.bm-jump-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.bm-jump-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bm-jump-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  line-height: 1;
}

.bm-jump-pill:hover {
  background: rgba(73, 194, 255, 0.1);
  border-color: rgba(73, 194, 255, 0.3);
  color: var(--text);
}

.bm-jump-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.32);
}

/* No-results message */
.bm-no-results {
  display: none;
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
  font-size: 1rem;
}

.bm-no-results.visible {
  display: block;
}

/* ---- Category Sections ---- */
.bm-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.bm-category {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.bm-category.hidden {
  display: none;
}

.bm-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.bm-category-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(73, 194, 255, 0.1);
  border: 1px solid rgba(73, 194, 255, 0.2);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bm-category-name {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.bm-category-about {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin: 10px 0 18px;
  transition: gap 0.2s;
}

.bm-category-about:hover {
  gap: 10px;
}

/* Included badge row */
.bm-included-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bm-included-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.bm-included-badge svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.bm-badge-2x {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(73, 194, 255, 0.28);
  background: rgba(73, 194, 255, 0.08);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 5px;
}

/* Individual biomarker rows */
.bm-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.bm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(191, 233, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.bm-row:hover {
  background: rgba(73, 194, 255, 0.06);
  border-color: rgba(73, 194, 255, 0.2);
  transform: translateX(2px);
}

.bm-row.hidden-by-search {
  display: none;
}

.bm-row-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--success);
}

.bm-row-name {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
}

.bm-row-2x {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(73, 194, 255, 0.24);
  background: rgba(73, 194, 255, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.bm-row-arrow {
  width: 18px;
  height: 18px;
  color: var(--muted);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.bm-row:hover .bm-row-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Add-ons section */
.bm-addons {
  margin-top: 12px;
}

.bm-addons-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px 14px 0 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(191, 233, 255, 0.08);
  border-bottom: none;
}

.bm-addons-icon {
  width: 22px;
  height: 22px;
  color: var(--muted);
}

.bm-addons-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.bm-addon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(191, 233, 255, 0.08);
  border-top: none;
  background: rgba(255, 255, 255, 0.015);
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 500;
}

.bm-addon-row:last-child {
  border-radius: 0 0 14px 14px;
}

.bm-addon-row:hover {
  background: rgba(73, 194, 255, 0.04);
}

.bm-addon-row svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  opacity: 0.5;
  margin-left: auto;
  flex-shrink: 0;
}

/* CTA Banner at bottom */
.bm-cta-banner {
  margin-top: 20px;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.18), rgba(73, 194, 255, 0.06));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bm-cta-banner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  max-width: 20ch;
  margin-bottom: 10px;
}

.bm-cta-banner p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 44ch;
}

.bm-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   BIOMARKER EXPLORER — Responsive
   ============================================================ */

@media (max-width: 900px) {
  .bm-explorer {
    grid-template-columns: 1fr;
  }

  .bm-sidebar {
    position: static;
  }

  .bm-hero-headline {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .bm-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .bm-preview-card {
    width: 180px;
  }

  .bm-category-name {
    font-size: 1.4rem;
  }

  .bm-row {
    padding: 13px 14px;
  }

  .bm-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .bm-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.bm-drawer-open {
  overflow: hidden;
}

.bm-workbench {
  --bm-primary: #2d5ffe;
  --bm-ink: #111c35;
  --bm-muted: rgba(17, 28, 53, 0.64);
  --bm-accent: #1877f2;
  --bm-accent-soft: rgba(73, 194, 255, 0.12);
  --bm-line: rgba(17, 28, 53, 0.14);
  --bm-line-strong: rgba(17, 28, 53, 0.24);
  --bm-surface: rgba(255, 255, 255, 0.72);
  --bm-panel: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 244, 236, 0.94));
  --bm-shadow: 0 24px 52px rgba(17, 28, 53, 0.1);
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  margin: 56px 0 84px;
  position: relative;
}

#mapped-biomarkers {
  scroll-margin-top: 110px;
  padding-top: 0;
  color: #111c35;
  background: #f6f4ec;
  font-family: var(--font-body);
}

#mapped-biomarkers .bm-workbench {
  margin-top: 24px;
}

#mapped-biomarkers .bm-results-panel {
  margin-top: -52px;
}

.bm-preview-card {
  font: inherit;
  text-align: left;
}

.bm-preview-card[data-preview-key] {
  cursor: pointer;
  border: 1px solid rgba(73, 194, 255, 0.18);
}

.bm-preview-card[data-preview-key]:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(24, 119, 242, 0.14);
}

.bm-filter-panel {
  position: sticky;
  top: 128px;
}

.bm-filter-card {
  padding: 0;
  color: var(--bm-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bm-filter-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 28, 53, 0.22);
  background: rgba(255, 255, 255, 0.52);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.bm-filter-search:focus-within {
  border-color: rgba(45, 95, 254, 0.34);
  box-shadow: 0 0 0 4px rgba(73, 194, 255, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.bm-filter-search-icon {
  width: 18px;
  height: 18px;
  color: var(--bm-muted);
  flex-shrink: 0;
}

.bm-filter-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--bm-ink);
  font: inherit;
  font-size: 1rem;
}

.bm-filter-input::placeholder {
  color: rgba(17, 28, 53, 0.5);
}

.bm-filter-copy {
  margin-top: 18px;
}

.bm-filter-eyebrow,
.bm-detail-kicker,
.bm-detail-placeholder-kicker,
.bm-filter-stat-label,
.bm-detail-category {
  margin: 0;
  color: var(--bm-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bm-filter-note,
.bm-detail-section p,
.bm-detail-list,
.bm-detail-placeholder p {
  color: var(--bm-muted);
}

.bm-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.bm-filter-pill {
  appearance: none;
  border: 1px solid var(--bm-line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--bm-ink);
  border-radius: 999px;
  min-height: 34px;
  padding: 0 16px;
  font: inherit;
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.bm-filter-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 194, 255, 0.46);
  background: rgba(255, 255, 255, 0.96);
}

.bm-filter-pill.is-active {
  background: #111c35;
  color: #f6f4ec;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(17, 28, 53, 0.14);
}

.bm-filter-pill.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bm-results-panel,
.bm-results-shell,
.bm-groups {
  min-width: 0;
}

.bm-groups {
  display: grid;
  gap: 42px;
}

.bm-results-shell {
  padding: 0;
  color: var(--bm-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bm-results-empty {
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px dashed var(--bm-line-strong);
  color: var(--bm-muted);
  background: rgba(255, 255, 255, 0.72);
}

.bm-group-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.bm-group {
  scroll-margin-top: 122px;
}

.bm-group-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.bm-category-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(73, 194, 255, 0.3);
  color: var(--bm-primary);
  background: linear-gradient(135deg, rgba(45, 95, 254, 0.08), rgba(99, 200, 255, 0.16));
  box-shadow: inset 0 0 24px rgba(99, 200, 255, 0.08);
  flex-shrink: 0;
}

.bm-category-mark span {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.bm-group-title {
  margin: 0;
  font-family: var(--font-hero);
  font-weight: 500;
  color: var(--bm-ink);
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.bm-group-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--bm-accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.bm-group-about:hover {
  color: var(--bm-primary);
}

.bm-group-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.bm-membership-pill,
.bm-group-meta-note,
.bm-detail-pill,
.bm-result-frequency,
.bm-frequency-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  font-size: 0.84rem;
  font-weight: 600;
}

.bm-membership-pill,
.bm-detail-pill-strong {
  color: var(--bm-primary);
  gap: 10px;
}

.bm-membership-pill svg {
  width: 18px;
  height: 18px;
}

.bm-group-meta-note,
.bm-detail-pill {
  color: var(--bm-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 28, 53, 0.1);
  border-radius: 999px;
  padding: 0 12px;
}

.bm-frequency-strip {
  color: var(--bm-ink);
  gap: 12px;
}

.bm-frequency-strip-tag,
.bm-result-frequency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(73, 194, 255, 0.2);
  background: rgba(73, 194, 255, 0.08);
  color: var(--bm-primary);
}

.bm-group-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.bm-result-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--bm-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--bm-ink);
  padding: 16px 20px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.bm-result-card:hover {
  transform: translateY(-2px);
  border-color: var(--bm-line-strong);
  box-shadow: 0 14px 28px rgba(17, 28, 53, 0.08);
}

.bm-result-card.is-active {
  border-color: var(--bm-line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.bm-result-leading,
.bm-result-trailing {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bm-result-check,
.bm-result-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bm-result-check {
  color: var(--bm-primary);
}

.bm-result-name {
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.bm-result-card:hover .bm-result-arrow,
.bm-result-card.is-active .bm-result-arrow {
  transform: translateX(2px);
}

.bm-detail-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 22, 47, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 118;
}

.bm-detail-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 620px);
  height: 100dvh;
  overflow: hidden;
  color: var(--text);
  background: #041328;
  border-left: 1px solid rgba(191, 233, 255, 0.14);
  box-shadow: -24px 0 56px rgba(4, 19, 39, 0.32);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.bm-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(191, 233, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #041328;
}

.bm-detail-close {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(191, 233, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6fbff;
  justify-self: end;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.bm-detail-close svg {
  width: 18px;
  height: 18px;
}

.bm-detail-close:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 194, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
}

.bm-detail-body {
  padding: 30px 32px 34px;
  max-height: calc(100vh - 95px);
  overflow: auto;
}

.bm-detail-panel.is-empty .bm-detail-body {
  display: flex;
  align-items: center;
}

.bm-detail-card {
  display: grid;
  gap: 26px;
}

.bm-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bm-detail-title {
  margin: 0;
  font-family: var(--font-hero);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.bm-detail-category {
  margin: -8px 0 0;
  color: var(--accent);
}

.bm-detail-section + .bm-detail-section {
  margin-top: 4px;
  padding-top: 26px;
  border-top: 1px solid rgba(191, 233, 255, 0.12);
}

.bm-detail-section h4 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1rem;
}

.bm-detail-section p {
  margin: 0;
  line-height: 1.72;
  font-size: 1.02rem;
}

.bm-detail-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  line-height: 1.55;
}

.bm-token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bm-token {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(73, 194, 255, 0.14);
  border: 1px solid rgba(73, 194, 255, 0.26);
  color: #f6fbff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bm-detail-placeholder {
  display: grid;
  gap: 14px;
}

.bm-detail-placeholder h3 {
  margin: 0;
  font-family: var(--font-hero);
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
}

.bm-detail-panel .bm-detail-kicker {
  color: rgba(246, 251, 255, 0.72);
}

.bm-detail-panel .bm-detail-pill,
.bm-detail-panel .bm-detail-pill-strong {
  color: #f6fbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(191, 233, 255, 0.14);
}

.bm-detail-panel .bm-detail-pill-strong {
  background: rgba(73, 194, 255, 0.12);
  border-color: rgba(73, 194, 255, 0.24);
}

.bm-detail-panel .bm-detail-section p,
.bm-detail-panel .bm-detail-list,
.bm-detail-panel .bm-detail-placeholder p {
  color: rgba(246, 251, 255, 0.78);
}

.bm-detail-placeholder p {
  margin: 0;
  line-height: 1.7;
  max-width: 26rem;
}

.bm-filter-pill:focus-visible,
.bm-detail-close:focus-visible,
.bm-preview-card[data-preview-key]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(73, 194, 255, 0.2);
}

.bm-result-card:focus-visible {
  outline: 1px solid rgba(17, 28, 53, 0.28);
  outline-offset: 2px;
  box-shadow: none;
}

[data-biomarker-app].detail-open .bm-detail-backdrop {
  opacity: 1;
  pointer-events: auto;
}

[data-biomarker-app].detail-open .bm-detail-panel {
  transform: translateX(0);
}

@media (max-width: 1119px) {
  .bm-workbench {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #mapped-biomarkers .bm-results-panel {
    margin-top: 0;
  }

  .bm-filter-panel {
    position: static;
    top: auto;
  }

  .bm-detail-panel {
    width: min(100%, 500px);
  }

  .bm-detail-body {
    max-height: calc(100dvh - 96px);
  }
}

@media (max-width: 760px) {
  .bm-workbench {
    margin: 34px 0 56px;
  }

  .bm-groups {
    gap: 32px;
  }

  .bm-group-title-wrap {
    gap: 14px;
  }

  .bm-group-title {
    font-size: 1.85rem;
  }

  .bm-detail-head {
    padding: 18px 18px 16px;
  }

  .bm-detail-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .bm-result-card {
    padding: 15px 16px;
  }

  .bm-detail-title {
    font-size: 2.3rem;
  }

  .bm-filter-pill {
    min-height: 38px;
  }

  .bm-detail-panel {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
  }

  .bm-membership-pill,
  .bm-frequency-strip {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bm-preview-card[data-preview-key],
  .bm-filter-pill,
  .bm-result-card,
  .bm-detail-close,
  .bm-detail-backdrop,
  .bm-detail-panel {
    transition: none;
  }
}

/* Remove the glossy hotspot patch from cards site-wide. */
.membership-subscription-card::after,
.platform-signal-layer .signal-card::after,
body[data-page="platform"] .platform-proof-section .proof-card::after,
.home-step-card::after,
.home-data-trust-section .glass-card::after,
body[data-page="science"] .science-card::after,
body[data-page="science"] .science-proof-grid .proof-card::after,
body[data-page="science"] .science-info-layout .info-card::after,
body[data-page="science"] .science-clinical-section .info-card::after,
body[data-page="how"] .signal-layer-section .signal-card::after,
body[data-page="how"] .output-grid .value-card::after,
body[data-page="how"] .signal-example-card::after,
body[data-page="how"] .comparison-layout .info-card::after,
.included-core-section .benefit-card::after,
body[data-page="included"] .included-access-section .access-card::after,
body[data-page="included"] .included-proof-section .proof-card::after,
body[data-page="about"] .proof-card::after,
body[data-page="about"] .signal-card::after,
body[data-page="biomarkers"] .subpage-main .glass-card::after,
body[data-page="biomarkers"] .subpage-main .value-card::after,
body[data-page="biomarkers"] .subpage-main .trust-item::after,
body[data-page="biomarkers"] .subpage-main .comparison-card::after,
body[data-page="biomarkers"] .subpage-main .faq-card::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
