:root {
  color-scheme: dark;
  --canvas: #080b10;
  --canvas-raised: #0d1118;
  --surface: #131922;
  --surface-alt: #19212c;
  --border: #29333f;
  --border-strong: #3a4655;
  --text: #f3f5f7;
  --text-secondary: #aeb8c4;
  --text-muted: #778392;
  --lime: #b8ef52;
  --cyan: #62c7f3;
  --violet: #a68af4;
  --coral: #f27e6f;
  --max-width: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgb(71 49 105 / 18%), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgb(20 91 123 / 10%), transparent 24rem),
    var(--canvas);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(circle, rgb(255 255 255 / 16%) 0.7px, transparent 0.8px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

button {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--lime);
  color: var(--canvas);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  transition: background 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-color: rgb(255 255 255 / 8%);
  background: rgb(8 11 16 / 80%);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 520;
  letter-spacing: -0.4px;
}

.brand-image {
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 12px;
  background: #050608;
  box-shadow: 0 0 22px rgb(166 138 244 / 15%);
}

.brand-image img {
  width: 82px;
  max-width: none;
  height: 46px;
  object-fit: cover;
  object-position: 54% 42%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta) {
  transition: color 160ms ease;
}

.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 9px 15px;
  transition: border-color 160ms ease, background 160ms ease;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--text);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgb(184 239 82 / 60%);
  background: rgb(184 239 82 / 7%);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  transition: transform 180ms ease;
  background: var(--text);
}

.hero {
  display: grid;
  min-height: 820px;
  padding-top: calc(var(--header-height) + 78px);
  padding-bottom: 100px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 7vw, 98px);
}

.eyebrow {
  display: flex;
  margin: 0 0 23px;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--lime);
  box-shadow: 0 0 9px rgb(184 239 82 / 70%);
}

.hero h1,
.section-heading h2,
.closing-card h2 {
  margin: 0;
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 7.4vw, 104px);
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
  text-shadow: 0 0 44px rgb(184 239 82 / 22%);
}

.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 35px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
}

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

.button-primary {
  background: var(--lime);
  color: var(--canvas);
  box-shadow: 0 12px 34px rgb(184 239 82 / 15%);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 15px 38px rgb(184 239 82 / 25%);
}

.button-secondary {
  border-color: var(--border-strong);
  background: rgb(255 255 255 / 2%);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgb(255 255 255 / 30%);
}

.hero-notes {
  display: flex;
  margin: 32px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 650;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-notes li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.hero-art {
  position: relative;
  margin: 0;
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}

.hero-art::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 26px;
  content: "";
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 2%);
}

.hero-art > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(0.88) contrast(1.06);
  box-shadow: 0 32px 90px rgb(0 0 0 / 55%);
}

