:root {
  color-scheme: dark;
  --ink: #f7f2df;
  --muted: #aaa99f;
  --panel: #171a19;
  --panel-soft: #1e2220;
  --line: #343b37;
  --mint: #93f6c5;
  --mint-deep: #46c88e;
  --amber: #f4bd63;
  --coral: #ff766f;
  --blue: #84aaff;
  --bg: #0b0e0d;
  --shadow: 0 26px 80px rgb(0 0 0 / 36%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgb(70 200 142 / 12%), transparent 27rem),
    radial-gradient(circle at 88% 24%, rgb(132 170 255 / 10%), transparent 30rem),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.brand-ok {
  color: var(--mint);
}

.brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 9px;
}

.validation-pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: start;
  padding-block: 54px 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.9rem, 5.4vw, 4.9rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.lede {
  max-width: 610px;
  margin: 20px 0 22px;
  color: #c6c5bc;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.scan-safeguards {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  padding: 0;
  margin: 13px 2px 0;
  list-style: none;
}

.scan-safeguards li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 720;
}

.scan-safeguards li::before {
  position: absolute;
  top: 50%;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  transform: translateY(-50%);
}

.scan-form {
  max-width: 760px;
}

.scan-form > label,
.interest-form > label:not(.consent-row) {
  display: block;
  margin: 0 0 9px;
  font-size: 0.84rem;
  font-weight: 800;
}

.scan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 7px;
  border: 1px solid #4b5650;
  border-radius: 17px;
  background: rgb(23 26 25 / 88%);
  box-shadow: var(--shadow);
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #121514;
  padding-inline: 16px;
}

.scan-row input {
  border: 0;
  background: transparent;
}

input:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(132 170 255 / 70%);
  outline-offset: 3px;
}

button {
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 12px;
  color: #06130d;
  background: var(--mint);
  font-weight: 850;
  box-shadow: inset 0 -2px 0 rgb(0 0 0 / 15%);
}

button:hover {
  background: #b6ffda;
}

button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-note,
.form-error,
.form-status {
  margin: 11px 3px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-error {
  color: #ffaaa5;
}

.turnstile-container {
  min-height: 0;
  margin-top: 12px;
}

.turnstile-container:empty {
  display: none;
}

.protected-store {
  max-width: 670px;
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(23 26 25 / 70%);
}

.protected-store summary {
  cursor: pointer;
  padding: 13px 15px;
  color: #c6c5bc;
  font-size: 0.8rem;
  font-weight: 750;
}

.protected-store[open] summary {
  border-bottom: 1px solid var(--line);
}

.protected-store-fields {
  padding: 15px;
}

.protected-store-fields label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.protected-store-fields p {
  margin: 9px 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgb(30 34 32 / 94%), rgb(13 16 15 / 94%)),
    var(--panel);
  box-shadow: var(--shadow);
}

.preview-heading,
.preview-store,
.preview-outcome {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.preview-heading .eyebrow {
  margin-bottom: 0;
}

.preview-status {
  padding: 7px 10px;
  border: 1px solid rgb(147 246 197 / 32%);
  border-radius: 999px;
  color: var(--mint);
  background: rgb(70 200 142 / 8%);
  font-size: 0.7rem;
  font-weight: 820;
}

.preview-store {
  align-items: flex-end;
  margin-top: 25px;
}

.preview-store strong {
  font-size: 1.08rem;
}

.preview-store span {
  color: var(--muted);
  font-size: 0.72rem;
}

.path-status {
  display: grid;
  grid-template-columns: 18px 1fr 18px 1fr 18px 1fr 18px;
  gap: 7px;
  align-items: center;
  margin: 25px 0 23px;
}

.path-node {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #5e6963;
  border-radius: 50%;
  background: #222825;
}

.path-node.complete {
  border-color: var(--mint-deep);
  background: var(--mint);
  box-shadow: 0 0 0 5px rgb(147 246 197 / 7%);
}

.path-node.active {
  border: 5px solid var(--mint);
  box-shadow:
    0 0 0 5px rgb(147 246 197 / 7%),
    0 0 22px rgb(147 246 197 / 35%);
}

.path-line {
  height: 2px;
  background: #343b37;
}

.path-line.complete {
  background: linear-gradient(90deg, var(--mint), var(--mint-deep));
}

.pulse-orbit {
  position: relative;
  display: grid;
  width: 145px;
  height: 145px;
  margin: 0 auto 40px;
  place-items: center;
  border: 1px solid rgb(147 246 197 / 22%);
  border-radius: 50%;
}

.pulse-orbit::before,
.pulse-orbit::after {
  position: absolute;
  border: 1px solid rgb(147 246 197 / 16%);
  border-radius: inherit;
  content: "";
}

.pulse-orbit::before {
  inset: 18px;
}

.pulse-orbit::after {
  inset: 39px;
}

.pulse-core {
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    0 0 0 10px rgb(147 246 197 / 9%),
    0 0 45px rgb(147 246 197 / 55%);
}

.preview-checks {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.preview-checks li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgb(11 14 13 / 62%);
}

.preview-checks strong,
.preview-checks small,
.preview-outcome strong,
.preview-outcome small {
  display: block;
}

.preview-checks strong,
.preview-outcome strong {
  font-size: 0.82rem;
}

.preview-checks small,
.preview-outcome small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.preview-check-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #07120d;
  background: var(--mint);
  font-size: 0.58rem;
  font-weight: 900;
}

.preview-outcome {
  justify-content: flex-start;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgb(147 246 197 / 28%);
  border-radius: 14px;
  background: rgb(70 200 142 / 8%);
}

.preview-outcome-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #07120d;
  background: var(--mint);
  font-weight: 900;
}

