:root {
  color-scheme: dark;
  --ink: #06080f;
  --surface: #0a0d17;
  --surface-2: #101524;
  --line: rgba(191, 210, 255, 0.14);
  --line-strong: rgba(191, 210, 255, 0.3);
  --text: #edf1ff;
  --muted: #9da8c2;
  --quiet: #7f899f;
  --accent: #8d9bff;
  --accent-soft: #b9c4ff;
  --action: #d7dcff;
  --action-ink: #101322;
  --error: #ffb6bf;
  --error-strong: #ff8f9d;
  --nav-text: #c3cada;
  --body-strong: #c1c8d9;
  --legal-summary: #bac3d7;
  --footer-muted: #737d93;
  --action-hover: #f4f5ff;
  --header-glass: rgba(6, 8, 15, 0.92);
  --header-solid: rgba(6, 8, 15, 0.98);
  --status-surface: rgba(6, 8, 15, 0.9);
  --accent-wash-weak: rgba(141, 155, 255, 0.035);
  --accent-wash: rgba(141, 155, 255, 0.07);
  --accent-wash-strong: rgba(141, 155, 255, 0.12);
  --ambient-glow: radial-gradient(circle at 82% 8%, rgba(100, 114, 218, 0.1), transparent 28rem);
  --visual-glow: radial-gradient(circle, rgba(101, 113, 222, 0.14), transparent 62%);
  --wing-gradient: linear-gradient(145deg, rgba(185, 196, 255, 0.7), rgba(141, 155, 255, 0.18) 62%, transparent);
  --link-underline: rgba(193, 201, 255, 0.45);
  --accent-note: rgba(141, 155, 255, 0.06);
  --display: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(92vw, 1180px);
  --header-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 20;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    var(--ambient-glow),
    var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

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

p,
li {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  display: flex;
  width: 100%;
  height: var(--header-height);
  padding: 0 max(4vw, calc((100vw - 1180px) / 2));
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  border-color: var(--line);
  background: var(--header-glass);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: baseline;
  gap: 0.62rem;
  flex-shrink: 0;
}

.brand-project {
  color: var(--accent-soft);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.brand-caligo {
  font-family: var(--display);
  font-size: 1.34rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  color: var(--nav-text);
  font-size: 0.8rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a[aria-current="location"] {
  color: var(--text);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out-quart);
}

.site-nav a[aria-current="location"]:not(.nav-cta)::after,
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta[aria-current="location"] {
  border-color: var(--accent-soft);
}

.site-nav .nav-cta {
  min-height: 44px;
  padding: 0 0.9rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--accent-soft);
  background: var(--accent-wash);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.header-sentinel {
  position: absolute;
  top: 1px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.hero {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: min(820px, 100dvh);
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(4rem, 8vw, 7rem)) 0 clamp(4rem, 7vw, 6.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: block;
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-tag {
  display: block;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 1.2rem;
  font-size: clamp(3.7rem, 6.8vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--accent);
}

.hero-intro {
  max-width: 38rem;
  margin-top: 1.6rem;
  color: var(--body-strong);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 1.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 160ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

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

.button-primary {
  background: var(--action);
  color: var(--action-ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--action-hover);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent-soft);
  background: var(--accent-wash);
}

.hero-visual {
  position: relative;
  min-width: 0;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--visual-glow);
}

.hero-visual::after {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, var(--accent-soft) 22%, var(--text) 50%, var(--accent-soft) 78%, transparent);
  opacity: 0;
  transform: translateX(-12rem) rotate(8deg);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}

.world-status {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  min-height: 62px;
  padding: 0.8rem 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line-strong);
  background: var(--status-surface);
  font-family: var(--mono);
}

.world-status span,
.world-status strong {
  font-size: 0.63rem;
  letter-spacing: 0.04em;
}

.world-status span {
  color: var(--muted);
}

.world-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash-strong);
}

