:root {
  --bg: #030c1b;
  --bg-soft: #061626;
  --surface: rgba(8, 18, 38, 0.84);
  --surface-strong: rgba(6, 14, 30, 0.94);
  --surface-line: rgba(140, 190, 255, 0.13);
  --surface-line-strong: rgba(140, 190, 255, 0.22);
  --text: #eef3ff;
  --text-soft: rgba(238, 243, 255, 0.74);
  --text-faint: rgba(238, 243, 255, 0.52);
  --accent: #72f0de;
  --accent-soft: rgba(114, 240, 222, 0.16);
  --phase-color: #388e3c;
  --phase-glow: rgba(56, 142, 60, 0.24);
  --shadow-deep: 0 30px 80px rgba(0, 5, 20, 0.44);
  --radius-shell: 36px;
  --radius-panel: 28px;
  --content-width: 1360px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 16%, rgba(44, 88, 200, 0.22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(80, 44, 160, 0.2), transparent 28%),
    radial-gradient(circle at 50% 68%, var(--phase-glow), transparent 32%),
    linear-gradient(180deg, #040f20 0%, #030c1b 40%, #020918 100%);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(60, 110, 240, 0.07), transparent 50%),
    radial-gradient(circle at center, transparent 0 28%, rgba(100, 160, 255, 0.03) 55%, transparent 78%);
  pointer-events: none;
}

.home-body {
  background:
    radial-gradient(circle at 12% 14%, rgba(50, 100, 220, 0.24), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(90, 50, 170, 0.2), transparent 26%),
    radial-gradient(circle at 50% 80%, var(--phase-glow), transparent 36%),
    linear-gradient(180deg, #030e1f 0%, #030b1a 44%, #020817 100%);
}

.family-orbital {
  background:
    radial-gradient(circle at 16% 14%, rgba(20, 140, 255, 0.18), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(114, 240, 222, 0.1), transparent 22%),
    linear-gradient(180deg, #040d1e 0%, #050f20 45%, #040c1b 100%);
}

.family-symbolic {
  background:
    radial-gradient(circle at 50% 12%, rgba(130, 80, 210, 0.18), transparent 26%),
    radial-gradient(circle at 20% 72%, rgba(170, 70, 80, 0.12), transparent 20%),
    linear-gradient(180deg, #06091a 0%, #080618 46%, #050817 100%);
}

.family-operational {
  background:
    radial-gradient(circle at 80% 10%, rgba(40, 160, 255, 0.14), transparent 26%),
    radial-gradient(circle at 18% 26%, rgba(44, 100, 220, 0.18), transparent 28%),
    linear-gradient(180deg, #040c1e 0%, #030a1b 46%, #020818 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

.atmosphere-layer,
.grain-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.atmosphere-layer {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.03), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(8, 165, 198, 0.05), transparent 32%);
  opacity: 0.9;
}

.grain-layer {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 5px 5px, 5px 5px;
  mix-blend-mode: soft-light;
}

.site-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 80px 0 56px;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--content-width));
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(196, 225, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 12, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

/* Page label in header — hidden on desktop, shown on mobile via responsive.css */
.page-label { display: none; }

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  margin-left: auto;
  position: relative;
}

.site-nav-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav-desktop > a,
.site-nav-ecosystem-toggle {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-nav-desktop > a:hover,
.site-nav-ecosystem-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav-desktop > a[aria-current="page"] {
  color: var(--accent, #72f0de);
  background: rgba(114, 240, 222, 0.08);
  box-shadow: inset 0 -2px 0 var(--accent, #72f0de);
}

.site-nav-ecosystem.is-current > .site-nav-ecosystem-toggle {
  color: var(--accent, #72f0de);
  background: rgba(114, 240, 222, 0.08);
  box-shadow: inset 0 -2px 0 var(--accent, #72f0de);
}

.site-nav-ecosystem {
  position: relative;
}

.site-nav-ecosystem-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav-ecosystem-toggle .material-icons {
  font-size: 18px;
  transition: transform 180ms ease;
}

.site-nav-ecosystem:hover .site-nav-ecosystem-toggle .material-icons,
.site-nav-ecosystem:focus-within .site-nav-ecosystem-toggle .material-icons,
.site-nav-ecosystem.is-open .site-nav-ecosystem-toggle .material-icons {
  transform: rotate(180deg);
}

.site-nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: -12px;
  min-width: 420px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(196, 225, 255, 0.12);
  border-radius: 24px;
  background: rgba(7, 12, 20, 0.92);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav-ecosystem:hover .site-nav-dropdown,
.site-nav-ecosystem:focus-within .site-nav-dropdown,
.site-nav-ecosystem.is-open .site-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav-group {
  display: grid;
  gap: 8px;
}

.site-nav-group-title {
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.site-nav-group a {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  color: var(--text-soft);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-nav-group a strong {
  font-size: 0.98rem;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1;
}

.site-nav-group a small {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-soft);
}

.site-nav-group a:hover,
.site-nav-group a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.site-nav-featured-link {
  grid-column: 1 / -1;
  display: grid;
  gap: 2px;
  padding: 10px 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
  border-radius: 16px 16px 0 0;
  color: var(--text-soft);
  transition: background-color 160ms ease;
}
.site-nav-featured-link:hover {
  background: rgba(255, 255, 255, 0.04);
}
.site-nav-featured-link strong {
  font-size: 0.98rem;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1;
}
.site-nav-featured-link small {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-soft);
}

.nav-cta {
  white-space: nowrap;
  border: 1px solid rgba(114, 240, 222, 0.32);
  background: rgba(114, 240, 222, 0.08);
  color: #d8fff8;
}

/* ── Language Switcher (desktop) ─────────────────────────── */
.lang-switcher {
  position: relative;
  margin-left: 4px;
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.lang-switcher-toggle:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.lang-globe {
  font-size: 15px !important;
  opacity: 0.7;
}

.lang-chevron {
  font-size: 14px !important;
  transition: transform 220ms ease;
}

.lang-switcher-toggle[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-current-code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: rgba(10, 18, 34, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  backdrop-filter: blur(12px);
}

.lang-dropdown.is-open {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
  text-align: left;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-option.is-active {
  color: var(--accent);
}

.lang-option.is-active .lang-code {
  font-weight: 700;
}

.lang-code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  min-width: 24px;
}

.lang-name {
  font-size: 0.80rem;
  color: var(--text-muted, rgba(255,255,255,0.45));
}

.lang-option.is-active .lang-name {
  color: var(--text-soft);
}

/* ── Language Switcher (mobile sheet) ───────────────────── */
.lang-mobile-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.lang-mobile-opt {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.lang-mobile-opt:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.lang-mobile-opt.is-active {
  background: rgba(114, 240, 222, 0.10);
  border-color: rgba(114, 240, 222, 0.30);
  color: #d8fff8;
}

.site-nav-mobile-sheet,
.site-nav-mobile-head,
.site-nav-mobile-groups {
  display: none;
}

.homepage,
.detail-page,
.coach-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.portal-stage,
.present-shell,
.features-stage,
.threshold-stage,
.detail-stage,
.detail-panel,
.detail-threshold,
.coach-command-stage,
.coach-sequence,
.coach-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-shell);
  background:
    linear-gradient(180deg, rgba(13, 20, 34, 0.92) 0%, rgba(7, 12, 21, 0.86) 100%);
  box-shadow: var(--shadow-deep);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.portal-copy h1,
.present-heading h2,
.features-header h2,
.threshold-copy h2,
.coach-body .coach-hero-copy h1,
.coach-body .coach-method-heading h2,
.coach-body .coach-example-copy h2,
.system-body .system-hero-copy h1,
.system-body .system-stage-copy h2,
.system-body .system-trust-copy h2,
.biotwin-body .biotwin-hero-copy h1,
.biotwin-body .biotwin-stage-copy h2,
.sp-copy h1,
.ss-copy h2,
.so-header h2,
.st-copy h2 {
  text-wrap: balance;
}

p {
  margin: 0;
  line-height: 1.62;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(196, 225, 255, 0.16);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, rgba(114, 240, 222, 0.26), rgba(93, 152, 248, 0.16));
  border-color: rgba(114, 240, 222, 0.42);
  color: #f2fffc;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.subpage-backbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
}

.subpage-backlink {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 12, 20, 0.34);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.subpage-backlink:hover {
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(114,240,222,0.18);
  background: rgba(114,240,222,0.08);
}

.subpage-backlink .material-icons {
  font-size: 18px;
}

.subpage-backsep,
.subpage-backcurrent {
  color: var(--text-faint);
  font-size: 0.8rem;
  font-weight: 700;
}

.subpage-backcurrent {
  color: var(--text);
}

.hero-actions,
.detail-actions,
.threshold-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.portal-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  min-height: min(980px, calc(100vh - 84px));
  padding: clamp(28px, 4vw, 56px);
}

.portal-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 63% 40%, rgba(72, 193, 255, 0.1), transparent 24%),
    radial-gradient(circle at 26% 24%, rgba(126, 86, 214, 0.12), transparent 24%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.portal-copy,
.portal-clock-field,
.portal-presence {
  position: relative;
  z-index: 1;
}

.portal-copy {
  align-self: center;
  max-width: 38rem;
  padding-top: clamp(20px, 4vw, 72px);
}

.portal-copy h1 {
  max-width: 11ch;
  font-size: clamp(4.5rem, 9.2vw, 8.2rem);
}

.hero-manifesto {
  max-width: 38rem;
  margin-top: 18px;
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);
}

.portal-script {
  max-width: 34rem;
  margin-top: 18px;
  font-size: 0.98rem;
  color: var(--text-faint);
}

.portal-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.portal-ledger span,
.present-link,
.module-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.portal-ledger span::before,
.present-link::before,
.module-inline-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero-actions {
  margin-top: 32px;
}

.portal-clock-field {
  display: grid;
  place-items: center;
  min-height: 760px;
}

.portal-clock-glow,
.portal-beam,
.portal-orbit,
.portal-aura,
.portal-vector,
.threshold-orbit,
.features-orbit,
.engine-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.portal-clock-glow {
  width: min(48vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--phase-glow) 0%, transparent 62%);
  filter: blur(26px);
}

.portal-orbit {
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.orbit-alpha {
  width: min(62vw, 860px);
  aspect-ratio: 1;
  right: -4%;
  top: -8%;
}

.orbit-beta {
  width: min(40vw, 520px);
  aspect-ratio: 1;
  right: 12%;
  top: 18%;
}

.orbit-gamma {
  width: min(28vw, 360px);
  aspect-ratio: 1;
  left: -6%;
  bottom: -8%;
}

.portal-aura {
  filter: blur(32px);
}

.aura-alpha {
  width: 260px;
  height: 260px;
  right: 14%;
  top: 16%;
  background: radial-gradient(circle, rgba(73, 123, 240, 0.26), transparent 68%);
}

.aura-beta {
  width: 200px;
  height: 200px;
  left: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(127, 93, 221, 0.18), transparent 68%);
}

.portal-axis {
  position: absolute;
  right: 32px;
  top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 24rem;
}

.portal-axis span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-faint);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-beam {
  inset: 18% 10% 22% 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 40%),
    conic-gradient(from 180deg, rgba(114, 240, 222, 0.02), rgba(114, 240, 222, 0.18), rgba(114, 240, 222, 0.02));
  filter: blur(6px);
}

.portal-vector {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform-origin: center;
}

.vector-one {
  width: 34%;
  right: 22%;
  top: 22%;
  transform: rotate(18deg);
}

.vector-two {
  width: 26%;
  left: 12%;
  bottom: 19%;
  transform: rotate(-22deg);
}

.clock-mount {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
}

.clock-caption {
  position: absolute;
  right: 6%;
  bottom: 5%;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(8, 14, 24, 0.7);
  backdrop-filter: blur(14px);
  text-align: right;
}

.clock-caption span,
.clock-caption small {
  color: var(--text-faint);
}

.clock-caption strong {
  font-size: 1.15rem;
}

.portal-presence {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 48px);
  max-width: min(34rem, calc(100% - 112px));
  padding: 22px 24px;
  border: 1px solid rgba(196, 225, 255, 0.14);
  border-radius: 28px;
  background: rgba(7, 12, 20, 0.74);
  backdrop-filter: blur(18px);
}

.presence-label,
.signal-label,
.module-node-kicker,
.core-kicker,
.window-label {
  display: block;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.presence-mainline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  margin-top: 12px;
}

.presence-mainline span {
  font-size: 1.6rem;
  font-weight: 800;
}

.presence-mainline strong {
  color: var(--accent);
}

.presence-title {
  margin-top: 14px;
  font-size: 1.15rem;
  color: var(--text);
}

.presence-meta {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--text-soft);
}

.present-stage {
  position: relative;
}

.present-shell {
  padding: clamp(28px, 4vw, 48px);
}

.present-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  pointer-events: none;
}

.present-heading {
  display: grid;
  gap: 14px;
  max-width: 58rem;
}

.present-heading h2 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 6vw, 5.7rem);
}

.present-overview {
  max-width: 48rem;
}

.present-current {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin-top: 56px;
}

.present-organ {
  font-size: clamp(3.5rem, 6vw, 5.6rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
}

.present-range {
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 700;
}

.present-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.signal-column {
  min-height: 144px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.signal-column strong {
  display: block;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.present-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.present-link:hover,
.module-inline-link:hover {
  border-color: rgba(114, 240, 222, 0.38);
  color: var(--text);
}

/* ── Panel popup overlay ───────────────────────────────── */

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 8, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: backdropIn 220ms ease;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.panel-popup {
  position: fixed;
  z-index: 91;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 440px);
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: popupIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-18px) scale(0.96); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.element-panel {
  padding: 22px;
  border: 1px solid rgba(196, 225, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 23, 38, 0.97), rgba(8, 14, 24, 0.95));
  box-shadow:
    0 0 0 1px rgba(114, 240, 222, 0.06),
    0 22px 46px rgba(0, 0, 0, 0.38),
    0 0 80px rgba(114, 240, 222, 0.04);
}

.element-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.element-panel-close,
.organ-panel-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.element-panel-close:hover,
.organ-panel-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.element-panel-name {
  margin-top: 16px;
  font-size: 2.4rem;
}

.element-panel-range,
.element-panel-organs {
  display: block;
  margin-top: 8px;
  color: var(--accent);
}

.element-panel-desc {
  margin-top: 14px;
}

.element-panel-footer {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.organ-panel-title {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
}

.features-stage {
  padding: clamp(28px, 4vw, 56px);
}

.features-header {
  max-width: 52rem;
}

.features-header h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.features-header p:last-child {
  max-width: 40rem;
  margin-top: 16px;
}

.modules-atlas {
  position: relative;
  min-height: 840px;
  margin-top: 36px;
}

.features-orbit {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.orbit-one {
  width: min(68vw, 920px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-two {
  width: min(50vw, 660px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-three {
  width: min(34vw, 420px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modules-field {
  position: relative;
  min-height: 840px;
}

.modules-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  padding: 34px;
  border: 1px solid rgba(114, 240, 222, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(114, 240, 222, 0.16), transparent 64%),
    rgba(8, 14, 24, 0.82);
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.modules-core h3 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.modules-core p {
  margin-top: 12px;
  max-width: 22rem;
}

.modules-core .module-inline-link {
  justify-self: center;
  margin-top: 18px;
}

.module-node-access {
  position: absolute;
  display: grid;
  gap: 8px;
  width: min(26vw, 300px);
  min-height: 150px;
  padding: 20px 22px;
  border: 1px solid rgba(196, 225, 255, 0.12);
  border-radius: 28px;
  background: rgba(8, 14, 24, 0.8);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.module-node-access:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 240, 222, 0.34);
  background: rgba(11, 18, 32, 0.94);
}

.module-node-access strong {
  font-size: 1.42rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.module-node-access small {
  color: var(--text-soft);
  line-height: 1.5;
}

.module-node-access::after {
  content: "entra";
  margin-top: auto;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-chronotype {
  left: 7%;
  top: 12%;
}

.access-coach {
  right: 5%;
  top: 10%;
}

.access-biotwin {
  left: 3%;
  top: 54%;
}

.access-practices {
  right: 7%;
  top: 56%;
}

.access-bazi {
  left: 23%;
  bottom: 6%;
  width: min(22vw, 260px);
}

.access-system {
  right: 22%;
  bottom: 5%;
  width: min(22vw, 260px);
}

.threshold-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  min-height: 440px;
}

.threshold-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 44%, var(--phase-glow) 0%, transparent 34%),
    radial-gradient(circle at 24% 22%, rgba(104, 128, 255, 0.1), transparent 20%);
  pointer-events: none;
}

.threshold-copy {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.threshold-copy h2 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 5.2vw, 5.6rem);
}

.threshold-copy p {
  margin-top: 16px;
  max-width: 34rem;
}

.threshold-actions {
  margin-top: 28px;
}

.threshold-mass {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.threshold-core {
  width: min(100%, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(114, 240, 222, 0.28);
  background:
    radial-gradient(circle at 50% 38%, rgba(114, 240, 222, 0.18), transparent 62%),
    rgba(8, 14, 24, 0.84);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.threshold-core span {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.threshold-core small {
  margin-top: -14px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.threshold-orbit {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.orbit-delta {
  width: 520px;
  height: 520px;
  right: -150px;
  bottom: -180px;
}

.orbit-epsilon {
  width: 300px;
  height: 300px;
  right: 40px;
  top: -80px;
}

.detail-page {
  gap: 24px;
}

.detail-stage,
.detail-threshold {
  padding: clamp(28px, 4vw, 52px);
}

.detail-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 26px;
  min-height: 520px;
}

.detail-stage::before,
.detail-stage::after,
.detail-threshold::before,
.coach-command-stage::before,
.coach-sequence::before,
.coach-window::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.detail-copy,
.detail-orbit {
  position: relative;
  z-index: 1;
}

.detail-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 40rem;
}

.detail-copy h1,
.detail-copy h2 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 5.6vw, 6rem);
}

.detail-orbit {
  min-height: 320px;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 240, 222, 0.08), transparent 56%),
    rgba(8, 14, 24, 0.78);
}

.detail-orbit::before,
.detail-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-orbit::before {
  inset: 10%;
}

.detail-orbit::after {
  inset: 28%;
}

.detail-orbit-label {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.label-one {
  top: 16%;
  left: 12%;
}

.label-two {
  top: 24%;
  right: 14%;
}

.label-three {
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
}

.detail-panel {
  padding: clamp(24px, 4vw, 44px);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.detail-card h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.family-orbital .detail-stage::before {
  inset: -18% auto auto 44%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.family-orbital .detail-stage::after {
  inset: 18% auto auto 58%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(114, 240, 222, 0.18);
  border-radius: 50%;
}

.family-orbital .detail-orbit {
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 240, 222, 0.14), transparent 44%),
    linear-gradient(180deg, rgba(12, 22, 34, 0.94), rgba(7, 13, 23, 0.82));
}

.family-symbolic .detail-stage::before {
  top: -30%;
  left: 50%;
  width: 1px;
  height: 160%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.family-symbolic .detail-stage::after {
  top: 12%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 96, 206, 0.12), transparent 68%);
  filter: blur(10px);
}

.family-symbolic .detail-orbit {
  background:
    radial-gradient(circle at 50% 50%, rgba(160, 110, 210, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(12, 10, 22, 0.94), rgba(8, 10, 19, 0.84));
}

.family-symbolic .detail-copy h1,
.family-symbolic .detail-copy h2 {
  max-width: 11ch;
}

.family-operational .detail-stage::before {
  inset: 12% auto auto 54%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, rgba(114, 240, 222, 0.36), transparent);
}

.family-operational .detail-stage::after {
  inset: auto 10% 14% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 143, 255, 0.14), transparent 68%);
}

.family-operational .detail-orbit {
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.94), rgba(7, 12, 21, 0.86));
}

.coach-page {
  gap: 24px;
}

.coach-command-stage,
.coach-sequence,
.coach-window {
  padding: clamp(28px, 4vw, 52px);
}

.coach-command-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: 28px;
  min-height: 620px;
}

.coach-command-stage::before {
  inset: 0;
  background:
    radial-gradient(circle at 74% 42%, rgba(72, 193, 255, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.02));
}

.coach-command-copy,
.coach-command-engine {
  position: relative;
  z-index: 1;
}

.coach-command-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 38rem;
}

.coach-command-copy h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 6vw, 6.2rem);
}

.coach-command-engine {
  min-height: 460px;
}

.engine-orbit {
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.orbit-primary {
  width: min(100%, 520px);
  aspect-ratio: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-secondary {
  width: min(70%, 340px);
  aspect-ratio: 1;
  right: 16%;
  top: 50%;
  transform: translateY(-50%);
}

.engine-core,
.engine-node {
  position: absolute;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(8, 14, 24, 0.84);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.engine-core {
  left: 50%;
  top: 50%;
  width: min(62%, 260px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.engine-core span,
.engine-node span {
  display: block;
  color: var(--text-faint);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.engine-core strong,
.engine-node strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.4;
}

.engine-core small {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
}

.node-focus {
  left: 10%;
  top: 16%;
  width: min(46%, 220px);
}

.node-filter {
  right: 6%;
  top: 24%;
  width: min(48%, 240px);
}

.node-action {
  left: 16%;
  bottom: 12%;
  width: min(50%, 240px);
}

.coach-sequence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coach-sequence::before {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(114, 240, 222, 0.2), rgba(255, 255, 255, 0.04));
}

.sequence-heading {
  grid-column: 1 / -1;
  max-width: 42rem;
}

.sequence-heading h2 {
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}

.sequence-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.sequence-step h3 {
  font-size: 2.15rem;
  margin-bottom: 12px;
}

.coach-window {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: center;
}

.coach-window::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 46%, rgba(114, 240, 222, 0.08), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(82, 134, 241, 0.08), transparent 18%);
}

.coach-window-copy,
.coach-window-panel {
  position: relative;
  z-index: 1;
}

.coach-window-copy h2 {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  max-width: 12ch;
}

.coach-window-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(8, 14, 24, 0.82);
}

.window-row {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.window-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.window-row strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.coach-threshold {
  overflow: hidden;
}

.coach-threshold::before {
  inset: auto -10% -28% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 240, 222, 0.12), transparent 66%);
}

/* ═══ Guide Page (features.html) ═══════════════════════════ */
.guide-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 0;
}

/* ── Hero ── */
.guide-hero {
  text-align: center;
  margin-bottom: 48px;
}
.guide-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 12px 0 20px;
}
.guide-hero-body {
  max-width: 660px;
  margin: 0 auto;
  opacity: .82;
  line-height: 1.7;
}

/* ── TOC (quick-nav bar) ── */
.guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 72px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}
.guide-toc a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-soft);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.guide-toc a:hover {
  background: rgba(114,240,222,.08);
  border-color: rgba(114,240,222,.25);
  color: var(--text);
}

/* ── Zigzag sections ── */
.guide-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.guide-section--flip {
  grid-template-columns: 1fr 280px;
}
.guide-section--flip .guide-media {
  order: 2;
}
.guide-section--flip .guide-copy {
  order: 1;
}

/* ── Image placeholder ── */
.guide-media {
  position: sticky;
  top: 100px;
}
.guide-img-placeholder {
  aspect-ratio: 9 / 16;
  max-height: 480px;
  border-radius: 20px;
  border: 1px dashed rgba(114,240,222,.22);
  background: rgba(114,240,222,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(114,240,222,.45);
  overflow: hidden;
}
.guide-img-placeholder .material-icons {
  font-size: 36px;
  opacity: .6;
}
.guide-img-placeholder small {
  font-size: .7rem;
  letter-spacing: .05em;
  opacity: .65;
  text-align: center;
  padding: 0 12px;
}
.guide-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ── Copy block ── */
.guide-num {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: rgba(114,240,222,.55);
  margin-bottom: 8px;
}
.guide-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 16px;
}
.guide-copy p {
  font-size: .92rem;
  line-height: 1.72;
  opacity: .8;
  margin: 0 0 14px;
}
.guide-tips {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.guide-tips li {
  position: relative;
  padding-left: 22px;
  font-size: .85rem;
  line-height: 1.65;
  opacity: .72;
  margin-bottom: 6px;
}
.guide-tips li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: rgba(114,240,222,.6);
  font-weight: 700;
}

