:root {
  --ink: #111827;
  --muted: #64748b;
  --soft: #f8fafc;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(15, 23, 42, 0.1);
  --yellow: #fcc92f;
  --yellow-soft: #fff4bd;
  --purple: #7047eb;
  --purple-soft: #eee7ff;
  --orange: #ff7a3d;
  --green: #63c37b;
  --danger: #f04438;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 6%, rgba(252, 201, 47, 0.38), transparent 24rem),
    radial-gradient(circle at 18% 28%, rgba(112, 71, 235, 0.13), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fbfbff 48%, #fffdf4 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.mobile-nav-open {
  overflow: hidden;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  z-index: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--yellow), #ffe891);
  box-shadow: 0 8px 20px rgba(252, 201, 47, 0.28);
}

.brand-mark svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--purple);
  color: #fff;
  padding: 14px 20px;
  box-shadow: 0 16px 28px rgba(112, 71, 235, 0.24);
}

.btn-primary:hover {
  background: #5f35df;
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  padding: 14px 20px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.btn-ghost {
  background: transparent;
  color: #334155;
  padding: 12px 10px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 74px 0 56px;
  min-height: 760px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4f35b8;
  background: rgba(112, 71, 235, 0.08);
  border: 1px solid rgba(112, 71, 235, 0.14);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(252, 201, 47, 0.2);
}

h1 {
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 930;
  max-width: 670px;
}

.scribble {
  position: relative;
  display: inline-block;
  color: var(--purple);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-weight: 700;
  letter-spacing: -0.06em;
  transform: rotate(-2deg);
  text-shadow: 0 10px 26px rgba(112, 71, 235, 0.18);
}

.scribble::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 0;
  bottom: 2px;
  height: 9px;
  background: var(--yellow);
  border-radius: 99px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-copy {
  margin-top: 24px;
  max-width: 565px;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy strong {
  color: #0f172a;
  font-weight: 850;
}

.hero-scan-form {
  margin-top: 34px;
  max-width: 640px;
}

.hero-scan-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.08);
}

.hero-scan-prefix {
  padding-left: 14px;
  color: #64748b;
  font-size: 15px;
  font-weight: 800;
}

.hero-domain-input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #0f172a;
  padding: 16px 14px 16px 8px;
  font-size: 17px;
  font-weight: 760;
  outline: none;
}

.hero-domain-input::placeholder {
  color: #94a3b8;
}

.hero-scan-shell:focus-within {
  border-color: rgba(112, 71, 235, 0.32);
  box-shadow:
    0 22px 46px rgba(17, 24, 39, 0.08),
    0 0 0 4px rgba(112, 71, 235, 0.09);
}

.hero-scan-submit {
  min-width: 214px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.hero-report-cta {
  padding-inline: 18px;
}

.hero-form-note {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(99, 195, 123, 0.15);
  color: #29934b;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.proof-row .check {
  background: transparent;
  color: #1f2937;
  border: 1px solid rgba(31, 41, 55, 0.35);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.9;
}

.orb-1 {
  width: 420px;
  height: 420px;
  right: -90px;
  top: -40px;
  background: radial-gradient(circle, rgba(252, 201, 47, 0.48), transparent 66%);
}

.orb-2 {
  width: 360px;
  height: 360px;
  left: 10px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(112, 71, 235, 0.18), transparent 66%);
}

