:root {
  --ink: #10231f;
  --ink-deep: #081512;
  --ink-mid: #17312a;
  --ink-soft: #304c44;
  --paper: #f3f0e7;
  --paper-deep: #e7e2d6;
  --white: #fffdf7;
  --signal: #d7ff59;
  --signal-strong: #bce632;
  --mint: #b7e2d2;
  --muted: #5a6d67;
  --line: rgba(16, 35, 31, 0.18);
  --line-light: rgba(243, 240, 231, 0.18);
  --shadow: 0 28px 80px rgba(8, 21, 18, 0.15);
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max-width: 1220px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.048em;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 5.35vw, 5.75rem);
  font-weight: 670;
}

h2 {
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 640;
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 650;
}

:focus-visible {
  outline: 3px solid #25735f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--signal);
  color: var(--ink-deep);
  font-weight: 750;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(243, 240, 231, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 240, 231, 0.97);
}

.header-inner,
.site-footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-edition {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 30px);
}

.site-nav a {
  font-size: 0.81rem;
  font-weight: 690;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-action) {
  position: relative;
}

.site-nav a:not(.nav-action)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:not(.nav-action):hover::after,
.site-nav a:not(.nav-action):focus-visible::after {
  transform: scaleX(1);
}

.nav-action {
  padding: 10px 15px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
}

.nav-action:hover {
  background: #23483f;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button-label {
  font-size: 0.76rem;
  font-weight: 740;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-button-icon,
.menu-button-icon::before,
.menu-button-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button-icon {
  position: relative;
}

.menu-button-icon::before,
.menu-button-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-button-icon::before { top: -7px; }
.menu-button-icon::after { top: 7px; }
.menu-button[aria-expanded="true"] .menu-button-icon { background: transparent; }
.menu-button[aria-expanded="true"] .menu-button-icon::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button-icon::after { transform: translateY(-7px) rotate(-45deg); }

.hero,
.section {
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
}

.eyebrow {
  margin-bottom: 21px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 11px;
  background: currentColor;
  content: "";
  vertical-align: 0.25em;
}

.hero {
  min-height: 100vh;
  padding-top: clamp(108px, 12vh, 138px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 27%, rgba(215, 255, 89, 0.28), transparent 24%),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(16, 35, 31, 0.045) 1px),
    linear-gradient(0deg, transparent calc(100% - 1px), rgba(16, 35, 31, 0.045) 1px),
    var(--paper);
  background-size: auto, 96px 96px, 96px 96px, auto;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
}

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

.hero-lead {
  max-width: 660px;
  margin-bottom: 33px;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.5;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 740;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button-primary:hover {
  background: #23483f;
}

.text-link {
  font-size: 0.89rem;
  font-weight: 720;
}

.release-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ca000;
  box-shadow: 0 0 0 4px rgba(124, 160, 0, 0.12);
}

.adaptation-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 89, 0.36);
  border-radius: 8px;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.adaptation-window::after {
  position: absolute;
  right: -80px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--signal);
  content: "";
  opacity: 0.08;
  filter: blur(35px);
}

.window-bar,
.window-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  color: #91a49d;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}

.window-bar {
  border-bottom: 1px solid var(--line-light);
}

.window-bar > span:first-child {
  display: flex;
  align-items: center;
}

.window-bar i {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(215, 255, 89, 0.75);
}

.window-status {
  color: var(--signal);
}

.adaptation-log {
  margin: 0;
  padding: 23px 25px 20px;
  list-style: none;
}

.adaptation-log li {
  position: relative;
  display: grid;
  min-height: 70px;
  align-items: start;
  gap: 17px;
  padding: 12px 0;
  grid-template-columns: 24px 1fr auto;
}

.adaptation-log li:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: -15px;
  left: 11px;
  width: 1px;
  background: rgba(183, 226, 210, 0.23);
  content: "";
}