/* ── Bottom CTA ── */
.guide-cta {
  text-align: center;
  padding: 24px 24px 80px;
}
.guide-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 12px 0 16px;
}
.guide-cta p {
  opacity: .7;
  margin-bottom: 28px;
}

/* ── Responsive: guide ── */
@media (max-width: 768px) {
  .guide-section,
  .guide-section--flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .guide-section--flip .guide-media,
  .guide-section--flip .guide-copy {
    order: unset;
  }
  .guide-media {
    position: static;
    max-width: 240px;
    margin: 0 auto;
  }
  .guide-toc {
    gap: 6px;
  }
  .guide-toc a {
    font-size: .72rem;
    padding: 5px 10px;
  }
}

.site-footer {
  margin-top: 24px;
  position: relative;
  overflow: visible;
}

.footer-download {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, rgba(8, 20, 50, 0.98), rgba(5, 14, 36, 0.96));
  border-bottom: 1px solid var(--surface-line);
  border-radius: 36px 36px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
}

/* Image with claim overlay */
.footer-download-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  overflow: hidden;
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0, 60, 180, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.footer-download-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Claim overlaid on the image */
.footer-download-claim {
  position: absolute;
  bottom: 18%;
  left: 8%;
  right: auto;
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.65rem, 1vw, 0.85rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  pointer-events: none;
}

.footer-download-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-download-copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  max-width: 24ch;
  line-height: 1.18;
}

.footer-download-sub {
  margin-top: 10px;
  max-width: 32rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-beta-btn {
  margin-top: 18px;
  align-self: start;
  white-space: nowrap;
}

.footer-download-copy p {
  margin-top: 10px;
  max-width: 36rem;
  font-size: 0.94rem;
}

/* Mobile: stack, image compact on top */
@media (max-width: 768px) {
  .footer-download {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(24px, 4vw, 32px) clamp(20px, 4vw, 28px);
  }
  .footer-download-visual {
    order: -1;
    max-width: 80%;
    margin: 0 auto 20px;
  }
  .footer-download-copy {
    align-items: center;
  }
  .footer-beta-btn {
    align-self: center;
  }
}

.footer-base {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 32px;
  align-items: start;
  padding: 36px clamp(28px, 4vw, 52px) 28px;
  background: rgba(4, 10, 24, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-col-title {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-faint);
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-identity span {
  font-weight: 700;
  font-size: 0.94rem;
}

.footer-tagline {
  color: var(--text-faint);
  font-size: 0.86rem;
  max-width: 30ch;
  line-height: 1.48;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-faint);
  transition: color 160ms ease, border-color 160ms ease;
}

.footer-social-icon:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  padding: 16px clamp(28px, 4vw, 52px);
  border-top: 1px solid var(--surface-line);
  background: rgba(3, 8, 18, 0.98);
  border-radius: 0 0 36px 36px;
  text-align: center;
}

.footer-bottom span {
  color: var(--text-faint);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Keep centering transform on so-nucleus after reveal */
.so-nucleus.reveal.is-visible {
  transform: translate(-50%, -50%);
}

/* Directional reveal variants */
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92) translateY(18px); }
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* Stagger delays for children — applied by JS */
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }
.reveal-d6 { transition-delay: 480ms; }

/* Subtle glow on reveal */
.reveal-glow {
  box-shadow: 0 0 0 rgba(114, 240, 222, 0);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 800ms ease;
}
.reveal-glow.is-visible {
  box-shadow: 0 0 28px rgba(114, 240, 222, 0.06), 0 14px 40px rgba(0, 0, 0, 0.18);
}

.circadian-svg {
  display: block;
  width: 100%;
  height: auto;
}

.clock-shell {
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.22));
}

.clock-organ-segment,
.clock-element-band {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transform-origin: center;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 200ms ease;
}

.clock-organ-segment:hover,
.clock-element-band:hover {
  transform: scale(1.06);
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
}

.clock-organ-segment:active,
.clock-element-band:active {
  transform: scale(0.96);
  filter: brightness(0.92);
  transition-duration: 80ms;
}

.clock-organ-segment path,
.clock-element-band path {
  transition: fill-opacity 180ms ease;
}

.clock-organ-segment:hover path:first-child,
.clock-organ-segment:focus-visible path:first-child {
  fill-opacity: 1;
}

.clock-organ-segment:focus,
.clock-organ-segment:focus-visible,
.clock-element-band:focus,
.clock-element-band:focus-visible {
  outline: none;
}

.clock-mount svg {
  -webkit-tap-highlight-color: transparent;
}

.clock-organ-icon,
.clock-hour-label,
.clock-element-label {
  user-select: none;
}

.clock-organ-icon {
  font-family: "Material Icons";
  fill: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  pointer-events: none;
}

.clock-organ-icon.is-active {
  fill: #ffffff;
}

.clock-organ-dividers,
.clock-element-dividers {
  stroke: rgba(3, 7, 12, 0.9);
  stroke-width: 4;
}

.clock-hour-label {
  fill: rgba(236, 243, 255, 0.74);
  font-size: 22px;
  font-weight: 700;
  font-family: "Manrope", system-ui, sans-serif;
}

.clock-element-label {
  fill: rgba(240, 246, 255, 0.88);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.clock-tao-breathe {
  transform-origin: center;
  animation: taoPulse 4.6s ease-in-out infinite;
}

.clock-tao {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

@keyframes taoPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .clock-tao-breathe,
  .button,
  .module-node-access {
    transition: none;
    animation: none;
    transform: none;
  }

  .mc-body {
    transition: none;
  }
}

/* Coach flagship */

.coach-body .coach-page {
  gap: 26px;
}

.coach-body .coach-local-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 4px;
  padding: 10px 14px;
  border: 1px solid rgba(196, 225, 255, 0.08);
  border-radius: 24px;
  background: rgba(8, 14, 24, 0.42);
  backdrop-filter: blur(14px);
}

.coach-body .coach-local-title {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.coach-body .coach-local-links {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.coach-body .coach-local-links::-webkit-scrollbar {
  display: none;
}

.coach-body .coach-local-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--text-soft);
  font-size: 0.84rem;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.coach-body .coach-local-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.coach-body .coach-hero-stage,
.coach-body .coach-method-stage,
.coach-body .coach-example-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 16, 28, 0.94) 0%, rgba(6, 11, 20, 0.9) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.coach-body .coach-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(460px, 1.12fr);
  gap: 46px;
  min-height: 720px;
  padding: clamp(30px, 4vw, 56px);
}

.coach-body .coach-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
      radial-gradient(circle at 72% 36%, rgba(55, 145, 255, 0.16), transparent 22%),
      radial-gradient(circle at 38% 22%, rgba(114, 240, 222, 0.08), transparent 24%),
      linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.coach-body .coach-hero-stage::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 8%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(114, 240, 222, 0.06);
  box-shadow:
    0 0 0 110px rgba(114, 240, 222, 0.015),
    0 0 0 220px rgba(114, 240, 222, 0.008);
  pointer-events: none;
}

.coach-body .coach-hero-copy,
.coach-body .coach-engine-scene {
  position: relative;
  z-index: 1;
}

.coach-body .coach-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 26rem;
}

.coach-body .coach-hero-copy h1 {
  max-width: 9.4ch;
  font-size: clamp(3.25rem, 4.9vw, 5.1rem);
  line-height: 0.92;
}

.coach-body .coach-hero-note {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-body .coach-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.coach-body .coach-engine-scene {
  display: grid;
  grid-template-columns: minmax(160px, 0.84fr) minmax(220px, 1fr) minmax(180px, 0.86fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "cloud lens reduction"
    ". lens reduction"
    ". output output";
  align-items: stretch;
  gap: 18px;
  min-height: 600px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 48% 44%, rgba(114, 240, 222, 0.06), transparent 18%),
    radial-gradient(circle at 72% 22%, rgba(55, 145, 255, 0.08), transparent 20%),
    rgba(7, 13, 23, 0.34);
}

.coach-body .scene-orbit,
.coach-body .scene-beam,
.coach-body .scene-compression {
  position: absolute;
  pointer-events: none;
}

.coach-body .scene-orbit {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.coach-body .orbit-a {
  width: 94%;
  aspect-ratio: 1;
  right: -10%;
  top: 4%;
}

.coach-body .orbit-b {
  width: 66%;
  aspect-ratio: 1;
  right: 6%;
  top: 18%;
}

.coach-body .scene-beam {
  height: 1px;
  background: linear-gradient(90deg, rgba(114, 240, 222, 0), rgba(114, 240, 222, 0.34), rgba(114, 240, 222, 0));
}

.coach-body .beam-a {
  left: 18%;
  right: 18%;
  top: 42%;
  transform: rotate(9deg);
}

.coach-body .beam-b {
  left: 28%;
  right: 10%;
  bottom: 22%;
  transform: rotate(-8deg);
}

.coach-body .scene-compression {
  background: linear-gradient(90deg, rgba(114, 240, 222, 0.02), rgba(114, 240, 222, 0.18), rgba(114, 240, 222, 0.02));
  filter: blur(8px);
  opacity: 0.8;
}

.coach-body .compression-a {
  width: 200px;
  height: 200px;
  left: 30%;
  top: 28%;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.coach-body .compression-b {
  width: 180px;
  height: 180px;
  right: 14%;
  bottom: 10%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.coach-body .engine-input-cloud,
.coach-body .engine-lens,
.coach-body .engine-reduction,
.coach-body .engine-output {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(196, 225, 255, 0.08);
  background: rgba(8, 14, 24, 0.46);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.coach-body .engine-input-cloud {
  grid-area: cloud;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 60%),
    rgba(8, 14, 24, 0.34);
  align-content: start;
  align-self: start;
}

.coach-body .engine-panel-label {
  display: block;
  width: 100%;
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coach-body .engine-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.coach-body .engine-chip .material-icons {
  font-size: 16px;
  color: var(--accent);
}

.coach-body .engine-kicker,
.coach-body .response-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coach-body .engine-lens {
  grid-area: lens;
  min-height: 320px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.16), transparent 52%),
    rgba(8, 14, 24, 0.4);
  align-self: center;
  isolation: isolate;
}

.coach-body .engine-lens::before,
.coach-body .engine-lens::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.coach-body .engine-lens::before {
  inset: 9%;
  border: 1px solid rgba(114, 240, 222, 0.14);
}

.coach-body .engine-lens::after {
  inset: 26%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: coachLensPulse 3.8s ease-in-out infinite;
}

.coach-body .engine-lens strong,
.coach-body .engine-reduction strong,
.coach-body .engine-output strong {
  display: block;
  margin-top: 12px;
  font-size: 1.18rem;
  line-height: 1.45;
}

.coach-body .engine-lens small,
.coach-body .engine-output small {
  display: block;
  margin-top: 10px;
  color: var(--text-faint);
  line-height: 1.5;
}

.coach-body .lens-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 16px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-body .engine-reduction {
  grid-area: reduction;
  padding: 20px 18px 22px;
  border-radius: 26px 26px 26px 18px;
  background:
    linear-gradient(180deg, rgba(23, 13, 25, 0.48), rgba(11, 17, 28, 0.56));
  align-self: center;
}

.coach-body .engine-output {
  grid-area: output;
  padding: 24px 24px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(9, 16, 27, 0.54));
  align-self: end;
}

.coach-body .reduction-noise {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.coach-body .reduction-noise span {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-faint);
  font-size: 0.78rem;
}

.coach-body .reduction-noise span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: rgba(239, 68, 68, 0.7);
  transform: rotate(-8deg);
}

.coach-body .output-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.coach-body .output-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(114, 240, 222, 0.08);
  border: 1px solid rgba(114, 240, 222, 0.16);
  color: #dcfff7;
  font-size: 0.8rem;
  font-weight: 700;
}

.coach-body .engine-output::before {
  display: none;
}

.coach-body .coach-method-stage {
  padding: clamp(28px, 4vw, 48px);
}

.coach-body .coach-method-heading {
  max-width: 46rem;
}

.coach-body .coach-method-heading h2 {
  font-size: clamp(3.4rem, 5vw, 5.1rem);
}

.coach-body .coach-method-heading p {
  margin-top: 16px;
}

.coach-body .coach-method-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.08fr;
  gap: 0;
  margin-top: 30px;
  padding: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.03), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.coach-body .coach-method-band::before,
.coach-body .coach-method-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coach-body .coach-method-band::before {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(114, 240, 222, 0.18), rgba(255, 255, 255, 0));
}

.coach-body .coach-method-band::after {
  left: 50%;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(114, 240, 222, 0.14), rgba(255, 255, 255, 0));
}

.coach-body .method-spine {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(114, 240, 222, 0.12);
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.1), transparent 62%),
    rgba(8, 14, 24, 0.58);
}

.coach-body .method-spine span {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coach-body .method-lane {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 28px 30px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.coach-body .method-lane + .method-lane {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.coach-body .lane-read {
  border-radius: 0;
  clip-path: none;
}

.coach-body .lane-filter {
  border-radius: 0;
  transform: translateY(0);
  background: transparent;
}

.coach-body .lane-return {
  border-radius: 0;
  clip-path: none;
}

.coach-body .method-index {
  display: inline-block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.coach-body .method-lane h3 {
  margin-top: 10px;
  font-size: 2.3rem;
}

.coach-body .method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  font-size: 18px;
}

.coach-body .method-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.coach-body .method-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-soft);
  line-height: 1.58;
}

.coach-body .method-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(114, 240, 222, 0.34);
}

.coach-body .coach-example-stage {
  padding: clamp(28px, 4vw, 48px);
}

.coach-body .coach-example-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(114, 240, 222, 0.08), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(88, 128, 236, 0.1), transparent 18%);
  pointer-events: none;
}

.coach-body .coach-example-copy,
.coach-body .coach-example-chamber,
.coach-body .coach-example-actions {
  position: relative;
  z-index: 1;
}

.coach-body .coach-example-copy {
  max-width: 48rem;
}

.coach-body .coach-example-copy h2 {
  max-width: 13.5ch;
  font-size: clamp(3.4rem, 5vw, 5.1rem);
}

.coach-body .coach-example-copy p {
  margin-top: 16px;
}

.coach-body .coach-example-chamber {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 76% 42%, rgba(114, 240, 222, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(9, 16, 28, 0.92), rgba(6, 11, 20, 0.88));
}

.coach-body .coach-example-chamber::before {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(114,240,222,0.16), rgba(255,255,255,0));
  pointer-events: none;
}

.coach-body .example-dossier,
.coach-body .coach-response-card {
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 1;
}

.coach-body .example-dossier {
  position: relative;
  background:
    linear-gradient(180deg, rgba(16, 12, 24, 0.56), rgba(8, 14, 24, 0.82));
}

.coach-body .example-dossier::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 110, 110, 0.24), rgba(255, 255, 255, 0.03));
}

.coach-body .dossier-row + .dossier-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-body .dossier-row strong {
  display: block;
  margin-top: 10px;
  font-size: 1.06rem;
  line-height: 1.58;
}

.coach-body .example-compression {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px 12px;
  text-align: center;
  z-index: 1;
}

.coach-body .compression-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(114,240,222,0.08);
  border: 1px solid rgba(114,240,222,0.16);
  color: var(--accent);
  font-size: 22px;
}

.coach-body .example-compression::before,
.coach-body .example-compression::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(114,240,222,0.32), rgba(255,255,255,0));
  transform: translateX(-50%);
}

.coach-body .example-compression::before {
  top: 0;
  bottom: 54%;
}

.coach-body .example-compression::after {
  top: 54%;
  bottom: 0;
}

.coach-body .compression-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-body .example-compression strong {
  display: block;
  max-width: 14ch;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--text);
}

.coach-body .coach-response-card {
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    radial-gradient(circle at 76% 12%, rgba(114, 240, 222, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
  box-shadow: inset 0 0 0 1px rgba(114, 240, 222, 0.06);
}

.coach-body .response-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(114,240,222,0.08);
  border: 1px solid rgba(114,240,222,0.16);
  color: var(--accent);
  font-size: 20px;
}

.coach-body .response-line {
  color: var(--text);
  font-size: clamp(1.3rem, 1.7vw, 1.62rem);
  line-height: 1.56;
}

.coach-body .response-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coach-body .response-contrast {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.coach-body .response-contrast span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.coach-body .response-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.84rem;
}

.coach-body .coach-example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.coach-body .coach-example-actions .button {
  min-width: 240px;
}

@keyframes coachLensPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* ═══════════════════════════════════════════════════════════════
   COACH PAGE v84 — Lane colors, chip accents, text hierarchy
   ════════════════════════════════════════════════════════════════ */

/* ── B. Method lane accent colors ── */
.coach-body .lane-read .method-icon   { color: #22D3EE; background: rgba(34, 211, 238, 0.08); border-color: rgba(34, 211, 238, 0.18); }
.coach-body .lane-read h3            { color: #22D3EE; }
.coach-body .lane-read .method-list li::before { background: #22D3EE; box-shadow: 0 0 12px rgba(34, 211, 238, 0.34); }

.coach-body .lane-filter .method-icon { color: #F59E0B; background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.18); }
.coach-body .lane-filter h3          { color: #F59E0B; }
.coach-body .lane-filter .method-list li::before { background: #F59E0B; box-shadow: 0 0 12px rgba(245, 158, 11, 0.34); }

.coach-body .lane-return .method-icon { color: #10B981; background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.18); }
.coach-body .lane-return h3          { color: #10B981; }
.coach-body .lane-return .method-list li::before { background: #10B981; box-shadow: 0 0 12px rgba(16, 185, 129, 0.34); }

/* ── C. Engine chip individual accent colors ── */
.coach-body .engine-chip:nth-child(2) .material-icons { color: #22D3EE; }
.coach-body .engine-chip:nth-child(2) { border-color: rgba(34, 211, 238, 0.18); }
.coach-body .engine-chip:nth-child(3) .material-icons { color: #A855F7; }
.coach-body .engine-chip:nth-child(3) { border-color: rgba(168, 85, 247, 0.18); }
.coach-body .engine-chip:nth-child(4) .material-icons { color: #F97316; }
.coach-body .engine-chip:nth-child(4) { border-color: rgba(249, 115, 22, 0.18); }
.coach-body .engine-chip:nth-child(5) .material-icons { color: #F59E0B; }
.coach-body .engine-chip:nth-child(5) { border-color: rgba(245, 158, 11, 0.18); }

/* ── D. Hero text hierarchy ── */
.coach-body .coach-hero-copy > p:not(.eyebrow):not(.coach-hero-note) { color: var(--text-soft); }
.coach-body .coach-hero-linknote { color: var(--text-faint) !important; }

/* ── E. Dossier label accent color ── */
.coach-body .example-dossier .window-label { color: var(--accent, #72f0de); }

/* ── F. Response card before/after color contrast ── */
.coach-body .response-contrast span:first-child {
  color: rgba(239, 68, 68, 0.7);
  font-style: italic;
}
.coach-body .response-contrast span:last-child {
  color: #72f0de;
}

/* ── G. Mobile method lane left-border (applied via breakpoint below, but base color vars here) ── */
.coach-body .lane-read    { --lane-color: #22D3EE; }
.coach-body .lane-filter  { --lane-color: #F59E0B; }
.coach-body .lane-return  { --lane-color: #10B981; }

.system-body .system-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.system-body .system-hero-stage,
.system-body .system-flow-stage,
.system-body .system-relations-stage,
.system-body .system-trust-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 14, 28, 0.94) 0%, rgba(7, 11, 22, 0.9) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.system-body .system-stage-copy,
.system-body .system-hero-copy,
.system-body .system-hero-field,
.system-body .system-map-chamber,
.system-body .system-relations-chamber,
.system-body .system-trust-chamber {
  position: relative;
  z-index: 1;
}

.system-body .system-stage-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  column-gap: 32px;
  row-gap: 12px;
  max-width: none;
  align-items: start;
}

.system-body .system-stage-copy h2,
.system-body .system-trust-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.95rem, 4.3vw, 4.35rem);
  max-width: 13.5ch;
  grid-column: 1;
}

.system-body .system-stage-copy .eyebrow,
.system-body .system-trust-copy .eyebrow {
  grid-column: 1 / -1;
}

.system-body .system-stage-copy p:last-child,
.system-body .system-trust-copy p:last-child {
  margin-top: 18px;
  grid-column: 2;
  max-width: 34ch;
}

.system-body .system-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1.06fr);
  gap: 40px;
  min-height: 760px;
  padding: clamp(30px, 4vw, 56px);
}

.system-body .system-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(96, 156, 255, 0.18), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(114, 240, 222, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.02), transparent 30%, transparent 72%, rgba(255,255,255,0.02));
  pointer-events: none;
}

.system-body .system-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 34rem;
}

.system-body .system-hero-copy h1 {
  font-size: clamp(3.5rem, 5.15vw, 5.45rem);
  line-height: 0.93;
  max-width: 13.2ch;
}

.system-body .system-hero-text {
  max-width: 30rem;
}

.system-body .system-hero-note {
  color: var(--text-faint, rgba(196, 225, 255, 0.40));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-body .system-hero-actions,
.system-body .system-trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.system-body .system-hero-field {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(114, 240, 222, 0.08), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(109, 156, 255, 0.12), transparent 22%),
    rgba(8, 11, 24, 0.42);
}

.system-body .system-hero-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 22, 0.02), rgba(8, 10, 22, 0.22) 52%, rgba(8, 10, 22, 0.42));
  pointer-events: none;
}

.system-body .system-orbit,
.system-body .system-radial,
.system-body .system-field-glow {
  position: absolute;
  pointer-events: none;
}

.system-body .system-orbit {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.system-body .orbit-a {
  width: 86%;
  aspect-ratio: 1;
  right: -8%;
  top: -4%;
}

.system-body .orbit-b {
  width: 60%;
  aspect-ratio: 1;
  right: 14%;
  top: 14%;
}

.system-body .orbit-c {
  width: 46%;
  aspect-ratio: 1;
  left: 8%;
  bottom: 10%;
}

.system-body .orbit-d {
  width: 30%;
  aspect-ratio: 1;
  left: 18%;
  top: 14%;
}

.system-body .system-radial {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(114,240,222,0.2), rgba(255,255,255,0));
}

.system-body .system-radial-a {
  left: 26%;
  right: 18%;
  top: 34%;
  transform: rotate(10deg);
}

.system-body .system-radial-b {
  left: 20%;
  right: 22%;
  bottom: 26%;
  transform: rotate(-12deg);
}

.system-body .system-field-glow {
  border-radius: 50%;
  filter: blur(28px);
}

.system-body .glow-a {
  width: 300px;
  height: 300px;
  right: 12%;
  top: 16%;
  background: radial-gradient(circle, rgba(109,156,255,0.18), transparent 72%);
}

.system-body .glow-b {
  width: 240px;
  height: 240px;
  left: 10%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(114,240,222,0.14), transparent 72%);
}

.system-body .system-core-node,
.system-body .system-orbit-node {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(196, 225, 255, 0.08);
  background: rgba(8, 14, 24, 0.44);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.system-body .system-core-node {
  left: 50%;
  top: 50%;
  width: min(260px, 46%);
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  min-height: 260px;
  padding: 42px 26px 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.16), transparent 56%),
    rgba(8, 14, 24, 0.42);
}

.system-body .system-core-node::before,
.system-body .system-core-node::after {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  border: 1px solid rgba(114, 240, 222, 0.12);
  pointer-events: none;
}

.system-body .system-core-node::after {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.08);
}

.system-body .system-core-kicker,
.system-body .map-kicker,
.system-body .trust-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.system-body .system-core-node strong {
  font-size: 2.1rem;
  line-height: 1;
}

.system-body .system-core-node small {
  color: var(--text-soft);
  line-height: 1.48;
}

.system-body .system-orbit-node {
  display: grid;
  gap: 8px;
  min-width: 132px;
  max-width: 156px;
  padding: 12px 14px;
  border-radius: 22px;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.system-body a.system-orbit-node:hover,
.system-body a.system-map-node:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 240, 222, 0.22);
  background: rgba(10, 18, 30, 0.58);
}

.system-body .system-orbit-node span,
.system-body .system-map-node strong,
.system-body .system-trust-signal strong,
.system-body .system-relation-lane h3,
.system-body .system-trust-core strong,
.system-body .system-map-nucleus h3 {
  color: var(--text);
}

.system-body .system-orbit-node small,
.system-body .system-map-node p,
.system-body .system-trust-signal p,
.system-body .system-relation-lane p,
.system-body .system-trust-core p,
.system-body .system-map-nucleus p {
  color: var(--text-soft);
  line-height: 1.56;
}

.system-body .node-chronotype { top: 9%; left: 16%; }
.system-body .node-coach { top: 13%; right: 10%; }
.system-body .node-biotwin { top: 43%; right: 4%; }
.system-body .node-practices { bottom: 17%; right: 16%; }
.system-body .node-bazi { bottom: 13%; left: 16%; }
.system-body .node-diary { left: 4%; top: 42%; }
.system-body .node-privacy { left: 37%; bottom: 6%; }

.system-body .system-flow-stage,
.system-body .system-relations-stage,
.system-body .system-trust-stage {
  padding: clamp(28px, 4vw, 48px);
}

.system-body .system-map-chamber {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 56% 38%, rgba(114, 240, 222, 0.04), transparent 24%),
    radial-gradient(circle at 22% 18%, rgba(109, 156, 255, 0.06), transparent 18%),
    rgba(255, 255, 255, 0.02);
}

.system-body .system-map-chamber::before,
.system-body .system-map-chamber::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.system-body .system-map-chamber::before {
  left: 26%;
  right: 20%;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(114,240,222,0.16), rgba(255,255,255,0));
}

.system-body .system-map-chamber::after {
  left: 50%;
  top: 16%;
  bottom: 16%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(114,240,222,0.14), rgba(255,255,255,0));
}

