:root {
  --bg: #030403;
  --panel: rgba(14, 18, 15, 0.78);
  --panel-strong: rgba(18, 24, 20, 0.94);
  --line: rgba(197, 255, 216, 0.16);
  --line-strong: rgba(58, 255, 118, 0.38);
  --text: #f3fff6;
  --muted: #9aa69d;
  --soft: #d5ffe0;
  --green: #39ff7a;
  --green-deep: #0aa64a;
  --green-soft: #a7ffbf;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 75% 8%, rgba(57, 255, 122, 0.16), transparent 24rem),
    linear-gradient(180deg, #040604 0%, #030403 48%, #060806 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(57, 255, 122, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 122, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 45%, rgba(0, 0, 0, 0.45));
}

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

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

.site-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 16px 0 8px;
  padding: 12px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12, 16, 13, 0.86), rgba(3, 5, 4, 0.72));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(57, 255, 122, 0.95), rgba(57, 255, 122, 0.05)),
    #071009;
  box-shadow: 0 0 24px rgba(57, 255, 122, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 255, 226, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links a,
.nav-cta {
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  justify-self: end;
  border: 1px solid var(--line-strong);
  color: var(--green-soft);
  background: rgba(57, 255, 122, 0.06);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 22px 0 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4.3rem, 8.4vw, 7.25rem);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(2.15rem, 4.4vw, 4.55rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 640px;
  color: #e3f8e9;
  font-size: clamp(1.14rem, 1.72vw, 1.38rem);
  line-height: 1.32;
  text-wrap: pretty;
}

.hero-mantra {
  margin: 20px 0 0;
  color: var(--green-soft);
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  font-weight: 850;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.hero-proof span {
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(216, 255, 226, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c3d0c7;
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-form {
  max-width: 650px;
  margin-top: 24px;
  padding: 12px;
  border: 1px solid rgba(216, 255, 226, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(3, 8, 5, 0.78);
  box-shadow: 0 24px 88px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.waitlist-form small {
  display: block;
  margin-top: 11px;
  color: #aab8ae;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  border-color: rgba(87, 255, 142, 0.65);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.58), transparent 36%),
    linear-gradient(180deg, #72ffa4 0%, #32ed78 48%, #11b74f 100%);
  color: #001b09;
  box-shadow:
    0 0 0 1px rgba(57, 255, 122, 0.22),
    0 18px 52px rgba(18, 214, 91, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-primary:hover {
  box-shadow:
    0 0 0 1px rgba(57, 255, 122, 0.32),
    0 22px 64px rgba(18, 214, 91, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.025));
  color: var(--soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.button-text {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.button-text:hover {
  color: var(--text);
}

.signal-row {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.signal-row strong {
  color: var(--green);
}

.hero-visual {
  position: absolute;
  inset: 8px 0 90px auto;
  width: min(63%, 760px);
  min-height: 560px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-orbit {
  position: absolute;
  right: 8%;
  bottom: 11%;
  z-index: 1;
  width: 260px;
  aspect-ratio: 1;
  border: 1px solid rgba(57, 255, 122, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 32px rgba(57, 255, 122, 0.08), 0 0 52px rgba(57, 255, 122, 0.14);
  animation: orbitPulse 6s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(3, 4, 3, 0.72) 20%, transparent 58%),
    linear-gradient(180deg, transparent 58%, rgba(3, 4, 3, 0.92));
}

.status-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 142px;
  padding: 14px;
  border: 1px solid rgba(216, 255, 226, 0.15);
  border-radius: var(--radius);
  background: rgba(3, 7, 5, 0.7);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.status-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-card strong {
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1;
}

.status-card-top {
  top: 24px;
  right: 24px;
}

.status-card-bottom {
  right: 44px;
  bottom: 42px;
  left: auto;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 132px;
  overflow: hidden;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: var(--radius);
  background: rgba(216, 255, 226, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.metric-strip div {
  padding: 22px;
  background: rgba(8, 12, 9, 0.82);
}

.metric-strip span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-strip strong {
  color: var(--text);
  font-size: 1.08rem;
}

.section {
  scroll-margin-top: 118px;
  padding: 128px 0;
  border-top: 1px solid rgba(216, 255, 226, 0.1);
}

.human-index {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.index-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 12px;
  min-height: 430px;
  padding: 12px;
  border: 1px solid rgba(216, 255, 226, 0.13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 12%, rgba(57, 255, 122, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.028);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.index-score,
.index-rings {
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 10px;
  background: rgba(3, 8, 5, 0.72);
}

.index-score {
  display: grid;
  align-content: end;
  padding: 24px;
}

.index-score span,
.index-rings span,
.coach-message span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.index-score strong {
  color: var(--green);
  font-size: clamp(5rem, 12vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.index-score p {
  margin: 12px 0 0;
  color: #d5ffe0;
  font-weight: 650;
}

.index-rings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 12px;
}

.index-rings div {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 184px;
  padding: 18px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 9px;
  background:
    radial-gradient(circle at 80% 18%, rgba(57, 255, 122, 0.13), transparent 8rem),
    rgba(255, 255, 255, 0.032);
}

.index-rings div::before,
.index-rings div::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 4px;
  border-radius: 999px;
  content: "";
}

.index-rings div::before {
  background: rgba(255, 255, 255, 0.08);
}

.index-rings div::after {
  width: calc(var(--value) * 1%);
  background: linear-gradient(90deg, var(--green), rgba(167, 255, 191, 0.82));
  box-shadow: 0 0 18px rgba(57, 255, 122, 0.34);
}

.index-rings strong {
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 18px;
}

.problem-solution .section-heading {
  max-width: 940px;
}

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

.ps-grid article {
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ps-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 72% 18%, rgba(57, 255, 122, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.04);
}

.ps-grid h3 {
  max-width: 540px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.ps-grid p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ps-grid ul {
  display: grid;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.ps-grid li {
  padding: 12px 14px;
  border: 1px solid rgba(216, 255, 226, 0.09);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: #dbe8df;
  font-weight: 720;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: end;
}

.section-lead,
.panel-copy p,
.ecosystem-grid p,
.feature-grid p,
.timeline p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-lead {
  margin-bottom: 0;
  color: #c6d1c9;
  font-size: clamp(1.18rem, 2.15vw, 1.62rem);
  line-height: 1.36;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: stretch;
}

.panel-copy {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 42px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 255, 122, 0.12), transparent 42%),
    var(--panel);
}

.panel-copy p {
  max-width: 720px;
  margin: 26px 0 0;
}

.system-stack {
  display: grid;
  gap: 10px;
}

.system-stack div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 98px;
  padding: 20px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 1.05rem;
  font-weight: 800;
}

.system-stack span,
.node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(57, 255, 122, 0.72);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.ecosystem-grid,
.feature-grid,
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}

.logo-cloud span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 64px;
  border: 1px solid rgba(216, 255, 226, 0.095);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.026);
  color: #d4dfd8;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo-cloud i {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(57, 255, 122, 0.55);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(57, 255, 122, 0.9), rgba(57, 255, 122, 0.04));
  box-shadow: 0 0 18px rgba(57, 255, 122, 0.24);
}

.ecosystem-grid article,
.feature-grid article,
.privacy-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ecosystem-grid article {
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(57, 255, 122, 0.1), transparent 52%),
    rgba(9, 13, 10, 0.82);
}

.node {
  margin-bottom: 52px;
}

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

.feature-grid article {
  min-height: 170px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-grid article:hover {
  border-color: var(--line-strong);
  background: rgba(57, 255, 122, 0.06);
}

.ecosystem-grid article:hover,
.privacy-grid article:hover,
.ps-grid article:hover,
.timeline li:hover,
.vision-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 122, 0.24);
}

.coach-preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.coach-shell {
  overflow: hidden;
  border: 1px solid rgba(216, 255, 226, 0.13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 10%, rgba(57, 255, 122, 0.16), transparent 17rem),
    rgba(4, 8, 5, 0.86);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.coach-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(216, 255, 226, 0.1);
}

.coach-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 0;
}

.coach-prompts button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #dbe8df;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 760;
}

.coach-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(57, 255, 122, 0.5);
}

.coach-topbar strong {
  font-size: 0.9rem;
}

.coach-topbar em {
  color: var(--green-soft);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 780;
}

.coach-thread {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.coach-message {
  max-width: 86%;
  padding: 16px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.coach-user {
  justify-self: end;
}

.coach-ai {
  background:
    linear-gradient(135deg, rgba(57, 255, 122, 0.12), transparent 54%),
    rgba(255, 255, 255, 0.04);
}

.coach-message p {
  margin: 8px 0 0;
  color: #dcebe1;
}

.coach-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.coach-actions button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(57, 255, 122, 0.28);
  border-radius: 999px;
  background: rgba(57, 255, 122, 0.07);
  color: var(--green-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 780;
}

.coach-actions button:hover,
.coach-prompts button:hover {
  border-color: rgba(57, 255, 122, 0.38);
  background: rgba(57, 255, 122, 0.1);
}

.privacy-section .section-heading {
  max-width: 900px;
}

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

.privacy-grid article {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(4, 8, 5, 0.78);
}

.privacy-grid h3 {
  font-size: 1.12rem;
}

.privacy-grid p {
  color: var(--muted);
}

.future-vision {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 82px;
  border: 1px solid rgba(216, 255, 226, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 76% 24%, rgba(57, 255, 122, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), transparent 36%),
    rgba(5, 9, 6, 0.9);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.future-vision h2 {
  max-width: 920px;
}

.future-vision > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d5e5da;
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 44px;
}

.vision-grid span {
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
  color: #e9fff0;
  font-weight: 780;
}

.roadmap {
  padding-bottom: 96px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: roadmap;
}

.timeline li {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: var(--radius);
  background: var(--panel);
}

.timeline li::before {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 34px;
  content: "";
  background: linear-gradient(90deg, var(--green), transparent);
}

.timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.waitlist {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 48px;
  padding: 46px;
  border: 1px solid rgba(216, 255, 226, 0.12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 74% 18%, rgba(57, 255, 122, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(57, 255, 122, 0.14), transparent 44%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.waitlist h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
}

.waitlist-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.waitlist-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.waitlist-points span {
  padding: 8px 10px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c8d5cc;
  font-size: 0.78rem;
  font-weight: 750;
}

.waitlist-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(216, 255, 226, 0.12);
  border-radius: 10px;
  outline: none;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font: inherit;
}

input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(57, 255, 122, 0.1);
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-message.success {
  color: var(--green-soft);
}

.form-message.error {
  color: #ff7f7f;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px 0 48px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

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

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

.assessment-page {
  padding: 34px 0 96px;
}

.assessment-hero {
  max-width: 860px;
  padding: 28px 0 24px;
}

.assessment-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 6.4vw, 4.7rem);
}

.assessment-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #d9f5df;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.assessment-shell,
.assessment-results {
  border: 1px solid rgba(216, 255, 226, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 22, 18, 0.92), rgba(6, 8, 7, 0.9)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.assessment-shell {
  padding: clamp(20px, 4vw, 42px);
}

.assessment-form {
  display: grid;
  gap: 14px;
}

.assessment-progress {
  position: sticky;
  top: 92px;
  z-index: 12;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(216, 255, 226, 0.12);
  border-radius: 8px;
  background: rgba(5, 8, 6, 0.86);
  backdrop-filter: blur(18px);
}

.assessment-progress div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 850;
}

.assessment-progress strong {
  color: var(--green);
}

.assessment-progress meter {
  width: 100%;
  height: 8px;
}

.assessment-progress meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.assessment-progress meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-deep), var(--green));
}

.assessment-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.assessment-intro h2,
.category-card h2,
.recommendation-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.assessment-intro p {
  max-width: 700px;
  margin: 12px 0 0;
  color: #c6d1c9;
}

.assessment-scale {
  display: grid;
  gap: 8px;
  min-width: 150px;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.question-list {
  display: grid;
  gap: 10px;
}

.question-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.032);
}

.question-card legend {
  display: grid;
  gap: 4px;
  padding: 0;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.32;
}

.question-card legend span {
  color: var(--green-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rating-row {
  display: grid;
  grid-template-rows: auto auto;
  gap: 4px;
  max-width: 360px;
}

.rating-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: minmax(42px, 1fr);
  gap: 7px;
}

.rating-row label {
  display: grid;
  min-width: 0;
  min-height: 30px;
  width: 100%;
  place-items: center;
  cursor: pointer;
  line-height: 1;
}

.rating-row input {
  position: absolute;
  inset: auto;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.rating-numbers {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 7px;
}

.rating-numbers span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.rating-row label > span {
  display: grid;
  width: 28px;
  height: 28px;
  max-width: 28px;
  place-items: center;
  border: 1px solid rgba(216, 255, 226, 0.16);
  border-radius: 999px;
  color: #d7e2da;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.rating-row label strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.rating-row input:checked + span,
.rating-row label:hover > span {
  border-color: rgba(57, 255, 122, 0.76);
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(57, 255, 122, 0.1);
  transform: translateY(-1px);
}

.assessment-submit-bar {
  position: sticky;
  bottom: 12px;
  z-index: 14;
  display: none;
  padding: 10px;
  border: 1px solid rgba(57, 255, 122, 0.24);
  border-radius: 8px;
  background: rgba(5, 8, 6, 0.88);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.assessment-submit-bar.is-ready {
  display: block;
}

.assessment-submit {
  width: 100%;
}

.assessment-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green-soft);
  font-size: 0.92rem;
}

.assessment-message.error {
  color: #ffb4b4;
}

.assessment-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 34px);
}

.assessment-results > * {
  min-width: 0;
}

.assessment-results[hidden] {
  display: none;
}

.score-card,
.category-card,
.recommendation-card,
.dashboard-card {
  border: 1px solid rgba(216, 255, 226, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.score-card {
  grid-row: span 2;
}

.score-lockup {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0;
}

.score-lockup span {
  color: var(--green);
  font-size: clamp(2rem, 6vw, 4rem);
}

.score-lockup strong {
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 0.9;
}

.score-card p:last-child {
  max-width: 360px;
  color: #d9f5df;
}

.category-scores {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.category-score {
  display: grid;
  gap: 8px;
}

.category-score div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft);
  font-weight: 800;
}

.category-score strong {
  color: var(--green);
}

.category-score meter {
  width: 100%;
  height: 10px;
}

.category-score meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.category-score meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-deep), var(--green));
}

.recommendations {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.recommendations li::marker {
  color: var(--green);
  font-weight: 900;
}

.recommendations span {
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendations p {
  margin: 6px 0 0;
  color: #c6d1c9;
}

.assessment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.dashboard-card {
  grid-column: 1 / -1;
}

.dashboard-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-heading h2,
.trend-card h3,
.radar-card h3,
.history-card h3 {
  margin: 0;
}

.dashboard-heading > span {
  padding: 7px 10px;
  border: 1px solid rgba(57, 255, 122, 0.26);
  border-radius: 999px;
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.86fr);
  gap: 14px;
}

.trend-card,
.radar-card,
.history-card {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(216, 255, 226, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.history-card {
  grid-column: 1 / -1;
  min-height: auto;
}

.score-trend,
.radar-chart {
  margin-top: 14px;
}

.score-trend svg,
.radar-chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.score-trend line,
.radar-chart line {
  stroke: rgba(216, 255, 226, 0.14);
  stroke-width: 1;
}

.score-trend polyline {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(57, 255, 122, 0.35));
}

.score-trend circle,
.radar-chart circle {
  fill: var(--green);
  stroke: #061009;
  stroke-width: 2;
}

.trend-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.radar-grid {
  fill: rgba(57, 255, 122, 0.025);
  stroke: rgba(216, 255, 226, 0.15);
  stroke-width: 1;
}

.radar-area {
  fill: rgba(57, 255, 122, 0.22);
  stroke: var(--green);
  stroke-linejoin: round;
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(57, 255, 122, 0.25));
}

.radar-chart text {
  fill: #d5ffe0;
  font-size: 0.62rem;
  font-weight: 800;
  text-anchor: middle;
}

.previous-scores {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.previous-scores article {
  display: grid;
  gap: 8px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(216, 255, 226, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.previous-scores span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.previous-scores strong {
  color: var(--green);
  font-size: 1.45rem;
}

.empty-state {
  margin: 14px 0 0;
  color: var(--muted);
}

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

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

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.68;
    transform: scale(1.03);
  }
}

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

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

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

  .nav {
    grid-template-columns: 1fr auto;
    margin-bottom: 36px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .human-index,
  .coach-preview,
  .split-section,
  .solution-panel,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .hero-visual {
    inset: 4px -82px auto auto;
    width: min(82%, 520px);
    min-height: 420px;
    opacity: 0.58;
  }

  .hero-visual img {
    min-height: 420px;
  }

  .metric-strip,
  .logo-cloud,
  .index-rings,
  .assessment-intro,
  .assessment-results,
  .dashboard-grid,
  .ecosystem-grid,
  .feature-grid,
  .privacy-grid,
  .timeline,
  .ps-grid,
  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .metric-strip {
    margin-bottom: 72px;
  }

  .section {
    padding: 78px 0;
  }

  .waitlist {
    padding: 30px;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 24px, 480px);
  }

  .nav {
    top: 10px;
    margin-top: 10px;
  }

  .brand {
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(3.1rem, 16.5vw, 4.72rem);
    letter-spacing: -0.052em;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-actions,
  .form-row,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 6px;
  }

  .hero-proof span {
    font-size: 0.72rem;
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero-actions,
  .signal-row {
    display: none;
  }

  .hero-form {
    padding: 12px;
  }

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

  .hero-visual {
    inset: 22px -118px auto auto;
    width: min(108%, 430px);
    min-height: 330px;
    opacity: 0.42;
  }

  .hero-visual img {
    min-height: 330px;
  }

  .status-card {
    display: none;
    min-width: 118px;
    padding: 11px;
  }

  .status-card strong {
    font-size: 1.25rem;
  }

  .status-card-top {
    top: 14px;
    right: 14px;
  }

  .status-card-bottom {
    bottom: 14px;
    left: 14px;
  }

  .metric-strip,
  .logo-cloud,
  .index-rings,
  .ecosystem-grid,
  .feature-grid,
  .privacy-grid,
  .timeline,
  .ps-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div,
  .ps-grid article,
  .ecosystem-grid article,
  .feature-grid article,
  .privacy-grid article,
  .timeline li,
  .vision-grid span {
    min-height: auto;
    padding: 20px;
  }

  .panel-copy,
  .index-board,
  .future-vision,
  .assessment-shell,
  .waitlist {
    min-height: auto;
    padding: 24px;
  }

  .assessment-page {
    padding: 36px 0 72px;
  }

  .assessment-hero {
    padding: 46px 0 34px;
  }

  .assessment-scale {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }

  .assessment-progress {
    top: 74px;
  }

  .assessment-progress div {
    display: grid;
    gap: 4px;
  }

  .question-card {
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .rating-row {
    max-width: none;
  }

  .rating-numbers,
  .rating-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .rating-row label > span {
    width: 32px;
    max-width: 44px;
  }

  .score-card {
    grid-row: auto;
  }

  .index-score strong {
    font-size: 5.8rem;
  }

  .coach-preview {
    gap: 26px;
  }

  .coach-message {
    max-width: 100%;
  }

  .coach-prompts,
  .coach-actions,
  .previous-scores {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-heading {
    display: grid;
  }

  .coach-prompts button,
  .coach-actions button,
  .assessment-actions .button {
    width: 100%;
  }

  .node {
    margin-bottom: 42px;
  }

  .footer {
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
