:root {
  color-scheme: dark;
  --bg: #05070d;
  --panel: rgba(11, 17, 30, 0.82);
  --panel-2: rgba(16, 27, 43, 0.9);
  --text: #f6f8ff;
  --muted: #a9b4c7;
  --soft: #dbe4f5;
  --line: rgba(161, 220, 255, 0.18);
  --line-strong: rgba(161, 220, 255, 0.34);
  --cyan: #55ddff;
  --lime: #b5ff5c;
  --yellow: #ffd166;
  --orange: #ff9f43;
  --red: #ff5277;
  --violet: #9c7cff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 55px rgba(1, 8, 20, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 5%, rgba(85, 221, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(181, 255, 92, 0.12), transparent 30rem),
    radial-gradient(circle at 50% 85%, rgba(156, 124, 255, 0.16), transparent 34rem),
    linear-gradient(135deg, #04060c 0%, #07101d 48%, #060712 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

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

body::after {
  content: "";
  position: fixed;
  inset: auto -20% -45% -20%;
  z-index: -1;
  height: 56vh;
  background: radial-gradient(circle at 50% 0%, rgba(85, 221, 255, 0.12), transparent 62%);
  filter: blur(24px);
  pointer-events: none;
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 28px clamp(20px, 4vw, 76px) 76px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% -20% auto 48%;
  width: 740px;
  height: 740px;
  border: 1px solid rgba(85, 221, 255, 0.14);
  border-radius: 46% 54% 58% 42%;
  background: linear-gradient(135deg, rgba(85, 221, 255, 0.08), rgba(181, 255, 92, 0.05));
  filter: blur(1px);
  animation: slow-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.055) 44%, transparent 54% 100%);
  opacity: 0.38;
  transform: translateX(-60%);
  animation: hero-sheen 9s ease-in-out infinite;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 76px;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.brand,
.nav-links,
.hero-actions,
.trust-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 16, 29, 0.88);
  color: var(--lime);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-links {
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8.2vw, 7.1rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.credibility-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.credibility-row span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 19px;
  color: inherit;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.choice:focus-visible,
.token:focus-within,
.scenario-actions button:focus-visible,
.evidence button:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(85, 221, 255, 0.34);
  outline-offset: 3px;
}

.button.primary {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: #07101d;
  box-shadow: 0 14px 44px rgba(85, 221, 255, 0.18);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.button.hidden,
.hidden {
  display: none !important;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  font-weight: 800;
}

.threat-console {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(7, 16, 29, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.threat-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(85, 221, 255, 0.08), transparent);
  opacity: 0.5;
  transform: translateY(-110%);
  animation: console-scan 5.5s ease-in-out infinite;
  pointer-events: none;
}

.threat-console::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
}

.console-top strong {
  margin-left: 8px;
  font-size: 0.9rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: 0 0 18px currentColor;
}

.red {
  background: var(--red);
}

.yellow {
  background: var(--yellow);
}

.green {
  background: var(--lime);
}

.trace-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trace-line:hover {
  transform: translateX(3px);
  border-color: var(--line-strong);
}

.trace-line.active {
  border-color: rgba(255, 82, 119, 0.45);
  background: rgba(255, 82, 119, 0.09);
}

.trace-line span {
  color: var(--cyan);
  font-weight: 900;
}

.trace-line p {
  margin-bottom: 0;
  color: var(--soft);
}

.console-result {
  margin-top: 24px;
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(181, 255, 92, 0.14), rgba(85, 221, 255, 0.1));
}

.console-result small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.console-result strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px clamp(20px, 4vw, 76px);
}

.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  color: var(--soft);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: -36px auto 92px;
  padding: 0 clamp(20px, 4vw, 76px);
}

.proof-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(7, 16, 29, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.proof-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border: 1px solid rgba(181, 255, 92, 0.36);
  border-radius: 14px;
  background: rgba(181, 255, 92, 0.1);
  color: var(--lime);
  font-weight: 950;
}

.proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.lab-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px) 96px;
}

.lab-header,
.lab-form,
.scoreboard,
.report,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.lab-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 32px;
  margin-bottom: 24px;
}

.lab-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.progress-card {
  min-width: 220px;
  color: var(--muted);
  font-weight: 900;
}

.progress-track {
  height: 13px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  transition: width 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 26px rgba(85, 221, 255, 0.42);
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 24px;
}

.lab-form,
.scoreboard {
  padding: 28px;
}

.step {
  display: none;
}

.step.is-active {
  display: block;
}

.step-note {
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  margin: 22px 0;
}

.field {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(85, 221, 255, 0.72);
  background: rgba(0, 0, 0, 0.32);
  box-shadow: 0 0 0 4px rgba(85, 221, 255, 0.1);
  outline: none;
}

textarea {
  min-height: 124px;
  padding: 14px;
  resize: vertical;
}