.system-body .system-map-nucleus,
.system-body .system-map-node {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(8, 14, 24, 0.4);
}

.system-body .system-map-nucleus {
  grid-column: 5 / 9;
  grid-row: 2 / 4;
  min-height: 220px;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.12), transparent 56%),
    rgba(8, 14, 24, 0.48);
}

.system-body .system-map-nucleus h3 {
  font-size: 2rem;
}

.system-body .map-node-bazi     { grid-column: 1 / 5;  grid-row: 1; }
.system-body .map-node-coach    { grid-column: 9 / 13; grid-row: 1; }
.system-body .map-node-diary    { grid-column: 1 / 5;  grid-row: 2; }
.system-body .map-node-astral   { grid-column: 9 / 13; grid-row: 2; }
.system-body .map-node-privacy  { grid-column: 1 / 5;  grid-row: 3; }
.system-body .map-node-biotwin  { grid-column: 9 / 13; grid-row: 3; }
.system-body .map-node-practices { grid-column: 4 / 10; grid-row: 4; }

.system-body .system-relations-chamber {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.04), transparent 28%),
    rgba(255, 255, 255, 0.02);
}

.system-body .system-relations-chamber::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: calc(50% + 1px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(114,240,222,0.16), rgba(255,255,255,0));
  pointer-events: none;
}

.system-body .system-relation-lane {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 26px 24px;
}

.system-body .system-relation-lane + .system-relation-lane {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.system-body .relation-index {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.system-body .system-relation-lane h3 {
  font-size: 2.05rem;
  line-height: 1.08;
}

.system-body .system-trust-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  column-gap: 32px;
  row-gap: 12px;
  max-width: none;
  align-items: start;
}

.system-body .system-trust-chamber {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.system-body .system-trust-core,
.system-body .system-trust-signal {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 14, 24, 0.34);
}

.system-body .system-trust-core {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 14%, rgba(114,240,222,0.08), transparent 28%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.38));
}

.system-body .system-trust-core strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.3;
}

.system-body .system-trust-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.system-body .system-trust-signal {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
}

.system-body .system-trust-signal .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--accent);
  font-size: 20px;
}

/* Cronotipo flagship */

.chronotype-body .chronotype-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.chronotype-body .chronotype-hero-stage,
.chronotype-body .chronotype-offset-stage,
.chronotype-body .chronotype-practice-stage,
.chronotype-body .chronotype-profiles-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.95) 0%, rgba(7, 12, 21, 0.88) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.chronotype-body .chronotype-hero-stage,
.chronotype-body .chronotype-offset-stage,
.chronotype-body .chronotype-practice-stage,
.chronotype-body .chronotype-profiles-stage {
  padding: clamp(30px, 4vw, 56px);
}

.chronotype-body .chronotype-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1.06fr);
  gap: 40px;
  min-height: 760px;
}

.chronotype-body .chronotype-hero-stage::before,
.chronotype-body .chronotype-offset-stage::before,
.chronotype-body .chronotype-practice-stage::before,
.chronotype-body .chronotype-profiles-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chronotype-body .chronotype-hero-stage::before {
  background:
    radial-gradient(circle at 72% 34%, rgba(114, 240, 222, 0.12), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(245, 158, 11, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.02), transparent 32%, transparent 72%, rgba(255,255,255,0.02));
}

.chronotype-body .chronotype-offset-stage::before {
  background:
    radial-gradient(circle at 76% 18%, rgba(245, 158, 11, 0.1), transparent 22%),
    radial-gradient(circle at 24% 74%, rgba(114, 240, 222, 0.08), transparent 22%);
}

.chronotype-body .chronotype-practice-stage::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(114, 240, 222, 0.1), transparent 22%),
    radial-gradient(circle at 82% 74%, rgba(87, 123, 255, 0.1), transparent 24%);
}

.chronotype-body .chronotype-profiles-stage::before {
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.05), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(245, 158, 11, 0.08), transparent 18%);
}

.chronotype-body .chronotype-hero-copy,
.chronotype-body .chronotype-hero-field,
.chronotype-body .chronotype-stage-copy,
.chronotype-body .chronotype-shift-chamber,
.chronotype-body .chronotype-caseboard,
.chronotype-body .chronotype-profiles-chamber {
  position: relative;
  z-index: 1;
}

.chronotype-body .chronotype-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 34rem;
}

.chronotype-body .chronotype-hero-copy h1,
.chronotype-body .chronotype-stage-copy h2 {
  text-wrap: balance;
}

.chronotype-body .chronotype-hero-copy h1 {
  max-width: 10.5ch;
  font-size: clamp(3.45rem, 5vw, 5.25rem);
  line-height: 0.92;
}

.chronotype-body .chronotype-hero-text {
  max-width: 31rem;
  color: var(--text-soft);
}

.chronotype-body .chronotype-hero-note {
  color: #d6def8;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronotype-body .chronotype-hero-actions,
.chronotype-body .chronotype-case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chronotype-body .chronotype-hero-field {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.08), transparent 42%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.4));
  box-shadow: inset 0 0 0 1px rgba(114,240,222,0.04);
}

.chronotype-body .chronotype-field-orbit,
.chronotype-body .chronotype-field-glow {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.chronotype-body .chronotype-field-orbit {
  border: 1px solid rgba(255,255,255,0.06);
}

.chronotype-body .chronotype-field-glow {
  filter: blur(20px);
}

.chronotype-body .chronotype-field-orbit.orbit-a {
  width: 86%;
  aspect-ratio: 1;
  left: 7%;
  top: 7%;
}

.chronotype-body .chronotype-field-orbit.orbit-b {
  width: 58%;
  aspect-ratio: 1;
  left: 21%;
  top: 23%;
}

.chronotype-body .chronotype-field-orbit.orbit-c {
  width: 26%;
  aspect-ratio: 1;
  right: 9%;
  bottom: 12%;
}

.chronotype-body .chronotype-field-glow.glow-a {
  width: 44%;
  aspect-ratio: 1;
  left: 52%;
  top: 16%;
  background: radial-gradient(circle, rgba(114,240,222,0.18), transparent 68%);
}

.chronotype-body .chronotype-field-glow.glow-b {
  width: 34%;
  aspect-ratio: 1;
  left: 8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(245,158,11,0.16), transparent 68%);
}

.chronotype-body .chronotype-solar-anchor {
  position: absolute;
  top: 32px;
  left: 32px;
  display: grid;
  gap: 8px;
  min-width: 148px;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 12, 20, 0.54);
  backdrop-filter: blur(14px);
}

.chronotype-body .chronotype-kicker,
.chronotype-body .shift-offset,
.chronotype-body .case-profile,
.chronotype-body .profile-name {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chronotype-body .profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  display: block;
  border: 2px solid rgba(114, 240, 222, 0.18);
}

.chronotype-body .chronotype-solar-anchor strong {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.chronotype-body .chronotype-solar-anchor small,
.chronotype-body .chronotype-lane-head small,
.chronotype-body .chronotype-field-legend,
.chronotype-body .chronotype-shift-core small {
  color: var(--text-soft);
}

.chronotype-body .chronotype-offset-stack {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: grid;
  gap: 14px;
}

.chronotype-body .chronotype-offset-lane {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 12, 20, 0.36);
  backdrop-filter: blur(14px);
}

.chronotype-body .chronotype-lane-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.chronotype-body .chronotype-lane-head span {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text);
}

.chronotype-body .chronotype-lane-track {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.04) 33%,
      rgba(114,240,222,0.14) 54%,
      rgba(255,255,255,0.04) 78%,
      rgba(255,255,255,0.08) 100%);
  overflow: hidden;
}

.chronotype-body .chronotype-lane-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      transparent 0 16%,
      rgba(255,255,255,0.12) 16% 17%,
      transparent 17% 49%,
      rgba(255,255,255,0.18) 49% 50%,
      transparent 50% 82%,
      rgba(255,255,255,0.12) 82% 83%,
      transparent 83% 100%);
}

.chronotype-body .chronotype-lane-marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04), 0 0 18px currentColor;
  animation: chronotypeDrift 4.6s ease-in-out infinite;
}

.chronotype-body .lane-lark .chronotype-lane-marker {
  left: 34%;
  color: #ffbc57;
  background: #ffbc57;
}

.chronotype-body .lane-mid .chronotype-lane-marker {
  left: 51%;
  color: #72f0de;
  background: #72f0de;
  animation-delay: -1s;
}

.chronotype-body .lane-owl .chronotype-lane-marker {
  left: 68%;
  color: #7ea6ff;
  background: #7ea6ff;
  animation-delay: -2s;
}

.chronotype-body .chronotype-offset-lane p {
  max-width: 40ch;
  font-size: 0.95rem;
}

.chronotype-body .chronotype-field-legend {
  position: absolute;
  top: 132px;
  right: 32px;
  display: flex;
  gap: 16px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chronotype-body .chronotype-stage-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  column-gap: 32px;
  row-gap: 12px;
  align-items: start;
}

.chronotype-body .chronotype-stage-copy .eyebrow {
  grid-column: 1 / -1;
}

.chronotype-body .chronotype-stage-copy h2 {
  grid-column: 1;
  margin-top: 12px;
  max-width: 13.8ch;
  font-size: clamp(2.95rem, 4.3vw, 4.3rem);
}

.chronotype-body .chronotype-stage-copy p:last-child {
  grid-column: 2;
  margin-top: 18px;
  max-width: 34ch;
  color: var(--text-soft);
}

.chronotype-body .chronotype-shift-chamber {
  position: relative;
  min-height: 520px;
  margin-top: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.08), transparent 34%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}

.chronotype-body .chronotype-shift-chamber::before,
.chronotype-body .chronotype-shift-chamber::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.chronotype-body .chronotype-shift-chamber::before {
  inset: 12% 20%;
}

.chronotype-body .chronotype-shift-chamber::after {
  inset: 26% 34%;
}

.chronotype-body .chronotype-shift-core,
.chronotype-body .chronotype-shift-node,
.chronotype-body .chronotype-shift-note {
  position: absolute;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 12, 20, 0.34);
  backdrop-filter: blur(14px);
}

.chronotype-body .chronotype-shift-core {
  left: 50%;
  top: 50%;
  width: min(320px, 58%);
  min-height: 220px;
  padding: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.12), rgba(7,12,20,0.2) 52%, rgba(7,12,20,0.38) 100%);
}

.chronotype-body .chronotype-shift-core strong {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
}

.chronotype-body .chronotype-shift-node {
  width: min(260px, 36%);
  padding: 20px 18px;
  border-radius: 24px;
}

.chronotype-body .shift-lark {
  top: 11%;
  left: 6%;
  border-left: 3px solid #ffbc57;
}
.chronotype-body .shift-lark .shift-offset { color: #ffbc57; }

.chronotype-body .shift-mid {
  right: 5%;
  top: 24%;
  border-left: 3px solid #72f0de;
}
.chronotype-body .shift-mid .shift-offset { color: #72f0de; }

.chronotype-body .shift-owl {
  left: 14%;
  bottom: 13%;
  border-left: 3px solid #7ea6ff;
}
.chronotype-body .shift-owl .shift-offset { color: #7ea6ff; }

.chronotype-body .chronotype-shift-node strong,
.chronotype-body .chronotype-profile-node strong {
  font-size: 1.28rem;
  line-height: 1.18;
}

.chronotype-body .chronotype-shift-note {
  right: 6%;
  bottom: 10%;
  width: min(310px, 38%);
  padding: 18px 18px 18px 52px;
  border-radius: 24px;
}

.chronotype-body .chronotype-shift-note .material-icons {
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--accent);
}

.chronotype-body .chronotype-caseboard {
  margin-top: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 24% 14%, rgba(114,240,222,0.08), transparent 26%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.chronotype-body .chronotype-casehead {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 26px 0;
}

.chronotype-body .chronotype-case-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 94px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 1.72rem;
  font-weight: 700;
}

.chronotype-body .chronotype-case-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
}

.chronotype-body .chronotype-case-column {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 26px 22px;
}

.chronotype-body .chronotype-case-column + .chronotype-case-column {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.chronotype-body .chronotype-case-column.is-active {
  background: rgba(255,255,255,0.025);
}

.chronotype-body .case-line {
  display: grid;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chronotype-body .case-profile {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
}

/* Chronotype accent colors on case columns */
.chronotype-body .chronotype-case-column:nth-child(1) .case-profile { color: #ffbc57; }
.chronotype-body .chronotype-case-column:nth-child(2) .case-profile { color: #72f0de; }
.chronotype-body .chronotype-case-column:nth-child(3) .case-profile { color: #7ea6ff; }

.chronotype-body .case-line span {
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronotype-body .case-line strong {
  font-size: 1.06rem;
  line-height: 1.5;
}

.chronotype-body .chronotype-case-actions {
  padding: 0 26px 24px;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.chronotype-body .chronotype-profiles-chamber {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.06), transparent 38%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}

.chronotype-body .chronotype-profile-node {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 12px;
  min-height: 240px;
  padding: 28px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.chronotype-body .chronotype-profile-node p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.chronotype-body .profile-lark { border-top: 3px solid rgba(255, 188, 87, 0.5); }
.chronotype-body .profile-lark .profile-name { color: #ffbc57; }
.chronotype-body .profile-lark .profile-img { border-color: rgba(255, 188, 87, 0.35); }

.chronotype-body .profile-mid {
  border-top: 3px solid rgba(114, 240, 222, 0.5);
  background:
    radial-gradient(circle at 50% 12%, rgba(114,240,222,0.08), transparent 26%),
    rgba(255,255,255,0.025);
}
.chronotype-body .profile-mid .profile-name { color: #72f0de; }
.chronotype-body .profile-mid .profile-img { border-color: rgba(114, 240, 222, 0.35); }

.chronotype-body .profile-owl { border-top: 3px solid rgba(126, 166, 255, 0.5); }
.chronotype-body .profile-owl .profile-name { color: #7ea6ff; }
.chronotype-body .profile-owl .profile-img { border-color: rgba(126, 166, 255, 0.35); }

.chronotype-body .profile-irregular {
  grid-column: 1 / -1;
  min-height: 0;
  grid-template-columns: minmax(0, 0.74fr) minmax(220px, 0.56fr);
  align-items: start;
  gap: 18px 24px;
  border-top: 3px solid rgba(192, 132, 252, 0.5);
  background:
    radial-gradient(circle at 84% 22%, rgba(126, 166, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}
.chronotype-body .profile-irregular .profile-name { color: #c084fc; }
.chronotype-body .profile-irregular .profile-img { border-color: rgba(192, 132, 252, 0.35); }

.chronotype-body .profile-irregular strong,
.chronotype-body .profile-irregular p {
  max-width: 40rem;
}

.chronotype-body .profile-link {
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(114,240,222,0.16);
  background: rgba(114,240,222,0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.chronotype-body .profile-link:hover {
  transform: translateY(-1px);
  background: rgba(114,240,222,0.12);
  border-color: rgba(114,240,222,0.24);
}

@keyframes chronotypeDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(calc(-50% + 3px), -50%) scale(1.08); }
}

/* Chronotype test */

.chronotype-test-body .chronotype-test-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.chronotype-test-body .chronotype-test-stage,
.chronotype-test-body .chronotype-test-shell,
.chronotype-test-body .chronotype-test-result {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.95) 0%, rgba(7, 12, 21, 0.88) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.chronotype-test-body .chronotype-test-stage,
.chronotype-test-body .chronotype-test-shell,
.chronotype-test-body .chronotype-test-result {
  padding: clamp(30px, 4vw, 56px);
}

.chronotype-test-body .chronotype-test-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(380px, 0.9fr);
  gap: 34px;
  min-height: 640px;
}

.chronotype-test-body .chronotype-test-stage::before,
.chronotype-test-body .chronotype-test-shell::before,
.chronotype-test-body .chronotype-test-result::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chronotype-test-body .chronotype-test-stage::before {
  background:
    radial-gradient(circle at 76% 22%, rgba(114,240,222,0.12), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(126,166,255,0.08), transparent 22%);
}

.chronotype-test-body .chronotype-test-shell::before,
.chronotype-test-body .chronotype-test-result::before {
  background:
    radial-gradient(circle at 20% 16%, rgba(114,240,222,0.08), transparent 24%),
    radial-gradient(circle at 84% 74%, rgba(245,158,11,0.08), transparent 22%);
}

.chronotype-test-body .chronotype-test-copy,
.chronotype-test-body .chronotype-test-visual,
.chronotype-test-body .chronotype-test-form,
.chronotype-test-body .chronotype-test-result-card {
  position: relative;
  z-index: 1;
}

.chronotype-test-body .chronotype-test-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 34rem;
}

.chronotype-test-body .chronotype-test-copy h1,
.chronotype-test-body .chronotype-test-section-copy h2,
.chronotype-test-body .chronotype-test-result-card h2 {
  text-wrap: balance;
}

.chronotype-test-body .chronotype-test-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 5vw, 5.15rem);
  line-height: 0.92;
}

.chronotype-test-body .chronotype-test-note {
  color: #d6def8;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronotype-test-body .chronotype-test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chronotype-test-body .chronotype-test-visual {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.08), transparent 42%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.4));
}

.chronotype-test-body .test-visual-ring,
.chronotype-test-body .test-visual-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.chronotype-test-body .test-visual-ring {
  border: 1px solid rgba(255,255,255,0.06);
}

.chronotype-test-body .test-visual-glow {
  filter: blur(18px);
}

.chronotype-test-body .test-visual-ring.ring-a {
  width: 82%;
  aspect-ratio: 1;
  left: 9%;
  top: 9%;
}

.chronotype-test-body .test-visual-ring.ring-b {
  width: 54%;
  aspect-ratio: 1;
  left: 23%;
  top: 24%;
}

.chronotype-test-body .test-visual-glow.glow-a {
  width: 38%;
  aspect-ratio: 1;
  left: 10%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(245,158,11,0.16), transparent 68%);
}

.chronotype-test-body .test-visual-glow.glow-b {
  width: 40%;
  aspect-ratio: 1;
  right: 10%;
  top: 14%;
  background: radial-gradient(circle, rgba(114,240,222,0.16), transparent 68%);
}

.chronotype-test-body .test-visual-anchor {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(240px, 46%);
  min-height: 160px;
  padding: 24px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.12), rgba(7,12,20,0.22) 56%, rgba(7,12,20,0.38) 100%);
}

.chronotype-test-body .test-visual-anchor strong {
  font-size: 1.8rem;
  line-height: 1;
}

.chronotype-test-body .test-visual-chip {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 126px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 12, 20, 0.38);
  backdrop-filter: blur(12px);
}

.chronotype-test-body .chip-lark { top: 10%; left: 8%; }
.chronotype-test-body .chip-mid { top: 18%; right: 10%; }
.chronotype-test-body .chip-owl { bottom: 16%; left: 14%; }
.chronotype-test-body .chip-irregular { bottom: 12%; right: 8%; }

.chronotype-test-body .test-visual-chip span {
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronotype-test-body .test-visual-chip strong {
  font-size: 0.96rem;
  line-height: 1.28;
}

.chronotype-test-body .chronotype-test-shell {
  display: grid;
  gap: 22px;
}

.chronotype-test-body .chronotype-test-section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  column-gap: 32px;
  row-gap: 12px;
  align-items: start;
}

.chronotype-test-body .chronotype-test-section-copy .eyebrow {
  grid-column: 1 / -1;
}

.chronotype-test-body .chronotype-test-section-copy h2 {
  max-width: 13.2ch;
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.chronotype-test-body .chronotype-test-section-copy p:last-child {
  grid-column: 2;
  margin-top: 18px;
  max-width: 34ch;
}

.chronotype-test-body .chronotype-test-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.chronotype-test-body .chronotype-progress-track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.chronotype-test-body .chronotype-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #72f0de, #7ea6ff);
  transition: width 220ms ease;
}

.chronotype-test-body .chronotype-test-form {
  display: grid;
  gap: 18px;
}

.chronotype-test-body .chronotype-question-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}

.chronotype-test-body .chronotype-question-index {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chronotype-test-body .chronotype-question-card h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.1;
}

.chronotype-test-body .chronotype-options {
  display: grid;
  gap: 12px;
}

.chronotype-test-body .chronotype-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 62px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.chronotype-test-body .chronotype-option:hover,
.chronotype-test-body .chronotype-option.is-selected {
  transform: translateY(-1px);
  border-color: rgba(114,240,222,0.22);
  background: rgba(114,240,222,0.07);
}

.chronotype-test-body .chronotype-option-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.chronotype-test-body .chronotype-question-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.chronotype-test-body .chronotype-test-result {
  display: none;
}

.chronotype-test-body .chronotype-test-result.is-visible {
  display: block;
}

.chronotype-test-body .chronotype-test-result-card {
  display: grid;
  gap: 18px;
}

.chronotype-test-body .chronotype-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(114,240,222,0.16);
  background: rgba(114,240,222,0.08);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronotype-test-body .chronotype-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.chronotype-test-body .chronotype-result-visual {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.06), transparent 42%),
    rgba(255,255,255,0.02);
}

.chronotype-test-body .chronotype-result-track {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.04) 26%,
      rgba(114,240,222,0.14) 50%,
      rgba(255,255,255,0.04) 74%,
      rgba(255,255,255,0.08) 100%);
  overflow: visible;
}

.chronotype-test-body .chronotype-result-track::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg,
      transparent 0 18%,
      rgba(255,255,255,0.12) 18% 19%,
      transparent 19% 49%,
      rgba(255,255,255,0.18) 49% 50%,
      transparent 50% 81%,
      rgba(255,255,255,0.12) 81% 82%,
      transparent 82% 100%);
}

