:root {
  --ink: #101713;
  --ink-soft: #35423a;
  --paper: #f4f2ea;
  --paper-deep: #e8e5da;
  --night: #08110d;
  --night-soft: #112019;
  --line: rgba(16, 23, 19, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --signal: #c8ff62;
  --signal-deep: #8fc52c;
  --white: #fffef8;
  --muted: #6d776f;
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --shadow: 0 24px 70px rgba(12, 22, 16, 0.12);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--signal-deep);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  font-weight: 650;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--night);
  background: var(--signal);
  border-radius: 999px;
  transform: translateY(-200%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--night);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 2rem), var(--content));
  min-height: 6rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 2rem;
  height: 2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
}

.site-nav a {
  position: relative;
  color: rgba(255, 254, 248, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 79% 35%, rgba(200, 255, 98, 0.12), transparent 26rem),
    var(--night);
}

.hero-grid {
  display: grid;
  width: min(calc(100% - 2rem), var(--content));
  min-height: 690px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 6vw, 7rem);
}

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

.eyebrow {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: var(--signal);
}

.lede {
  max-width: 620px;
  margin-bottom: 2.25rem;
  color: rgba(255, 254, 248, 0.68);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--night);
  background: var(--signal);
}

.button-primary:hover {
  background: #d9ff91;
}

.button-secondary {
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.button-dark {
  color: var(--white);
  background: var(--night);
}

.arrow {
  font-size: 1.15em;
  line-height: 1;
}

.motion-stage {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(200, 255, 98, 0.06), transparent 55%);
  background-size: 48px 48px, 48px 48px, auto;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.28);
}

.motion-stage::before,
.motion-stage::after {
  position: absolute;
  border: 1px solid rgba(200, 255, 98, 0.24);
  border-radius: 50%;
  content: "";
}