select option {
  background: #0d1321;
}

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

.choice,
.token,
.scenario,
.evidence {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.choice {
  min-height: 112px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.choice:hover,
.token:hover,
.scenario:hover,
.evidence:hover,
.offer-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.choice strong,
.choice span {
  display: block;
}

.choice span {
  margin-top: 6px;
  color: var(--muted);
}

.choice.is-selected,
.token.is-selected {
  border-color: rgba(181, 255, 92, 0.56);
  background:
    linear-gradient(145deg, rgba(181, 255, 92, 0.16), rgba(85, 221, 255, 0.045)),
    rgba(181, 255, 92, 0.08);
}

.token {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.token input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  accent-color: var(--lime);
}

.token span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.scenario-list,
.evidence-list {
  display: grid;
  gap: 14px;
}

.scenario,
.evidence {
  padding: 18px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.scenario p,
.evidence p {
  margin-bottom: 12px;
  color: var(--muted);
}

.scenario-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scenario-actions button,
.evidence button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.scenario-actions button.is-selected,
.evidence button.is-selected {
  border-color: rgba(85, 221, 255, 0.7);
  background: rgba(85, 221, 255, 0.14);
  box-shadow: 0 10px 28px rgba(85, 221, 255, 0.08);
}

.lab-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.scoreboard {
  align-self: start;
  position: sticky;
  top: 20px;
}

.score-number {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0;
}

.score-number span {
  font-size: 5.4rem;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--text), var(--cyan) 46%, var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.score-number small {
  color: var(--muted);
  font-weight: 900;
}

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

.mini-bars {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-bars div {
  display: grid;
  gap: 6px;
}

.mini-bars span {
  color: #dbe4f5;
  font-size: 0.9rem;
  font-weight: 900;
}

meter {
  width: 100%;
  height: 12px;
}

.score-note {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.score-note strong {
  display: block;
  margin-bottom: 4px;
}

.score-note p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.report {
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: clamp(24px, 4vw, 38px);
  animation: report-rise 420ms ease both;
}

.report-hero p {
  max-width: 820px;
  color: var(--soft);
}

.report-grid,
.plan-grid,
.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.report-card,
.plan-panel,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: var(--panel-2);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.report-card.danger {
  border-color: rgba(255, 82, 119, 0.44);
  background: linear-gradient(145deg, rgba(255, 82, 119, 0.15), rgba(19, 31, 48, 0.92));
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-grid {
  margin-top: 20px;
}

.plan-panel {
  min-height: 260px;
}

.plan-panel ol {
  margin: 0;
  padding-left: 22px;
}

.plan-panel li {
  margin-bottom: 12px;
  color: var(--soft);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
}

.timeline strong {
  display: block;
}

.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.copy-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--soft);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--cyan);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.offers {
  align-items: stretch;
}

.offer-card p {
  color: var(--muted);
}

.offer-card.featured {
  border-color: rgba(181, 255, 92, 0.54);
  background: linear-gradient(145deg, rgba(181, 255, 92, 0.12), rgba(19, 31, 48, 0.92));
}

.lead-capture {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  max-width: 1200px;
  margin: -42px auto 96px;
  padding: 0 clamp(20px, 4vw, 76px);
}

.lead-capture > div,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(11, 17, 30, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.lead-capture > div {
  padding: 30px;
}

.lead-capture > div p:last-child {
  margin-bottom: 0;
  color: var(--soft);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.hidden-field {
  display: none;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px clamp(20px, 4vw, 76px) 66px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(20px, 5vw, 76px);
}

.thanks-card {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 6vw, 60px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(7, 16, 29, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.reveal-card {
  animation: card-enter 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

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

@keyframes slow-drift {
  0% {
    transform: rotate(-12deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotate(-6deg) translate3d(24px, -18px, 0);
  }
}

@keyframes hero-sheen {
  0%,
  58% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(85%);
  }
}

@keyframes console-scan {
  0%,
  45% {
    transform: translateY(-110%);
  }
  75%,
  100% {
    transform: translateY(110%);
  }
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes report-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .why,
  .proof-band,
  .lab-layout,
  .field-grid,
  .report-grid,
  .plan-grid,
  .offers,
  .lead-capture {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .lab-header {
    align-items: stretch;
    flex-direction: column;
  }

  .scoreboard {
    position: static;
  }

  .proof-band {
    margin-top: -24px;
  }

  .lead-capture {
    margin-top: -28px;
  }
}

@media (max-width: 640px) {
  .choice-grid,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .lab-form,
  .scoreboard,
  .lab-header,
  .report,
  .offer-card,
  .lead-capture > div,
  .lead-form {
    border-radius: 22px;
    padding: 20px;
  }

  .score-number span {
    font-size: 4.4rem;
  }
}

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