.chronotype-test-body .result-track-label {
  position: absolute;
  top: -24px;
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chronotype-test-body .label-lark { left: 0; }
.chronotype-test-body .label-mid { left: 50%; transform: translateX(-50%); }
.chronotype-test-body .label-owl { right: 0; }

.chronotype-test-body .chronotype-result-marker {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.04), 0 0 18px currentColor;
  background: currentColor;
}

.chronotype-test-body .chronotype-result-marker.pos-lark {
  left: 22%;
  color: #ffbc57;
}

.chronotype-test-body .chronotype-result-marker.pos-mid {
  left: 50%;
  color: #72f0de;
}

.chronotype-test-body .chronotype-result-marker.pos-owl {
  left: 78%;
  color: #7ea6ff;
}

.chronotype-test-body .chronotype-result-marker.pos-irregular {
  left: 50%;
  color: #c28cff;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    -16px 0 14px rgba(194,140,255,0.12),
    16px 0 14px rgba(194,140,255,0.12),
    0 0 18px currentColor;
}

.chronotype-test-body .chronotype-result-visual-note {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.chronotype-test-body .chronotype-result-metric {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.chronotype-test-body .chronotype-result-metric span {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chronotype-test-body .chronotype-result-metric strong {
  font-size: 1.2rem;
}

.chronotype-test-body .chronotype-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Practices flagship */

.practices-body .practices-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.practices-body .practices-hero-stage,
.practices-body .practices-families-stage,
.practices-body .practices-guidance-stage,
.practices-body .practices-usage-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(10, 18, 30, 0.95) 0%, rgba(7, 12, 21, 0.88) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.practices-body .practices-hero-stage,
.practices-body .practices-families-stage,
.practices-body .practices-guidance-stage,
.practices-body .practices-usage-stage {
  padding: clamp(30px, 4vw, 56px);
}

.practices-body .practices-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1.06fr);
  gap: 40px;
  min-height: 760px;
}

.practices-body .practices-hero-stage::before,
.practices-body .practices-families-stage::before,
.practices-body .practices-guidance-stage::before,
.practices-body .practices-usage-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.practices-body .practices-hero-stage::before {
  background:
    radial-gradient(circle at 72% 30%, rgba(114,240,222,0.12), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(126,166,255,0.08), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,0.02), transparent 32%, transparent 72%, rgba(255,255,255,0.02));
}

.practices-body .practices-families-stage::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(114,240,222,0.08), transparent 20%),
    radial-gradient(circle at 84% 76%, rgba(126,166,255,0.08), transparent 22%);
}

.practices-body .practices-guidance-stage::before {
  background:
    radial-gradient(circle at 52% 14%, rgba(114,240,222,0.08), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(16,185,129,0.08), transparent 18%);
}

.practices-body .practices-usage-stage::before {
  background:
    radial-gradient(circle at 82% 14%, rgba(245,158,11,0.08), transparent 22%),
    radial-gradient(circle at 16% 78%, rgba(114,240,222,0.08), transparent 18%);
}

.practices-body .practices-hero-copy,
.practices-body .practices-hero-field,
.practices-body .practices-stage-copy,
.practices-body .practices-families-grid,
.practices-body .practices-guidance-chamber,
.practices-body .practices-usage-board {
  position: relative;
  z-index: 1;
}

.practices-body .practices-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 35rem;
}

.practices-body .practices-hero-copy h1,
.practices-body .practices-stage-copy h2 {
  text-wrap: balance;
}

.practices-body .practices-hero-copy h1 {
  max-width: 11.6ch;
  font-size: clamp(3.45rem, 5.05vw, 5.25rem);
  line-height: 0.92;
}

.practices-body .practices-hero-text {
  max-width: 31rem;
}

.practices-body .practices-hero-note {
  color: #d6def8;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.practices-body .practices-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.practices-body .practices-hero-field {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.08), transparent 42%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.4));
  box-shadow: inset 0 0 0 1px rgba(114,240,222,0.04);
}

.practices-body .practices-field-orbit,
.practices-body .practices-field-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.practices-body .practices-field-orbit {
  border: 1px solid rgba(255,255,255,0.06);
}

.practices-body .practices-field-glow {
  filter: blur(18px);
}

.practices-body .orbit-a {
  width: 84%;
  aspect-ratio: 1;
  left: 8%;
  top: 8%;
}

.practices-body .orbit-b {
  width: 58%;
  aspect-ratio: 1;
  left: 21%;
  top: 23%;
}

.practices-body .orbit-c {
  width: 28%;
  aspect-ratio: 1;
  right: 11%;
  bottom: 10%;
}

.practices-body .glow-a {
  width: 38%;
  aspect-ratio: 1;
  left: 10%;
  bottom: 14%;
  background: radial-gradient(circle, rgba(114,240,222,0.16), transparent 68%);
}

.practices-body .glow-b {
  width: 34%;
  aspect-ratio: 1;
  right: 8%;
  top: 16%;
  background: radial-gradient(circle, rgba(126,166,255,0.16), transparent 68%);
}

.practices-body .practices-field-core,
.practices-body .practices-field-node {
  position: absolute;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 12, 20, 0.36);
  backdrop-filter: blur(14px);
}

.practices-body .practices-field-core {
  left: 50%;
  top: 50%;
  width: min(300px, 58%);
  min-height: 220px;
  padding: 26px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.12), rgba(7,12,20,0.22) 56%, rgba(7,12,20,0.38) 100%);
}

.practices-body .practices-field-kicker,
.practices-body .family-kicker,
.practices-body .guidance-kicker,
.practices-body .usage-kicker {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practices-body .practices-field-core strong {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.18;
}

.practices-body .practices-field-node {
  width: min(220px, 34%);
  padding: 16px 16px 16px 48px;
  border-radius: 22px;
}

.practices-body .practices-field-node .material-icons {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--accent);
  font-size: 22px;
}

.practices-body .node-breath { left: 8%; top: 14%; }
.practices-body .node-audio { right: 8%; top: 24%; }
.practices-body .node-move { left: 13%; bottom: 12%; }

.practices-body .practices-stage-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  column-gap: 32px;
  row-gap: 12px;
  align-items: start;
}

.practices-body .practices-stage-copy .eyebrow {
  grid-column: 1 / -1;
}

.practices-body .practices-stage-copy h2 {
  grid-column: 1;
  margin-top: 12px;
  max-width: 20ch;
  font-size: clamp(2.95rem, 4.3vw, 4.3rem);
}

.practices-body .practices-stage-copy p:last-child {
  grid-column: 2;
  margin-top: 18px;
  max-width: 34ch;
}

.practices-body .practices-families-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.practices-body .practice-family {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}

.practices-body .family-breath {
  /* no row span — equal 3-col grid */
}

.practices-body .family-visual {
  position: relative;
  min-height: 154px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.practices-body .family-visual-breath {
  display: grid;
  place-items: center;
}

.practices-body .breath-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(114,240,222,0.16);
  animation: practiceBreath 5.6s ease-in-out infinite;
}

.practices-body .ring-outer { width: 72%; aspect-ratio: 1; }
.practices-body .ring-mid { width: 48%; aspect-ratio: 1; animation-delay: -1.4s; }
.practices-body .ring-core { width: 22%; aspect-ratio: 1; animation-delay: -2.4s; }

.practices-body .family-visual-move {
  display: grid;
  place-items: center;
}

.practices-body .move-arc,
.practices-body .move-dot {
  position: absolute;
}

.practices-body .move-arc {
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.practices-body .arc-a {
  width: 54%;
  aspect-ratio: 1;
  border-top-color: rgba(114,240,222,0.24);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-18deg);
}

.practices-body .arc-b {
  width: 72%;
  aspect-ratio: 1;
  border-bottom-color: rgba(126,166,255,0.22);
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(12deg);
}

.practices-body .move-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
  animation: practiceMove 4.4s ease-in-out infinite;
}

.practices-body .dot-a {
  left: 34%;
  top: 26%;
  color: #72f0de;
  background: #72f0de;
}

.practices-body .dot-b {
  right: 34%;
  top: 48%;
  color: #7ea6ff;
  background: #7ea6ff;
  animation-delay: -1.4s;
}

.practices-body .dot-c {
  left: 48%;
  bottom: 20%;
  color: #10b981;
  background: #10b981;
  animation-delay: -2.2s;
}

.practices-body .practice-family strong,
.practices-body .guidance-lane h3,
.practices-body .usage-node strong {
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.18;
}

.practices-body .practices-guidance-chamber {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  margin-top: 28px;
  align-items: stretch;
}

.practices-body .guidance-lane,
.practices-body .guidance-core,
.practices-body .usage-node {
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}

.practices-body .guidance-lane {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 320px;
  padding: 24px 22px;
  border-radius: 28px;
}

.practices-body .guidance-core {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  width: 156px;
  padding: 22px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(114,240,222,0.1), rgba(8,14,24,0.3) 72%);
}

.practices-body .guidance-core .material-icons {
  font-size: 28px;
  color: var(--accent);
}

.practices-body .guidance-core strong {
  max-width: 10ch;
  font-size: 0.94rem;
  line-height: 1.5;
  text-align: center;
}

.practices-body .guidance-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.practices-body .guidance-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.practices-body .guidance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.practices-body .practices-usage-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.practices-body .usage-node {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px 22px;
  border-radius: 26px;
}

.coach-body .coach-hero-linknote {
  margin-top: 8px;
  max-width: 44ch;
  color: rgba(219, 224, 239, 0.72);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

@keyframes practiceBreath {
  0%, 100% { transform: scale(0.94); opacity: 0.48; }
  50% { transform: scale(1.04); opacity: 0.88; }
}

@keyframes practiceMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4px, -6px) scale(1.08); }
}

/* Practices overrides v31 */
.practices-body .practices-stage-copy {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 1fr);
  column-gap: 44px;
  align-items: center;
}

.practices-body .practices-stage-copy h2 {
  max-width: 20ch;
}

.practices-body .practices-stage-copy p:last-child {
  max-width: none;
  margin-top: 0;
}

.practices-body .breath-demo-sphere {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, rgba(245,255,252,0.96), rgba(139,242,232,0.86) 28%, rgba(80,179,224,0.4) 60%, rgba(8,14,24,0) 100%);
  box-shadow: 0 0 26px rgba(114,240,222,0.34), 0 0 88px rgba(126,166,255,0.14);
  animation: practiceBreathOrb 8s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.practices-body .breath-demo-sphere::before,
.practices-body .breath-demo-sphere::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.practices-body .breath-demo-sphere::before {
  width: 138px;
  height: 138px;
  border: 1px solid rgba(114,240,222,0.12);
  animation: practiceBreathHalo 8s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.practices-body .breath-demo-sphere::after {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(126,166,255,0.08);
  animation: practiceBreathHalo 8s cubic-bezier(0.42, 0, 0.2, 1) infinite -0.24s;
}

.practices-body .family-audio .family-visual {
  min-height: 172px;
  background:
    radial-gradient(circle at 50% 50%, rgba(126,166,255,0.1), rgba(8,14,24,0.04) 48%, rgba(8,14,24,0) 78%),
    rgba(255,255,255,0.02);
}

.practices-body .audio-sine {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 22px rgba(114,240,222,0.42);
  animation: practiceAudioSineWave 5.8s linear infinite;
}

.practices-body .particle-1 { left: 6%; top: 54%; }
.practices-body .particle-2 { left: 14%; top: 44%; animation-delay: -0.22s; }
.practices-body .particle-3 { left: 22%; top: 34%; animation-delay: -0.44s; }
.practices-body .particle-4 { left: 30%; top: 26%; animation-delay: -0.66s; }
.practices-body .particle-5 {
  left: 38%;
  top: 24%;
  width: 14px;
  height: 14px;
  background: rgba(126,166,255,0.88);
  box-shadow: 0 0 24px rgba(126,166,255,0.46);
  animation-delay: -0.88s;
}
.practices-body .particle-6 { left: 46%; top: 34%; animation-delay: -1.1s; }
.practices-body .particle-7 { left: 54%; top: 48%; animation-delay: -1.32s; }
.practices-body .particle-8 { left: 62%; top: 62%; animation-delay: -1.54s; }
.practices-body .particle-9 { left: 70%; top: 74%; animation-delay: -1.76s; }
.practices-body .particle-10 {
  left: 78%;
  top: 70%;
  width: 14px;
  height: 14px;
  background: rgba(126,166,255,0.88);
  box-shadow: 0 0 24px rgba(126,166,255,0.46);
  animation-delay: -1.98s;
}
.practices-body .particle-11 { left: 86%; top: 54%; animation-delay: -2.2s; }
.practices-body .particle-12 { left: 94%; top: 44%; animation-delay: -2.42s; }

@keyframes practiceBreathOrb {
  0%, 24.999% { transform: scale(0.78); opacity: 0.74; }
  25%, 49.999% { transform: scale(1.08); opacity: 1; }
  50%, 74.999% { transform: scale(0.78); opacity: 0.8; }
  75%, 100% { transform: scale(0.78); opacity: 0.72; }
}

@keyframes practiceBreathHalo {
  0%, 24.999% { transform: translate(-50%, -50%) scale(0.82); opacity: 0.18; }
  25%, 49.999% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.34; }
  50%, 74.999% { transform: translate(-50%, -50%) scale(0.82); opacity: 0.22; }
  75%, 100% { transform: translate(-50%, -50%) scale(0.82); opacity: 0.16; }
}

@keyframes practiceAudioSineWave {
  0% { transform: translate3d(18px, 0, 0) scale(0.88); opacity: 0.42; }
  50% { transform: translate3d(-6px, -8px, 0) scale(1.08); opacity: 0.98; }
  100% { transform: translate3d(-28px, 0, 0) scale(0.9); opacity: 0.46; }
}

/* Practices overrides v32b */
.practices-body .family-breath {
  align-content: start;
}

.practices-body .breath-demo {
  display: grid;
  place-items: center;
  min-height: 196px;
  margin-top: 8px;
}

.practices-body .breath-demo-sphere {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(160,245,236,0.9) 0%, rgba(114,240,222,0.62) 34%, rgba(126,166,255,0.18) 62%, rgba(8,14,24,0) 100%);
  box-shadow:
    0 0 24px rgba(114,240,222,0.26),
    0 0 96px rgba(126,166,255,0.16);
  animation: practiceBreathPure 4s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.practices-body .breath-demo-sphere::before,
.practices-body .breath-demo-sphere::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.practices-body .breath-demo-sphere::before {
  width: 156px;
  height: 156px;
  border: 1px solid rgba(114,240,222,0.1);
  animation: practiceBreathPureHalo 4s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.practices-body .breath-demo-sphere::after {
  width: 214px;
  height: 214px;
  border: 1px solid rgba(126,166,255,0.06);
  animation: practiceBreathPureHalo 4s cubic-bezier(0.42, 0, 0.2, 1) infinite -0.16s;
}

.practices-body .family-audio .family-visual {
  min-height: 178px;
}

.practices-body .audio-wavefield {
  position: absolute;
  inset: 0;
  width: 120%;
  animation: practiceAudioStream 7.6s linear infinite;
}

.practices-body .audio-sine {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(114,240,222,0.92);
  box-shadow: 0 0 20px rgba(114,240,222,0.38);
  animation: practiceAudioPulse 2.8s ease-in-out infinite;
}

.practices-body .wavefield-a {
  left: -12%;
}

.practices-body .wavefield-b {
  left: -132%;
}

.practices-body .d1  { left: 4%;  top: 58%; animation-delay: -0.0s; }
.practices-body .d2  { left: 10%; top: 50%; animation-delay: -0.18s; }
.practices-body .d3  { left: 16%; top: 41%; animation-delay: -0.36s; }
.practices-body .d4  { left: 22%; top: 33%; animation-delay: -0.54s; }
.practices-body .d5  { left: 28%; top: 27%; animation-delay: -0.72s; }
.practices-body .d6  { left: 34%; top: 29%; animation-delay: -0.9s; }
.practices-body .d7  { left: 40%; top: 38%; animation-delay: -1.08s; }
.practices-body .d8  { left: 46%; top: 49%; animation-delay: -1.26s; }
.practices-body .d9  { left: 52%; top: 61%; animation-delay: -1.44s; }
.practices-body .d10 { left: 58%; top: 71%; animation-delay: -1.62s; }
.practices-body .d11 { left: 64%; top: 75%; animation-delay: -1.8s; }
.practices-body .d12 { left: 70%; top: 70%; animation-delay: -1.98s; }
.practices-body .d13 { left: 76%; top: 60%; animation-delay: -2.16s; }
.practices-body .d14 { left: 82%; top: 49%; animation-delay: -2.34s; }
.practices-body .d15 { left: 88%; top: 39%; animation-delay: -2.52s; }
.practices-body .d16 { left: 94%; top: 31%; animation-delay: -2.7s; }

.practices-body .d5,
.practices-body .d10,
.practices-body .d15 {
  width: 14px;
  height: 14px;
  background: rgba(126,166,255,0.92);
  box-shadow: 0 0 24px rgba(126,166,255,0.42);
}

@keyframes practiceBreathPure {
  0%, 100% { transform: scale(0.82); opacity: 0.74; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes practiceBreathPureHalo {
  0%, 100% { transform: translate(-50%, -50%) scale(0.82); opacity: 0.14; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.26; }
}

@keyframes practiceAudioStream {
  0% { transform: translateX(0); }
  100% { transform: translateX(120%); }
}

@keyframes practiceAudioPulse {
  0%, 100% { transform: scale(0.84); opacity: 0.42; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* BioGemello flagship */

.biotwin-body .biotwin-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.biotwin-body .biotwin-hero-stage,
.biotwin-body .biotwin-react-stage,
.biotwin-body .biotwin-formation-stage,
.biotwin-body .biotwin-resonance-stage {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(12, 12, 26, 0.94) 0%, rgba(8, 10, 20, 0.9) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.biotwin-body .biotwin-stage-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

/* BaZi flagship */
.bazi-body .bazi-page {
  display: grid;
  gap: 28px;
  padding-top: 22px;
}

.bazi-body .bazi-hero-stage,
.bazi-body .bazi-layer-stage,
.bazi-body .bazi-system-stage,
.bazi-body .bazi-example-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 225, 255, 0.1);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(12, 12, 26, 0.94) 0%, rgba(8, 10, 20, 0.9) 100%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
}

.bazi-body .bazi-hero-stage::before,
.bazi-body .bazi-layer-stage::before,
.bazi-body .bazi-system-stage::before,
.bazi-body .bazi-example-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bazi-body .bazi-hero-stage::before {
  background:
    radial-gradient(circle at 68% 30%, rgba(99, 102, 241, 0.16), transparent 24%),
    radial-gradient(circle at 24% 18%, rgba(114, 240, 222, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.02), transparent 30%, transparent 72%, rgba(255,255,255,0.02));
}

.bazi-body .bazi-layer-stage::before,
.bazi-body .bazi-system-stage::before,
.bazi-body .bazi-example-stage::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(114,240,222,0.07), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(99,102,241,0.1), transparent 24%);
}

.bazi-body .bazi-stage-copy,
.bazi-body .bazi-hero-copy,
.bazi-body .bazi-hero-field,
.bazi-body .bazi-layer-chamber,
.bazi-body .bazi-system-map,
.bazi-body .bazi-example-chamber {
  position: relative;
  z-index: 1;
}

.bazi-body .bazi-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1.02fr);
  gap: 40px;
  min-height: 760px;
  padding: clamp(30px, 4vw, 56px);
}

.bazi-body .bazi-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 30rem;
}

.bazi-body .bazi-hero-copy h1 {
  font-size: clamp(3.3rem, 4.85vw, 5.1rem);
  max-width: 8.4ch;
  line-height: 0.92;
}

.bazi-body .bazi-hero-text {
  max-width: 29rem;
}

.bazi-body .bazi-hero-note {
  color: #cfd5ff;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bazi-body .bazi-hero-actions,
.bazi-body .bazi-example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bazi-body .bazi-hero-field {
  min-height: 640px;
  border-radius: 34px;
  border: 1px solid rgba(196, 225, 255, 0.08);
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), rgba(8,10,20,0) 62%);
}

.bazi-body .bazi-field-grid,
.bazi-body .bazi-orbit,
.bazi-body .bazi-core-ring {
  position: absolute;
}

.bazi-body .bazi-field-grid {
  inset: 10% 12%;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.28;
}

.bazi-body .bazi-orbit {
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.bazi-body .orbit-a {
  inset: 16% 18%;
  transform: rotate(-10deg);
}

.bazi-body .orbit-b {
  inset: 28% 10% 12% 24%;
  transform: rotate(18deg);
}

.bazi-body .bazi-core-ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bazi-body .ring-a {
  width: 188px;
  height: 188px;
  border: 1px solid rgba(114,240,222,0.18);
}

.bazi-body .ring-b {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(99,102,241,0.14);
}

.bazi-body .bazi-core,
.bazi-body .bazi-node,
.bazi-body .bazi-layer-lane,
.bazi-body .bazi-layer-core,
.bazi-body .bazi-map-node,
.bazi-body .bazi-example-card,
.bazi-test-body .bazi-test-form-shell,
.bazi-test-body .bazi-test-result-card,
.bazi-test-body .bazi-test-pill,
.bazi-test-body .bazi-test-panel,
.bazi-test-body .bazi-test-guidance {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(11, 19, 33, 0.72), rgba(8, 14, 24, 0.34));
}

.bazi-body .bazi-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(280px, 56%);
  min-height: 196px;
  padding: 24px 22px;
  border-radius: 28px;
  transform: translate(-50%, -50%);
  display: grid;
  align-content: center;
  gap: 10px;
  text-align: center;
}

.bazi-body .bazi-core-kicker,
.bazi-body .bazi-lane-kicker,
.bazi-body .example-kicker,
.bazi-body .node-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,246,252,0.64);
}

.bazi-body .bazi-core strong {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 1;
}

.bazi-body .bazi-core small {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.bazi-body .bazi-node {
  position: absolute;
  display: grid;
  gap: 6px;
  width: clamp(152px, 24%, 178px);
  min-width: 0;
  padding: 14px 14px 16px;
  border-radius: 20px;
}

.bazi-body .node-day { left: 8%; top: 12%; }
.bazi-body .node-tone { right: 10%; top: 15%; }
.bazi-body .node-system { left: 10%; bottom: 12%; }

.bazi-body .bazi-stage-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  column-gap: 40px;
  row-gap: 12px;
  align-items: center;
  padding: 34px clamp(24px, 3vw, 38px) 0;
}

.bazi-body .bazi-stage-copy .eyebrow {
  grid-column: 1 / -1;
}

.bazi-body .bazi-stage-copy h2 {
  margin-top: 12px;
  max-width: 13.2ch;
  font-size: clamp(2.8rem, 4vw, 4.05rem);
}

.bazi-body .bazi-stage-copy p:last-child {
  max-width: 46ch;
}

.bazi-body .bazi-layer-chamber {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  padding: 28px clamp(24px, 3vw, 38px) clamp(24px, 3vw, 34px);
  align-items: stretch;
}

.bazi-body .bazi-layer-lane,
.bazi-body .bazi-map-node,
.bazi-body .bazi-example-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 22px;
  border-radius: 26px;
}

.bazi-body .bazi-layer-core {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  width: 168px;
  padding: 22px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,0.12), rgba(8,14,24,0.28) 72%);
}

.bazi-body .bazi-layer-core .material-icons {
  font-size: 28px;
  color: #a5b4fc;
}

.bazi-body .bazi-layer-core strong {
  max-width: 11ch;
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.45;
}

.bazi-body .bazi-system-map {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 28px clamp(24px, 3vw, 38px) clamp(24px, 3vw, 34px);
}

.bazi-body .map-clock { grid-column: 1 / 5; }
.bazi-body .map-chronotype { grid-column: 5 / 8; }
.bazi-body .map-bazi { grid-column: 8 / 13; }
.bazi-body .map-coach { grid-column: 3 / 7; }
.bazi-body .map-day { grid-column: 7 / 11; }