.trust-strip article > span {
  color: var(--mint);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.beta-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.progress-panel,
.result-panel {
  scroll-margin-top: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgb(23 26 25 / 94%);
  box-shadow: var(--shadow);
}

.progress-heading,
.result-banner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.progress-heading h2,
.result-banner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

#elapsed-time {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.progress-track {
  height: 7px;
  margin: 28px 0 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #292f2c;
}

.progress-track span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint-deep), var(--mint));
  transition: width 500ms ease;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  color: #686e6a;
  font-size: 0.75rem;
  font-weight: 750;
  list-style-position: inside;
}

.progress-steps li.active,
.progress-steps li.done {
  color: var(--ink);
}

.progress-steps li.done::marker {
  color: var(--mint);
}

.result-panel {
  padding: 0;
  overflow: hidden;
}

.result-banner {
  padding: 38px;
  background: linear-gradient(110deg, rgb(147 246 197 / 11%), transparent);
}

.result-banner[data-outcome="blocked"] {
  background: linear-gradient(110deg, rgb(255 118 111 / 13%), transparent);
}

.result-banner[data-outcome="attention"] {
  background: linear-gradient(110deg, rgb(244 189 99 / 13%), transparent);
}

.result-banner > div > p:last-child {
  max-width: 670px;
  margin: 14px 0 0;
  color: #c6c5bc;
  line-height: 1.55;
}

.result-action-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 38px;
  border-top: 1px solid var(--line);
  background: #111413;
}

.result-action-bar p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.secondary-button {
  min-height: 44px;
  border: 1px solid #526159;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}

.secondary-button:hover {
  border-color: var(--mint);
  color: var(--mint);
  background: rgb(147 246 197 / 6%);
}

.result-meta {
  display: grid;
  gap: 7px;
  justify-items: end;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.77rem;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 28px;
  padding: 38px;
  border-top: 1px solid var(--line);
}

.result-grid h3,
.founding-card h3 {
  margin: 0 0 20px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.check-results {
  display: grid;
  gap: 10px;
}

.check-result {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #131615;
}

.check-icon {
  display: grid;
  width: 30px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #07120d;
  background: var(--mint);
  font-size: 0.66rem;
  font-weight: 900;
}

.check-result[data-status="warn"] .check-icon {
  background: var(--amber);
}

.check-result[data-status="fail"] .check-icon {
  color: white;
  background: var(--coral);
}

.check-result strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.check-result p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.evidence-card {
  align-self: start;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #101312;
}

.evidence-card figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 0.76rem;
}

.evidence-card img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  border-top: 1px solid var(--line);
}

.limitations {
  margin: 0 38px 38px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: #131615;
}

.limitations summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 780;
}

.limitations ul {
  margin-bottom: 0;
  line-height: 1.65;
}

.founding-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 40px;
  padding: 38px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgb(132 170 255 / 12%), transparent 20rem),
    #111413;
}

.founding-card > div > p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

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

.interest-form fieldset {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 4px;
  border: 0;
}

.interest-form legend {
  margin-bottom: 9px;
  font-size: 0.84rem;
  font-weight: 800;
}

.interest-form > label > span {
  color: var(--muted);
  font-weight: 600;
}

.plan-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #171a19;
}

.plan-option:has(input:checked) {
  border-color: var(--mint-deep);
  background: rgb(70 200 142 / 8%);
}

.plan-option input {
  accent-color: var(--mint-deep);
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option strong {
  margin-bottom: 3px;
  font-size: 0.86rem;
}

.plan-option small {
  color: var(--muted);
  font-size: 0.73rem;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent-row input {
  margin: 3px 0 0;
  accent-color: var(--mint-deep);
}

.muted-control {
  opacity: 0.48;
  transition: opacity 160ms ease;
}

.muted-control.enabled {
  opacity: 1;
}

.scan-authorization {
  max-width: 670px;
  margin-top: 13px;
  color: #c6c5bc;
}

.form-status {
  min-height: 20px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-block: 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.trust-strip article {
  padding: 28px;
  background: var(--panel);
}

.trust-strip h3 {
  margin: 16px 0 8px;
  font-size: 1rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  padding-block: 26px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 840px) {
  .hero,
  .result-grid,
  .founding-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-block: 38px 50px;
  }

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

  .result-meta {
    justify-items: start;
  }

  .result-banner {
    flex-direction: column;
  }

  .result-action-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress-steps {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1160px);
  }

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

  .brand > span:last-child {
    max-width: 150px;
    line-height: 1.15;
  }

  .validation-pill {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.3rem);
    line-height: 1;
  }

  .hero {
    gap: 28px;
    padding-block: 28px 42px;
  }

  .lede {
    margin-block: 16px 19px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .scan-row {
    grid-template-columns: 1fr;
  }

  .scan-row button {
    margin-top: 6px;
  }

  .scan-safeguards {
    gap: 6px 12px;
  }

  .scan-safeguards li {
    font-size: 0.69rem;
  }

  .hero-card,
  .progress-panel,
  .result-banner,
  .result-grid,
  .founding-card {
    padding: 24px;
  }

  .hero-card {
    padding: 20px;
    border-radius: 22px;
  }

  .preview-heading,
  .preview-store {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-heading,
  .preview-store {
    gap: 8px;
  }

  .preview-store {
    margin-top: 20px;
  }

  .result-action-bar {
    padding: 18px 24px;
  }

  .result-action-bar .secondary-button {
    width: 100%;
  }

  .limitations {
    margin: 0 24px 24px;
  }

  footer {
    gap: 10px;
    flex-direction: column;
  }
}

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

  * {
    transition-duration: 0.01ms !important;
  }
}