.hero-art figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  padding: 13px 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 13px;
  background: rgb(6 8 12 / 68%);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(14px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.art-glow {
  position: absolute;
  z-index: -1;
  inset: 8% 5%;
  filter: blur(70px);
  background: linear-gradient(135deg, rgb(98 199 243 / 24%), rgb(166 138 244 / 18%), rgb(242 126 111 / 12%));
}

.principles {
  border-top: 1px solid rgb(255 255 255 / 7%);
  border-bottom: 1px solid rgb(255 255 255 / 7%);
  background: rgb(255 255 255 / 1.5%);
}

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

.principle-grid article {
  display: flex;
  min-height: 126px;
  padding: 28px 35px;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgb(255 255 255 / 7%);
}

.principle-grid article:first-child {
  padding-left: 0;
}

.principle-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.principle-number {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.principle-grid strong,
.principle-grid small {
  display: block;
}

.principle-grid strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.principle-grid small {
  color: var(--text-muted);
  font-size: 12px;
}

.section {
  padding-top: 138px;
  padding-bottom: 138px;
}

.section-heading {
  max-width: 735px;
}

.section-heading h2 {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.04;
}

.section-heading > p:not(.eyebrow) {
  max-width: 625px;
  margin: 27px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.loop-layout {
  display: grid;
  margin-top: 68px;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 34px;
}

.stage-rail {
  display: grid;
  gap: 6px;
}

.stage-tab {
  display: flex;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  align-items: center;
  gap: 16px;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
}

.stage-tab span {
  color: #586472;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

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

.stage-tab.is-active {
  border-color: rgb(184 239 82 / 28%);
  background: rgb(184 239 82 / 8%);
  color: var(--text);
}

.stage-tab.is-active span {
  color: var(--lime);
}

.stage-panel {
  position: relative;
  display: flex;
  min-height: 480px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  border-radius: 24px;
  outline: none;
  background:
    radial-gradient(circle at 80% 5%, rgb(184 239 82 / 10%), transparent 18rem),
    linear-gradient(145deg, var(--surface), var(--canvas-raised));
}

.stage-panel:focus-visible {
  border-color: var(--lime);
}

.stage-panel > *:not(.stage-orbit) {
  position: relative;
  z-index: 2;
}

.stage-orbit {
  position: absolute;
  top: -105px;
  right: -65px;
  width: 420px;
  height: 420px;
}

.stage-orbit span {
  position: absolute;
  inset: calc(var(--ring, 0) * 48px);
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 50%;
}

.stage-orbit span:nth-child(1) { --ring: 0; }
.stage-orbit span:nth-child(2) { --ring: 1; }
.stage-orbit span:nth-child(3) { --ring: 2; }

.stage-orbit i {
  position: absolute;
  top: 58%;
  left: 22%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 22px var(--lime);
}

.stage-kicker,
.finding-label,
.lane-topline,
.stage-proof span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-panel h3 {
  max-width: 680px;
  margin: 13px 0 18px;
  font-size: clamp(31px, 3.4vw, 48px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.stage-panel > p:not(.stage-kicker) {
  max-width: 650px;
  margin: 0;
  color: var(--text-secondary);
}

.stage-proof {
  display: flex;
  margin-top: 35px;
  padding-top: 22px;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid var(--border);
}

.stage-proof span {
  color: var(--text-muted);
}

.stage-proof strong {
  font-size: 13px;
  font-weight: 650;
}

.evidence-section {
  border-top: 1px solid rgb(255 255 255 / 6%);
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  background:
    linear-gradient(90deg, transparent 49.9%, rgb(255 255 255 / 5%) 50%, transparent 50.1%),
    var(--canvas-raised);
}

.evidence-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 9vw, 130px);
}

.evidence-copy h2 {
  font-size: clamp(44px, 5vw, 67px);
}

.evidence-quote {
  margin-top: 42px;
  padding: 25px 26px;
  border-left: 2px solid var(--lime);
  background: rgb(255 255 255 / 2.5%);
}

.evidence-quote > span,
.evidence-quote small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.evidence-quote blockquote {
  margin: 12px 0 13px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.45;
}

.finding-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 35px 85px rgb(0 0 0 / 32%);
}

.finding-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.finding-head h3 {
  margin: 6px 0 0;
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.supported-badge {
  display: inline-flex;
  padding: 8px 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(184 239 82 / 22%);
  border-radius: 999px;
  background: rgb(184 239 82 / 7%);
  color: var(--lime);
  font-size: 11px;
  font-weight: 750;
}

.supported-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.signal-chart {
  display: grid;
  height: 205px;
  margin: 34px 0 28px;
  padding: 20px 4px 0;
  grid-template-columns: 34px 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: repeating-linear-gradient(to bottom, transparent 0 50px, rgb(255 255 255 / 5%) 51px);
}

.chart-scale {
  display: flex;
  padding-bottom: 20px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.chart-bars {
  display: flex;
  padding: 10px 5px 19px;
  align-items: flex-end;
  justify-content: space-around;
  gap: 10px;
}

.chart-bars i {
  width: min(26px, 8%);
  height: var(--value);
  min-height: 5px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(to top, rgb(98 199 243 / 62%), var(--lime));
  box-shadow: 0 0 13px rgb(184 239 82 / 12%);
}

.chart-bars i.is-muted {
  background: var(--border-strong);
  box-shadow: none;
}

.finding-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.finding-stats div {
  padding: 0 16px;
  background: var(--surface);
}

.finding-stats div:first-child { padding-left: 0; }
.finding-stats div:last-child { padding-right: 0; }

.finding-stats span,
.finding-stats small,
.finding-stats strong {
  display: block;
}

.finding-stats span {
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.finding-stats strong {
  margin: 4px 0 2px;
  font-size: 24px;
  font-weight: 570;
}

.finding-stats small {
  color: var(--text-secondary);
  font-size: 10px;
}

.counterevidence {
  display: flex;
  margin-top: 27px;
  padding: 15px;
  align-items: flex-start;
  gap: 13px;
  border-radius: 13px;
  background: var(--surface-alt);
}

.counter-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid rgb(98 199 243 / 22%);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 13px;
}

.counterevidence p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 12px;
}

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

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.lane-grid {
  display: grid;
  margin-top: 66px;
  align-items: stretch;
  grid-template-columns: 1fr 100px 1fr;
}

.lane-card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.lane-topline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lane-topline span {
  color: var(--text-muted);
}

.lane-card h3 {
  margin: 26px 0 15px;
  font-size: 29px;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.lane-card p {
  margin: 0;
  color: var(--text-secondary);
}

.lane-card ul {
  display: grid;
  margin: 29px 0 0;
  padding: 25px 0 0;
  gap: 12px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  list-style: none;
}

.lane-card li {
  position: relative;
  padding-left: 20px;
}

.lane-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.ai-lane .lane-topline {
  color: var(--cyan);
}

.ai-lane li::before {
  background: var(--cyan);
}

.truth-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.truth-connector span {
  position: absolute;
  transform: rotate(-90deg) translateY(-20px);
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.truth-connector i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--canvas);
  color: var(--lime);
  font-style: normal;
}

.privacy-section {
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 6%);
  border-bottom: 1px solid rgb(255 255 255 / 6%);
  background: var(--canvas-raised);
}

.privacy-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
}

.privacy-visual {
  position: relative;
  width: 460px;
  max-width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
}

.privacy-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
}

.orbit-one {
  inset: 7%;
}

.orbit-two {
  inset: 22%;
  border-color: rgb(184 239 82 / 19%);
}

.privacy-visual::before,
.privacy-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.privacy-visual::before {
  inset: 34%;
  filter: blur(35px);
  background: rgb(184 239 82 / 16%);
}

.privacy-visual::after {
  inset: 0;
  background: repeating-radial-gradient(circle, transparent 0 34px, rgb(255 255 255 / 3%) 35px 36px);
}

.privacy-core {
  position: absolute;
  z-index: 2;
  inset: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgb(184 239 82 / 33%);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 0 55px rgb(184 239 82 / 9%);
}

.privacy-core span {
  width: 8px;
  height: 8px;
  margin-bottom: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.privacy-core strong {
  font-size: 16px;
}

.privacy-core small {
  color: var(--text-muted);
  font-size: 10px;
}

.privacy-node {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 3px solid var(--canvas-raised);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgb(98 199 243 / 60%);
}

.node-one { top: 17%; left: 28%; }
.node-two { top: 45%; right: 8%; background: var(--violet); }
.node-three { bottom: 12%; left: 35%; background: var(--lime); }

.privacy-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 70px);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.privacy-list {
  display: grid;
  margin-top: 38px;
  gap: 1px;
  background: var(--border);
}

.privacy-list article {
  display: flex;
  padding: 17px 0;
  align-items: flex-start;
  gap: 20px;
  background: var(--canvas-raised);
}

.privacy-list article > span {
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.privacy-list strong,
.privacy-list small {
  display: block;
}

.privacy-list strong {
  font-size: 14px;
}

.privacy-list small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
}

.status-section .section-heading {
  max-width: 825px;
}

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

.status-card {
  min-height: 310px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.status-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-title span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 11px rgb(184 239 82 / 70%);
}

.status-card h3 {
  max-width: 480px;
  margin: 54px 0 15px;
  font-size: 31px;
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.status-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.status-progress .status-title {
  color: var(--cyan);
}

.status-progress .status-title span {
  background: var(--cyan);
  box-shadow: 0 0 11px rgb(98 199 243 / 70%);
}

.closing-card {
  position: relative;
  display: flex;
  min-height: 365px;
  margin-top: 96px;
  padding: clamp(38px, 7vw, 80px);
  overflow: hidden;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgb(7 9 13 / 62%), rgb(7 9 13 / 25%)),
    url("assets/vueniverse-logo.jpg") center / cover no-repeat;
}

.closing-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgb(5 7 10 / 35%), transparent);
  content: "";
}