.motion-stage::before {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.motion-stage::after {
  width: 370px;
  height: 370px;
  top: 50%;
  left: 50%;
  border-style: dashed;
  opacity: 0.4;
  transform: translate(-50%, -50%);
}

.motion-figure {
  position: absolute;
  z-index: 2;
  width: 78%;
  max-height: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.motion-path {
  fill: none;
  stroke: rgba(255, 254, 248, 0.78);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.motion-ghost {
  fill: none;
  stroke: rgba(200, 255, 98, 0.2);
  stroke-dasharray: 4 10;
  stroke-width: 1.5;
}

.motion-node {
  fill: var(--signal);
  stroke: var(--night);
  stroke-width: 4;
}

.stage-label {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 254, 248, 0.55);
  border-top: 1px solid var(--line-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.4rem;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 255, 98, 0.09);
}

.stat-strip {
  color: var(--white);
  background: var(--night-soft);
  border-top: 1px solid var(--line-dark);
}

.stats {
  display: grid;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  min-height: 9rem;
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line-dark);
}

.stat:last-child {
  border-right: 1px solid var(--line-dark);
}

.stat strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--signal);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.stat span {
  color: rgba(255, 254, 248, 0.6);
  font-size: 0.85rem;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.section-intro {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.section-intro > p {
  max-width: 560px;
  margin: 0 0 0 auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.process-card {
  min-height: 330px;
  padding: clamp(1.7rem, 4vw, 3rem);
  background: var(--paper);
}

.process-number {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 5rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
}

.process-card p {
  color: var(--ink-soft);
}

.dark-section {
  color: var(--white);
  background: var(--night);
}

.dark-section .eyebrow {
  color: var(--signal);
}

.dark-section .section-intro > p {
  color: rgba(255, 254, 248, 0.62);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
}

.principle {
  min-height: 280px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.principle:first-child {
  grid-row: span 2;
  min-height: 585px;
  background:
    radial-gradient(circle at 75% 70%, rgba(200, 255, 98, 0.13), transparent 15rem),
    rgba(255, 255, 255, 0.025);
}

.principle-kicker {
  margin-bottom: 3rem;
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.principle h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.principle p {
  max-width: 500px;
  color: rgba(255, 254, 248, 0.6);
}

.focus-panel {
  display: grid;
  padding: clamp(2rem, 6vw, 5rem);
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.focus-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.focus-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.fact-list {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-list li {
  display: grid;
  padding: 1rem 0;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.fact-list strong {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night-soft);
}

.cta::after {
  position: absolute;
  width: 35rem;
  height: 35rem;
  right: -15rem;
  bottom: -24rem;
  border: 1px solid rgba(200, 255, 98, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 6rem rgba(200, 255, 98, 0.025), 0 0 0 12rem rgba(200, 255, 98, 0.02);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  padding: clamp(5rem, 10vw, 8rem) 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.cta h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(200, 255, 98, 0.1), transparent 25rem),
    var(--night);
}

.page-hero-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.page-hero .lede {
  max-width: 720px;
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.split-section .eyebrow {
  margin-top: 0.45rem;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  max-width: none;
  margin-top: 3rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2rem;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

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

.prose a {
  font-weight: 650;
}

.prose ul {
  padding-left: 1.2rem;
}

.roadmap {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.roadmap-card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.roadmap-card.current {
  color: var(--white);
  border-color: var(--night);
  background: var(--night);
}

.roadmap-card .tag {
  display: inline-block;
  margin-bottom: 4rem;
  padding: 0.35rem 0.65rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-card.current .tag {
  color: var(--signal);
  border-color: rgba(200, 255, 98, 0.3);
}

.roadmap-card p {
  color: var(--ink-soft);
}

.roadmap-card.current p {
  color: rgba(255, 254, 248, 0.62);
}

.identity-panel {
  display: grid;
  padding: clamp(2rem, 6vw, 4rem);
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--night);
}

.identity-panel h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.identity-details {
  margin: 0;
}

.identity-details div {
  display: grid;
  padding: 1.15rem 0;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.identity-details div:first-child {
  padding-top: 0;
}

.identity-details dt {
  color: rgba(255, 254, 248, 0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-details dd {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.contact-card {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.contact-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 650;
}

.contact-aside {
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.contact-aside section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-aside section:first-child {
  padding-top: 0;
}

.contact-aside p {
  color: var(--ink-soft);
}

.notice {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--signal-deep);
  background: rgba(143, 197, 44, 0.08);
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.policy-meta {
  position: sticky;
  top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.45);
}

.policy-meta strong,
.policy-meta span {
  display: block;
}

.policy-meta strong {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-meta a {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 650;
}

.site-footer {
  color: var(--white);
  background: var(--night);
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  padding-bottom: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-tagline {
  max-width: 340px;
  margin-top: 1.2rem;
  color: rgba(255, 254, 248, 0.5);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 0.75rem 2rem;
}

.footer-nav a {
  color: rgba(255, 254, 248, 0.7);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  padding-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 254, 248, 0.42);
  border-top: 1px solid var(--line-dark);
  font-size: 0.74rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  color: var(--white);
  background: var(--night);
  place-items: center;
}

.error-card {
  width: min(100%, 720px);
  text-align: center;
}

.error-code {
  margin-bottom: 1rem;
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.error-card h1 {
  max-width: none;
  font-size: clamp(3rem, 9vw, 6rem);
}

.error-card p {
  max-width: 480px;
  margin: 0 auto 2rem;
  color: rgba(255, 254, 248, 0.62);
}

@media (max-width: 860px) {
  .hero-grid,
  .section-intro,
  .split-section,
  .focus-panel,
  .identity-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 4.5rem;
  }

  .motion-stage {
    min-height: 430px;
  }

  .process-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .process-number,
  .roadmap-card .tag {
    margin-bottom: 2.5rem;
  }

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

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

  .principle:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .section-intro > p {
    margin-left: 0;
  }

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

  .policy-meta {
    position: static;
  }
}

@media (max-width: 620px) {
  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 3.6rem);
    overflow-wrap: anywhere;
  }

  .nav-shell {
    min-height: auto;
    padding: 1.2rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .site-nav {
    display: grid;
    width: 100%;
    padding-bottom: 0.35rem;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    gap: 0.35rem;
  }

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

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .stat,
  .stat:last-child {
    min-height: auto;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .cta-inner,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .identity-details div,
  .fact-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-nav {
    width: 100%;
  }
}

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

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