:root {
  --midnight: #0b111c;
  --midnight-soft: #111a29;
  --midnight-lift: #182335;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --ink: #181713;
  --ink-soft: #514d45;
  --muted: #6a655b;
  --line: rgba(24, 23, 19, 0.14);
  --line-dark: rgba(247, 242, 232, 0.15);
  --gold: #b8872f;
  --gold-ink: #765313;
  --gold-light: #f2ca79;
  --teal: #65c7c2;
  --violet: #9d8cda;
  --coral: #e08b72;
  --blue: #76a9ea;
  --green: #79b98a;
  --focus: #58d4d1;
  --shadow: 0 30px 80px rgba(3, 8, 16, 0.2);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --page: min(1180px, calc(100% - 48px));
  --header-height: 76px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--midnight);
  color-scheme: light dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dark .eyebrow,
.cosmic-section .eyebrow,
.legal-hero .eyebrow {
  color: var(--gold-light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

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

.section-heading h2,
.legal-hero h1,
.success-card h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  line-height: 1.6;
}

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

.dark .section-heading p {
  color: #c8ced8;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(11, 17, 28, 0.58);
  color: var(--ivory);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(11, 17, 28, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.nav-shell {
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #d9dde5;
  font-size: 0.89rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-nav .nav-cta {
  margin-left: 4px;
  padding-inline: 18px;
  background: var(--ivory);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 19px;
  height: 1.5px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.button-dark {
  background: var(--midnight);
  color: var(--ivory);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--midnight-lift);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.ui-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-arrow {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  transition: transform 180ms ease;
}

.button:hover .button-arrow,
.button:focus-visible .button-arrow {
  transform: translateX(3px);
}

.cosmic-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(101, 199, 194, 0.12), transparent 26%),
    radial-gradient(circle at 65% 70%, rgba(157, 140, 218, 0.12), transparent 32%),
    radial-gradient(circle at 15% 12%, rgba(184, 135, 47, 0.12), transparent 25%),
    var(--midnight);
  color: var(--ivory);
}

.cosmic-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,.3) 0 1px, transparent 1.5px),
    radial-gradient(circle at 40% 76%, rgba(255,255,255,.24) 0 1px, transparent 1.5px),
    radial-gradient(circle at 91% 65%, rgba(255,255,255,.3) 0 1px, transparent 1.5px);
  background-size: 190px 190px, 270px 270px, 220px 220px, 320px 320px;
  content: "";
  opacity: 0.55;
}

.hero {
  min-height: 880px;
  padding: calc(var(--header-height) + 92px) 0 76px;
  display: flex;
  align-items: center;
}

.hero-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 670px;
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.1rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: #d4d8df;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero .button-row {
  margin-bottom: 30px;
}

.hero-trust {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: #b9c0cb;
  font-size: 0.86rem;
  list-style: none;
}

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

.hero-trust li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(101, 199, 194, 0.7);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone-halo,
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.phone-halo {
  width: min(610px, 98%);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(242, 202, 121, 0.15), rgba(101, 199, 194, 0.07) 34%, transparent 68%);
  filter: blur(1px);
}

.orbit-ring {
  width: min(570px, 92%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  transform: rotate(18deg) scaleY(0.66);
}

.orbit-ring.ring-two {
  width: min(720px, 115%);
  border-color: rgba(242, 202, 121, 0.13);
  transform: rotate(-24deg) scaleY(0.48);
}

.phone-wrap {
  position: relative;
  z-index: 3;
  width: min(350px, 75%);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotateY(-3deg) rotateX(1deg);
  transition: transform 160ms ease-out;
}

.phone-wrap::after {
  position: absolute;
  right: 12%;
  bottom: 1%;
  left: 12%;
  z-index: -1;
  height: 10%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(28px);
  content: "";
}

.phone-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 35px 42px rgba(0, 0, 0, 0.34));
}

