:root {
  color-scheme: dark;
  --ink: #0c0b12;
  --ink-soft: #13111d;
  --panel: rgba(27, 24, 39, 0.72);
  --panel-strong: #1b1827;
  --line: rgba(242, 237, 255, 0.12);
  --line-strong: rgba(242, 237, 255, 0.2);
  --text: #f5f1fc;
  --muted: #aaa3bb;
  --violet: #a786ff;
  --violet-soft: #cabbff;
  --coral: #ff8e7b;
  --mint: #75dfbf;
  --max-width: 1180px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(126, 87, 220, 0.18), transparent 45%),
    var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 10px;
  background: var(--text);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-nav,
.site-footer nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a,
.site-footer nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 610;
  text-decoration: none;
  transition: color 180ms ease;
}

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

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--coral));
  content: "";
}

.nav-source {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.ambient-one {
  top: 140px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(167, 134, 255, 0.12), transparent 68%);
}

.ambient-two {
  top: 780px;
  left: -220px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 142, 123, 0.07), transparent 68%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: 700px;
  padding-block: 90px 100px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--violet-soft);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(167, 134, 255, 0.24);
  border-radius: 99px;
  background: rgba(167, 134, 255, 0.07);
  letter-spacing: 0.11em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(117, 223, 191, 0.1);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 7vw, 6.35rem);
  font-weight: 620;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  font-weight: 590;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: #c2bbcf;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.7;
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-principles span,
.private-note {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.signal-stage {
  position: relative;
  min-height: 500px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 330px;
  height: 330px;
}

.orbit-two {
  width: 470px;
  height: 470px;
  border-style: dashed;
  opacity: 0.6;
}

.eva-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(202, 187, 255, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2d2547, #151220 70%);
  box-shadow: 0 0 90px rgba(167, 134, 255, 0.2), inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.core-halo {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 142, 123, 0.28);
  border-radius: 50%;
}

.core-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--violet-soft), var(--coral));
  color: #171220;
  font-size: 2rem;
  font-weight: 820;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.core-label {
  position: absolute;
  top: calc(100% + 22px);
  width: 190px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.signal-card {
  position: absolute;
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(24, 21, 35, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card::after {
  position: absolute;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
  content: "";
}

.signal-email {
  top: 52px;
  left: 0;
}

.signal-email::after {
  top: 70px;
  right: -42px;
  transform: rotate(37deg);
}

.signal-goal {
  top: 120px;
  right: -20px;
}

.signal-goal::after {
  bottom: -18px;
  left: -30px;
  transform: rotate(145deg);
}

.signal-action {
  right: 20px;
  bottom: 30px;
}

.signal-action::after {
  top: -16px;
  left: -30px;
  transform: rotate(40deg);
}

.signal-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(167, 134, 255, 0.24);
  border-radius: 11px;
  background: rgba(167, 134, 255, 0.08);
  color: var(--violet-soft);
}

.signal-kicker {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  font-size: 0.84rem;
}

.section-space {
  padding-block: 120px;
}

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-copy {
  max-width: 980px;
  margin: 0;
  color: #ded8e8;
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  font-weight: 470;
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.trust-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
}

.steps-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card,
.trust-grid article {
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(30, 27, 43, 0.62), rgba(19, 17, 29, 0.55));
}

.step-card p,
.trust-grid p,
.foundation-card p,
.closing > p {
  margin: 0;
  color: var(--muted);
}

.step-number {
  display: block;
  margin-bottom: 72px;
  color: var(--violet-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.foundation-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(19, 17, 29, 0.62);
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.foundation-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.foundation-card::before {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 134, 255, 0.13), transparent 68%);
  content: "";
}

.foundation-card.next::before {
  background: radial-gradient(circle, rgba(255, 142, 123, 0.1), transparent 68%);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability {
  padding: 6px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.available {
  background: rgba(117, 223, 191, 0.1);
  color: var(--mint);
}

.building {
  background: rgba(255, 142, 123, 0.1);
  color: var(--coral);
}

.foundation-card h3 {
  max-width: 420px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.foundation-card > p {
  max-width: 490px;
}

.feature-list {
  display: grid;
  gap: 9px;
  margin: 30px 0 0;
  padding: 0;
  color: #cfc8da;
  font-size: 0.87rem;
  list-style: none;
}

.feature-list li::before {
  margin-right: 9px;
  color: var(--violet-soft);
  content: "↳";
}

.trust-intro {
  max-width: 860px;
  margin-bottom: 55px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  min-height: 260px;
}

.trust-glyph {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 68px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--violet-soft);
}

.closing {
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
  padding-inline: 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(32, 27, 47, 0.78), rgba(18, 16, 26, 0.82));
  text-align: center;
}

.closing h2 {
  position: relative;
  max-width: 920px;
  margin: 0 auto 24px;
}

.closing > p {
  position: relative;
  max-width: 680px;
  margin: 0 auto 32px;
}

.closing-glow {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 620px;
  height: 360px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 134, 255, 0.2), transparent 68%);
}

.private-note {
  position: relative;
  display: inline-block;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 150px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--violet-soft), var(--coral));
  color: #171220;
  font-weight: 850;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.site-footer > p {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

.policy-main {
  padding-bottom: 100px;
}

.policy-hero {
  max-width: 920px;
  padding-block: 110px 90px;
}

.policy-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
}