.bazi-body .bazi-example-chamber {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 0.84fr) minmax(0, 1.06fr);
  gap: 14px;
  padding: 28px clamp(24px, 3vw, 38px) clamp(24px, 3vw, 34px);
}

.bazi-body .card-guidance {
  background:
    radial-gradient(circle at 78% 22%, rgba(99,102,241,0.12), transparent 28%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.8), rgba(8, 14, 24, 0.38));
}

.bazi-test-body .bazi-test-page {
  display: grid;
  gap: 24px;
}

.bazi-test-body .bazi-test-stage,
.bazi-test-body .bazi-test-result {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(196, 225, 255, 0.08);
  background:
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.16), transparent 24%),
    radial-gradient(circle at 18% 28%, rgba(114, 240, 222, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.96), rgba(6, 10, 18, 0.9));
}

.bazi-test-body .bazi-test-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
}

.bazi-test-body .bazi-test-copy,
.bazi-test-body .bazi-test-form-shell,
.bazi-test-body .bazi-test-result-card {
  position: relative;
  z-index: 1;
}

.bazi-test-body .bazi-test-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 34rem;
}

.bazi-test-body .bazi-test-copy h1 {
  font-size: clamp(3.05rem, 4.4vw, 4.9rem);
  max-width: 9.8ch;
  line-height: 0.94;
}

.bazi-test-body .bazi-test-note,
.bazi-test-body .bazi-test-help {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfd5ff;
}

.bazi-test-body .bazi-test-form-shell {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border-radius: 26px;
}

.bazi-test-body .bazi-test-form {
  display: grid;
  gap: 14px;
}

.bazi-test-body .bazi-test-field {
  display: grid;
  gap: 10px;
}

.bazi-test-body .bazi-test-field span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,246,252,0.68);
}

.bazi-test-body .bazi-test-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 14, 24, 0.66);
  color: var(--text);
  font: inherit;
}

.bazi-test-body .bazi-test-result {
  display: none;
}

.bazi-test-body .bazi-test-result.is-visible {
  display: block;
}

.bazi-test-body .bazi-test-result-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
}

.bazi-test-body .bazi-test-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), rgba(8,10,20,0) 62%),
    linear-gradient(180deg, rgba(8, 14, 24, 0.42), rgba(8, 14, 24, 0.18));
}

.bazi-test-body .bazi-test-visual::before,
.bazi-test-body .bazi-test-visual::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.8;
}

.bazi-test-body .bazi-test-visual::before {
  width: 180px;
  height: 180px;
  left: 12%;
  top: 14%;
  background: radial-gradient(circle, rgba(114,240,222,0.16), transparent 72%);
  animation: baziVisualDriftA 9s ease-in-out infinite;
}

.bazi-test-body .bazi-test-visual::after {
  width: 220px;
  height: 220px;
  right: 10%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(99,102,241,0.16), transparent 72%);
  animation: baziVisualDriftB 11s ease-in-out infinite;
}

.bazi-test-body .bazi-test-visual-ring,
.bazi-test-body .bazi-test-visual-node,
.bazi-test-body .bazi-test-visual-core {
  position: absolute;
}

.bazi-test-body .bazi-test-visual-ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.08);
  transform-origin: center;
}

.bazi-test-body .bazi-test-visual .ring-a {
  width: 220px;
  height: 220px;
  border-color: rgba(114,240,222,0.16);
  animation: baziOrbitSpin 16s linear infinite;
}

.bazi-test-body .bazi-test-visual .ring-b {
  width: 320px;
  height: 320px;
  border-color: rgba(99,102,241,0.14);
  animation: baziOrbitSpinReverse 24s linear infinite;
}

.bazi-test-body .bazi-test-visual-core,
.bazi-test-body .bazi-test-visual-node {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(11, 19, 33, 0.76), rgba(8, 14, 24, 0.36));
}

.bazi-test-body .bazi-test-visual-core {
  left: 50%;
  top: 50%;
  width: min(240px, 58%);
  min-height: 144px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  transform: translate(-50%, -50%);
  align-content: center;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 16px 34px rgba(0,0,0,0.18),
    0 0 48px rgba(114,240,222,0.08);
  animation: baziCorePulse 6.5s ease-in-out infinite;
}

.bazi-test-body .bazi-test-visual-core strong {
  font-size: 1.7rem;
  line-height: 1.05;
}

.bazi-test-body .bazi-test-visual-core small {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.bazi-test-body .bazi-test-visual-node {
  width: 156px;
  padding: 12px 12px 14px;
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 24px rgba(0,0,0,0.14);
}

.bazi-test-body .bazi-test-visual-node strong {
  font-size: 1rem;
  line-height: 1.18;
}

.bazi-test-body .bazi-test-visual .node-profile { left: 8%; top: 12%; }
.bazi-test-body .bazi-test-visual .node-day { right: 8%; top: 12%; }
.bazi-test-body .bazi-test-visual .node-hour { left: 12%; bottom: 12%; }
.bazi-test-body .bazi-test-visual .node-organ { right: 10%; bottom: 12%; }

.bazi-test-body .bazi-test-visual .node-profile { animation: baziNodeFloat 7.2s ease-in-out infinite; }
.bazi-test-body .bazi-test-visual .node-day { animation: baziNodeFloat 8.1s ease-in-out infinite 0.6s; }
.bazi-test-body .bazi-test-visual .node-hour { animation: baziNodeFloat 7.6s ease-in-out infinite 1.1s; }
.bazi-test-body .bazi-test-visual .node-organ { animation: baziNodeFloat 8.4s ease-in-out infinite 1.6s; }

@keyframes baziOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes baziOrbitSpinReverse {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes baziCorePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.02),
      0 16px 34px rgba(0,0,0,0.18),
      0 0 48px rgba(114,240,222,0.08);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.018);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.03),
      0 18px 38px rgba(0,0,0,0.22),
      0 0 62px rgba(114,240,222,0.12);
  }
}

@keyframes baziNodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes baziVisualDriftA {
  0%, 100% { transform: translate(0, 0); opacity: 0.62; }
  50% { transform: translate(10px, -12px); opacity: 0.88; }
}

@keyframes baziVisualDriftB {
  0%, 100% { transform: translate(0, 0); opacity: 0.58; }
  50% { transform: translate(-12px, 10px); opacity: 0.84; }
}

.bazi-test-body .bazi-test-summary,
.bazi-test-body .bazi-test-grid {
  display: grid;
  gap: 14px;
}

.bazi-test-body .bazi-test-summary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bazi-test-body .bazi-test-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bazi-test-body .bazi-test-pill,
.bazi-test-body .bazi-test-panel,
.bazi-test-body .bazi-test-guidance {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 22px;
}

.bazi-test-body .bazi-test-pill span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,246,252,0.6);
}

.bazi-test-body .bazi-test-pill strong,
.bazi-test-body .bazi-test-panel strong,
.bazi-test-body .bazi-test-guidance strong {
  font-size: 1.12rem;
  line-height: 1.24;
}

.bazi-test-body .bazi-test-guidance {
  background:
    radial-gradient(circle at 80% 24%, rgba(114,240,222,0.14), transparent 24%),
    linear-gradient(180deg, rgba(11, 19, 33, 0.8), rgba(8, 14, 24, 0.42));
}

.bazi-test-body .bazi-test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.biotwin-body .biotwin-stage-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.54fr);
  align-items: center;
  gap: 24px;
}

.biotwin-body .biotwin-stage-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.7rem, 4.05vw, 4.05rem);
  max-width: 13.8ch;
}

.biotwin-body .biotwin-stage-head-helix .biotwin-stage-copy,
.biotwin-body .biotwin-stage-head-resonance .biotwin-stage-copy {
  max-width: 48rem;
}

.biotwin-body .biotwin-stage-head-helix .biotwin-stage-copy h2,
.biotwin-body .biotwin-stage-head-resonance .biotwin-stage-copy h2 {
  max-width: 12.8ch;
}

.biotwin-body .biotwin-stage-copy p:last-child {
  margin-top: 16px;
}

.biotwin-body .biotwin-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.08fr);
  gap: 40px;
  min-height: 760px;
  padding: clamp(30px, 4vw, 56px);
}

.biotwin-body .biotwin-hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(117, 92, 245, 0.16), transparent 24%),
    radial-gradient(circle at 26% 22%, rgba(114, 240, 222, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 30%, transparent 72%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.biotwin-body .biotwin-hero-copy,
.biotwin-body .biotwin-hero-field,
.biotwin-body .biotwin-react-chamber,
.biotwin-body .biotwin-formation-grid {
  position: relative;
  z-index: 1;
}

.biotwin-body .biotwin-hero-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 28rem;
}

.biotwin-body .biotwin-hero-copy h1 {
  font-size: clamp(3.3rem, 4.85vw, 5.15rem);
  max-width: 8.4ch;
  line-height: 0.92;
}

.biotwin-body .biotwin-hero-text {
  max-width: 28rem;
  color: var(--text-soft);
}

.biotwin-body .biotwin-hero-note {
  color: var(--text-faint, rgba(196, 225, 255, 0.40));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.biotwin-body .biotwin-hero-actions,
.biotwin-body .biotwin-resonance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.biotwin-body .biotwin-hero-field {
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(114, 240, 222, 0.08), transparent 18%),
    radial-gradient(circle at 74% 18%, rgba(125, 86, 240, 0.14), transparent 20%),
    rgba(8, 10, 22, 0.42);
}

.biotwin-body .biotwin-hero-field::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(8, 10, 22, 0), rgba(8, 10, 22, 0.54) 42%, rgba(8, 10, 22, 0.88));
  pointer-events: none;
}

.biotwin-body .biotwin-field-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.biotwin-body .biotwin-field-glow,
.biotwin-body .biotwin-field-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.biotwin-body .biotwin-field-glow {
  filter: blur(28px);
}

.biotwin-body .field-glow-a {
  width: 240px;
  height: 240px;
  left: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(114, 240, 222, 0.14), transparent 72%);
}

.biotwin-body .field-glow-b {
  width: 320px;
  height: 320px;
  right: 10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(128, 92, 255, 0.18), transparent 72%);
}

.biotwin-body .biotwin-field-orbit {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.biotwin-body .biotwin-field-orbit.orbit-a {
  width: 94%;
  aspect-ratio: 1;
  right: -12%;
  top: -6%;
}

.biotwin-body .biotwin-field-orbit.orbit-b {
  width: 66%;
  aspect-ratio: 1;
  right: 8%;
  top: 18%;
}

.biotwin-body .biotwin-field-orbit.orbit-c {
  width: 42%;
  aspect-ratio: 1;
  left: 10%;
  bottom: 10%;
}

.biotwin-body .biotwin-live-panel {
  position: absolute;
  left: 26px;
  bottom: 22px;
  width: min(360px, calc(100% - 52px));
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 225, 255, 0.05);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(8, 12, 22, 0.16), rgba(8, 12, 22, 0.04));
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.biotwin-body .biotwin-live-main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.biotwin-body .biotwin-live-main strong {
  font-size: 1.8rem;
  color: var(--text);
}

.biotwin-body .biotwin-live-main span {
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 700;
}

.biotwin-body .biotwin-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.biotwin-body .biotwin-live-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.biotwin-body .biotwin-head-visual {
  position: relative;
  min-height: 200px;
}

.biotwin-body .biotwin-head-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.biotwin-body .biotwin-react-stage,
.biotwin-body .biotwin-formation-stage,
.biotwin-body .biotwin-resonance-stage {
  padding: clamp(28px, 4vw, 48px);
}

.biotwin-body .biotwin-react-chamber {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.04), transparent 30%),
    rgba(255, 255, 255, 0.02);
}

.biotwin-body .biotwin-react-chamber::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(114, 240, 222, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.biotwin-body .react-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 28px 26px;
}

.biotwin-body .react-step + .react-step {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.biotwin-body .react-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-size: 20px;
}

.biotwin-body .react-step-kicker,
.biotwin-body .formation-kicker {
  display: block;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.biotwin-body .react-step strong {
  font-size: 1.08rem;
  line-height: 1.58;
  color: var(--text);
}

.biotwin-body .biotwin-formation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.biotwin-body .biotwin-head-visual-helix {
  min-height: 272px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 240, 222, 0.08), transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(109, 156, 255, 0.06), transparent 62%),
    rgba(6, 10, 18, 0.48);
  overflow: hidden;
}

.biotwin-body .biotwin-head-visual-react {
  min-height: 224px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 240, 222, 0.08), transparent 38%),
    radial-gradient(circle at 70% 34%, rgba(109, 156, 255, 0.05), transparent 28%),
    rgba(6, 10, 18, 0.4);
  overflow: hidden;
}

.biotwin-body .formation-node {
  position: relative;
  display: grid;
  grid-template-rows: minmax(138px, 1fr) auto auto;
  align-content: end;
  gap: 10px;
  min-height: 280px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.03), transparent 36%),
    rgba(8, 12, 22, 0.72);
}

.biotwin-body .formation-visual {
  position: relative;
  min-height: 148px;
  margin: -6px -6px 4px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 32%),
    rgba(6, 10, 18, 0.36);
}

.biotwin-body .formation-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.biotwin-body .formation-core-a {
  background:
    radial-gradient(circle at 50% 30%, rgba(114, 240, 222, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(7, 14, 24, 0.84), rgba(7, 12, 20, 0.74));
}

.biotwin-body .formation-core-d {
  background:
    radial-gradient(circle at 50% 28%, rgba(173, 116, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(10, 10, 24, 0.84), rgba(8, 10, 20, 0.74));
}

.biotwin-body .formation-node strong {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════
   BIOTWIN PAGE v86 — Accent colors, card identity
   ════════════════════════════════════════════════════════════════ */

/* ── C. React step accent colors ── */
.biotwin-body .react-step-phase .react-step-icon   { color: #22D3EE; background: rgba(34, 211, 238, 0.08); border-color: rgba(34, 211, 238, 0.18); }
.biotwin-body .react-step-phase .react-step-kicker { color: #22D3EE; }
.biotwin-body .react-step-tone .react-step-icon     { color: #F59E0B; background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.18); }
.biotwin-body .react-step-tone .react-step-kicker   { color: #F59E0B; }
.biotwin-body .react-step-state .react-step-icon    { color: #F97316; background: rgba(249, 115, 22, 0.08); border-color: rgba(249, 115, 22, 0.18); }
.biotwin-body .react-step-state .react-step-kicker  { color: #F97316; }
.biotwin-body .react-step-presence .react-step-icon { color: #A855F7; background: rgba(168, 85, 247, 0.08); border-color: rgba(168, 85, 247, 0.18); }
.biotwin-body .react-step-presence .react-step-kicker { color: #A855F7; }

/* ── D. Formation node accent colors ── */
.biotwin-body .formation-core-a { border-top: 3px solid rgba(114, 240, 222, 0.4); }
.biotwin-body .formation-core-a .formation-kicker { color: #72f0de; }
.biotwin-body .formation-core-b { border-top: 3px solid rgba(34, 211, 238, 0.4); }
.biotwin-body .formation-core-b .formation-kicker { color: #22D3EE; }
.biotwin-body .formation-core-c { border-top: 3px solid rgba(249, 115, 22, 0.4); }
.biotwin-body .formation-core-c .formation-kicker { color: #F97316; }
.biotwin-body .formation-core-d { border-top: 3px solid rgba(168, 85, 247, 0.4); }
.biotwin-body .formation-core-d .formation-kicker { color: #A855F7; }

.biotwin-body .biotwin-resonance-stage {
  display: grid;
  gap: 28px;
  align-items: start;
}

.biotwin-body .biotwin-stage-head-resonance {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.52fr);
}

.biotwin-body .biotwin-head-visual-pair {
  min-height: 180px;
  height: 180px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 50%, rgba(114, 240, 222, 0.08), transparent 26%),
    radial-gradient(circle at 80% 50%, rgba(151, 114, 255, 0.1), transparent 26%),
    rgba(6, 10, 18, 0.44);
  overflow: hidden;
}

.biotwin-body .biotwin-stage-head-helix,
.biotwin-body .biotwin-stage-head-resonance {
  align-items: center;
}

@keyframes biotwinPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes biotwinDrift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-10px) scale(1.06);
  }
}

/* ═══════════════════════════════════════════════════════════
   HOME REDESIGN — 4 SCENES
   ═══════════════════════════════════════════════════════════ */

.homepage {
  display: grid;
  gap: 24px;
  padding-top: 22px;
}

/* ── Scene 1: Portal ─────────────────────────────────────── */
.scene-portal {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
  min-height: min(960px, calc(100vh - 80px));
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-shell);
  background: linear-gradient(160deg, rgba(6, 14, 36, 0.97) 0%, rgba(4, 10, 26, 0.94) 100%);
  box-shadow: var(--shadow-deep);
}

.scene-portal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(50, 140, 255, 0.13), transparent 36%),
    radial-gradient(circle at 20% 22%, rgba(100, 60, 220, 0.14), transparent 28%),
    radial-gradient(ellipse at 60% 90%, rgba(40, 120, 220, 0.08), transparent 30%);
  pointer-events: none;
}

.sp-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sp-ring-a {
  width: min(80vw, 1040px);
  aspect-ratio: 1;
  right: -10%;
  top: -16%;
  border-color: rgba(80, 140, 255, 0.09);
}

.sp-ring-b {
  width: min(56vw, 700px);
  aspect-ratio: 1;
  right: 4%;
  top: 8%;
  border-color: rgba(60, 120, 255, 0.07);
}

.sp-ring-c {
  width: min(34vw, 420px);
  aspect-ratio: 1;
  left: -6%;
  bottom: -12%;
  border-color: rgba(100, 80, 220, 0.08);
}

.sp-glow-phase {
  position: absolute;
  width: min(62vw, 780px);
  aspect-ratio: 1;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, var(--phase-glow) 0%, transparent 56%);
  filter: blur(36px);
}

.sp-beam-h {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80,140,255,0.1) 30%, rgba(80,140,255,0.16) 55%, rgba(80,140,255,0.1) 80%, transparent);
  pointer-events: none;
}

.sp-beam-v {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(80,140,255,0.06) 30%, rgba(80,140,255,0.1) 55%, rgba(80,140,255,0.06) 80%, transparent);
  pointer-events: none;
}

.sp-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

/* ── Logo Reveal ─────────────────────────────────────────── */
@keyframes logoRevealIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes clockBreathe {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(114, 240, 222, 0.08)); }
  50%       { filter: drop-shadow(0 0 52px rgba(114, 240, 222, 0.30)); }
}

.logo-reveal-copy .eyebrow    { animation: logoRevealIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.08s both; }
.logo-reveal-copy h1           { animation: logoRevealIn 0.70s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.logo-reveal-copy .sp-payoff   { animation: logoRevealIn 0.60s cubic-bezier(0.22,1,0.36,1) 0.36s both; }
.logo-reveal-copy .sp-manifesto{ animation: logoRevealIn 0.60s cubic-bezier(0.22,1,0.36,1) 0.48s both; }
.logo-reveal-copy .sp-explore  { animation: logoRevealIn 0.50s cubic-bezier(0.22,1,0.36,1) 0.62s both; }
.logo-reveal-clock .clock-mount{
  animation: logoRevealIn 0.90s cubic-bezier(0.22,1,0.36,1) 0.12s both,
             clockBreathe 4s ease-in-out 1.4s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logo-reveal-copy *, .logo-reveal-clock .clock-mount { animation: none !important; }
}

/* ── Payoff subtitle ─────────────────────────────────────── */
.sp-payoff {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  line-height: 1.65;
  max-width: 32ch;
  margin: 10px 0 0;
}

.sp-copy h1 {
  max-width: 12.8ch;
  font-size: clamp(3.6rem, 6.4vw, 6.8rem);
  margin: 8px 0 0;
  line-height: 0.93;
  letter-spacing: -0.01em;
}

.sp-manifesto {
  max-width: 32rem;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
}

.sp-explore {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: color 200ms ease, transform 200ms ease;
}

.sp-explore:hover {
  color: var(--accent);
  transform: translateY(2px);
}

.sp-clock-zone {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  align-items: start;
}

.sp-clock-glow {
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--phase-glow) 0%, transparent 58%);
  filter: blur(28px);
  pointer-events: none;
}

.sp-presence {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(196, 225, 255, 0.13);
  border-radius: 28px;
  background: rgba(7, 12, 20, 0.72);
  backdrop-filter: blur(16px);
}

.sp-presence-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sp-presence-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--phase-color);
  box-shadow: 0 0 8px var(--phase-color);
  flex-shrink: 0;
  animation: livePulse 2.4s ease-in-out infinite;
}

.sp-presence-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
}

.sp-presence-main span {
  font-size: 1.55rem;
  font-weight: 800;
}

.sp-presence-main strong {
  color: var(--accent);
  font-size: 1rem;
}

.sp-presence-title {
  margin-top: 6px;
  font-size: 1.06rem;
  color: var(--text);
}

.sp-presence-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ── Scene 2: Signal ─────────────────────────────────────── */
.scene-signal {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-shell);
  background: linear-gradient(180deg, rgba(6, 14, 32, 0.97) 0%, rgba(4, 10, 24, 0.94) 100%);
  box-shadow: var(--shadow-deep);
}

.scene-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 52%, rgba(114, 240, 222, 0.06), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(72, 112, 255, 0.08), transparent 26%);
  pointer-events: none;
}

.ss-canvas-zone {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  border: 1px solid rgba(100, 160, 255, 0.14);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(30, 70, 160, 0.18), transparent 68%),
    rgba(4, 10, 24, 0.92);
  display: flex;
  box-shadow: inset 0 1px 0 rgba(100, 160, 255, 0.08), 0 12px 40px rgba(0, 5, 20, 0.3);
}

.ss-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  flex: 1;
}

.ss-canvas-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(6, 10, 18, 0.7), transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(6, 10, 18, 0.5), transparent 35%);
  pointer-events: none;
}

.ss-copy {
  position: relative;
  z-index: 1;
}

.ss-copy h2 {
  max-width: 15.5ch;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  margin-top: 16px;
}

.ss-overview {
  max-width: 36rem;
  margin-top: 18px;
}

.ss-live {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  margin-top: 32px;
}