.dashboard {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.16);
  padding: 22px;
  transform: rotate(0.5deg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.window-dots span:nth-child(1) {
  background: #ff7a7a;
}

.window-dots span:nth-child(2) {
  background: #ffd166;
}

.window-dots span:nth-child(3) {
  background: #63c37b;
}

.dashboard-pill {
  color: #64748b;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
}

.dashboard-grid.is-staggered .dash-card {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard-grid.is-staggered .dash-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dash-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.score-card {
  display: grid;
  justify-items: stretch;
  grid-template-rows: auto 1fr;
  min-height: 196px;
}

.score-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 12px;
}

.score-ring {
  width: 148px;
  height: 148px;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.score-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring-track,
.score-ring-progress {
  fill: none;
  stroke-width: 16;
}

.score-ring-track {
  stroke: #eee7ff;
}

.score-ring-progress {
  stroke: url(#scoreRingGradient);
  stroke-linecap: round;
  stroke-dasharray: 72 100;
}

.score-ring strong {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  font-size: 38px;
  letter-spacing: -0.08em;
  z-index: 1;
}

.score-scale {
  color: #64748b;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.score-note {
  margin-top: 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.dash-title {
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

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

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #fbfbff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.metric strong {
  font-size: 24px;
  letter-spacing: -0.06em;
  color: #0f172a;
}

.metric span {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.map-card {
  grid-column: 1 / 2;
  min-height: 234px;
}

.risk-card {
  grid-column: 2 / 3;
  min-height: 234px;
}

.mini-map {
  margin-top: 12px;
  position: relative;
  min-height: 150px;
}

.node {
  position: absolute;
  border: 1px solid rgba(112, 71, 235, 0.28);
  background: #fbfaff;
  color: #4f35b8;
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(112, 71, 235, 0.08);
}

.node-main {
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.node-a {
  top: 72px;
  left: 5%;
}

.node-b {
  top: 72px;
  left: 40%;
}

.node-c {
  top: 72px;
  right: 5%;
}

.node-d {
  top: 108px;
  left: 7%;
  color: #0f172a;
  background: #fff;
  border-color: var(--line);
}

.map-lines {
  position: absolute;
  inset: 34px 30px 35px;
  border-top: 2px solid rgba(112, 71, 235, 0.18);
  border-left: 2px solid rgba(112, 71, 235, 0.18);
  border-right: 2px solid rgba(112, 71, 235, 0.18);
  border-radius: 12px 12px 0 0;
}

.risk-list {
  display: grid;
  gap: 12px;
}

.risk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  font-size: 13px;
  font-weight: 760;
  color: #334155;
}

.risk:last-child {
  border-bottom: 0;
}

.badge {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
}

.badge-danger {
  color: #b42318;
  background: rgba(240, 68, 56, 0.1);
}

.badge-warning {
  color: #b45309;
  background: rgba(252, 201, 47, 0.26);
}

.badge-success {
  color: #1f7a3e;
  background: rgba(99, 195, 123, 0.2);
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 26px;
  background: #111827;
  color: #fff;
  border-radius: 22px;
  padding: 15px 18px;
  max-width: 245px;
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.22);
  animation: float 4.2s ease-in-out infinite;
}

.floating-note strong {
  color: var(--yellow);
  display: block;
  margin-bottom: 4px;
}

.floating-note span {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.45;
}

.logos {
  padding: 8px 0 64px;
}

.logo-strip {
  display: grid;
  grid-template-columns: 1.3fr repeat(6, 1fr);
  gap: 28px;
  align-items: center;
  color: #94a3b8;
  font-weight: 900;
  letter-spacing: -0.04em;
  opacity: 0.85;
}

.logo-strip span:first-child {
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-subcopy {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.section-kicker {
  color: var(--purple);
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.07em;
  font-weight: 930;
}

.handline {
  display: block;
  color: var(--purple);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  transform: rotate(-1.5deg);
  letter-spacing: -0.04em;
  margin-top: 4px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.builder-marquee {
  position: relative;
  margin: 30px 0 30px;
  padding: 16px 0;
  overflow: hidden;
}

.builder-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.builder-marquee-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

.builder-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #334155;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.builder-chip-logo {
  min-height: 58px;
}

.builder-logo-mark {
  display: block;
  flex-shrink: 0;
}

.builder-logo-mark {
  width: 20px;
  height: 20px;
}

.builder-logo-brand {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.builder-label,
.builder-textmark {
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.builder-textmark {
  font-size: 17px;
  font-weight: 930;
}

.builder-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 1;
  pointer-events: none;
}

.builder-marquee-fade-left {
  left: 0;
  background: linear-gradient(90deg, #fcfcff, rgba(252, 252, 255, 0));
}

.builder-marquee-fade-right {
  right: 0;
  background: linear-gradient(270deg, #fffdf6, rgba(255, 253, 246, 0));
}

.info-card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.07);
  min-height: 218px;
  overflow: hidden;
}

.info-card::after {
  content: attr(data-num);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(15, 23, 42, 0.1);
  font-weight: 930;
  font-size: 34px;
  letter-spacing: -0.08em;
}

.info-card[data-num="03"] {
  background:
    radial-gradient(circle at top left, rgba(252, 201, 47, 0.28), transparent 48%),
    linear-gradient(135deg, rgba(255, 250, 214, 0.96), rgba(255, 255, 255, 0.92));
  border-color: rgba(199, 146, 0, 0.24);
  box-shadow: 0 22px 56px rgba(199, 146, 0, 0.16);
}

.info-card[data-num="03"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 46%);
  pointer-events: none;
}

.info-card[data-num="03"]::after {
  color: rgba(199, 146, 0, 0.18);
}

.icon-bubble {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 22px;
  font-size: 24px;
  font-weight: 900;
}

.icon-bubble-svg svg {
  width: 30px;
  height: 30px;
}

.bubble-purple {
  background: var(--purple-soft);
  color: var(--purple);
}

.bubble-orange {
  background: rgba(255, 122, 61, 0.13);
  color: var(--orange);
}

.bubble-yellow {
  background: var(--yellow-soft);
  color: #c79200;
}

.info-card h3 {
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.flow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(112, 71, 235, 0.16);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(112, 71, 235, 0.08);
}

.flow.is-staggered .flow-step {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flow.is-staggered .flow-step.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flow-step {
  padding: 24px;
  position: relative;
  min-height: 114px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flow-step:not(:last-child)::before {
  content: none;
}

.flow-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -22px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--purple);
  font-weight: 900;
  font-size: 58px;
  line-height: 0.8;
  text-shadow: 0 10px 24px rgba(112, 71, 235, 0.14);
}

.flow-step:last-child {
  background: linear-gradient(135deg, rgba(252, 201, 47, 0.42), rgba(252, 201, 47, 0.06));
}

.flow-step small {
  color: #94a3b8;
  font-weight: 900;
}

.flow-step strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.flow-step span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.approach-panel {
  position: relative;
  min-height: 420px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 16%, rgba(112, 71, 235, 0.14), transparent 13rem),
    radial-gradient(circle at 84% 84%, rgba(252, 201, 47, 0.28), transparent 15rem),
    rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.approach-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.approach-panel-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.approach-panel-head span {
  color: #4f35b8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.approach-panel-head strong {
  max-width: 340px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.approach-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.approach-rail::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(112, 71, 235, 0.28), rgba(252, 201, 47, 0.28));
}

.approach-step {
  position: relative;
  display: grid;
  gap: 10px;
  margin-left: 38px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px);
}

.approach-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.approach-step small {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.approach-step-dot {
  position: absolute;
  left: -26px;
  top: 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.approach-step h3 {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.approach-step p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.approach-step-purple h3 {
  color: var(--purple);
}

.approach-step-purple .approach-step-dot {
  background: var(--purple);
}

.approach-step-orange h3 {
  color: var(--orange);
}

.approach-step-orange .approach-step-dot {
  background: var(--orange);
}

.approach-step-gold h3 {
  color: #a77900;
}

.approach-step-gold .approach-step-dot {
  background: var(--yellow);
}

.approach-copy {
  max-width: 560px;
}

.approach-lead {
  margin-top: 22px;
  color: #334155;
  font-size: 18px;
  line-height: 1.7;
}

.approach-points {
  display: grid;
  gap: 14px;
}

.approach-point {
  display: grid;
  gap: 5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.approach-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.approach-point strong {
  color: #0f172a;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.approach-point span {
  color: var(--muted);
  line-height: 1.65;
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-list-space {
  margin-top: 34px;
}

.value-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.value-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.value-row h3 {
  color: var(--purple);
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}

.value-row p {
  color: var(--muted);
  line-height: 1.65;
}

.accent-purple {
  color: var(--purple);
}

.accent-orange {
  color: var(--orange) !important;
}

.accent-gold {
  color: #a77900 !important;
}

.scan-section {
  padding-top: 18px;
}

.scan-journey-shell {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 0 0;
}

.scan-journey-head {
  text-align: center;
}

.scan-intro {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.68;
  font-size: 16px;
}

.scan-journey-meta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.journey-rail {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 540px;
  margin: 30px auto 0;
  padding: 10px 0 10px 0;
}

.journey-line {
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, rgba(112, 71, 235, 0.08), rgba(252, 201, 47, 0.12));
  border-radius: 999px;
  overflow: hidden;
}

.journey-line span {
  display: block;
  width: 100%;
  height: var(--journey-progress, 0%);
  background: linear-gradient(180deg, var(--yellow), var(--purple));
  border-radius: inherit;
  transition: height 520ms cubic-bezier(.2,.8,.2,1);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0;
  opacity: 0.32;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.journey-step.is-active,
.journey-step.is-complete {
  opacity: 1;
  transform: translateY(0);
}

.journey-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--purple);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(112, 71, 235, 0.12);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  z-index: 1;
}

.journey-step.is-active .journey-node {
  background: linear-gradient(135deg, var(--purple), #8e6dff);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(112, 71, 235, 0.26);
}

.journey-step.is-complete:not(.is-active) .journey-node {
  background: linear-gradient(135deg, var(--yellow), #ffe891);
  color: #5c4300;
  border-color: transparent;
}

.journey-copy {
  padding: 8px 0 0;
}

.journey-copy strong {
  display: block;
  letter-spacing: -0.05em;
  font-size: 24px;
  line-height: 1.02;
}

.journey-copy span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
}

.scan-journey-foot {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.scan-caption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.domain-preview {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  font-size: 13px;
  font-weight: 850;
  width: fit-content;
}

.scan-status-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(112, 71, 235, 0.06);
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.scan-title {
  font-size: 36px;
}

.scan-restart {
  padding: 11px 16px;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.use-case {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 222px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.use-case .emoji {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff7cc;
  margin-bottom: 20px;
  font-size: 24px;
}

.use-case h3 {
  letter-spacing: -0.05em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.use-case p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.discoveries-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.discovery-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(112, 71, 235, 0.09), transparent 10rem),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.discovery-card strong {
  color: #0f172a;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.discovery-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.security-panel {
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(112, 71, 235, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 255, 0.88));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.08);
}

.security-panel-strong {
  position: relative;
  overflow: hidden;
}

.security-panel-strong::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--yellow), var(--purple));
}

.security-lead {
  max-width: 880px;
  color: #334155;
  font-size: 19px;
  line-height: 1.8;
  letter-spacing: -0.02em;
}

.security-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.security-card,
.proof-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.security-card strong,
.proof-card strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.security-card span,
.proof-card span {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.proof-card .btn {
  width: fit-content;
  margin-top: 4px;
}

.ai-band {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 50%, rgba(252, 201, 47, 0.3), transparent 17rem),
    linear-gradient(135deg, #17112c, #2c1761 58%, #4a2ad4);
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  box-shadow: 0 30px 80px rgba(49, 32, 130, 0.25);
  overflow: hidden;
  position: relative;
}

.ai-band::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(252, 201, 47, 0.18);
}

.ai-band h2 {
  color: #fff;
}

.ai-band h2 span {
  color: var(--yellow);
}

.ai-band p {
  color: #e5ddff;
  line-height: 1.75;
  font-size: 17px;
  margin-top: 18px;
}

.story-section {
  padding-top: 24px;
}

.story-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.story-intro {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(252, 201, 47, 0.24), transparent 15rem),
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(31, 41, 55, 0.96));
  color: #fff;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.22);
}

.story-intro .section-kicker {
  color: #f9dd73;
}

.story-intro h2 {
  max-width: 12ch;
}

.story-intro p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 44ch;
}

.story-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.story-stat {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-stat strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.07em;
}

.story-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.story-carousel {
  padding: 18px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(112, 71, 235, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.story-dot {
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.24);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.story-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--purple), var(--yellow));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.story-dot.is-active::after {
  transform: scaleX(1);
}

.story-viewport {
  overflow: hidden;
}

.story-track {
  display: flex;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.story-slide {
  min-width: 100%;
  display: block;
  padding: 10px;
}

.story-slide-main {
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(112, 71, 235, 0.12), transparent 14rem),
    linear-gradient(180deg, #ffffff, #fbfbff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 360px;
}

.story-tag {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(112, 71, 235, 0.08);
  color: #4f35b8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-slide h3 {
  margin-top: 16px;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.07em;
}

.story-slide p {
  margin-top: 16px;
  color: #475569;
  line-height: 1.75;
}

.story-points {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.story-points div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.story-points strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-points span {
  color: #475569;
  line-height: 1.45;
  font-weight: 650;
}

.story-detect {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(252, 201, 47, 0.22), rgba(112, 71, 235, 0.06));
  border: 1px solid rgba(252, 201, 47, 0.3);
}

.story-detect strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.story-detect-list {
  margin-top: 10px;
  padding-left: 18px;
  color: #334155;
  display: grid;
  gap: 6px;
  line-height: 1.45;
}

.story-impact {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(112, 71, 235, 0.12), rgba(112, 71, 235, 0.04));
  border: 1px solid rgba(112, 71, 235, 0.14);
}

.story-impact-danger {
  background: linear-gradient(135deg, rgba(240, 68, 56, 0.16), rgba(255, 122, 61, 0.07));
  border-color: rgba(240, 68, 56, 0.16);
}

.story-impact-warning {
  background: linear-gradient(135deg, rgba(252, 201, 47, 0.24), rgba(112, 71, 235, 0.06));
  border-color: rgba(252, 201, 47, 0.26);
}

.story-impact-label {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.story-impact strong {
  display: block;
  margin-top: 10px;
  font-size: 29px;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.story-timeline {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  list-style: none;
  counter-reset: incident;
  padding: 22px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.story-timeline li {
  counter-increment: incident;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  color: #334155;
  line-height: 1.55;
}

.story-timeline li::before {
  content: counter(incident);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(112, 71, 235, 0.14);
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(112, 71, 235, 0.08);
}

.section-kicker-yellow {
  color: var(--yellow);
}

.quote-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.quote-box strong {
  display: block;
  color: var(--yellow);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.quote-box span {
  color: #f7f2ff;
  font-size: 17px;
  line-height: 1.7;
}

.report-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 20px;
}

.report-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.report-card h3 {
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.report-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.mini-score {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--yellow) 0 259deg, #fff3bd 259deg 360deg);
  margin-bottom: 16px;
  position: relative;
}

.mini-score::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
}

.mini-score strong {
  position: relative;
  font-size: 28px;
  letter-spacing: -0.08em;
}

.action-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #fbfbff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
  font-weight: 780;
  font-size: 13px;
}

.report-urls {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
}

.report-urls strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.report-url-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.report-url-list span {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fbfbff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 13px;
  font-weight: 760;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  font-size: 13px;
  font-weight: 850;
  color: #334155;
  display: flex;
  gap: 10px;
  align-items: center;
}

.final-cta {
  padding: 58px 0 72px;
}

.cta-panel {
  border-radius: 38px;
  padding: 56px;
  background:
    radial-gradient(circle at 80% 40%, rgba(252, 201, 47, 0.38), transparent 18rem),
    radial-gradient(circle at 10% 85%, rgba(112, 71, 235, 0.16), transparent 15rem),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-panel h2 {
  max-width: 700px;
}

.cta-panel h2 span {
  color: var(--purple);
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
  margin-top: 18px;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.final-scan-form {
  margin-top: 28px;
  max-width: 640px;
}

.final-scan-shell {
  background: rgba(255, 255, 255, 0.92);
}

.final-form-note {
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.final-form-legal {
  margin-top: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.mini-dashboard {
  position: relative;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.sparkline {
  height: 86px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 0 24%, rgba(112, 71, 235, 0.08) 24% 25%, transparent 25% 49%, rgba(112, 71, 235, 0.08) 49% 50%, transparent 50% 74%, rgba(112, 71, 235, 0.08) 74% 75%, transparent 75%),
    #fbfbff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.sparkline svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.05);
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 32px 0;
  color: #64748b;
  font-size: 13px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #475569;
}

.legal-page {
  padding: 56px 0 72px;
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--purple);
  font-weight: 800;
}

.legal-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.08);
}

.legal-card h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.07em;
  max-width: none;
}

.legal-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content {
  margin-top: 30px;
  color: #334155;
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.legal-content p,
.legal-content li {
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p,
.legal-content table + p {
  margin-top: 14px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  margin: 12px 0;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content a {
  color: var(--purple);
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: #fff;
}

.legal-content th,
.legal-content td {
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  cursor: pointer;
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  display: block;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-icon {
  position: relative;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu-icon::before {
  transform: translateY(-6px);
}

.mobile-menu-icon::after {
  transform: translateY(6px);
}

.mobile-menu[aria-expanded="true"] .mobile-menu-icon {
  background: transparent;
}

.mobile-menu[aria-expanded="true"] .mobile-menu-icon::before {
  transform: rotate(45deg);
}

.mobile-menu[aria-expanded="true"] .mobile-menu-icon::after {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.38);
  opacity: 0;
  transition: opacity 180ms ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  min-height: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -24px 0 70px rgba(17, 24, 39, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-head {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 850;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.mobile-nav-close::before,
.mobile-nav-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-nav-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-panel > a {
  padding: 15px 4px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #1f2937;
  font-size: 17px;
  font-weight: 780;
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mobile-nav-actions .btn {
  width: 100%;
}

.mobile-nav-actions .btn-ghost {
  min-height: 48px;
  border: 1px solid var(--line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(24px);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.25);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .ai-band,
  .story-shell,
  .story-slide,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

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

  .dashboard {
    transform: none;
  }

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

  .cards-3,
  .discoveries-grid,
  .security-grid,
  .proof-grid,
  .scan-box,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .story-slide-main {
    min-height: auto;
  }

  .story-intro h2 {
    max-width: none;
  }

  .approach-copy {
    max-width: none;
  }

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

  .legal-card {
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 36px;
  }

  h1 {
    font-size: 48px;
  }

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

  .builder-marquee {
    margin-bottom: 24px;
    padding: 14px 0;
  }

  .hero-scan-shell {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .hero-scan-prefix {
    padding-left: 0;
  }

  .hero-domain-input {
    padding: 0;
    min-height: 28px;
  }

  .hero-scan-submit,
  .hero-report-cta {
    width: 100%;
  }

  .hero-cta-row {
    display: grid;
  }

  .builder-marquee-fade {
    width: 42px;
  }

  .builder-chip {
    padding: 10px 14px;
    font-size: 13px;
  }

  .builder-logo-mark {
    width: 18px;
    height: 18px;
  }

  .builder-logo-brand {
    width: 18px;
    height: 18px;
  }

  .builder-label,
  .builder-textmark {
    font-size: 13px;
  }

  .map-card,
  .risk-card {
    grid-column: auto;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

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

  .flow-step:not(:last-child)::before {
    content: none;
  }

  .scan-journey-head {
    text-align: left;
  }

  .scan-journey-meta,
  .scan-journey-foot {
    justify-content: flex-start;
  }

  .journey-step {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .journey-node {
    width: 46px;
    height: 46px;
  }

  .journey-copy strong {
    font-size: 20px;
  }

  .journey-copy span {
    font-size: 14px;
  }

  .journey-line {
    left: 21px;
  }

  .security-panel,
  .cta-panel {
    padding: 24px;
  }

  .legal-page {
    padding: 36px 0 52px;
  }

  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .approach-panel {
    min-height: auto;
    padding: 24px;
  }

  .approach-panel-head strong {
    font-size: 25px;
  }

  .approach-step {
    margin-left: 28px;
    padding: 18px;
  }

  .approach-step-dot {
    left: -22px;
  }

  .approach-lead {
    font-size: 17px;
  }

  .scan-title {
    font-size: 32px;
  }

  .flow-step:not(:last-child)::after {
    right: auto;
    left: 18px;
    top: auto;
    bottom: -22px;
    transform: none;
    content: "⌄";
    font-size: 42px;
    line-height: 1;
  }

  .use-cases,
  .trust-row,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .story-carousel {
    padding: 14px;
  }

  .story-slide {
    padding: 8px;
  }

  .story-slide-main,
  .story-intro {
    padding: 24px;
    border-radius: 24px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .story-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .story-impact strong {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .builder-marquee-track {
    animation: none;
  }
}