.policy-summary {
  max-width: 760px;
  margin: 0;
  color: #c2bbcf;
  font-size: clamp(1.1rem, 2.4vw, 1.48rem);
  line-height: 1.68;
}

.effective-date {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 90px;
  align-items: start;
  justify-content: space-between;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.policy-index {
  position: sticky;
  top: 30px;
}

.policy-index > p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-index ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: policy-index;
  list-style: none;
}

.policy-index li {
  counter-increment: policy-index;
}

.policy-index a {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  text-decoration: none;
}

.policy-index a::before {
  color: #6e687a;
  content: counter(policy-index, decimal-leading-zero);
  font-variant-numeric: tabular-nums;
}

.policy-index a:hover {
  color: var(--text);
}

.policy-content section {
  position: relative;
  padding: 0 0 72px 66px;
  scroll-margin-top: 30px;
}

.policy-content section + section {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.policy-number {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--violet-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.policy-content h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.policy-content h3 {
  margin-top: 34px;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}

.policy-content p,
.policy-content li {
  color: #beb7ca;
}

.policy-content p {
  margin: 0 0 18px;
}

.policy-content ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding-left: 20px;
}

.policy-content li::marker {
  color: var(--violet);
}

.policy-content strong {
  color: var(--text);
}

.policy-content a {
  color: var(--violet-soft);
  text-underline-offset: 4px;
}

.policy-content a:hover {
  color: var(--coral);
}

.policy-callout {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid rgba(167, 134, 255, 0.2);
  border-radius: 16px;
  background: rgba(167, 134, 255, 0.06);
}

.policy-callout > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--violet-soft);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-callout p {
  margin: 0;
}

.not-found-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.not-found-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 90px;
  text-align: center;
}

.error-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  margin-bottom: 38px;
  border: 1px dashed rgba(167, 134, 255, 0.35);
  border-radius: 50%;
}

.error-orbit::before,
.error-orbit::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.error-orbit::before {
  inset: 17px;
}

.error-orbit::after {
  inset: 36px;
  background: rgba(167, 134, 255, 0.08);
}

.error-orbit span {
  position: relative;
  z-index: 1;
  color: var(--violet-soft);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.not-found-main h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
}

.not-found-main > p:not(.section-label) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
}

.error-actions a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration: none;
}

.error-actions a:hover {
  color: var(--text);
}

.error-actions .primary-link {
  padding: 12px 18px;
  border-radius: 99px;
  background: var(--text);
  color: var(--ink);
}

.error-actions .primary-link:hover {
  color: var(--ink);
}

/* Content starts visible; JavaScript applies this class only when reveal enhancement is safe. */
.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .signal-stage {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    text-align: left;
  }

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

  .policy-index {
    position: static;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(27, 24, 39, 0.45);
  }

  .policy-index ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    min-height: 76px;
  }

  .site-nav {
    gap: 15px;
  }

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

  .nav-source {
    display: none;
  }

  .hero {
    gap: 50px;
    min-height: auto;
    padding-block: 70px 80px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .signal-stage {
    min-height: 430px;
    transform: scale(0.88);
  }

  .signal-email {
    left: -20px;
  }

  .signal-goal {
    right: -32px;
  }

  .signal-action {
    right: -8px;
  }

  .section-space {
    padding-block: 82px;
  }

  .steps-grid,
  .foundation-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .trust-grid article {
    min-height: 230px;
  }

  .step-number,
  .trust-glyph {
    margin-bottom: 42px;
  }

  .foundation-card {
    min-height: 390px;
    padding: 26px;
  }

  .card-topline {
    margin-bottom: 50px;
  }

  .closing {
    width: min(calc(100% - 28px), var(--max-width));
    padding-inline: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 35px;
  }

  .site-footer nav {
    gap: 22px;
  }

  .policy-hero {
    padding-block: 80px 65px;
  }

  .policy-layout {
    padding-top: 40px;
  }

  .policy-content section,
  .policy-content section + section {
    padding: 55px 0;
  }

  .policy-content section:first-child {
    padding-top: 0;
  }

  .policy-number {
    position: static;
    display: block;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero-principles {
    display: grid;
    justify-items: start;
  }

  .signal-stage {
    left: auto;
    width: 100%;
    min-height: 410px;
    margin-left: 0;
    overflow: hidden;
    transform: none;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    width: 350px;
    height: 350px;
  }

  .eva-core {
    width: 126px;
    height: 126px;
  }

  .core-mark {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    font-size: 1.65rem;
  }

  .core-label {
    top: calc(100% + 16px);
    width: 160px;
    font-size: 0.62rem;
  }

  .signal-card {
    min-width: 0;
    width: 184px;
    padding: 10px 11px;
  }

  .signal-card::after {
    display: none;
  }

  .signal-card strong {
    font-size: 0.74rem;
  }

  .signal-kicker {
    font-size: 0.56rem;
  }

  .signal-email {
    top: 24px;
    left: 0;
  }

  .signal-goal {
    top: 105px;
    right: 0;
  }

  .signal-action {
    right: 8px;
    bottom: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enhanced [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