.motion-ready .hero-copy > * {
  animation: hero-copy-settle 560ms var(--ease) both;
}

.motion-ready .hero-copy > :nth-child(2) { animation-delay: 50ms; }
.motion-ready .hero-copy > :nth-child(3) { animation-delay: 95ms; }
.motion-ready .hero-copy > :nth-child(4) { animation-delay: 140ms; }

.motion-ready .hero-visual img {
  animation: hero-image-resolve 700ms var(--ease) both;
}

.motion-ready .hero-visual::after {
  animation: hero-seam-pass 680ms 80ms var(--ease-out-quint) both;
}

.motion-ready .world-status {
  animation: status-settle 500ms 200ms var(--ease) both;
}

.motion-ready .world-status i {
  animation: status-signal 680ms 620ms var(--ease-out-quart) 2;
}

@keyframes hero-copy-settle {
  from { transform: translateY(10px); filter: blur(1px); }
  to { transform: translateY(0); filter: blur(0); }
}

@keyframes hero-image-resolve {
  from { transform: scale(1.025); filter: brightness(0.78) saturate(0.72); }
  to { transform: scale(1); filter: brightness(1) saturate(1); }
}

@keyframes hero-seam-pass {
  0% { opacity: 0; transform: translateX(-12rem) rotate(8deg); }
  18% { opacity: 0.9; }
  82% { opacity: 0.75; }
  100% { opacity: 0; transform: translateX(12rem) rotate(8deg); }
}

@keyframes status-settle {
  from { transform: translateY(8px); filter: brightness(0.82); }
  to { transform: translateY(0); filter: brightness(1); }
}

@keyframes status-signal {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-wash-strong); }
  50% { box-shadow: 0 0 0 9px transparent; }
}

.world-status strong {
  color: var(--accent-soft);
  font-weight: 500;
}

.outcome-strip {
  display: grid;
  width: 100%;
  padding: 0 max(4vw, calc((100vw - 1180px) / 2));
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.outcome-strip div {
  min-width: 0;
  padding: 1.55rem clamp(1rem, 2.5vw, 2rem);
}

.outcome-strip div + div {
  border-left: 1px solid var(--line);
}

.outcome-strip strong,
.outcome-strip span {
  display: block;
}

.outcome-strip strong {
  font-size: 0.82rem;
}

.outcome-strip span {
  margin-top: 0.35rem;
  color: var(--quiet);
  font-size: 0.72rem;
}

.product-section,
.program-section,
.journey-section,
.about-section,
.contact-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.section-heading h2,
.program-intro h2,
.journey-heading h2,
.about-copy h2,
.contact-intro h2 {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading > p,
.program-intro > p {
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.75;
}

.experience-console {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink);
}

.console-bar {
  display: grid;
  min-height: 58px;
  padding: 0 1.25rem;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.console-bar strong {
  color: var(--text);
  font-weight: 500;
}

.console-controls {
  display: flex;
  gap: 0.45rem;
}

.console-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
}

.console-controls i:first-child { background: var(--accent); }
.console-controls i:nth-child(2) { background: var(--accent-soft); opacity: 0.65; }

.console-live {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.5rem;
}

.console-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-wash-strong);
}