.ss-organ {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.ss-range {
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 700;
}

.ss-output {
  margin-top: 28px;
  border: 1px solid rgba(140, 190, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(6, 14, 32, 0.72);
  backdrop-filter: blur(10px);
}

.ss-output-header {
  display: grid;
  gap: 4px;
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(140, 190, 255, 0.1);
  background: rgba(8, 18, 40, 0.6);
}

.ss-output-rows {
  display: grid;
}

.ss-output-row {
  display: grid;
  gap: 6px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(140, 190, 255, 0.07);
}

.ss-output-row:last-child {
  border-bottom: 0;
}

.ss-output-row strong {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}

.ss-output-caution strong {
  color: rgba(255, 160, 100, 0.88);
}

.ss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ── Scene 3: Orbits ─────────────────────────────────────── */

/* Icon hidden on desktop — shown only on mobile via responsive.css */
.so-node-icon {
  display: none;
}

/* ── Orbital carousel: hidden on desktop ─────────────── */
.so-carousel { display: none; }

/* Floating keyframes for carousel cards */
@keyframes so-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes so-float-b {
  0%, 100% { transform: translateY(-2px); }
  50%       { transform: translateY(4px); }
}
@keyframes so-float-c {
  0%, 100% { transform: translateY(0px); }
  33%       { transform: translateY(-5px); }
  66%       { transform: translateY(2px); }
}

@media (prefers-reduced-motion: reduce) {
  .so-cc-inner,
  .so-carousel-nucleus img { animation: none !important; }
}

.scene-orbits {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-shell);
  background: linear-gradient(180deg, rgba(5, 12, 28, 0.97) 0%, rgba(4, 9, 22, 0.94) 100%);
  box-shadow: var(--shadow-deep);
}

.so-header {
  max-width: 52rem;
  margin-bottom: 36px;
}

.so-header h2 {
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  max-width: 26ch;
  margin-top: 14px;
}

.so-system {
  position: relative;
  min-height: 860px;
  margin-top: 8px;
}

.so-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.so-ring-outer {
  width: min(72vw, 900px);
  aspect-ratio: 1;
  animation: orbitSpin 120s linear infinite;
  border-color: rgba(255, 255, 255, 0.05);
}

.so-ring-mid {
  width: min(50vw, 620px);
  aspect-ratio: 1;
  animation: orbitSpin 80s linear infinite reverse;
}

.so-ring-inner {
  width: min(30vw, 360px);
  aspect-ratio: 1;
  border-color: rgba(114, 240, 222, 0.1);
  animation: orbitSpin 50s linear infinite;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.so-nucleus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(28vw, 300px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  border: 1px solid rgba(114, 240, 222, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(114, 240, 222, 0.14), transparent 58%),
    rgba(7, 13, 23, 0.88);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(114, 240, 222, 0.06);
}

.so-nucleus-tao {
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
  display: block;
  opacity: 0.94;
  filter: drop-shadow(0 0 12px rgba(114, 240, 222, 0.16));
}

.so-nucleus strong {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  margin-top: 6px;
}

.so-nucleus small {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.so-node {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 17px 19px;
  border: 1px solid rgba(140, 190, 255, 0.18);
  border-radius: 26px;
  background: rgba(6, 14, 30, 0.88);
  box-shadow: 0 16px 40px rgba(0, 5, 20, 0.36), inset 0 1px 0 rgba(140, 190, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  min-width: 154px;
  max-width: 280px;
}

.so-node:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(114, 240, 222, 0.42);
  background: rgba(8, 18, 38, 0.96);
  box-shadow: 0 20px 48px rgba(0, 5, 20, 0.44), 0 0 24px rgba(114, 240, 222, 0.08);
}

.so-node-kicker {
  display: block;
  color: var(--node-color, var(--text-faint));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 1;
}

.so-node strong {
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  display: block;
  color: var(--text);
}

.so-node small {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.44;
}

.so-node::after {
  content: "entra →";
  display: block;
  color: var(--node-color, var(--accent));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.4;
  transform: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.so-node:hover::after {
  opacity: 1;
  transform: none;
}

/* Per-node accent colors + orbital positions */
.so-node-chronotype { --node-color: #F59E0B; left: 6%;  top: 7%; width: min(18vw, 220px); }
.so-node-coach      { --node-color: #22D3EE; right: 5%; top: 6%; width: min(18vw, 220px); }
.so-node-biotwin    { --node-color: #A855F7; left: 2%;  top: 48%; width: min(17vw, 210px); }
.so-node-practices  { --node-color: #10B981; right: 3%; top: 50%; width: min(18vw, 216px); }
.so-node-bazi       { --node-color: #6366F1; left: 15%; bottom: 9%; width: min(18vw, 228px); max-width: 228px; }
.so-node-astral     { --node-color: #F97316; left: 50%; bottom: 3%; transform: translateX(-50%) translateY(0px) scale(1); width: min(27vw, 292px); max-width: 292px; z-index: 3; }
.so-node-system     { --node-color: #3B82F6; right: 6%; bottom: 9%; width: min(17vw, 212px); max-width: 212px; }
.so-node-astral:hover { transform: translateX(-50%) translateY(-3px) scale(1.02); animation-play-state: paused; }

/* ── Node float animations ───────────────────────────────── */
@keyframes nf-a { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-9px)} }
@keyframes nf-b { 0%,100%{transform:translateY(-2px)} 50%{transform:translateY(7px)} }
@keyframes nf-c { 0%,100%{transform:translateY(0px)} 33%{transform:translateY(-7px)} 66%{transform:translateY(4px)} }
@keyframes nf-d { 0%,100%{transform:translateY(2px)} 50%{transform:translateY(-8px)} }
@keyframes nf-e { 0%,100%{transform:translateY(-1px)} 50%{transform:translateY(8px)} }
@keyframes nf-f { 0%,100%{transform:translateY(0px)} 40%{transform:translateY(-6px)} 70%{transform:translateY(3px)} }
@keyframes nf-astral {
  0%,100%{transform:translateX(-50%) translateY(0px) scale(1)}
  50%    {transform:translateX(-50%) translateY(-9px) scale(1)}
}

.so-node-chronotype { animation: nf-a 5.8s ease-in-out infinite; }
.so-node-coach      { animation: nf-b 6.4s ease-in-out 0.9s infinite; }
.so-node-biotwin    { animation: nf-c 5.3s ease-in-out 1.7s infinite; }
.so-node-practices  { animation: nf-d 6.8s ease-in-out 2.5s infinite; }
.so-node-bazi       { animation: nf-e 5.6s ease-in-out 0.4s infinite; }
.so-node-system     { animation: nf-f 7.2s ease-in-out 1.3s infinite; }
.so-node-astral     { --node-color: #F97316; left: 50%; bottom: 3%; transform: translateX(-50%) translateY(0px) scale(1); width: min(27vw, 292px); max-width: 292px; z-index: 3; animation: nf-astral 6.2s ease-in-out 2.1s infinite; }

.so-node:hover { animation-play-state: paused; transform: translateY(-3px) scale(1.02); }

@media (prefers-reduced-motion: reduce) {
  .so-node { animation: none !important; }
}

/* ── SVG energy connection lines ────────────────────────── */
.so-energy-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.so-energy-line {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 6 5;
  animation: energyFlow 2.8s linear infinite;
  opacity: 0.55;
}
@keyframes energyFlow {
  from { stroke-dashoffset: 22; }
  to   { stroke-dashoffset: 0; }
}
.so-energy-line-glow {
  fill: none;
  stroke-linecap: round;
  opacity: 0.12;
  filter: blur(3px);
}

/* ── DNA icon (BioTwin) ──────────────────────────────────── */
.dna-icon {
  color: var(--node-color, #A855F7);
  display: block;
}

/* ── Mobile: Bio Dashboard Trittico ─────────────────────── */
.bio-dashboard {
  display: none; /* shown on mobile via responsive.css */
  margin-top: 14px;
  border: 1px solid rgba(196, 225, 255, 0.14);
  border-radius: 22px;
  background: rgba(6, 12, 24, 0.80);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: border-color 280ms ease, box-shadow 280ms ease;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}
.bio-dashboard:focus-visible {
  outline: 2px solid rgba(114, 240, 222, 0.4);
  outline-offset: 2px;
}

/* ── Trittico: horizontal scroll container ── */
.bio-dashboard-trittico {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* 3D perspective for child rotations */
  perspective: 900px;
  transform-style: preserve-3d;
}
.bio-dashboard-trittico::-webkit-scrollbar { display: none; }

/* Each panel: 100% width, snaps, transitions */
.bio-panel {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: center;
  cursor: pointer;
  min-height: 220px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.5s ease;
  transform-origin: center center;
  transform-style: preserve-3d;
  /* Default (non-active) state: slightly receded */
  opacity: 0.6;
  transform: scale(0.90) rotateY(15deg);
  white-space: normal;
}
/* Active center panel */
.bio-panel.is-active {
  opacity: 1;
  transform: scale(1.0) rotateY(0deg);
  cursor: default;
}
/* Left panel tilts right (faces center from left) */
.bio-panel.is-prev {
  opacity: 0.55;
  transform: scale(0.88) rotateY(-15deg);
}
/* Right panel tilts left */
.bio-panel.is-next {
  opacity: 0.55;
  transform: scale(0.88) rotateY(15deg);
}

@media (prefers-reduced-motion: reduce) {
  .bio-panel { transition: none !important; }
}

.bio-panel-content {
  padding: 18px 20px 14px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ── Center panel: split layout ── */
.bio-dash-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.bio-dash-left,
.bio-dash-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bio-dash-right { align-items: flex-end; text-align: right; }

/* ── Shared typographic atoms ── */
.bio-dash-kicker,
.bio-panel-title-kicker {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.bio-dash-name,
.bio-dash-element,
.bio-panel-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
}
.bio-dash-element,
.bio-panel-el-name { color: var(--accent); }
.bio-dash-range,
.bio-dash-quality,
.bio-panel-range {
  font-size: 0.72rem;
  color: var(--text-soft);
}
.bio-dash-divider {
  width: 1px;
  height: 52px;
  margin: 0 16px;
  background: linear-gradient(180deg, transparent, rgba(114, 240, 222, 0.5) 40%, rgba(114, 240, 222, 0.5) 60%, transparent);
  flex-shrink: 0;
}

/* ── Expandable section (per panel) ── */
.bio-panel-expanded {
  overflow: visible;
  opacity: 1;
  padding-top: 10px;
}
.bio-dash-title,
.bio-panel-overview {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.bio-dash-detail-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
}
.bio-dash-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
}
.bio-dash-detail-row strong {
  color: var(--text);
  text-align: right;
  max-width: 60%;
}
.bio-dash-caution-row strong { color: rgba(255, 160, 80, 0.9); }

/* ── Dots indicator ── */
.bio-dash-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 6px 0 2px;
}
.bio-dash-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.bio-dash-dot.is-active {
  background: var(--accent, #72f0de);
  transform: scale(1.5);
}

/* ── Chevron hint ── */
.bio-dash-chevron {
  display: flex;
  justify-content: center;
  padding-bottom: 6px;
  color: var(--text-faint);
  transition: transform 280ms ease;
}
.bio-dash-chevron .material-icons { font-size: 16px; }

/* ── Scene 4: Threshold ──────────────────────────────────── */
.scene-threshold {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
  align-items: start;
  gap: clamp(24px, 3.5vw, 48px);
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-shell);
  background: linear-gradient(160deg, rgba(5, 12, 28, 0.97) 0%, rgba(4, 9, 22, 0.94) 100%);
  box-shadow: var(--shadow-deep);
}

.st-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.st-glow-a {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -140px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--phase-glow) 0%, transparent 60%);
  filter: blur(38px);
}

.st-glow-b {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 14%;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 130, 255, 0.1), transparent 68%);
  filter: blur(24px);
}

.st-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.055);
}

.st-ring-a {
  width: 540px;
  height: 540px;
  right: -160px;
  bottom: -190px;
}

.st-ring-b {
  width: 310px;
  height: 310px;
  right: 30px;
  top: -90px;
}

.st-copy {
  position: relative;
  z-index: 1;
}

.st-copy h2 {
  max-width: 17ch;
  font-size: clamp(3rem, 4.6vw, 5rem);
  margin-top: 14px;
  line-height: 1.04;
}

.st-copy > p {
  margin-top: 18px;
  max-width: 38rem;
}

.st-features {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.st-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(140, 190, 255, 0.1);
  border-radius: 20px;
  background: rgba(10, 20, 44, 0.56);
}

.st-feature-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 20px;
  margin-top: 2px;
  opacity: 0.85;
}

.st-feature strong {
  display: block;
  font-size: 0.96rem;
  color: var(--text);
}

.st-feature p {
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.st-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* Live panel (right column) */
.st-live-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(140, 190, 255, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(50, 100, 220, 0.12), transparent 60%),
    rgba(6, 14, 32, 0.88);
  box-shadow: 0 20px 52px rgba(0, 5, 20, 0.36), inset 0 1px 0 rgba(140, 190, 255, 0.08);
  backdrop-filter: blur(12px);
}

.st-live-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.st-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: livePulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--accent); }
  50% { opacity: 0.55; box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(114, 240, 222, 0.2); }
}

.st-live-organ {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(140, 190, 255, 0.1);
}

.st-live-organ span {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

.st-live-organ small {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.st-live-range {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: -6px;
}

.st-live-rows {
  display: grid;
  gap: 12px;
}

.st-live-row {
  display: grid;
  gap: 5px;
}

.st-live-row strong {
  font-size: 0.96rem;
  line-height: 1.52;
  color: var(--text);
}

/* ── Shared: signal-label (reused across scenes) ─────────── */
.signal-label {
  display: block;
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── present-link (reused) ────────────────────────────────── */
.present-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.88rem;
  transition: border-color 160ms ease, color 160ms ease;
}

.present-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.present-link:hover {
  border-color: rgba(114, 240, 222, 0.36);
  color: var(--text);
}

/* ── Motion preferences ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .so-ring {
    animation: none;
  }
}

/* ── Canvas input tags + compression label ─────────────────── */
.ss-input-tags {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 28px 20px;
  pointer-events: none;
}

.ss-input-tags span {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(100, 160, 255, 0.2);
  background: rgba(8, 16, 44, 0.58);
  color: rgba(180, 210, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.ss-input-tags span:nth-child(even) {
  align-self: flex-end;
}

.ss-compression-label {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(114, 240, 222, 0.24);
  background: rgba(6, 14, 32, 0.76);
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
}

/* Diary / Privacy / Cloud */
.diary-page {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  padding-bottom: 32px;
}

.diary-hero-stage,
.diary-custody-stage,
.diary-protection-stage,
.diary-meaning-stage {
  position: relative;
  display: grid;
  gap: clamp(22px, 3.2vw, 36px);
  padding: clamp(26px, 4vw, 44px);
  border-radius: 36px;
  border: 1px solid rgba(160, 196, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(86, 130, 220, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.94), rgba(6, 10, 22, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: clip;
}

.diary-hero-stage {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: 640px;
}

.diary-hero-copy,
.diary-stage-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.diary-hero-copy h1,
.diary-stage-copy h2 {
  margin: 0;
  max-width: 13ch;
  text-wrap: balance;
}

.diary-hero-copy h1 {
  font-size: clamp(3.4rem, 5vw, 5.25rem);
}
.diary-stage-copy h2 {
  font-size: clamp(2.9rem, 4.2vw, 4.2rem);
}

.diary-hero-text,
.diary-hero-note,
.diary-stage-copy p,
.diary-custody-core p,
.diary-custody-lane p,
.diary-protection-core p,
.diary-protection-signal p,
.diary-meaning-lane p,
.diary-meaning-closing p {
  margin: 0;
  color: rgba(220, 232, 252, 0.76);
}

.diary-hero-note {
  max-width: 54ch;
  font-size: 0.84rem;
  color: rgba(196, 214, 246, 0.68);
}

.diary-hero-actions,
.diary-protection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.diary-hero-field {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  border: 1px solid rgba(154, 190, 255, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 185, 255, 0.14), transparent 34%),
    radial-gradient(circle at 24% 20%, rgba(92, 141, 224, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(10, 18, 34, 0.94), rgba(6, 12, 24, 0.98));
  overflow: hidden;
}

.diary-hero-field::before,
.diary-hero-field::after,
.diary-protection-core::before,
.diary-protection-core::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.diary-hero-field::before {
  width: 68%;
  height: 68%;
  left: 16%;
  top: 15%;
  border: 1px solid rgba(150, 194, 255, 0.09);
  opacity: 0.7;
}

.diary-hero-field::after {
  width: 54%;
  height: 54%;
  left: 23%;
  top: 23%;
  background: radial-gradient(circle, rgba(130, 188, 255, 0.11), transparent 62%);
  filter: blur(18px);
  opacity: 0.8;
}

.diary-orbit,
.diary-field-glow,
.diary-memory-thread,
.diary-memory-core,
.diary-trace-node {
  position: absolute;
}

.diary-orbit {
  inset: auto;
  border-radius: 999px;
  border: 1px solid rgba(142, 184, 248, 0.14);
}

.diary-orbit.orbit-a {
  width: 78%;
  height: 78%;
  top: 11%;
  left: 11%;
  animation: baziOrbitSpin 22s linear infinite;
}

.diary-orbit.orbit-b {
  width: 58%;
  height: 58%;
  top: 21%;
  left: 21%;
  animation: baziOrbitSpinReverse 18s linear infinite;
}

.diary-orbit.orbit-c {
  width: 92%;
  height: 44%;
  top: 29%;
  left: 4%;
  opacity: 0.7;
}

.diary-field-glow {
  inset: auto;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.46;
}

.diary-field-glow.glow-a {
  width: 240px;
  height: 240px;
  top: 6%;
  right: -4%;
  background: rgba(116, 164, 255, 0.24);
}

.diary-field-glow.glow-b {
  width: 220px;
  height: 220px;
  left: -6%;
  bottom: 3%;
  background: rgba(100, 214, 224, 0.16);
}

.diary-memory-thread {
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(150, 191, 255, 0), rgba(150, 191, 255, 0.58), rgba(150, 191, 255, 0));
  transform-origin: center;
}

.diary-memory-thread.thread-a {
  top: 6%;
  height: 88%;
  transform: translateX(-50%) rotate(18deg);
}

.diary-memory-thread.thread-b {
  top: 12%;
  height: 72%;
  transform: translateX(-50%) rotate(-26deg);
  opacity: 0.72;
}

.diary-memory-core {
  left: 50%;
  top: 50%;
  width: min(290px, 58%);
  min-height: 170px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(150, 188, 255, 0.16);
  background: linear-gradient(180deg, rgba(10, 20, 38, 0.88), rgba(6, 12, 24, 0.94));
  box-shadow: 0 24px 70px rgba(5, 10, 22, 0.42);
  display: grid;
  align-content: center;
  gap: 10px;
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.memory-kicker,
.custody-kicker,
.lane-kicker,
.protection-kicker,
.meaning-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(175, 203, 244, 0.64);
}

.diary-memory-core strong,
.diary-custody-core strong,
.diary-protection-core strong,
.diary-meaning-closing strong {
  font-size: 1.34rem;
  line-height: 1.08;
  color: #f8fbff;
}

.diary-memory-core small {
  color: rgba(210, 224, 247, 0.74);
  font-size: 0.92rem;
}

.diary-trace-node {
  min-width: 152px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(155, 192, 255, 0.12);
  background: rgba(7, 16, 30, 0.74);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 4px;
  box-shadow: 0 12px 36px rgba(3, 8, 18, 0.24);
}

.diary-trace-node span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(169, 198, 236, 0.64);
}

.diary-trace-node strong {
  font-size: 0.98rem;
  line-height: 1.12;
}

.diary-trace-node.node-journal { left: 10%; top: 16%; }
.diary-trace-node.node-cloud { right: 9%; top: 18%; }
.diary-trace-node.node-privacy { left: 12%; bottom: 14%; }
.diary-trace-node.node-control { right: 11%; bottom: 12%; }

.diary-custody-stage,
.diary-protection-stage,
.diary-meaning-stage {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  align-items: start;
}

.diary-custody-chamber,
.diary-protection-chamber,
.diary-meaning-chamber {
  display: grid;
  gap: 18px;
}

.diary-custody-chamber {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.diary-custody-core,
.diary-custody-lane,
.diary-protection-core,
.diary-protection-signal,
.diary-meaning-lane,
.diary-meaning-closing {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(156, 190, 248, 0.12);
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(6, 11, 23, 0.94));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.diary-custody-core {
  grid-column: 1 / 7;
  padding: 24px 26px;
  display: grid;
  gap: 12px;
}

.diary-custody-lane {
  padding: 22px;
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.diary-custody-lane h3,
.diary-stage-copy h2,
.diary-protection-signal strong,
.diary-meaning-lane strong {
  margin: 0;
}

.diary-custody-lane.lane-notes { grid-column: 1 / 3; }
.diary-custody-lane.lane-continuity { grid-column: 3 / 5; transform: translateY(24px); }
.diary-custody-lane.lane-return { grid-column: 5 / 7; }

.diary-protection-chamber {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.diary-protection-core {
  padding: 24px 26px;
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.diary-protection-core::before {
  width: 220px;
  height: 220px;
  right: -48px;
  top: -44px;
  background: radial-gradient(circle, rgba(122, 198, 240, 0.18), transparent 66%);
  filter: blur(10px);
}

.diary-protection-core::after {
  width: 160px;
  height: 160px;
  left: -34px;
  bottom: -56px;
  border: 1px solid rgba(142, 196, 255, 0.1);
  opacity: 0.7;
}

.diary-protection-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.diary-protection-signal {
  padding: 20px;
  display: grid;
  gap: 10px;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(118, 176, 255, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(6, 11, 23, 0.94));
}

.diary-protection-signal .material-icons {
  font-size: 1.28rem;
  color: rgba(155, 205, 246, 0.82);
}

.diary-protection-signal p {
  font-size: 0.72rem;
  line-height: 1.45;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.diary-meaning-chamber {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.diary-meaning-lane,
.diary-meaning-closing {
  padding: 22px;
  display: grid;
  gap: 10px;
  min-height: 220px;
}

.diary-meaning-lane.lane-rooted {
  transform: translateY(24px);
}

.diary-meaning-closing {
  grid-column: 1 / 3;
  min-height: 0;
  align-content: start;
}

/* Astral Flow */
.astral-page {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  padding-bottom: 32px;
}

.astral-hero-stage,
.astral-play-stage,
.astral-tone-stage,
.astral-social-stage {
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding: clamp(26px, 4vw, 44px);
  border-radius: 36px;
  border: 1px solid rgba(150, 194, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(84, 138, 255, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.94), rgba(6, 10, 22, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: clip;
}

.astral-hero-stage {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  min-height: 640px;
}

.astral-hero-copy,
.astral-stage-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.astral-hero-copy h1,
.astral-stage-copy h2 {
  margin: 0;
  max-width: 13ch;
  text-wrap: balance;
}

.astral-hero-text,
.astral-hero-note,
.astral-stage-copy p,
.astral-play-core p,
.astral-play-lane p,
.astral-tone-core p,
.astral-tone-lane p,
.astral-social-core p,
.astral-social-signal p {
  margin: 0;
  color: rgba(220, 232, 252, 0.76);
}

.astral-hero-note {
  max-width: 54ch;
  font-size: 0.96rem;
  color: rgba(198, 214, 246, 0.68);
}

.astral-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.astral-hero-field {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  border: 1px solid rgba(154, 190, 255, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(91, 142, 255, 0.2), transparent 28%),
    radial-gradient(circle at 76% 72%, rgba(82, 240, 220, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.92), rgba(5, 9, 20, 0.98));
  overflow: hidden;
}

.astral-frame-glow,
.astral-playfield,
.astral-wall,
.astral-track,
.astral-orb,
.astral-totem,
.astral-pickup,
.astral-hitflash,
.astral-hud-chip {
  position: absolute;
}

.astral-frame-glow {
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.52;
}

.astral-frame-glow.glow-a {
  width: 220px;
  height: 220px;
  left: -4%;
  top: 6%;
  background: rgba(104, 160, 255, 0.22);
}

.astral-frame-glow.glow-b {
  width: 240px;
  height: 240px;
  right: -6%;
  bottom: -2%;
  background: rgba(90, 236, 220, 0.18);
}

.astral-playfield {
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(153, 196, 255, 0.12);
  background:
    radial-gradient(circle at 50% 42%, rgba(94, 44, 64, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(37, 18, 34, 0.94), rgba(31, 17, 37, 0.98));
  overflow: hidden;
}

.astral-playfield::before,
.astral-playfield::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.astral-playfield::before {
  width: 60%;
  height: 60%;
  left: 20%;
  top: 20%;
  border: 1px solid rgba(214, 177, 144, 0.08);
}

.astral-playfield::after {
  width: 44%;
  height: 44%;
  left: 28%;
  top: 28%;
  background: radial-gradient(circle, rgba(255, 197, 116, 0.08), transparent 62%);
  filter: blur(12px);
}

.astral-playfield.is-live .astral-orb,
.astral-playfield.is-live .astral-pickup,
.astral-playfield.is-live .astral-hitflash {
  animation: none !important;
}

.astral-wall {
  opacity: 0.74;
}

.astral-wall.wall-top,
.astral-wall.wall-bottom {
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(128, 184, 255, 0.24), rgba(255,255,255,0));
}

.astral-wall.wall-top { top: 10%; }
.astral-wall.wall-bottom { bottom: 10%; }

.astral-wall.wall-left,
.astral-wall.wall-right {
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(128, 184, 255, 0.24), rgba(255,255,255,0));
}

.astral-wall.wall-left { left: 10%; }
.astral-wall.wall-right { right: 10%; }

.astral-track {
  left: -18%;
  width: 136%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(95, 160, 255, 0), rgba(95, 160, 255, 0.5), rgba(95, 160, 255, 0));
  transform-origin: center;
}

.astral-track.track-a {
  top: 34%;
  transform: rotate(14deg);
}

.astral-track.track-b {
  top: 52%;
  background: linear-gradient(90deg, rgba(112, 246, 224, 0), rgba(112, 246, 224, 0.54), rgba(112, 246, 224, 0));
  transform: rotate(-10deg);
}

.astral-track.track-c {
  top: 70%;
  background: linear-gradient(90deg, rgba(162, 156, 255, 0), rgba(162, 156, 255, 0.48), rgba(162, 156, 255, 0));
  transform: rotate(12deg);
}

.astral-orb {
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 251, 213, 0.98), rgba(255, 214, 99, 0.92) 34%, rgba(255, 169, 56, 0.58) 62%, rgba(255, 169, 56, 0));
  box-shadow: 0 0 18px rgba(255, 208, 104, 0.34);
  will-change: transform, width, height, opacity, box-shadow, filter;
}

.astral-orb.orb-head {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.98), rgba(255, 238, 157, 0.96) 22%, rgba(255, 210, 83, 0.92) 46%, rgba(255, 160, 47, 0.16) 74%, rgba(255, 160, 47, 0));
  box-shadow:
    0 0 22px rgba(255, 217, 91, 0.42),
    0 0 48px rgba(255, 207, 77, 0.32);
}

.astral-orb.orb-tail {
  width: 14px;
  height: 14px;
  opacity: 0.84;
}

.astral-totem {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(120, 248, 230, 0.84) 36%, rgba(120, 248, 230, 0));
  box-shadow: 0 0 18px rgba(120, 248, 230, 0.34);
  animation: astralTotemPulse 4.6s ease-in-out infinite;
}

.astral-totem.totem-a { right: 18%; top: 22%; }
.astral-totem.totem-b { left: 20%; bottom: 28%; animation-delay: 1.2s; }
.astral-totem.totem-c { right: 24%; bottom: 18%; animation-delay: 2.1s; }

.astral-pickup {
  width: 18px;
  height: 18px;
  left: 34%;
  top: 16%;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.96), rgba(126, 241, 255, 0.92) 38%, rgba(126, 241, 255, 0));
  box-shadow: 0 0 18px rgba(103, 231, 255, 0.42);
  transition: opacity 180ms ease, transform 180ms ease;
}

.astral-hitflash {
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 140ms ease, transform 220ms ease;
}

.astral-hitflash.is-active {
  opacity: 1;
  transform: scale(1.22);
}

.astral-hitflash.hit-right {
  top: 71%;
  right: 9%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(150, 210, 255, 0.54), transparent 72%);
  animation: astralHitRight 12.4s linear infinite;
}

.astral-hitflash.hit-top {
  top: 9%;
  left: 82%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(120, 248, 230, 0.46), transparent 72%);
  animation: astralHitTop 12.4s linear infinite;
}

.astral-hitflash.hit-left {
  top: 11%;
  left: 9%;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(142, 168, 255, 0.48), transparent 72%);
  animation: astralHitLeft 12.4s linear infinite;
}