.log-index {
  display: grid;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(183, 226, 210, 0.3);
  border-radius: 50%;
  background: var(--ink-deep);
  color: #8ea39a;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  place-items: center;
}

.adaptation-log small {
  display: block;
  margin-bottom: 4px;
  color: #81968e;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.adaptation-log strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.log-goal .log-index,
.log-created .log-index {
  border-color: var(--signal);
  color: var(--signal);
}

.log-created {
  margin: 3px -10px;
  padding: 15px 10px !important;
  border: 1px solid rgba(215, 255, 89, 0.34);
  background: rgba(215, 255, 89, 0.06);
}

.created-badge {
  padding: 3px 6px;
  border-radius: 2px;
  background: var(--signal);
  color: var(--ink-deep);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.window-foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-light);
  font-size: 0.52rem;
  text-transform: uppercase;
}

.window-foot span:last-child {
  color: var(--signal);
  text-align: right;
}

.hero-proof {
  display: grid;
  margin: clamp(62px, 9vh, 92px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 23px 18px;
  font-family: var(--font-mono);
  text-align: center;
  text-transform: uppercase;
}

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

.hero-proof strong {
  color: #496a60;
  font-size: 0.55rem;
  letter-spacing: 0.09em;
}

.hero-proof span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.problem-intro,
.growth-heading,
.safety-heading,
.status-intro,
.faq-heading {
  max-width: 990px;
  margin-bottom: clamp(55px, 7vw, 90px);
}

.problem-intro > p:last-child,
.growth-heading > p:last-child,
.safety-heading > p:last-child,
.status-intro > p:last-child,
.identity-copy > p:last-child,
.mission-copy > p {
  max-width: 770px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.section-problem {
  background: var(--white);
}

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

.direct-benefit-card {
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.direct-benefit-card.direct-benefit-featured {
  background: var(--signal);
}

.direct-benefit-number {
  display: inline-block;
  margin-bottom: 66px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.direct-benefit-card h3 {
  max-width: 14ch;
  margin-bottom: 16px;
}

.direct-benefit-card p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.direct-benefit-featured p,
.direct-benefit-featured .direct-benefit-number {
  color: #34443d;
}

.benefit-safety-note {
  display: grid;
  align-items: start;
  gap: 20px;
  margin: 24px 0 0;
  padding: 25px 28px;
  border-left: 4px solid var(--signal-strong);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.87rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.benefit-safety-note strong {
  color: var(--ink);
  line-height: 1.45;
}

.problem-intro h2 {
  max-width: 18ch;
}

.section-channels {
  background: var(--paper-deep);
}

.channels-intro {
  display: grid;
  align-items: end;
  gap: clamp(42px, 7vw, 100px);
  margin-bottom: clamp(54px, 7vw, 88px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.channels-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.channels-copy > p:first-child {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.channel-list {
  display: flex;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.channel-list li {
  padding: 7px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.55);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.channels-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.channels-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-strong);
  box-shadow: 0 0 0 5px rgba(188, 230, 50, 0.18);
  flex: 0 0 auto;
}

.channel-stories {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
}

.channel-story {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.channel-photo {
  position: relative;
  height: clamp(590px, 63vw, 760px);
  overflow: hidden;
  background: var(--ink);
}

.channel-photo::after {
  position: absolute;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 21, 18, 0.78) 100%);
  content: "";
  inset: 0;
}

.channel-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-story-primary .channel-photo > img {
  object-position: 48% center;
}

.channel-conversation {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 2;
  max-width: 590px;
  margin-left: auto;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(215, 255, 89, 0.7);
  border-radius: 5px;
  background: rgba(8, 21, 18, 0.94);
  box-shadow: 0 22px 55px rgba(8, 21, 18, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.channel-conversation-small {
  max-width: 510px;
}

.conversation-label {
  display: block;
  margin-bottom: 14px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message {
  width: fit-content;
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 4px;
  color: var(--ink);
}

.message + .message {
  margin-top: 9px;
}

.message span {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.message p {
  margin: 0;
  font-size: clamp(0.8rem, 1.1vw, 0.92rem);
  line-height: 1.42;
}

.message-user {
  background: var(--paper);
}

.message-aether {
  margin-left: auto;
  background: var(--signal);
}

.channel-story figcaption {
  display: grid;
  gap: 9px;
  padding: clamp(24px, 3.4vw, 38px);
}

.channel-story figcaption strong {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.channel-story figcaption span {
  max-width: 530px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.fear-card {
  min-height: 365px;
  padding: clamp(28px, 3.5vw, 45px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fear-number,
.safety-facts article > span {
  display: inline-block;
  margin-bottom: 74px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.fear-card h3 {
  max-width: 17ch;
  margin-bottom: 18px;
}

.fear-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.section-growth {
  background: var(--ink-deep);
  color: var(--paper);
}

.growth-heading > p:last-child {
  color: #aabcb5;
}

.growth-heading h2 {
  max-width: 14ch;
}

.growth-explorer {
  border: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(183, 226, 210, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 226, 210, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

.growth-steps {
  display: grid;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(5, 1fr);
}

.growth-steps button {
  min-height: 74px;
  padding: 14px 18px;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: rgba(243, 240, 231, 0.02);
  color: #8fa39b;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease;
}

.growth-steps button:last-child {
  border-right: 0;
}

.growth-steps button span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 500;
}

.growth-steps button[aria-selected="true"] {
  background: var(--signal);
  color: var(--ink-deep);
}

.growth-stage {
  display: grid;
  min-height: 470px;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(36px, 6vw, 72px);
  grid-template-columns: 0.8fr 1.2fr;
}

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

.stage-kicker {
  margin-bottom: 18px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stage-copy h3 {
  max-width: 13ch;
  margin-bottom: 19px;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
}

.stage-copy > p:last-child {
  max-width: 500px;
  margin: 0;
  color: #a9bab4;
}

.stage-visual {
  position: relative;
  min-height: 320px;
}

.stage-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(183, 226, 210, 0.29);
  stroke-dasharray: 5 5;
  stroke-width: 1;
}

.stage-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(215, 255, 89, 0.5);
  border-radius: 50%;
  background: var(--ink-deep);
  box-shadow: 0 0 0 24px rgba(215, 255, 89, 0.035), 0 0 50px rgba(215, 255, 89, 0.09);
  place-items: center;
  transform: translate(-50%, -50%);
}

.stage-core img {
  align-self: end;
  width: 48px;
  padding: 8px;
  border-radius: 50%;
  background: var(--paper);
}

.stage-core span {
  align-self: start;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.stage-signal {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9eb0a9;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.stage-signal i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--signal);
  border-radius: 50%;
  background: var(--ink-deep);
  box-shadow: 0 0 0 5px rgba(215, 255, 89, 0.06);
}

.signal-one { top: 10%; left: 6%; }
.signal-two { right: 5%; top: 11%; }
.signal-three { bottom: 10%; left: 7%; }

.growth-explorer[data-active="build"] .stage-core,
.growth-explorer[data-active="keep"] .stage-core {
  border-color: var(--signal);
  box-shadow: 0 0 0 30px rgba(215, 255, 89, 0.05), 0 0 70px rgba(215, 255, 89, 0.18);
}

.growth-explorer[data-active="collaborate"] .stage-signal i,
.growth-explorer[data-active="keep"] .stage-signal i {
  background: var(--signal);
}

.benefit-grid {
  display: grid;
  margin-top: clamp(64px, 8vw, 100px);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(2, 1fr);
}

.benefit-card {
  min-height: 315px;
  padding: clamp(30px, 4.5vw, 55px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.benefit-glyph {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 65px;
  border: 1px solid rgba(215, 255, 89, 0.6);
  border-radius: 50%;
  color: var(--signal);
  font-family: var(--font-mono);
  place-items: center;
}

.benefit-card h3 {
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  max-width: 490px;
  margin: 0;
  color: #9fb2aa;
  font-size: 0.91rem;
}

.section-identity {
  background: var(--signal);
}

.identity-copy {
  display: grid;
  align-items: end;
  gap: 30px 70px;
  margin-bottom: clamp(58px, 8vw, 100px);
  grid-template-columns: 1.2fr 0.8fr;
}

.identity-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.identity-copy h2 {
  max-width: 12ch;
  margin: 0;
}

.identity-copy > p:last-child {
  margin: 0 0 7px;
}

.identity-shift {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 100px 1fr;
}

.identity-shift article {
  padding: clamp(30px, 4.5vw, 56px);
  border: 1px solid rgba(16, 35, 31, 0.3);
  background: rgba(243, 240, 231, 0.36);
}

.identity-shift article > p {
  margin-bottom: 58px;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.identity-shift h3 {
  max-width: 12ch;
  margin-bottom: 30px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
}

.identity-shift ul,
.boundary-diagram ul,
.status-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.identity-shift li {
  padding: 11px 0;
  border-top: 1px solid rgba(16, 35, 31, 0.28);
  font-size: 0.91rem;
}

.identity-shift li::before,
.status-card li::before {
  margin-right: 10px;
  content: "—";
}

.identity-shift .identity-emerged {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
  color: var(--paper);
}

.identity-emerged li {
  border-top-color: var(--line-light);
}

.shift-arrow {
  display: grid;
  align-content: center;
  justify-items: center;
  font-family: var(--font-mono);
  font-size: 1.6rem;
}

.shift-arrow span {
  margin-bottom: 7px;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.section-safety {
  background: var(--white);
}

.safety-heading h2 {
  max-width: 13ch;
}

.boundary-diagram {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 90px 1fr;
}

.boundary-free,
.boundary-core {
  padding: clamp(30px, 4.8vw, 58px);
  border: 1px solid var(--line);
}

.boundary-free {
  background: var(--paper);
}

.boundary-core {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.boundary-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 55px;
}

.boundary-label span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.boundary-label strong {
  font-size: 0.83rem;
}

.boundary-core .boundary-label span {
  color: var(--signal);
}

.boundary-diagram li {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 8px 0;
  border-top: 1px solid currentColor;
  font-size: 0.88rem;
  opacity: 0.85;
}

.boundary-diagram li::before {
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.boundary-diagram > div > p:last-child {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.boundary-core > p:last-child {
  color: #aebeb8 !important;
}

.boundary-gate {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
}

.boundary-gate::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  content: "";
}

.boundary-gate span {
  position: relative;
  z-index: 1;
  padding: 12px 5px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.boundary-gate i {
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--signal-strong);
  box-shadow: 0 0 0 5px rgba(188, 230, 50, 0.2);
  animation: gate-travel 2.8s ease-in-out infinite;
}

.safety-facts {
  display: grid;
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.safety-facts article {
  padding: clamp(28px, 3.4vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.safety-facts article > span {
  margin-bottom: 55px;
}

.safety-facts h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.03em;
}

.safety-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.safety-limit {
  display: grid;
  align-items: start;
  gap: 22px;
  margin-top: 24px;
  padding: 27px 30px;
  border-left: 4px solid var(--signal-strong);
  background: var(--paper);
  grid-template-columns: 0.75fr 1.25fr;
}

.safety-limit strong {
  line-height: 1.35;
}

.safety-limit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.section-status {
  background: var(--paper-deep);
}

.status-intro h2 {
  max-width: 16ch;
}

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

.status-card {
  padding: clamp(32px, 4.6vw, 58px);
  border: 1px solid var(--line);
}

.status-public {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.status-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 65px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.09em;
}

.status-topline strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #597169;
}

.status-running .status-topline strong {
  color: #4b6400;
}

.status-public .status-topline strong {
  color: #aebeb8;
}

.status-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-strong);
  box-shadow: 0 0 0 4px rgba(188, 230, 50, 0.18);
}

.status-card h3 {
  max-width: 15ch;
  margin-bottom: 35px;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
}

.status-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.status-public li {
  border-top-color: var(--line-light);
  color: #aebeb8;
}

.section-mission {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  overflow: hidden;
  background: var(--signal);
  grid-template-columns: 0.72fr 1.28fr;
}

.mission-orbit {
  position: relative;
  width: min(38vw, 450px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px dashed rgba(16, 35, 31, 0.35);
  border-radius: 50%;
  animation: slow-spin 40s linear infinite;
}

.mission-orbit::before {
  position: absolute;
  border: 1px solid rgba(16, 35, 31, 0.25);
  border-radius: 50%;
  content: "";
  inset: 22%;
}

.mission-center {
  position: absolute;
  display: grid;
  border: 1px solid rgba(16, 35, 31, 0.45);
  border-radius: 50%;
  background: var(--paper);
  inset: 36%;
  place-items: center;
}

.mission-center img {
  width: 62%;
}

.mission-node {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid var(--signal);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.node-a { top: -10px; left: calc(50% - 10px); }
.node-b { top: 21%; right: 3%; }
.node-c { right: 3%; bottom: 21%; }
.node-d { bottom: -10px; left: calc(50% - 10px); }
.node-e { bottom: 21%; left: 3%; }
.node-f { top: 21%; left: 3%; }

.mission-copy h2 {
  max-width: 13ch;
}

.mission-copy > p {
  color: var(--ink-soft);
}

.section-faq {
  background: var(--paper);
}

.faq-heading h2 {
  max-width: 12ch;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 65px 27px 0;
  cursor: pointer;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 660;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 150ms ease;
}

.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0deg); }

.faq-list details p {
  max-width: 820px;
  margin: 0 0 30px;
  color: var(--muted);
}

.section-cta {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--paper);
}

.section-cta::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(215, 255, 89, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(215, 255, 89, 0.025), 0 0 0 160px rgba(215, 255, 89, 0.018);
  content: "";
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.cta-copy h2 {
  max-width: 13ch;
}

.cta-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: #acbdb7;
  font-size: 1.08rem;
}

.button-inverse {
  background: var(--signal);
  color: var(--ink);
}

.button-inverse:hover {
  background: var(--paper);
}

.text-link-light {
  color: var(--paper);
}

.cta-code {
  position: absolute;
  right: 8%;
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(215, 255, 89, 0.62);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.cta-code i {
  color: rgba(243, 240, 231, 0.24);
  font-style: normal;
}

.site-footer {
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.brand-footer {
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 0.78rem;
  font-weight: 700;
}

.has-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes gate-travel {
  0%, 100% { transform: translateY(-75px); }
  50% { transform: translateY(75px); }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

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

  .hero-grid {
    gap: 45px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .identity-copy {
    grid-template-columns: 1fr;
  }

  .identity-copy .eyebrow {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .menu-button {
    display: flex;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 24px 40px;
    min-height: calc(100dvh - var(--header-height));
    background: var(--paper);
    box-shadow: 0 40px 0 40px var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-action {
    margin-top: 18px;
    padding: 15px 18px;
    border: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

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

  .adaptation-window {
    width: min(100%, 620px);
  }

  .growth-stage {
    grid-template-columns: 1fr;
  }

  .stage-visual {
    min-height: 350px;
  }

  .fear-grid,
  .safety-facts {
    grid-template-columns: 1fr;
  }

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

  .channels-intro,
  .channel-stories {
    grid-template-columns: 1fr;
  }

  .channels-intro {
    align-items: start;
  }

  .channels-copy {
    max-width: 760px;
  }

  .channel-story {
    max-width: 760px;
  }

  .fear-card {
    min-height: auto;
  }

  .fear-number,
  .safety-facts article > span {
    margin-bottom: 45px;
  }

  .identity-shift,
  .boundary-diagram {
    grid-template-columns: 1fr;
  }

  .shift-arrow {
    min-height: 85px;
    transform: rotate(90deg);
  }

  .boundary-gate {
    min-height: 80px;
  }

  .boundary-gate::before {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .boundary-gate span {
    padding: 5px 12px;
    writing-mode: horizontal-tb;
  }

  .boundary-gate i {
    top: calc(50% - 4px);
    left: 50%;
    animation: gate-travel-horizontal 2.8s ease-in-out infinite;
  }

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

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

  .mission-orbit {
    width: min(72vw, 420px);
  }
}

@keyframes gate-travel-horizontal {
  0%, 100% { transform: translateX(-95px); }
  50% { transform: translateX(95px); }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .site-footer {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .hero,
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 15.4vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.45rem, 11.8vw, 3.7rem);
  }

  .brand-edition {
    display: none;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-lead {
    font-size: 1.16rem;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .text-link,
  .cta-actions .text-link {
    text-align: center;
  }

  .release-note {
    align-items: flex-start;
  }

  .live-dot {
    margin-top: 7px;
    flex: 0 0 auto;
  }

  .adaptation-log {
    padding: 18px 17px;
  }

  .adaptation-log li {
    gap: 12px;
    grid-template-columns: 24px 1fr auto;
  }

  .adaptation-log strong {
    font-size: 0.76rem;
  }

  .created-badge {
    align-self: start;
  }

  .window-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .window-foot span:last-child {
    text-align: left;
  }

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

  .hero-proof li {
    justify-content: flex-start;
    text-align: left;
  }

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

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

  .growth-steps button {
    border-bottom: 1px solid var(--line-light);
  }

  .growth-steps button:nth-child(2n) {
    border-right: 0;
  }

  .growth-steps button:last-child {
    grid-column: 1 / -1;
  }

  .growth-stage {
    min-height: 620px;
    padding: 32px 22px;
  }

  .stage-copy h3 {
    font-size: 2.4rem;
  }

  .stage-visual {
    min-height: 290px;
  }

  .stage-core {
    width: 112px;
    height: 112px;
  }

  .stage-signal {
    font-size: 0.48rem;
  }

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

  .direct-benefit-grid,
  .benefit-safety-note {
    grid-template-columns: 1fr;
  }

  .direct-benefit-card {
    min-height: auto;
  }

  .direct-benefit-number {
    margin-bottom: 42px;
  }

  .channel-photo {
    height: 620px;
  }

  .channel-conversation {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .message {
    max-width: 96%;
    padding: 10px 11px;
  }

  .message p {
    font-size: 0.78rem;
  }

  .channel-story figcaption {
    padding: 24px 20px;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-glyph {
    margin-bottom: 45px;
  }

  .identity-shift article,
  .boundary-free,
  .boundary-core,
  .status-card {
    padding: 30px 24px;
  }

  .identity-shift article > p,
  .boundary-label,
  .status-topline {
    margin-bottom: 44px;
  }

  .identity-shift h3,
  .status-card h3 {
    font-size: 2.35rem;
  }

  .boundary-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .safety-limit {
    grid-template-columns: 1fr;
  }

  .status-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mission-orbit {
    width: min(88vw, 360px);
  }

  .cta-code {
    right: 18px;
    bottom: 35px;
    left: 18px;
    justify-content: center;
    gap: 8px;
    font-size: 0.48rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 0.87rem;
  }

  .window-bar > span:first-child {
    letter-spacing: 0.03em;
  }

  .adaptation-log li {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .created-badge {
    display: none;
  }

  .adaptation-log strong {
    overflow-wrap: anywhere;
  }

  .stage-signal span {
    display: none;
  }
}

@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;
  }

  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
