:root,
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-elev: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --fill: rgba(255, 255, 255, 0.62);
  --glass: rgba(255, 255, 255, 0.48);
  --solid: #1d1d1f;
  --on-solid: #f5f5f7;
  --blue: #0071e3;
  --high: #ff3b30;
  --mid: #ff9f0a;
  --low: #0071e3;
  --pass: #34c759;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  --glass: rgba(255, 255, 255, 0.58);
  --inset: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Inter, "Segoe UI",
    sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #000000;
  --bg-elev: #1d1d1f;
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --line: rgba(255, 255, 255, 0.14);
  --fill: rgba(255, 255, 255, 0.08);
  --glass: rgba(22, 22, 24, 0.55);
  --solid: #f5f5f7;
  --on-solid: #1d1d1f;
  --blue: #0a84ff;
  --high: #ff453a;
  --mid: #ffd60a;
  --low: #0a84ff;
  --pass: #30d158;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --inset: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--blue);
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.product {
  overflow-x: clip;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 52px;
  padding: 8px max(22px, env(safe-area-inset-right)) 8px max(22px, env(safe-area-inset-left));
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 22.37%;
}

.nav-links {
  display: none;
  gap: 22px;
  margin-left: auto;
  font-size: 0.78rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-links + .nav-end {
  margin-left: 0;
}

.theme-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 980px;
  border: 1px solid var(--line);
  background: var(--fill);
  color: var(--text);
  cursor: pointer;
}

.theme-btn svg {
  display: none;
  grid-area: 1 / 1;
}

html[data-theme="light"] .theme-btn .icon-moon,
html[data-theme="dark"] .theme-btn .icon-sun {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 980px;
  padding: 12px 22px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 44px;
}

.btn-solid {
  background: var(--solid);
  color: var(--on-solid);
}

.btn-ghost,
.btn-glass {
  background: var(--fill);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--inset);
}

.btn-on-dark {
  background: #f5f5f7;
  color: #1d1d1f;
}

.btn-solid:hover {
  filter: brightness(1.12);
}

.btn-glass:hover,
.btn-ghost:hover {
  background: color-mix(in srgb, var(--fill) 70%, var(--text) 8%);
}

.hero,
.band {
  width: min(100% - 44px, 1120px);
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 28px;
  padding: 56px 0 24px;
  align-items: center;
  position: relative;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.lead {
  margin: 16px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.ticks li::before {
  content: "✓ ";
  color: var(--pass);
}

.hero-art {
  position: relative;
  min-height: 380px;
  background: var(--bg);
  overflow: hidden;
  border-radius: 0;
}

.glass-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
  pointer-events: none;
}

.orb-img {
  width: min(100%, 520px);
  height: auto;
  display: none;
  margin-left: auto;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  animation: float 8s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

html[data-theme="dark"] .orb-img {
  mix-blend-mode: screen;
}

html[data-theme="light"] .no-gl .orb-light,
html[data-theme="dark"] .no-gl .orb-dark,
html[data-theme="light"] .hero-art:not(.has-gl):not(.no-gl) .orb-light,
html[data-theme="dark"] .hero-art:not(.has-gl):not(.no-gl) .orb-dark {
  display: block;
}

.hero-art.has-gl .orb-img {
  display: none;
}

.orb-words {
  position: absolute;
  right: 12%;
  top: 22%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 2.1;
  pointer-events: none;
}

@keyframes float {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-12px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb-img {
    animation: none;
  }
}

.band {
  padding: 88px 0;
}

.muted {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 46ch;
}

.split {
  display: grid;
  gap: 28px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow), var(--inset);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

.demo-form {
  margin-top: 22px;
}

.url-pill {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 6px 6px 16px;
  border-radius: 980px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  box-shadow: var(--shadow);
}

.url-pill input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 10px 0;
}

.url-pill input:focus {
  outline: none;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.micro {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.micro.center {
  text-align: center;
  margin-top: 18px;
}

.demo-msg {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.run-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pass);
}

.run-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.run-steps li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.run-steps li.on {
  color: var(--text);
}

.run-steps li.done::before {
  content: "✓ ";
  color: var(--pass);
}

.queue-line {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.feat-grid {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feat svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bar {
  height: 6px;
  margin-top: 16px;
  border-radius: 980px;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--pass);
  transition: width 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.demo-out {
  margin-top: 16px;
}

.demo-out img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.demo-findings {
  margin: 12px 0 0;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 12px 0 0;
  font-size: 0.86rem;
}

.report-title {
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0 0 8px;
  padding: 0 0 12px;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.stats li {
  display: block;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.stats strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.report-meta {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.report-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.sev {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 980px;
}

.sev.high {
  color: var(--high);
  background: color-mix(in srgb, var(--high) 12%, transparent);
}

.sev.mid {
  color: var(--mid);
  background: color-mix(in srgb, var(--mid) 12%, transparent);
}

.sev.low {
  color: var(--low);
  background: color-mix(in srgb, var(--low) 12%, transparent);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: st;
}

.steps li {
  counter-increment: st;
  padding-left: 36px;
  position: relative;
  color: var(--muted);
  line-height: 1.4;
}

.steps li::before {
  content: counter(st);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
  font-weight: 600;
}

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

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

.price-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.price {
  margin: 6px 0 12px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.price-card ul {
  margin: 0 0 18px;
  padding-left: 1.1em;
  color: var(--muted);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.foot-cta {
  margin-top: 24px;
  padding: 72px 22px 40px;
  background: #000;
  color: #f5f5f7;
  text-align: center;
}

.foot-cta h2 {
  max-width: 16ch;
  margin: 0 auto 22px;
}

.foot-links {
  margin: 28px 0 0;
  color: #86868b;
  font-size: 0.86rem;
}

.foot-links a {
  color: #d2d2d7;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 640px);
  margin: 0 auto;
  padding: 72px 0 64px;
}

.legal h2 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.legal .de {
  margin-top: 48px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slogan {
  margin: 10px 0 0;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .hero,
  .split,
  .price-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

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

  .steps li {
    padding-left: 0;
    padding-top: 28px;
  }

  .hero-art {
    min-height: 560px;
    width: min(52vw, 740px);
    margin-right: calc(50% - 50vw);
    justify-self: end;
  }
}