.astral-hud-chip {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(155, 192, 255, 0.12);
  background: rgba(7, 16, 30, 0.68);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 36px rgba(3, 8, 18, 0.18);
}

.astral-hud-chip span,
.play-kicker,
.lane-kicker,
.tone-kicker,
.social-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(175, 203, 244, 0.64);
}

.astral-hud-chip strong,
.astral-play-core strong,
.astral-tone-core strong,
.astral-social-core strong {
  font-size: 1rem;
  line-height: 1.08;
}

.astral-hud-chip.chip-score { left: 16px; top: 16px; }
.astral-hud-chip.chip-mode { right: 16px; top: 16px; }
.astral-hud-chip.chip-level { right: 18px; bottom: 18px; }

.astral-play-stage,
.astral-tone-stage,
.astral-social-stage {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
}

.astral-play-chamber,
.astral-tone-chamber,
.astral-social-chamber {
  display: grid;
  gap: 18px;
}

.astral-play-chamber {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.astral-play-core,
.astral-play-lane,
.astral-tone-core,
.astral-tone-lane,
.astral-social-core,
.astral-social-signal {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(156, 190, 248, 0.12);
  background:
    radial-gradient(circle at top right, rgba(118, 176, 255, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(6, 11, 23, 0.94));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.astral-play-core {
  grid-column: 1 / 7;
  padding: 24px 26px;
  display: grid;
  gap: 12px;
}

.astral-play-lane {
  min-height: 220px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.astral-play-lane h3,
.astral-tone-lane strong,
.astral-social-signal strong,
.astral-stage-copy h2 {
  margin: 0;
}

.astral-play-lane.lane-trace { grid-column: 1 / 3; }
.astral-play-lane.lane-focus { grid-column: 3 / 5; transform: translateY(22px); }
.astral-play-lane.lane-entry { grid-column: 5 / 7; }

.astral-tone-chamber {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.astral-tone-core,
.astral-tone-lane {
  min-height: 250px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.astral-tone-core {
  background:
    radial-gradient(circle at 50% 24%, rgba(122, 248, 228, 0.12), transparent 28%),
    radial-gradient(circle at 50% 68%, rgba(110, 160, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(10, 18, 34, 0.9), rgba(6, 11, 23, 0.96));
}

.astral-social-chamber {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.astral-social-core {
  grid-column: 1 / 3;
  padding: 24px 26px;
  display: grid;
  gap: 12px;
}

.astral-social-signal {
  min-height: 196px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.astral-social-signal .material-icons {
  font-size: 1.3rem;
  color: rgba(155, 205, 246, 0.82);
}

@keyframes astralFlowHead {
  0% { left: 16%; top: 76%; transform: rotate(0deg); }
  18% { left: 56%; top: 76%; transform: rotate(0deg); }
  32% { left: 82%; top: 76%; transform: rotate(0deg); }
  36% { left: 84%; top: 76%; transform: rotate(88deg); }
  50% { left: 84%; top: 34%; transform: rotate(88deg); }
  56% { left: 84%; top: 14%; transform: rotate(88deg); }
  60% { left: 84%; top: 14%; transform: rotate(180deg); }
  72% { left: 46%; top: 14%; transform: rotate(180deg); }
  80% { left: 34%; top: 14%; transform: rotate(180deg); }
  82% { left: 34%; top: 14%; transform: rotate(180deg) scale(1.18); }
  86% { left: 18%; top: 14%; transform: rotate(180deg); }
  90% { left: 10%; top: 14%; transform: rotate(180deg); }
  94% { left: 10%; top: 14%; transform: rotate(92deg); }
  100% { left: 16%; top: 76%; transform: rotate(92deg); }
}

@keyframes astralFlowTailA {
  0% { left: 10%; top: 76%; opacity: 0.22; }
  18% { left: 48%; top: 76%; opacity: 0.24; }
  32% { left: 74%; top: 76%; opacity: 0.2; }
  36% { left: 76%; top: 76%; opacity: 0.18; }
  50% { left: 76%; top: 34%; opacity: 0.18; }
  56% { left: 76%; top: 18%; opacity: 0.16; }
  60% { left: 76%; top: 18%; opacity: 0.16; }
  72% { left: 38%; top: 18%; opacity: 0.14; }
  80% { left: 28%; top: 18%; opacity: 0.13; }
  86% { left: 14%; top: 18%; opacity: 0.12; }
  90% { left: 8%; top: 18%; opacity: 0.11; }
  94% { left: 8%; top: 18%; opacity: 0.1; }
  100% { left: 10%; top: 76%; opacity: 0.22; }
}

@keyframes astralFlowTailB {
  0% { left: 6%; top: 76%; opacity: 0.17; }
  18% { left: 42%; top: 76%; opacity: 0.18; }
  32% { left: 68%; top: 76%; opacity: 0.16; }
  36% { left: 70%; top: 76%; opacity: 0.14; }
  50% { left: 70%; top: 40%; opacity: 0.13; }
  56% { left: 70%; top: 22%; opacity: 0.12; }
  60% { left: 70%; top: 22%; opacity: 0.12; }
  72% { left: 34%; top: 22%; opacity: 0.11; }
  80% { left: 24%; top: 22%; opacity: 0.1; }
  86% { left: 12%; top: 22%; opacity: 0.09; }
  90% { left: 6%; top: 22%; opacity: 0.08; }
  94% { left: 6%; top: 22%; opacity: 0.08; }
  100% { left: 6%; top: 76%; opacity: 0.17; }
}

@keyframes astralFlowTailC {
  0% { left: 2%; top: 76%; opacity: 0.12; }
  18% { left: 36%; top: 76%; opacity: 0.14; }
  32% { left: 62%; top: 76%; opacity: 0.13; }
  36% { left: 64%; top: 76%; opacity: 0.11; }
  50% { left: 64%; top: 46%; opacity: 0.1; }
  56% { left: 64%; top: 26%; opacity: 0.09; }
  60% { left: 64%; top: 26%; opacity: 0.09; }
  72% { left: 28%; top: 26%; opacity: 0.08; }
  80% { left: 20%; top: 26%; opacity: 0.08; }
  86% { left: 10%; top: 26%; opacity: 0.07; }
  90% { left: 4%; top: 26%; opacity: 0.06; }
  94% { left: 4%; top: 26%; opacity: 0.06; }
  100% { left: 2%; top: 76%; opacity: 0.12; }
}

@keyframes astralFlowTailD {
  0% { left: -2%; top: 76%; opacity: 0.09; }
  18% { left: 30%; top: 76%; opacity: 0.11; }
  32% { left: 56%; top: 76%; opacity: 0.1; }
  36% { left: 58%; top: 76%; opacity: 0.09; }
  50% { left: 58%; top: 50%; opacity: 0.08; }
  56% { left: 58%; top: 30%; opacity: 0.07; }
  60% { left: 58%; top: 30%; opacity: 0.07; }
  72% { left: 24%; top: 30%; opacity: 0.06; }
  80% { left: 18%; top: 30%; opacity: 0.06; }
  86% { left: 8%; top: 30%; opacity: 0.05; }
  90% { left: 2%; top: 30%; opacity: 0.05; }
  94% { left: 2%; top: 30%; opacity: 0.05; }
  100% { left: -2%; top: 76%; opacity: 0.09; }
}

@keyframes astralFlowTailE {
  0% { left: -6%; top: 76%; opacity: 0.06; }
  18% { left: 24%; top: 76%; opacity: 0.08; }
  32% { left: 50%; top: 76%; opacity: 0.08; }
  36% { left: 52%; top: 76%; opacity: 0.07; }
  50% { left: 52%; top: 56%; opacity: 0.06; }
  56% { left: 52%; top: 34%; opacity: 0.05; }
  60% { left: 52%; top: 34%; opacity: 0.05; }
  72% { left: 20%; top: 34%; opacity: 0.05; }
  80% { left: 14%; top: 34%; opacity: 0.04; }
  86% { left: 6%; top: 34%; opacity: 0.04; }
  90% { left: 0%; top: 34%; opacity: 0.04; }
  94% { left: 0%; top: 34%; opacity: 0.04; }
  100% { left: -6%; top: 76%; opacity: 0.06; }
}

@keyframes astralTotemPulse {
  0%, 100% { transform: scale(0.88); opacity: 0.62; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes astralPickupBlink {
  0%, 72% { opacity: 0; transform: scale(0.78); }
  76%, 81% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(0.74); }
}

@keyframes astralHitRight {
  0%, 34%, 39%, 100% { opacity: 0; transform: scale(0.8); }
  36% { opacity: 1; transform: scale(1.22); }
}

@keyframes astralHitTop {
  0%, 54%, 59%, 100% { opacity: 0; transform: scale(0.82); }
  56% { opacity: 1; transform: scale(1.18); }
}

@keyframes astralHitLeft {
  0%, 88%, 93%, 100% { opacity: 0; transform: scale(0.82); }
  90% { opacity: 1; transform: scale(1.18); }
}

/* ═══ LEGAL PAGES (privacy, terms) ═══ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.legal-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 16px 0 12px;
}

.legal-updated {
  color: var(--text-faint);
  font-size: 0.82rem;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--accent);
}

.legal-section p,
.legal-section li {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.72;
}

.legal-section ul {
  padding-left: 20px;
  margin: 8px 0 0;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ═══════════════════════════════════════════════════════════════
   GLOBAL DESIGN SYSTEM — v62
   Glassmorphism + Typography + Mobile fixes for secondary pages
   ════════════════════════════════════════════════════════════════ */

/* ── Atom icon inside bio-panel center ── */
.bio-panel-atom-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.bio-panel-atom-icon {
  color: var(--accent);
  opacity: 0.72;
}

/* ── Glassmorphism upgrade for all secondary page containers ── */
.portal-stage,
.present-shell,
.features-stage,
.threshold-stage,
.detail-stage,
.detail-panel,
.detail-threshold,
.coach-command-stage,
.coach-sequence,
.coach-window {
  background: rgba(255, 255, 255, 0.030) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 64px rgba(0, 0, 5, 0.38) !important;
}

/* ── Card glassmorphism for coach, bazi, practices, chronotype ── */
.coach-body .coach-response-card,
.bazi-body .bazi-example-card,
.bazi-test-body .bazi-test-form-shell,
.bazi-test-body .bazi-test-result-card,
.practices-body .usage-node,
.chronotype-test-body .chronotype-question-card,
.chronotype-test-body .chronotype-test-result-card {
  background: rgba(255, 255, 255, 0.035) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 5, 0.28);
}

/* ── Coach method lanes: glass style ── */
.coach-body .method-lane {
  background: rgba(255, 255, 255, 0.025) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Back link: refined SVG-style (no old rectangular button feel) ── */
.subpage-backlink {
  gap: 6px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Secondary page H1/H2: ensure Cormorant Garamond + letter-spacing ── */
.bazi-body h1, .bazi-body h2,
.bazi-test-body h1, .bazi-test-body h2,
.practices-body h1, .practices-body h2,
.chronotype-body h1, .chronotype-body h2,
.chronotype-test-body h1, .chronotype-test-body h2,
.astral-body h1, .astral-body h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   ASTRAL FLOW PAGE v99 — Kicker accents, card borders, text hierarchy, icon colors
   ════════════════════════════════════════════════════════════════ */

/* ── B. Play-section kicker accent colors ── */
.astral-body .astral-play-core .play-kicker    { color: #A855F7; } /* core — viola */
.astral-body .lane-trace .lane-kicker           { color: #22D3EE; } /* traiettoria — cyan */
.astral-body .lane-focus .lane-kicker           { color: #F59E0B; } /* attenzione — amber */
.astral-body .lane-entry .lane-kicker           { color: #10B981; } /* ingresso — green */

/* ── B. Tone-section kicker accent colors ── */
.astral-body .lane-past .tone-kicker            { color: #F59E0B; } /* familiare — amber */
.astral-body .astral-tone-core .tone-kicker     { color: #22D3EE; } /* oggi — cyan */
.astral-body .lane-now .tone-kicker             { color: #A855F7; } /* contemporaneo — viola */

/* ── B. Social-section kicker accent colors ── */
.astral-body .astral-social-core .social-kicker { color: #A855F7; } /* core — viola */

/* ── C. Border-top on cards ── */
.astral-body .astral-play-core   { border-top: 3px solid rgba(168, 85, 247, 0.35); }
.astral-body .lane-trace         { border-top: 3px solid rgba(34, 211, 238, 0.35); }
.astral-body .lane-focus         { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.astral-body .lane-entry         { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.astral-body .lane-past          { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.astral-body .astral-tone-core   { border-top: 3px solid rgba(34, 211, 238, 0.35); }
.astral-body .lane-now           { border-top: 3px solid rgba(168, 85, 247, 0.35); }
.astral-body .astral-social-core { border-top: 3px solid rgba(168, 85, 247, 0.35); }
.astral-body .signal-rank        { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.astral-body .signal-multi       { border-top: 3px solid rgba(34, 211, 238, 0.35); }
.astral-body .signal-skin        { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.astral-body .signal-door        { border-top: 3px solid rgba(249, 115, 22, 0.35); }

/* ── D. Hero text hierarchy ── */
.astral-body .astral-hero-text { color: var(--text-soft); }
.astral-body .astral-hero-note { color: var(--text-faint); }

/* ── E. Stage-copy + card paragraphs softer ── */
.astral-body .astral-stage-copy p:not(.eyebrow) { color: var(--text-soft); }
.astral-body .astral-play-core p,
.astral-body .astral-play-lane p,
.astral-body .astral-tone-core p,
.astral-body .astral-tone-lane p,
.astral-body .astral-social-core p,
.astral-body .astral-social-signal p { color: var(--text-soft); }

/* ── F. Social signal icon colors ── */
.astral-body .signal-rank .material-icons  { color: #F59E0B; }
.astral-body .signal-multi .material-icons { color: #22D3EE; }
.astral-body .signal-skin .material-icons  { color: #10B981; }
.astral-body .signal-door .material-icons  { color: #F97316; }

/* ═══════════════════════════════════════════════════════════════
   DIARY PAGE v100 — Kicker accents, card borders, text hierarchy, icon colors
   ════════════════════════════════════════════════════════════════ */

/* ── B. Custody kicker accent colors ── */
.diary-body .diary-custody-core .custody-kicker  { color: #A855F7; } /* core — viola */
.diary-body .lane-notes .lane-kicker              { color: #22D3EE; } /* diario — cyan */
.diary-body .lane-continuity .lane-kicker         { color: #10B981; } /* continuità — green */
.diary-body .lane-return .lane-kicker             { color: #F59E0B; } /* ritorno — amber */

/* ── B. Protection kicker accent colors ── */
.diary-body .diary-protection-core .protection-kicker { color: #A855F7; } /* core — viola */

/* ── B. Meaning kicker accent colors ── */
.diary-body .lane-fragile .meaning-kicker         { color: #F59E0B; } /* senza memoria — amber */
.diary-body .lane-rooted .meaning-kicker          { color: #10B981; } /* con continuità — green */
.diary-body .diary-meaning-closing .meaning-kicker { color: #A855F7; } /* in sintesi — viola */

/* ── C. Border-top on cards ── */
.diary-body .diary-custody-core    { border-top: 3px solid rgba(168, 85, 247, 0.35); }
.diary-body .lane-notes            { border-top: 3px solid rgba(34, 211, 238, 0.35); }
.diary-body .lane-continuity       { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.diary-body .lane-return           { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.diary-body .diary-protection-core { border-top: 3px solid rgba(168, 85, 247, 0.35); }
.diary-body .signal-cloud          { border-top: 3px solid rgba(34, 211, 238, 0.35); }
.diary-body .signal-encrypt        { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.diary-body .signal-control        { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.diary-body .signal-continuity     { border-top: 3px solid rgba(249, 115, 22, 0.35); }
.diary-body .lane-fragile          { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.diary-body .lane-rooted           { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.diary-body .diary-meaning-closing { border-top: 3px solid rgba(168, 85, 247, 0.35); }

/* ── D. Hero text hierarchy ── */
.diary-body .diary-hero-text { color: var(--text-soft); }
.diary-body .diary-hero-note { color: var(--text-faint); }

/* ── E. Stage-copy + card paragraphs softer ── */
.diary-body .diary-stage-copy p:not(.eyebrow) { color: var(--text-soft); }
.diary-body .diary-custody-core p,
.diary-body .diary-custody-lane p,
.diary-body .diary-protection-core p,
.diary-body .diary-protection-signal p,
.diary-body .diary-meaning-lane p,
.diary-body .diary-meaning-closing p { color: var(--text-soft); }

/* ── F. Protection signal icon colors ── */
.diary-body .signal-cloud .material-icons      { color: #22D3EE; }
.diary-body .signal-encrypt .material-icons    { color: #F59E0B; }
.diary-body .signal-control .material-icons    { color: #10B981; }
.diary-body .signal-continuity .material-icons { color: #F97316; }

/* ═══════════════════════════════════════════════════════════════
   SISTEMA PAGE — v63  Glassmorphism, glow buttons, timeline
   ════════════════════════════════════════════════════════════════ */

/* ── Glassmorphism on system map & trust cards ── */
.system-body .system-map-nucleus,
.system-body .system-map-node {
  background: rgba(255, 255, 255, 0.030) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 8px 32px rgba(0, 0, 5, 0.30);
}
.system-body .system-map-nucleus {
  background:
    radial-gradient(circle at center, rgba(114, 240, 222, 0.10), transparent 54%),
    rgba(255, 255, 255, 0.028) !important;
}
.system-body .system-trust-core {
  background: rgba(255, 255, 255, 0.030) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 28px rgba(0, 0, 5, 0.28);
}
.system-body .system-trust-signal {
  background: rgba(255, 255, 255, 0.025) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 6px 20px rgba(0, 0, 5, 0.22);
}

/* ── Button glow — system page ── */
.system-body .button {
  transition:
    transform 160ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease;
}
.system-body .button-primary:hover,
.system-body .button-primary:focus-visible {
  box-shadow:
    0 0 22px rgba(114, 240, 222, 0.26),
    0 4px 16px rgba(0, 5, 20, 0.40);
  border-color: rgba(114, 240, 222, 0.62);
}
.system-body .button-primary:active {
  box-shadow: 0 0 28px rgba(114, 240, 222, 0.44);
  transform: scale(0.98);
}
.system-body .button-secondary:hover,
.system-body .button-secondary:focus-visible {
  box-shadow: 0 0 16px rgba(114, 240, 222, 0.16);
  border-color: rgba(114, 240, 222, 0.22);
}
.system-body .button-secondary:active {
  box-shadow: 0 0 20px rgba(114, 240, 222, 0.28);
  transform: scale(0.98);
}

/* ── Relation index: ambient glow ── */
.system-body .relation-index {
  display: inline-block;
  font-size: 1.0rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow:
    0 0 12px rgba(114, 240, 222, 0.70),
    0 0 28px rgba(114, 240, 222, 0.30);
  letter-spacing: 0.12em;
}

/* ── relation-lane: visible glass border on desktop ── */
.system-body .system-relation-lane {
  background: rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.system-body .system-relation-lane + .system-relation-lane {
  border-left: 1px solid rgba(114, 240, 222, 0.08);
}

/* ═══════════════════════════════════════════════════════════════
   SISTEMA PAGE v82 — Accent colors, nucleus glow, trust icons
   ════════════════════════════════════════════════════════════════ */

/* ── A. Flow map card accent colors (desktop) ── */
.system-body .map-node-coach    { border-top: 3px solid #22D3EE; }
.system-body .map-node-coach    .map-kicker { color: #22D3EE; }
.system-body .map-node-biotwin  { border-top: 3px solid #A855F7; }
.system-body .map-node-biotwin  .map-kicker { color: #A855F7; }
.system-body .map-node-practices { border-top: 3px solid #10B981; }
.system-body .map-node-practices .map-kicker { color: #10B981; }
.system-body .map-node-astral   { border-top: 3px solid #F97316; }
.system-body .map-node-astral   .map-kicker { color: #F97316; }
.system-body .map-node-bazi     { border-top: 3px solid #6366F1; }
.system-body .map-node-bazi     .map-kicker { color: #6366F1; }
.system-body .map-node-diary    { border-top: 3px solid #F59E0B; }
.system-body .map-node-diary    .map-kicker { color: #F59E0B; }
.system-body .map-node-privacy  { border-top: 3px solid #72f0de; }
.system-body .map-node-privacy  .map-kicker { color: #72f0de; }

/* ── C. Nucleus prominence — accent border + glow ── */
.system-body .system-map-nucleus {
  border: 1px solid rgba(114, 240, 222, 0.25) !important;
  box-shadow:
    0 0 40px rgba(114, 240, 222, 0.10),
    0 0 80px rgba(114, 240, 222, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* ── D. Trust signal icon individual colors ── */
.system-body .system-trust-signal:nth-child(1) .material-icons { color: #F59E0B; }
.system-body .system-trust-signal:nth-child(2) .material-icons { color: #22D3EE; }
.system-body .system-trust-signal:nth-child(3) .material-icons { color: #10B981; }
.system-body .system-trust-signal:nth-child(4) .material-icons { color: #72f0de; }

/* ── E. Hero text hierarchy ── */
.system-body .system-hero-text { color: var(--text-soft); }
.system-body .system-hero-note {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── G. Mobile flow carousel accent colors (via .sys-nodes-track nth-child) ── */
.sys-nodes-track .cc-card:nth-child(1) { --sys-node-color: #22D3EE; }
.sys-nodes-track .cc-card:nth-child(2) { --sys-node-color: #A855F7; }
.sys-nodes-track .cc-card:nth-child(3) { --sys-node-color: #10B981; }
.sys-nodes-track .cc-card:nth-child(4) { --sys-node-color: #F97316; }
.sys-nodes-track .cc-card:nth-child(5) { --sys-node-color: #6366F1; }
.sys-nodes-track .cc-card:nth-child(6) { --sys-node-color: #F59E0B; }
.sys-nodes-track .cc-card:nth-child(7) { --sys-node-color: #72f0de; }
.sys-nodes-track .cc-card .map-kicker { color: var(--sys-node-color); }
.sys-nodes-track .cc-card .cc-inner {
  border-top: 2px solid var(--sys-node-color, rgba(255,255,255,0.08));
}
.sys-nodes-track .cc-card[data-dist="0"] .cc-inner {
  border-color: var(--sys-node-color, rgba(114, 240, 222, 0.4)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--sys-node-color, #72f0de) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

/* ── Nucleus card mobile: accent glow ── */
.sys-m-nucleus.cc-inner {
  border: 1px solid rgba(114, 240, 222, 0.22);
  box-shadow:
    0 0 30px rgba(114, 240, 222, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── Trust carousel accent colors (mobile) ── */
.sys-trust-track .cc-card:nth-child(1) { --sys-node-color: #F59E0B; }
.sys-trust-track .cc-card:nth-child(2) { --sys-node-color: #22D3EE; }
.sys-trust-track .cc-card:nth-child(3) { --sys-node-color: #10B981; }
.sys-trust-track .cc-card:nth-child(4) { --sys-node-color: #72f0de; }
.sys-trust-track .cc-card .material-icons { color: var(--sys-node-color); }
.sys-trust-track .cc-card .cc-inner {
  border-top: 2px solid var(--sys-node-color, rgba(255,255,255,0.08));
}
.sys-trust-track .cc-card[data-dist="0"] .cc-inner {
  border-color: var(--sys-node-color, rgba(114, 240, 222, 0.4)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--sys-node-color, #72f0de) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL DESIGN SYSTEM v68 — Glassmorphism universale
   ════════════════════════════════════════════════════════════════ */

/* ── Universal card glass mixin ── */
.chronotype-body .chronotype-case-column,
.chronotype-body .chronotype-profile-node,
.chronotype-body .chronotype-shift-node,
.chronotype-body .chronotype-offset-lane {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 20px !important;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.50);
}

.chronotype-body .chronotype-case-column.is-active {
  background: rgba(114, 240, 222, 0.06) !important;
  border-color: rgba(114, 240, 222, 0.22) !important;
  box-shadow: 0 0 24px rgba(114, 240, 222, 0.14), 0 0 20px rgba(0,0,0,0.50);
}

/* ── Global button glow ── */
.button {
  transition: transform 160ms ease, border-color 200ms ease,
              background-color 200ms ease, box-shadow 220ms ease !important;
}
.button-primary:hover, .button-primary:focus-visible {
  box-shadow: 0 0 22px rgba(114,240,222,0.28), 0 4px 16px rgba(0,5,20,0.40);
  border-color: rgba(114,240,222,0.62) !important;
}
.button-primary:active {
  box-shadow: 0 0 32px rgba(114,240,222,0.46);
  transform: scale(0.97);
}
.button-secondary:hover, .button-secondary:focus-visible {
  box-shadow: 0 0 16px rgba(114,240,222,0.16);
  border-color: rgba(114,240,222,0.22) !important;
  background: rgba(255,255,255,0.06) !important;
}
.button-secondary:active {
  box-shadow: 0 0 22px rgba(114,240,222,0.30);
  transform: scale(0.97);
}


/* ═══════════════════════════════════════════════════════════════
   SHARED CUPERTINO CAROUSEL ENGINE — v69
   .cc-track  /  .cc-card  /  .cc-inner
   ════════════════════════════════════════════════════════════════ */

/* ── Show/hide Doppio DOM ── */
.x-scene-mobile { display: none !important; }

/* ── CC carousel engine: identical behaviour to homepage .so-carousel-track ── */
.cc-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
  padding: 32px 10vw 20px;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  perspective: 800px;
  transform-style: preserve-3d;
}
.cc-track::-webkit-scrollbar { display: none; }

/* ── Card: identical to .so-carousel-card ── */
.cc-card {
  flex: 0 0 80vw;
  width: 80vw;
  max-width: 340px;
  scroll-snap-align: center;
  opacity: 0.38;
  transform: scale(0.85) rotateY(12deg) translateZ(-40px);
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}
.cc-card[data-dist="0"] {
  opacity: 1;
  transform: scale(1.05) rotateY(0deg) translateZ(0px);
}
.cc-card[data-dist="-1"] {
  opacity: 0.55;
  transform: scale(0.88) rotateY(15deg) translateX(10vw) translateZ(-20px);
}
.cc-card[data-dist="1"] {
  opacity: 0.55;
  transform: scale(0.88) rotateY(-15deg) translateX(-10vw) translateZ(-20px);
}
.cc-card[data-dist="-2"],
.cc-card[data-dist="2"]  { opacity: 0.22; }
.cc-card[data-dist="-3"],
.cc-card[data-dist="3"],
.cc-card[data-dist="4"],
.cc-card[data-dist="5"]  { opacity: 0.08; }

/* ── Inner glass shell: identical to .so-cc-inner ── */
.cc-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 22px 22px;
  border-radius: 26px;
  background: rgba(7, 15, 35, 0.64);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(196, 225, 255, 0.1);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 0;
  height: 100%;
  min-height: 220px;
  box-sizing: border-box;
}
.cc-card[data-dist="0"] .cc-inner {
  border-color: rgba(114, 240, 222, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(114, 240, 222, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* ── Carousel dots (hidden on desktop, mirrors so-carousel-dots) ── */
.cc-dots { display: none; }

/* ── Chronotype hero mobile ── */
.chrono-hero-m { padding: 0; }
.chrono-m-h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 11vw, 4rem);
  line-height: 0.96;
  margin: 12px 0;
}
.chrono-m-body { color: var(--text-soft); line-height: 1.6; }
.chrono-m-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

/* ── Mini chronotype preview (hero) ── */
.chrono-mini-preview {
  margin-top: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.cmp-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(114,240,222,0.08);
  border: 1px solid rgba(114,240,222,0.20);
}
.cmp-center strong { font-size: 1.4rem; color: var(--accent); }
.cmp-hint { font-size: 0.82rem; color: var(--text-faint); font-style: italic; text-align: center; margin: 0; }
.cmp-nodes {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.cmp-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
}
.cmp-node small { color: var(--text-faint); font-size: 0.68rem; }

/* ── Mini chronotype orbital (offset section) ── */
.chrono-offset-m { padding: 0; }
.com-stage {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.com-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(114,240,222,0.08);
  border: 1px solid rgba(114,240,222,0.22);
}
.com-center strong { font-size: 1.2rem; }
.com-nodes {
  display: flex;
  gap: 10px;
  width: 100%;
}
.com-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
}
.com-node .shift-offset {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.com-node strong { font-size: 0.92rem; line-height: 1.3; }
.com-node p { font-size: 0.76rem; color: var(--text-soft); line-height: 1.5; margin: 0; }
.com-note { margin-top: 14px; font-size: 0.84rem; color: var(--text-soft); font-style: italic; }

/* ── System flow mobile ── */
.sys-flow-m { padding: 0; margin-top: 20px; }
.sys-m-nucleus {
  margin-bottom: 16px;
  min-height: 0 !important;
}
.sys-m-nucleus h3 { font-size: 1.6rem; line-height: 1.1; }

/* ── System timeline accordion ── */
.sys-timeline-m { margin-top: 20px; display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  position: relative;
  padding-left: 32px;
}
.tl-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
/* Vertical luminous line */
.sys-timeline-m::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(114,240,222,0.08) 0%,
    rgba(114,240,222,0.65) 30%,
    rgba(93,152,248,0.50) 70%,
    rgba(114,240,222,0.08) 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(114,240,222,0.28);
  pointer-events: none;
}
.tl-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px 18px 0;
}
.tl-index {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-shadow: 0 0 12px rgba(114,240,222,0.70);
}
.tl-head h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  flex: 1;
}
.tl-chevron {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--text-faint);
  transition: transform 0.3s ease;
  line-height: 1;
}
.tl-item[data-tl-open="true"] .tl-chevron {
  transform: rotate(90deg);
  color: var(--accent);
}
.tl-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms cubic-bezier(0.22,1,0.36,1),
              opacity 280ms ease,
              padding 280ms ease;
}
.tl-body p { padding-bottom: 16px; font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; margin: 0; }
.tl-item[data-tl-open="true"] .tl-body {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   BaZi PAGE v88 — Kicker accents, card borders, text hierarchy, icons
   ════════════════════════════════════════════════════════════════ */

/* ── B. Kicker accent colors ── */
.bazi-body .bazi-lane-kicker:first-child                { color: #6366F1; } /* Origine — indaco */
.bazi-body .bazi-layer-lane:last-child .bazi-lane-kicker { color: #22D3EE; } /* Ruolo — cyan */
.bazi-body .bazi-example-card:nth-child(1) .example-kicker { color: #22D3EE; } /* lettura biologica — teal */
.bazi-body .bazi-example-card:nth-child(2) .example-kicker { color: #6366F1; } /* strato del giorno — indaco */
.bazi-body .bazi-example-card.card-guidance .example-kicker { color: #A855F7; } /* orientamento — viola */

/* ── C. Map-node card border-top colors ── */
.bazi-body .map-clock    { border-top: 3px solid rgba(34, 211, 238, 0.4); }  /* Quadrante — cyan */
.bazi-body .map-chronotype { border-top: 3px solid rgba(245, 158, 11, 0.4); } /* Cronotipo — amber */
.bazi-body .map-bazi     { border-top: 3px solid rgba(99, 102, 241, 0.4); }  /* BaZi — indaco */
.bazi-body .map-coach    { border-top: 3px solid rgba(16, 185, 129, 0.4); }  /* Coach — green */
.bazi-body .map-day      { border-top: 3px solid rgba(168, 85, 247, 0.4); }  /* Tono — viola */

/* ── D. Hero text hierarchy ── */
.bazi-body .bazi-hero-text { color: var(--text-soft); }
.bazi-body .bazi-hero-note {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── E. Stage-copy + card paragraphs softer ── */
.bazi-body .bazi-stage-copy p:not(.eyebrow) { color: var(--text-soft); }
.bazi-body .bazi-map-node p,
.bazi-body .bazi-layer-lane p,
.bazi-body .bazi-example-card p { color: var(--text-soft); }

/* ── F. Map-node icons ── */
.bazi-body .bazi-map-node .material-icons,
.bazi-body .bazi-layer-lane .material-icons {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
  opacity: 0.7;
}
.bazi-body .map-clock .material-icons    { color: #22D3EE; }
.bazi-body .map-chronotype .material-icons { color: #F59E0B; }
.bazi-body .map-bazi .material-icons     { color: #6366F1; }
.bazi-body .map-coach .material-icons    { color: #10B981; }
.bazi-body .map-day .material-icons      { color: #A855F7; }
.bazi-body .bazi-layer-lane:first-child .material-icons  { color: #6366F1; }
.bazi-body .bazi-layer-lane:last-child .material-icons   { color: #22D3EE; }

/* ── BaZi mobile carousel accent colors ── */
.bazi-nodes-track .cc-card:nth-child(1) { --sys-node-color: #22D3EE; }
.bazi-nodes-track .cc-card:nth-child(2) { --sys-node-color: #F59E0B; }
.bazi-nodes-track .cc-card:nth-child(3) { --sys-node-color: #6366F1; }
.bazi-nodes-track .cc-card .node-label { color: var(--sys-node-color); }
.bazi-nodes-track .cc-card .cc-inner {
  border-top: 2px solid var(--sys-node-color, rgba(255,255,255,0.08));
}
.bazi-nodes-track .cc-card[data-dist="0"] .cc-inner {
  border-color: var(--sys-node-color, rgba(114, 240, 222, 0.4)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--sys-node-color, #72f0de) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

.bazi-map-track .cc-card:nth-child(1) { --sys-node-color: #22D3EE; }
.bazi-map-track .cc-card:nth-child(2) { --sys-node-color: #F59E0B; }
.bazi-map-track .cc-card:nth-child(3) { --sys-node-color: #6366F1; }
.bazi-map-track .cc-card:nth-child(4) { --sys-node-color: #10B981; }
.bazi-map-track .cc-card:nth-child(5) { --sys-node-color: #A855F7; }
.bazi-map-track .cc-card .node-label { color: var(--sys-node-color); }
.bazi-map-track .cc-card .material-icons { color: var(--sys-node-color); opacity: 0.7; }
.bazi-map-track .cc-card .cc-inner {
  border-top: 2px solid var(--sys-node-color, rgba(255,255,255,0.08));
}
.bazi-map-track .cc-card[data-dist="0"] .cc-inner {
  border-color: var(--sys-node-color, rgba(114, 240, 222, 0.4)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--sys-node-color, #72f0de) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

.bazi-example-track .cc-card:nth-child(1) { --sys-node-color: #22D3EE; }
.bazi-example-track .cc-card:nth-child(2) { --sys-node-color: #6366F1; }
.bazi-example-track .cc-card:nth-child(3) { --sys-node-color: #A855F7; }
.bazi-example-track .cc-card .example-kicker { color: var(--sys-node-color); }
.bazi-example-track .cc-card .cc-inner {
  border-top: 2px solid var(--sys-node-color, rgba(255,255,255,0.08));
}
.bazi-example-track .cc-card[data-dist="0"] .cc-inner {
  border-color: var(--sys-node-color, rgba(114, 240, 222, 0.4)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--sys-node-color, #72f0de) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

/* BaZi mobile core card */
.bazi-body .bazi-m-core {
  border: 1px solid rgba(114, 240, 222, 0.22);
  box-shadow: 0 0 30px rgba(114, 240, 222, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 22px;
  text-align: center;
  margin-bottom: 8px;
}
.bazi-body .bazi-m-core .bazi-core-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--text-faint);
}
.bazi-body .bazi-m-core strong { font-size: 1.4rem; display: block; margin: 4px 0; }
.bazi-body .bazi-m-core small { color: var(--text-soft); font-size: 0.82rem; }

/* BaZi mobile layer 2-column grid */
.bazi-body .bazi-layer-m-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bazi-body .bazi-layer-m-grid .bazi-layer-lane {
  padding: 14px 14px;
  border-radius: 22px;
  min-height: 0;
}
.bazi-body .bazi-layer-m-grid .bazi-layer-lane strong { font-size: 0.88rem; }
.bazi-body .bazi-layer-m-grid .bazi-layer-lane p { font-size: 0.78rem; }
.bazi-body .bazi-layer-m-grid .bazi-layer-lane .material-icons { font-size: 1.25rem; margin-bottom: 4px; }

/* BaZi example CTA buttons (outside carousel on mobile) */
.bazi-body .bazi-example-actions-m {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 clamp(16px, 5vw, 32px);
  margin-top: 12px;
}
.bazi-body .bazi-example-actions-m .button { width: 100%; }

/* BaZi carousel wrappers — grouping only */
.bazi-body .bazi-carousel-wrap {
  /* grouping wrapper only */
}

/* BaZi mobile core: add glassmorphism background */
.bazi-body .bazi-m-core {
  background: rgba(7, 15, 35, 0.64);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* BaZi carousels: consistent height + font sizing */
.bazi-nodes-track .cc-inner,
.bazi-map-track .cc-inner,
.bazi-example-track .cc-inner {
  height: 100%;
  min-height: 160px;
  padding: 18px 16px;
  font-size: 0.88rem;
}
.bazi-map-track .cc-inner p,
.bazi-nodes-track .cc-inner small,
.bazi-example-track .cc-inner p {
  font-size: 0.78rem;
}
.bazi-map-track .cc-inner strong,
.bazi-example-track .cc-inner strong {
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════════
   PRACTICES PAGE v97 — Kicker accents, card borders, text hierarchy, icons
   ════════════════════════════════════════════════════════════════ */

/* ── B. Kicker accent colors ── */
.practices-body .family-breath .family-kicker  { color: #22D3EE; } /* Respiro — cyan */
.practices-body .family-audio .family-kicker   { color: #A855F7; } /* Audio — viola */
.practices-body .family-move .family-kicker    { color: #F59E0B; } /* Movimento — amber */
.practices-body .node-release .usage-kicker    { color: #22D3EE; } /* Decompressione — cyan */
.practices-body .node-return .usage-kicker     { color: #F59E0B; } /* Rientro — amber */
.practices-body .node-center .usage-kicker     { color: #10B981; } /* Centratura — green */
.practices-body .node-activate .usage-kicker   { color: #F97316; } /* Attivazione — orange */

/* ── C. Border-top on family cards + usage nodes ── */
.practices-body .family-breath  { border-top: 3px solid rgba(34, 211, 238, 0.4); }
.practices-body .family-audio   { border-top: 3px solid rgba(168, 85, 247, 0.4); }
.practices-body .family-move    { border-top: 3px solid rgba(245, 158, 11, 0.4); }
.practices-body .node-release   { border-top: 3px solid rgba(34, 211, 238, 0.4); }
.practices-body .node-return    { border-top: 3px solid rgba(245, 158, 11, 0.4); }
.practices-body .node-center    { border-top: 3px solid rgba(16, 185, 129, 0.4); }
.practices-body .node-activate  { border-top: 3px solid rgba(249, 115, 22, 0.4); }

/* ── D. Hero text hierarchy ── */
.practices-body .practices-hero-text { color: var(--text-soft); }
.practices-body .practices-hero-note {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── E. Stage-copy + card paragraphs softer ── */
.practices-body .practices-stage-copy p:not(.eyebrow) { color: var(--text-soft); }
.practices-body .practice-family p,
.practices-body .guidance-lane p,
.practices-body .usage-node p { color: var(--text-soft); }

/* ── F. Usage-node icons ── */
.practices-body .usage-node .material-icons {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 6px;
  opacity: 0.7;
}
.practices-body .node-release .material-icons  { color: #22D3EE; }
.practices-body .node-return .material-icons   { color: #F59E0B; }
.practices-body .node-center .material-icons   { color: #10B981; }
.practices-body .node-activate .material-icons { color: #F97316; }

/* ── Practices mobile carousel accent colors ── */
.practices-families-track .cc-card:nth-child(1) { --sys-node-color: #22D3EE; }
.practices-families-track .cc-card:nth-child(2) { --sys-node-color: #A855F7; }
.practices-families-track .cc-card:nth-child(3) { --sys-node-color: #F59E0B; }
.practices-families-track .cc-card .family-kicker { color: var(--sys-node-color); }
.practices-families-track .cc-card .cc-inner {
  border-top: 2px solid var(--sys-node-color, rgba(255,255,255,0.08));
  height: 100%;
  min-height: 160px;
  padding: 18px 16px;
  font-size: 0.88rem;
}
.practices-families-track .cc-card .cc-inner p { font-size: 0.78rem; }
.practices-families-track .cc-card .cc-inner strong { font-size: 0.88rem; }
.practices-families-track .cc-card[data-dist="0"] .cc-inner {
  border-color: var(--sys-node-color, rgba(114, 240, 222, 0.4)) !important;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px color-mix(in srgb, var(--sys-node-color, #72f0de) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

/* Practices families carousel wrapper — grouping only */
.practices-body .practices-families-carousel-wrap {
  /* grouping wrapper only */
}

/* ═══════════════════════════════════════════════════════════════
   BaZi Test v103 — kicker colors, border-top, text hierarchy, icons
   ═══════════════════════════════════════════════════════════════ */

/* B: Kicker accent colors */
.bazi-test-body .bazi-test-visual-core .example-kicker { color: #6366F1; }
.bazi-test-body .panel-today .example-kicker   { color: #22D3EE; }
.bazi-test-body .panel-organ .example-kicker   { color: #10B981; }
.bazi-test-body .panel-coher .example-kicker   { color: #F59E0B; }
.bazi-test-body .bazi-test-guidance .example-kicker { color: #A855F7; }

/* C: Border-top colored */
.bazi-test-body .panel-today   { border-top: 3px solid rgba(34, 211, 238, 0.35); }
.bazi-test-body .panel-organ   { border-top: 3px solid rgba(16, 185, 129, 0.35); }
.bazi-test-body .panel-coher   { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.bazi-test-body .bazi-test-guidance { border-top: 3px solid rgba(168, 85, 247, 0.35); }

/* D: Hero text hierarchy */
.bazi-test-body .bazi-test-copy p:not(.eyebrow):not(.bazi-test-note) { color: var(--text-soft); }
.bazi-test-body .bazi-test-note { font-size: 0.78rem; color: var(--text-faint); }
.bazi-test-body .bazi-test-help { color: var(--text-faint); }

/* E: Card paragraph colors */
.bazi-test-body .bazi-test-panel p,
.bazi-test-body .bazi-test-guidance p { color: var(--text-soft); }

/* F: Material Icons in panels */
.bazi-test-body .bazi-test-panel > .material-icons,
.bazi-test-body .bazi-test-guidance > .material-icons {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
  opacity: 0.7;
}
.bazi-test-body .panel-today > .material-icons   { color: #22D3EE; }
.bazi-test-body .panel-organ > .material-icons   { color: #10B981; }
.bazi-test-body .panel-coher > .material-icons   { color: #F59E0B; }
.bazi-test-body .bazi-test-guidance > .material-icons { color: #A855F7; }

/* ═══════════════════════════════════════════════════════════════
   Chronotype Test v103 — kicker colors, border-top, text hierarchy, icons
   ═══════════════════════════════════════════════════════════════ */

/* B: Metric label accent colors */
.chronotype-test-body .metric-offset > span:first-of-type { color: #F59E0B; }
.chronotype-test-body .metric-conf > span:first-of-type   { color: #72f0de; }
.chronotype-test-body .metric-impact > span:first-of-type  { color: #7ea6ff; }

/* C: Border-top colored */
.chronotype-test-body .metric-offset { border-top: 3px solid rgba(245, 158, 11, 0.35); }
.chronotype-test-body .metric-conf   { border-top: 3px solid rgba(114, 240, 222, 0.35); }
.chronotype-test-body .metric-impact  { border-top: 3px solid rgba(126, 166, 255, 0.35); }

/* D: Hero text hierarchy */
.chronotype-test-body .chronotype-test-copy p:not(.eyebrow):not(.chronotype-test-note) { color: var(--text-soft); }
.chronotype-test-body .chronotype-test-note { font-size: 0.78rem; color: var(--text-faint); }

/* E: Section-copy + card paragraph colors */
.chronotype-test-body .chronotype-test-section-copy p:not(.eyebrow) { color: var(--text-soft); }
.chronotype-test-body .chronotype-test-result-card p { color: var(--text-soft); }

/* F: Material Icons in result metrics */
.chronotype-test-body .chronotype-result-metric > .material-icons {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
  opacity: 0.7;
}
.chronotype-test-body .metric-offset > .material-icons { color: #F59E0B; }
.chronotype-test-body .metric-conf > .material-icons   { color: #72f0de; }
.chronotype-test-body .metric-impact > .material-icons  { color: #7ea6ff; }