.console-body {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.event-stream {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.console-label {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-stream ol {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.event-stream li {
  display: grid;
  min-height: 92px;
  padding: 1.15rem 0;
  align-items: center;
  grid-template-columns: 68px 1fr;
  border-bottom: 1px solid var(--line);
}

.event-stream li > span {
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.event-stream strong,
.event-stream small {
  display: block;
}

.event-stream strong {
  font-size: 0.94rem;
  font-weight: 600;
}

.event-stream small {
  margin-top: 0.35rem;
  color: var(--quiet);
  font-size: 0.76rem;
  line-height: 1.5;
}

.session-view {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(2.25rem, 5vw, 5rem);
  justify-content: center;
  flex-direction: column;
  background:
    linear-gradient(rgba(141, 155, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 155, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 32px 32px;
}

.session-state span,
.session-state strong {
  display: block;
}

.session-state span {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-state strong {
  margin-top: 0.4rem;
  color: var(--text);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.session-route {
  position: relative;
  height: 36px;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}

.session-route span,
.session-route b {
  position: absolute;
  top: 50%;
  height: 2px;
  content: "";
  transform: translateY(-50%);
}

.session-route span {
  right: 0;
  left: 0;
  background: var(--line-strong);
}

.session-route b {
  left: 0;
  width: 100%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent-wash-strong);
  transform-origin: left;
}

.session-route i {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px var(--accent-wash-strong);
  transform: translate(-50%, -50%);
}

.session-route i:nth-of-type(1) { left: 0; }
.session-route i:nth-of-type(2) { left: 50%; }
.session-route i:nth-of-type(3) { left: 100%; }

.server-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.server-bands span {
  min-width: 0;
  padding: 0.75rem 0.55rem;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-align: center;
  text-transform: uppercase;
}

.server-bands span + span { border-left: 1px solid var(--line); }

.session-view > p {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.console-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.console-summary div {
  padding: 1.25rem;
}

.console-summary div + div { border-left: 1px solid var(--line); }

.console-summary span,
.console-summary strong {
  display: block;
}

.console-summary span {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.console-summary strong {
  margin-top: 0.45rem;
  color: var(--accent-soft);
  font-size: 0.86rem;
  font-weight: 550;
}

.mirage-principles {
  display: grid;
  margin-top: 1px;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.mirage-principles article {
  min-height: 250px;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--surface);
}

.mirage-principles h3 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.mirage-principles p {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.experience-console.is-in-view .event-stream li {
  animation: console-event-resolve 520ms var(--ease) both;
}

.experience-console.is-in-view .event-stream li:nth-child(2) { animation-delay: 90ms; }
.experience-console.is-in-view .event-stream li:nth-child(3) { animation-delay: 180ms; }
.experience-console.is-in-view .session-route b { animation: session-route-resolve 920ms 120ms var(--ease-out-quint) both; }
.experience-console.is-in-view .console-live i { animation: status-signal 680ms 520ms var(--ease-out-quart) 2; }

@keyframes console-event-resolve {
  from { transform: translateX(-8px); filter: brightness(0.72); }
  to { transform: translateX(0); filter: brightness(1); }
}

@keyframes session-route-resolve {
  from { transform: translateY(-50%) scaleX(0); }
  to { transform: translateY(-50%) scaleX(1); }
}

.benefit-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
  border-top: 1px solid var(--line);
}

.benefit-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.benefit-heading h2 {
  max-width: 14ch;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.benefit-heading > p {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.75;
}

.benefit-perspectives {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line-strong);
}

.benefit-perspectives article {
  display: grid;
  min-height: 150px;
  padding: 2rem 0;
  align-items: center;
  grid-template-columns: minmax(150px, 0.3fr) minmax(220px, 0.4fr) minmax(280px, 0.7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.benefit-perspectives span {
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.benefit-perspectives h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.benefit-perspectives p {
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.7;
}

.proof-section {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(4rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
}

.proof-intro h2 {
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-intro > p {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.proof-intro .text-link {
  display: inline-block;
  margin-top: 2rem;
}

.proof-response {
  border-top: 1px solid var(--line-strong);
}

.proof-response article {
  display: grid;
  min-height: 150px;
  padding: 2rem 0;
  align-items: center;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 0.55fr);
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.proof-response span {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.proof-response p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.program-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.program-intro {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.program-intro > p {
  margin-top: 1.5rem;
}

.offer-list {
  border-top: 1px solid var(--line);
}

.offer-list article {
  display: grid;
  padding: 2rem 0;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.offer-list article > span {
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-list h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.offer-list p {
  max-width: 42rem;
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
}

.journey-section {
  border-top: 1px solid var(--line);
}

.journey-heading {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.journey-heading h2 {
  max-width: 12ch;
  margin-top: 0;
}

.text-link {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--accent-soft);
  font-size: 0.84rem;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: currentColor;
  color: var(--text);
}

.journey-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  list-style: none;
}

.journey-list li {
  position: relative;
  min-height: 270px;
  padding: 2rem;
}

.journey-list li::before {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 3.5rem;
  height: 1px;
  content: "";
  background: var(--accent);
}

.journey-list li + li {
  border-left: 1px solid var(--line);
}

.journey-list li > div {
  margin-top: 4.5rem;
}

.journey-list.is-in-view li::before {
  animation: stage-line-resolve 420ms var(--ease-out-quart) both;
}

.journey-list.is-in-view li > div {
  animation: stage-copy-settle 520ms var(--ease) both;
}

.journey-list.is-in-view li:nth-child(2)::before,
.journey-list.is-in-view li:nth-child(2) > div { animation-delay: 90ms; }

.journey-list.is-in-view li:nth-child(3)::before,
.journey-list.is-in-view li:nth-child(3) > div { animation-delay: 180ms; }

@keyframes stage-line-resolve {
  from { transform: scaleX(0.15); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

@keyframes stage-copy-settle {
  from { transform: translateY(8px); }
  to { transform: translateY(0); }
}

.journey-list h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

.journey-list p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.about-mark {
  position: relative;
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
}

.about-mark::before {
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--accent-soft);
}

.about-mark span {
  width: 38%;
  max-width: 150px;
  aspect-ratio: 0.68;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--wing-gradient);
  clip-path: polygon(100% 0, 70% 38%, 100% 100%, 20% 75%, 0 30%);
}

.about-mark span:first-child {
  transform: scaleX(-1);
}

.about-mark.is-in-view span:first-child {
  animation: wing-left-resolve 620ms var(--ease) both;
}

.about-mark.is-in-view span:last-child {
  animation: wing-right-resolve 620ms 80ms var(--ease) both;
}

@keyframes wing-left-resolve {
  from { transform: translateX(12px) scaleX(-0.9); filter: brightness(0.72); }
  to { transform: translateX(0) scaleX(-1); filter: brightness(1); }
}

@keyframes wing-right-resolve {
  from { transform: translateX(-12px) scaleX(0.9); filter: brightness(0.72); }
  to { transform: translateX(0) scaleX(1); filter: brightness(1); }
}

.about-copy p {
  max-width: 46rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.name-meanings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.name-meanings article {
  padding: 1.6rem 1.8rem 1.8rem 0;
}

.name-meanings article + article {
  padding-right: 0;
  padding-left: 1.8rem;
  border-left: 1px solid var(--line);
}

.name-meanings span,
.naming-pair strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.name-meanings p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.naming-pair {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  margin-top: 1.8rem;
}

.naming-pair p {
  display: flex;
  margin: 0;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.86rem;
  line-height: 1.55;
}

.naming-pair p + p {
  padding-left: 1.8rem;
  border-left: 1px solid var(--line);
}

.naming-pair span {
  color: var(--accent-soft);
}

.about-copy .about-origin {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(4rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
}

.contact-intro > p {
  max-width: 38rem;
  margin-top: 1.4rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-alternatives {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.contact-alternatives a {
  display: flex;
  padding: 1rem 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease;
}

.contact-alternatives a:hover,
.contact-alternatives a:focus-visible {
  color: var(--accent-soft);
}

.contact-alternatives span {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-alternatives strong {
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-form {
  position: relative;
  padding: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.form-field + .form-field {
  margin-top: 1.7rem;
}

.form-counts {
  display: grid;
  margin-top: 1.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.form-counts .form-field + .form-field {
  margin-top: 0;
}

.form-field label {
  display: flex;
  margin-bottom: 0.6rem;
  align-items: baseline;
  justify-content: space-between;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
}

.optional {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.form-field input {
  min-height: 48px;
}

.form-field textarea {
  min-height: 132px;
  padding-top: 0.8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-soft);
  background: var(--accent-wash-weak);
}

.field-hint,
.field-error {
  display: block;
  margin-top: 0.55rem;
  color: var(--quiet);
  font-size: 0.7rem;
  line-height: 1.5;
}

.field-error {
  color: var(--error);
}

.form-field.has-error input {
  border-color: var(--error-strong);
}

.contact-submit {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 58px;
  margin-top: 2rem;
  padding: 0 1.1rem;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 2px;
  background: var(--action);
  color: var(--action-ink);
  font-size: 0.86rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms ease, transform 160ms ease;
}

.contact-submit::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: translateX(-105%);
  pointer-events: none;
}

.contact-form.is-submitting .contact-submit::after {
  animation: submit-progress 900ms var(--ease-out-quart) infinite;
}

@keyframes submit-progress {
  from { transform: translateX(-105%); }
  to { transform: translateX(105%); }
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--action-hover);
  transform: translateY(-2px);
}

.contact-submit:active {
  transform: translateY(1px);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-note,
.form-status {
  margin-top: 1rem;
  color: var(--quiet);
  font-size: 0.69rem;
  line-height: 1.55;
}

.form-note a,
.legal-copy a,
.legal-aside a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-underline-offset: 0.22em;
}

.form-note a:hover,
.form-note a:focus-visible,
.legal-copy a:hover,
.legal-copy a:focus-visible,
.legal-aside a:hover,
.legal-aside a:focus-visible {
  color: var(--text);
  text-decoration-color: currentColor;
}

.form-status {
  min-height: 1rem;
  color: var(--accent-soft);
}

.contact-form.is-success .form-status {
  padding-top: 1rem;
  border-top: 1px solid var(--accent);
  color: var(--text);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  display: grid;
  width: 100%;
  padding: clamp(4rem, 7vw, 6rem) max(4vw, calc((100vw - 1180px) / 2)) 2.5rem;
  grid-template-columns: 1.7fr repeat(3, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-primary p {
  max-width: 24rem;
  margin-top: 1.3rem;
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column strong {
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.74rem;
}

.footer-column a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--quiet);
  font-size: 0.73rem;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  padding-top: 2rem;
  grid-column: 1 / -1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  color: var(--footer-muted);
  font-size: 0.66rem;
  line-height: 1.55;
}

.footer-bottom p:last-child {
  max-width: 42rem;
  text-align: right;
}

/* Legal pages */
.legal-shell {
  width: var(--page);
  min-height: calc(100dvh - 10rem);
  margin: 0 auto;
  padding: clamp(9rem, 15vw, 13rem) 0 clamp(6rem, 10vw, 10rem);
}

.legal-hero {
  display: grid;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 10ch;
  margin-top: 1rem;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.legal-summary {
  max-width: 34rem;
  color: var(--legal-summary);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.legal-updated {
  display: block;
  margin-top: 1.8rem;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  padding-top: clamp(4rem, 8vw, 7rem);
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(3rem, 8vw, 10rem);
}

.legal-aside {
  align-self: start;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.legal-aside strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside p + p {
  margin-top: 1.4rem;
}

.legal-copy {
  max-width: 52rem;
}

.legal-copy section + section {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.legal-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.legal-copy h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal-copy p,
.legal-copy li,
.legal-copy address {
  color: var(--muted);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.8;
}

.legal-copy p + p {
  margin-top: 1rem;
}

.legal-copy ul {
  padding-left: 1.2rem;
  margin: 1.2rem 0 0;
}

.legal-copy li + li {
  margin-top: 0.65rem;
}

.legal-note {
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line-strong);
  background: var(--accent-note);
}

.legal-page .site-footer {
  padding-top: 2.5rem;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  color: var(--quiet);
  font-size: 0.72rem;
}

.legal-page .site-footer > p {
  max-width: 24rem;
  line-height: 1.55;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 1rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 2rem;
  }

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

  .outcome-strip div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .outcome-strip div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .program-section,
  .proof-section,
  .contact-section {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --page: calc(100vw - 2rem);
  }

  .site-header {
    padding: 0 1rem;
  }

  .js .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    padding: 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--header-solid);
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 180ms var(--ease-out-quart),
      transform 220ms var(--ease-out-quart),
      visibility 0s linear 220ms;
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 0.9rem 0;
  }

  .site-nav .nav-cta {
    min-height: 48px;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .legal-page .nav-toggle {
    display: none;
  }

  .legal-page .site-nav {
    position: static;
    display: flex;
    padding: 0;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    border: 0;
    background: transparent;
  }

  .js .legal-page .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .legal-page .site-nav a {
    padding: 0;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 5rem);
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .section-heading,
  .benefit-heading,
  .proof-section,
  .program-section,
  .contact-section,
  .legal-hero,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
  }

  .console-body {
    grid-template-columns: 1fr;
  }

  .event-stream {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .session-view {
    min-height: 390px;
  }

  .program-intro {
    position: static;
  }

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

  .journey-list li {
    min-height: 0;
  }

  .journey-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-list li > div {
    margin-top: 2.5rem;
  }

  .about-section {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 2rem;
  }

  .about-mark {
    min-height: 280px;
  }

  .site-footer {
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 2rem;
  }

  .legal-page .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .legal-page .site-nav a:nth-child(-n + 2) {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
  }

  .product-section,
  .proof-section,
  .program-section,
  .journey-section,
  .about-section,
  .contact-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

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

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .world-status {
    position: static;
    padding: 0.9rem;
    align-items: flex-start;
    flex-direction: column;
    border-top: 0;
  }

  .outcome-strip {
    padding: 0 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-strip div {
    padding: 1.1rem 0.8rem;
  }

  .outcome-strip div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .outcome-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .outcome-strip div:nth-child(3) {
    border-left: 0;
  }

  .section-heading h2,
  .benefit-heading h2,
  .proof-intro h2,
  .program-intro h2,
  .journey-heading h2,
  .about-copy h2,
  .contact-intro h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .console-bar {
    padding: 0 0.9rem;
    grid-template-columns: 1fr auto;
  }

  .console-bar > strong {
    display: none;
  }

  .event-stream,
  .session-view {
    padding: 1.5rem;
  }

  .session-view {
    min-height: 330px;
  }

  .console-summary {
    grid-template-columns: 1fr;
  }

  .console-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .console-summary div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .console-summary strong {
    margin-top: 0;
  }

  .mirage-principles {
    grid-template-columns: 1fr;
  }

  .mirage-principles article {
    min-height: 0;
  }

  .benefit-perspectives article {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .proof-response article {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .form-counts {
    grid-template-columns: 1fr;
  }

  .form-counts .form-field + .form-field {
    margin-top: 0.25rem;
  }

  .offer-list article {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .journey-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 220px;
  }

  .name-meanings,
  .naming-pair {
    grid-template-columns: 1fr;
  }

  .name-meanings article,
  .name-meanings article + article,
  .naming-pair p,
  .naming-pair p + p {
    padding: 1.3rem 0;
    border-left: 0;
  }

  .name-meanings article + article,
  .naming-pair p + p {
    border-top: 1px solid var(--line);
  }

  .contact-form {
    padding: 1.4rem;
  }

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

  .footer-column a {
    min-height: 44px;
  }

  .footer-column:last-of-type {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .footer-column:last-of-type strong {
    grid-column: 1 / -1;
  }

  .footer-primary,
  .footer-bottom {
    grid-column: 1 / -1;
  }

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

  .footer-bottom p:last-child {
    text-align: left;
  }

  .legal-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }
}

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .legal-page .site-header,
  .world-status {
    background: var(--ink);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