.closing-card > * {
  position: relative;
  z-index: 2;
}

.closing-card h2 {
  font-size: clamp(45px, 6vw, 76px);
  text-shadow: 0 3px 28px rgb(0 0 0 / 80%);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgb(255 255 255 / 7%);
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.65fr 1.35fr 0.8fr;
  gap: 34px;
  color: var(--text-muted);
  font-size: 11px;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner > span:last-child {
  text-align: right;
}

[data-reveal] {
  transition: opacity 600ms ease, transform 600ms ease;
}

.js [data-reveal] {
  transform: translateY(20px);
  opacity: 0;
}

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

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgb(13 17 24 / 97%);
    box-shadow: 0 20px 55px rgb(0 0 0 / 45%);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

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

  .hero {
    min-height: 0;
    padding-top: 155px;
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    width: min(780px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .evidence-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .evidence-section {
    background: var(--canvas-raised);
  }

  .privacy-visual {
    order: 2;
  }

  .privacy-layout {
    gap: 65px;
  }

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

  .footer-inner p,
  .footer-inner > span:last-child {
    text-align: left;
  }
}

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

  .hero {
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

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

  .principle-grid article,
  .principle-grid article:first-child,
  .principle-grid article:last-child {
    min-height: 104px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 7%);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .section-heading h2,
  .evidence-copy h2,
  .privacy-copy h2 {
    font-size: 43px;
  }

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

  .stage-rail {
    display: flex;
    margin: 0 -15px;
    padding: 0 15px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .stage-rail::-webkit-scrollbar {
    display: none;
  }

  .stage-tab {
    width: auto;
    min-width: max-content;
  }

  .stage-panel {
    min-height: 500px;
  }

  .finding-card {
    padding: 22px 18px;
  }

  .finding-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .finding-stats {
    grid-template-columns: 1fr;
    gap: 18px;
    background: transparent;
  }

  .finding-stats div,
  .finding-stats div:first-child,
  .finding-stats div:last-child {
    padding: 0 0 18px;
    border-bottom: 1px solid var(--border);
  }

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

  .truth-connector {
    min-height: 78px;
  }

  .truth-connector span {
    transform: translateY(-21px);
  }

  .truth-connector i {
    transform: rotate(90deg);
  }

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

  .closing-card {
    min-height: 500px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }

  .closing-card .button {
    width: 100%;
  }
}

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

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