.equation-chip {
  position: absolute;
  z-index: 2;
  min-width: 106px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(18, 28, 43, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  color: #f4ecda;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: drift 8s ease-in-out infinite alternate;
}

.chip-math {
  display: block;
  margin: 0 auto;
  color: currentColor;
  font-family: "STIX Two Math", "Cambria Math", "STIXGeneral", var(--serif);
  font-size: 0.98rem;
}

.equation-chip small {
  display: block;
  margin-top: 6px;
  color: #aeb7c4;
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-life { top: 12%; left: 2%; color: #aee2b8; }
.chip-sound { top: 29%; right: -4%; color: #a9d8ff; animation-delay: -2s; }
.chip-markets { bottom: 23%; left: -4%; color: var(--gold-light); animation-delay: -4s; }
.chip-cosmos { right: 2%; bottom: 10%; color: #c9bdf3; animation-delay: -6s; }

@keyframes drift {
  from { transform: translate3d(0, -4px, 0); }
  to { transform: translate3d(0, 7px, 0); }
}

.motion-control {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 26px;
  z-index: 8;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 17, 28, 0.66);
  color: #c9ced7;
  font-size: 0.76rem;
  font-weight: 650;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.motion-control-icon {
  width: 16px;
  height: 16px;
  display: grid;
  flex: 0 0 16px;
  place-items: center;
}

.motion-control-icon .ui-icon {
  width: 16px;
  height: 16px;
  grid-area: 1 / 1;
  flex-basis: 16px;
}

.motion-play-icon,
.motion-control[aria-pressed="true"] .motion-pause-icon {
  display: none;
}

.motion-control[aria-pressed="true"] .motion-play-icon {
  display: block;
}

.section {
  padding: clamp(86px, 12vw, 150px) 0;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
}

.explore {
  background:
    radial-gradient(circle at 100% 0, rgba(184, 135, 47, 0.08), transparent 30%),
    var(--ivory);
}

.discipline-explorer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.discipline-tabs {
  align-self: start;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.discipline-tab {
  width: 100%;
  min-height: 53px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.discipline-tab:hover,
.discipline-tab:focus-visible {
  color: var(--ink);
  transform: translateX(2px);
}

.discipline-tab[aria-selected="true"] {
  background: var(--midnight);
  color: white;
  box-shadow: 0 10px 24px rgba(11, 17, 28, 0.14);
}

.tab-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--tab-color, var(--gold));
  box-shadow: 0 0 0 4px rgba(184, 135, 47, 0.1);
}

.tab-life { --tab-color: var(--green); }
.tab-sound { --tab-color: var(--blue); }
.tab-light { --tab-color: var(--coral); }
.tab-markets { --tab-color: var(--gold-light); }
.tab-technology { --tab-color: var(--violet); }
.tab-cosmos { --tab-color: #c4b2f0; }

.panel-life { --panel-color: #aee2b8; }
.panel-sound { --panel-color: #b8dcff; }
.panel-light { --panel-color: #ffc0ad; }
.panel-markets { --panel-color: var(--gold-light); }
.panel-technology { --panel-color: #cbbff0; }
.panel-cosmos { --panel-color: #cbbff0; }

.discipline-panels {
  min-width: 0;
}

.discipline-panel {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: var(--midnight-soft);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.js .discipline-panel[hidden] {
  display: none;
}

.panel-copy {
  padding: clamp(34px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-kicker {
  margin-bottom: 14px;
  color: var(--panel-color, var(--gold-light));
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel-copy h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.panel-observation {
  margin-bottom: 26px;
  color: #cbd1da;
  line-height: 1.55;
}

.equation-math {
  width: max-content;
  max-width: 100%;
  margin: 0 0 13px;
  overflow-x: auto;
  overflow-y: hidden;
  color: var(--ivory);
  font-family: "STIX Two Math", "Cambria Math", "STIXGeneral", var(--serif);
  font-size: clamp(1.55rem, 2.55vw, 2.55rem);
  font-variant-numeric: lining-nums;
  line-height: 1.25;
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
  scrollbar-width: thin;
}

.panel-technology .equation-math {
  font-size: clamp(0.98rem, 1.42vw, 1.35rem);
}

.equation-legend {
  margin: 0 0 20px;
  color: #97a3b3;
  font-size: 0.76rem;
  line-height: 1.45;
}

.equation-legend i {
  color: var(--panel-color, var(--gold-light));
  font-family: "STIX Two Math", "Cambria Math", "STIXGeneral", var(--serif);
  font-style: italic;
}

.panel-consequence {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: #aeb7c4;
  font-size: 0.94rem;
}

.discipline-scene {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), transparent 64%);
  background-size: 34px 34px, 34px 34px, auto;
}

.discipline-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--midnight-soft), transparent 18%);
  content: "";
  pointer-events: none;
}

.equation-graphic {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  color: var(--panel-color, var(--gold-light));
}

.graphic-axis,
.graphic-boundary,
.graphic-dimension {
  fill: none;
  stroke: rgba(229, 235, 244, 0.48);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graphic-guide,
.graphic-normal,
.graphic-radius {
  fill: none;
  stroke: rgba(229, 235, 244, 0.28);
  stroke-width: 1.4;
  stroke-dasharray: 7 8;
}

.graphic-guide.faint {
  stroke: rgba(229, 235, 244, 0.12);
  stroke-dasharray: 4 10;
}

.graphic-area {
  fill: color-mix(in srgb, var(--panel-color, var(--gold-light)) 15%, transparent);
}

.graphic-line,
.graphic-wave,
.graphic-light-ray {
  fill: none;
  stroke: var(--panel-color, var(--gold-light));
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graphic-wave.secondary { opacity: 0.76; }
.graphic-wave.tertiary { opacity: 0.54; }

.graphic-simple {
  fill: none;
  stroke: rgba(101, 199, 194, 0.65);
  stroke-width: 2;
  stroke-dasharray: 9 9;
}

.graphic-point,
.graphic-markers circle,
.graphic-nodes circle {
  fill: var(--midnight-soft);
  stroke: var(--panel-color, var(--gold-light));
  stroke-width: 3;
}

.graphic-point.soft {
  opacity: 0.66;
}

.graphic-inflection {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1.5;
}

.graphic-label {
  fill: #aeb8c8;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.graphic-label.strong {
  fill: var(--panel-color, var(--gold-light));
  font-weight: 700;
}

.graphic-label.axis-label,
.graphic-label.mode-label,
.graphic-label.angle-label,
.graphic-label.central-label {
  fill: #e6ebf2;
  font-family: "STIX Two Math", "Cambria Math", "STIXGeneral", var(--serif);
  font-size: 17px;
  font-style: italic;
}

.graphic-label.caption-label {
  font-size: 12px;
}

.graphic-medium.medium-air {
  fill: rgba(118, 169, 234, 0.035);
}

.graphic-medium.medium-glass {
  fill: rgba(101, 199, 194, 0.1);
}

.graphic-light-ray {
  stroke: #ffb494;
  stroke-width: 5;
}

.graphic-ray-head {
  fill: #ffb494;
}

.graphic-angle {
  fill: none;
  stroke: rgba(255, 180, 148, 0.78);
  stroke-width: 2;
}

.probability-pair rect {
  fill: color-mix(in srgb, var(--panel-color) 38%, transparent);
  stroke: var(--panel-color);
  stroke-width: 1.5;
}

.graphic-orbit {
  fill: none;
  stroke: var(--panel-color);
  stroke-width: 2.25;
}

.graphic-orbit.outer {
  opacity: 0.22;
  stroke-dasharray: 7 10;
}

.graphic-central-mass {
  fill: color-mix(in srgb, var(--gold-light) 34%, var(--midnight-soft));
  stroke: var(--gold-light);
  stroke-width: 2;
}

.planet-latitude {
  fill: none;
  stroke: rgba(255, 248, 224, 0.27);
  stroke-width: 1.5;
}

.graphic-radius,
.graphic-gravity {
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 2;
  stroke-dasharray: 7 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graphic-velocity {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.graphic-satellite {
  fill: var(--panel-color);
  stroke: #f6f1ff;
  stroke-width: 2;
}

.graphic-satellite.ghost {
  opacity: 0.38;
}

.graphic-trace {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: trace-equation 900ms cubic-bezier(.2, .85, .3, 1) forwards;
}

@keyframes trace-equation {
  to { stroke-dashoffset: 0; }
}

.ritual {
  background:
    radial-gradient(circle at 14% 68%, rgba(101, 199, 194, 0.1), transparent 28%),
    var(--midnight);
  color: var(--ivory);
}

.ritual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.ritual-copy h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.ritual-copy > p:not(.eyebrow) {
  color: #c5cbd5;
  font-size: 1.13rem;
}

.ritual-steps {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.ritual-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  color: #b9c0cb;
}

.ritual-steps strong {
  display: block;
  margin-bottom: 2px;
  color: white;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 202, 121, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
}

.reveal-card {
  --reveal-answer-opacity: 1;
  --reveal-blur: 0px;
  --reveal-card-scale: 1;
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 36%, rgba(118, 169, 234, 0.15), transparent 34%),
    linear-gradient(145deg, #182336, #0d1623 72%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.reveal-card::before,
.reveal-card::after {
  position: absolute;
  border: 1px solid rgba(118, 169, 234, 0.22);
  border-radius: 50%;
  content: "";
}

.reveal-card::before {
  top: 5%;
  left: 11%;
  width: 78%;
  aspect-ratio: 1;
}

.reveal-card::after {
  top: 16%;
  left: 22%;
  width: 56%;
  aspect-ratio: 1;
}

.reveal-card-inner {
  position: relative;
  z-index: 2;
  min-height: 570px;
  padding: clamp(28px, 4.4vw, 50px);
  display: flex;
  flex-direction: column;
  transform: scale(var(--reveal-card-scale));
  transform-origin: center;
  will-change: transform;
}

.reveal-category {
  min-height: 32px;
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border: 1px solid rgba(118, 169, 234, 0.2);
  border-radius: 999px;
  background: rgba(118, 169, 234, 0.08);
  color: #dbeaff;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal-category span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(118, 169, 234, 0.12);
}

.reveal-content {
  min-height: 335px;
  display: grid;
  flex: 1;
  place-items: center;
}

.reveal-mystery,
.reveal-answer {
  width: min(100%, 520px);
  grid-area: 1 / 1;
  text-align: center;
}

.reveal-mystery {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.js .reveal-card.is-ready .reveal-mystery {
  display: flex;
  opacity: 1;
}

.js .reveal-card.is-holding .reveal-mystery,
.js .reveal-card.is-revealed .reveal-mystery {
  opacity: 0;
  transform: translateY(-6px) scale(0.985);
  transition-duration: 80ms;
}

.reveal-string-glyph {
  width: 180px;
  height: 92px;
  overflow: visible;
  fill: var(--midnight-soft);
  stroke: rgba(169, 216, 255, 0.88);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal-string-glyph circle {
  fill: #d8edff;
  stroke-width: 2;
}

.reveal-question {
  max-width: 460px;
  margin: 0;
  color: #d4dae4;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.3vw, 2.75rem);
  line-height: 1.12;
}

.reveal-answer {
  padding: 26px 0;
  opacity: var(--reveal-answer-opacity);
  filter: blur(var(--reveal-blur));
  pointer-events: none;
  user-select: none;
  will-change: filter, opacity;
}

.reveal-answer .equation-math {
  margin: 0 auto 14px;
  color: #d7eaff;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.reveal-answer h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 500;
}

.reveal-rule {
  width: 84px;
  height: 2px;
  margin: 18px auto;
  display: block;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.reveal-answer p {
  max-width: 410px;
  margin: 0 auto;
  color: #aeb8c7;
  font-size: 0.92rem;
  line-height: 1.5;
}

.reveal-card.is-revealed .reveal-answer {
  pointer-events: auto;
  user-select: text;
}

.reveal-card.is-settling .reveal-card-inner {
  animation: reveal-hero-settle 380ms linear both;
}

@keyframes reveal-hero-settle {
  0% { transform: scale(1.02); }
  42% { transform: scale(1.004); }
  72% { transform: scale(0.998); }
  100% { transform: scale(1); }
}

.reveal-control {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.reveal-button {
  display: none;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 750;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  -webkit-touch-callout: none;
  transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.js .reveal-card.is-ready .reveal-button {
  display: inline-flex;
}

.reveal-button:hover,
.reveal-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.reveal-button:disabled {
  cursor: default;
  opacity: 0.74;
}

.hold-meter {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
}

.hold-meter > svg:first-child {
  position: absolute;
  inset: 0;
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}

.hold-track,
.hold-progress {
  fill: none;
  stroke-width: 2.5;
}

.hold-track {
  stroke: rgba(255, 255, 255, 0.18);
}

.hold-progress {
  stroke: var(--blue);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
}

.hold-hand {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
  color: #d7eaff;
}

.reveal-button + p {
  display: none;
  margin: 8px 0 0;
  color: #8995a5;
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: center;
}

.js .reveal-card.is-ready .reveal-button + p {
  display: block;
}

.reveal-next {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7eaff;
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.js .reveal-card.is-ready .reveal-next {
  display: none;
}

.js .reveal-card.is-revealed .reveal-next {
  display: inline-flex;
}

.js .reveal-card.is-revealed .reveal-button + p {
  display: none;
}

.reveal-next:hover .button-arrow,
.reveal-next:focus-visible .button-arrow,
.text-link:hover .button-arrow,
.text-link:focus-visible .button-arrow {
  transform: translateX(3px);
}

.benefits {
  background: var(--ivory);
}

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

.bento-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.bento-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.bento-card p {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.bento-large {
  position: relative;
  min-height: 470px;
  grid-column: span 7;
  background:
    radial-gradient(circle at 86% 68%, rgba(101, 199, 194, 0.18), transparent 28%),
    var(--paper);
}

.bento-large .bento-equation {
  position: absolute;
  right: 7%;
  bottom: 4%;
  color: rgba(24, 23, 19, 0.08);
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 1;
}

.bento-history {
  min-height: 470px;
  grid-column: span 5;
  background: var(--midnight-soft);
  color: var(--ivory);
}

.bento-history p {
  color: #bcc4d0;
}

.timeline-mark {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  color: #dce0e6;
  font-size: 0.9rem;
}

.timeline-mark::before {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 202, 121, 0.36);
  border-radius: 50%;
  color: var(--gold-light);
  content: "1761";
  font-size: 0.55rem;
  font-weight: 800;
}

.bento-compact {
  grid-column: span 4;
}

.bento-symbol {
  width: 56px;
  height: 56px;
  margin-bottom: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(184, 135, 47, 0.12);
  color: var(--gold-ink);
}

.bento-symbol .feature-icon {
  width: 25px;
  height: 25px;
  flex-basis: 25px;
  stroke-width: 1.65;
}

.bento-history .bento-symbol {
  background: rgba(242, 202, 121, 0.12);
  color: var(--gold-light);
}

.privacy-band {
  position: relative;
  overflow: hidden;
  background: #e9e2d4;
}

.privacy-band::after {
  position: absolute;
  top: -40%;
  right: -8%;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 23, 19, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(24, 23, 19, 0.025), 0 0 0 100px rgba(24, 23, 19, 0.018);
  content: "";
}

.privacy-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
}

.privacy-copy h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.privacy-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-ink);
  font-weight: 750;
  text-underline-offset: 4px;
}

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

.privacy-point {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(24, 23, 19, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.38);
}

.privacy-point strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.privacy-point span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.waitlist {
  background:
    radial-gradient(circle at 50% 30%, rgba(157, 140, 218, 0.15), transparent 26%),
    radial-gradient(circle at 10% 82%, rgba(101, 199, 194, 0.1), transparent 28%),
    var(--midnight);
  color: var(--ivory);
  text-align: center;
}

.waitlist-shell {
  max-width: 820px;
  margin: 0 auto;
}

.waitlist h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.waitlist h2 span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.waitlist-lede {
  max-width: 590px;
  margin: 0 auto 35px;
  color: #c6ccd5;
  font-size: 1.1rem;
}

.waitlist-form {
  max-width: 670px;
  margin: 0 auto;
}

.form-label {
  display: block;
  margin: 0 0 8px 12px;
  color: #e8ebf0;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.form-row:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(88, 212, 209, 0.18);
}

.form-row input[type="email"] {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 10px 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
}

.form-row input::placeholder {
  color: #aeb5c0;
  opacity: 1;
}

.form-row .button {
  min-width: 160px;
  border: 0;
}

.form-row .button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.consent-row {
  max-width: 620px;
  min-height: 44px;
  margin: 12px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: #c1c7d1;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.consent-row input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.consent-row a {
  color: white;
  text-underline-offset: 3px;
}

.waitlist-form.is-complete .form-controls {
  display: none;
}

.form-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: #aeb5c0;
  font-size: 0.78rem;
}

.form-note a {
  color: #e7eaf0;
  text-underline-offset: 3px;
}

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

.form-status {
  min-height: 28px;
  margin: 16px 0 0;
  color: #c6ccd5;
  font-weight: 650;
}

.form-status.is-success { color: #aee2b8; }
.form-status.is-error { color: #ffc0ad; }

.site-footer {
  padding: 52px 0;
  border-top: 1px solid var(--line-dark);
  background: #080d15;
  color: #bcc2cc;
}

.footer-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 12px;
}

.footer-links a,
.footer-support {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #c7ccd5;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-support:hover,
.footer-support:focus-visible {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  grid-column: 1 / -1;
  margin: -5px 0 0;
  color: #8f97a4;
  font-size: 0.76rem;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.22,.8,.3,1);
}

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

.js [data-reveal-delay="1"] { transition-delay: 90ms; }
.js [data-reveal-delay="2"] { transition-delay: 180ms; }
.js [data-reveal-delay="3"] { transition-delay: 270ms; }

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}

.motion-paused .graphic-trace {
  animation: none;
  stroke-dashoffset: 0;
}

/* Legal pages */
.legal-page {
  background: var(--ivory);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 92px) 0 90px;
  background:
    radial-gradient(circle at 82% 34%, rgba(101, 199, 194, 0.12), transparent 27%),
    radial-gradient(circle at 15% 10%, rgba(184, 135, 47, 0.13), transparent 25%),
    var(--midnight);
  color: var(--ivory);
}

.legal-hero::after {
  position: absolute;
  right: -10%;
  bottom: -75%;
  width: min(720px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 202, 121, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(242, 202, 121, 0.025), 0 0 0 140px rgba(101, 199, 194, 0.018);
  content: "";
}

.legal-hero-shell {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
}

.legal-hero .lede {
  max-width: 700px;
  margin-bottom: 24px;
  color: #cad0da;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.policy-date {
  margin: 0;
  color: #aeb6c2;
  font-size: 0.85rem;
}

.policy-overview {
  padding: 56px 0 18px;
  background: var(--ivory);
}

.policy-overview-shell {
  width: var(--page);
  margin: 0 auto;
}

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

.summary-card {
  min-height: 144px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.summary-card::before {
  width: 9px;
  height: 9px;
  display: block;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(101, 199, 194, 0.12);
  content: "";
}

.summary-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.28rem;
}

.summary-card span {
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.4;
}

.policy-callout {
  margin-top: 14px;
  padding: 21px 24px;
  border: 1px solid rgba(118, 83, 19, 0.24);
  border-radius: 17px;
  background: rgba(242, 202, 121, 0.13);
  color: #4d3c1d;
}

.policy-callout strong {
  color: #31240e;
}

.data-journey {
  padding: 70px 0 18px;
}

.data-journey h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

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

.journey-card {
  position: relative;
  min-height: 185px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--midnight-soft);
  color: var(--ivory);
}

.journey-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--midnight);
  content: "";
  transform: translateY(-50%);
}

.journey-card:not(:last-child)::before {
  position: absolute;
  top: calc(50% - 4px);
  right: -4px;
  z-index: 4;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  content: "";
  transform: rotate(-45deg);
}

.journey-label {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.journey-card p {
  margin: 0;
  color: #b9c1cc;
  font-size: 0.85rem;
  line-height: 1.5;
}

.policy-body {
  padding: 88px 0 120px;
}

.policy-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 245px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(42px, 8vw, 100px);
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
}

.policy-toc h2 {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.policy-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-toc a {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
  padding: 6px 0 6px 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  border-left-color: var(--gold);
  color: var(--gold-ink);
}

.legal-copy {
  min-width: 0;
}

.legal-intro {
  margin-bottom: 52px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.17rem;
}

.legal-copy section {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-copy section + section {
  margin-top: 44px;
}

.legal-copy h2 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.legal-copy h3 {
  margin: 30px 0 10px;
  font-size: 1rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-copy strong {
  color: var(--ink);
}

.legal-copy a {
  color: var(--gold-ink);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-card {
  margin-top: 60px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  background: var(--midnight-soft);
  color: var(--ivory);
}

.contact-card h2 {
  margin-bottom: 12px;
  color: white;
}

.contact-card p {
  color: #c5cbd4;
}

.contact-card a {
  color: var(--gold-light);
}

/* Success fallback */
.success-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 72% 22%, rgba(101, 199, 194, 0.14), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(157, 140, 218, 0.12), transparent 28%),
    var(--midnight);
  color: var(--ivory);
}

.success-main {
  width: var(--page);
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  place-items: center;
}

.success-card {
  max-width: 720px;
  text-align: center;
}

.success-card .brand {
  width: max-content;
  margin: 0 auto 48px;
}

.success-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 199, 194, 0.45);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1.6rem;
}

.success-card p {
  margin-bottom: 30px;
  color: #c7cdd7;
  font-size: 1.1rem;
}

@media (max-width: 1020px) {
  .hero-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: 25px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7.4vw, 5.5rem);
  }

  .discipline-explorer {
    grid-template-columns: 1fr;
  }

  .discipline-tabs {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .discipline-tab {
    width: auto;
    min-width: max-content;
    scroll-snap-align: start;
  }

  .discipline-panel {
    min-height: 520px;
  }

  .policy-shell {
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 45px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: min(100% - 36px, 720px);
    --header-height: 68px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 18px;
    display: grid;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    background: rgba(11, 17, 28, 0.98);
    box-shadow: 0 22px 50px rgba(0,0,0,.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .site-nav a {
    min-height: 50px;
    justify-content: flex-start;
    padding-inline: 16px;
  }

  .js .site-nav .nav-cta {
    margin: 7px 0 0;
    justify-content: center;
  }

  html:not(.js) .site-header {
    position: static;
    height: auto;
    background: var(--midnight);
  }

  html:not(.js) .nav-shell {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  html:not(.js) .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 74px);
  }

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

  .hero-copy {
    max-width: 720px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 13vw, 6rem);
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero .button-row,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 650px;
  }

  .chip-life { left: 1%; }
  .chip-sound { right: 0; }
  .chip-markets { left: 0; }
  .chip-cosmos { right: 1%; }

  .motion-control {
    right: 18px;
    bottom: 16px;
  }

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

  .panel-copy {
    min-height: 360px;
  }

  .discipline-scene {
    min-height: 340px;
  }

  .equation-graphic {
    min-height: 340px;
  }

  .discipline-scene::after {
    background: linear-gradient(180deg, var(--midnight-soft), transparent 20%);
  }

  .ritual-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .ritual-copy {
    max-width: 690px;
  }

  .bento-large,
  .bento-history {
    grid-column: span 12;
  }

  .bento-compact {
    grid-column: span 6;
  }

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

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

  .journey-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -12px;
    transform: translateX(50%) rotate(90deg);
  }

  .journey-card:not(:last-child)::before {
    top: auto;
    right: calc(50% - 4px);
    bottom: -4px;
    transform: rotate(45deg);
  }

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

  .policy-toc {
    position: static;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.5);
  }

  .policy-toc ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-toc a {
    border-left: 0;
    padding-left: 0;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 16px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero .button-row {
    display: grid;
  }

  .hero-trust {
    gap: 8px 13px;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 570px;
  }

  .phone-wrap {
    width: min(285px, 72vw);
  }

  .equation-chip {
    min-width: 90px;
    padding: 9px 11px;
    font-size: 0.88rem;
  }

  .chip-sound { top: 25%; right: -9%; }
  .chip-life { left: -8%; }
  .chip-markets { bottom: 21%; left: -8%; }
  .chip-cosmos { display: none; }

  .motion-control {
    right: 50%;
    transform: translateX(50%);
  }

  .discipline-panel {
    border-radius: 25px;
  }

  .panel-copy {
    min-height: 380px;
    padding: 34px 25px;
  }

  .discipline-scene {
    min-height: 300px;
  }

  .equation-graphic {
    min-height: 300px;
  }

  .panel-technology .equation-math {
    font-size: 0.98rem;
  }

  .reveal-content {
    min-height: 350px;
  }

  .reveal-card,
  .reveal-card-inner {
    min-height: 520px;
  }

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

  .bento-large,
  .bento-history,
  .bento-compact {
    min-height: 300px;
    grid-column: auto;
  }

  .bento-large {
    min-height: 420px;
  }

  .bento-history {
    min-height: 390px;
  }

  .privacy-points,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    padding: 9px;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .form-row .button {
    width: 100%;
  }

  .legal-hero {
    padding-top: calc(var(--header-height) + 72px);
  }

  .policy-toc ul {
    grid-template-columns: 1fr;
  }

  .legal-intro,
  .policy-callout,
  .summary-card,
  .journey-card {
    padding: 22px;
  }

  .footer-links {
    max-width: 320px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .phone-wrap {
    transform: none !important;
  }

  .motion-control {
    display: none;
  }

  .graphic-trace {
    animation: none;
    stroke-dashoffset: 0;
  }
}

@media (forced-colors: active) {
  .button,
  .discipline-tab,
  .summary-card,
  .journey-card,
  .bento-card,
  .bento-symbol,
  .policy-callout,
  .privacy-point,
  .form-row,
  .motion-control,
  .reveal-card,
  .reveal-button {
    border: 1px solid CanvasText;
  }

  .equation-chip,
  .orbit-ring,
  .phone-halo,
  .discipline-scene {
    display: none;
  }

  .js .reveal-card.is-ready:not(.is-revealed) .reveal-answer {
    opacity: 0;
    filter: none;
  }

  .js .reveal-card.is-revealed .reveal-answer {
    opacity: 1;
    filter: none;
  }
}
