:root {
  color-scheme: dark;
  --bg: #090b0d;
  --panel: #11161a;
  --panel-strong: #172026;
  --text: #f4f1ea;
  --muted: #aeb7b5;
  --line: rgba(244, 241, 234, 0.14);
  --accent: #e3b75b;
  --accent-2: #64c7a5;
  --danger: #f07d64;
  --ink: #12100b;
  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;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(9, 11, 13, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-stats,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  border-radius: 8px;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-cta {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 6vw, 76px) 44px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 11, 13, 0.95) 0%, rgba(9, 11, 13, 0.82) 35%, rgba(9, 11, 13, 0.24) 78%),
    linear-gradient(0deg, rgba(9, 11, 13, 0.95) 0%, rgba(9, 11, 13, 0.08) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.plan {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.hero-copy,
.scanner-copy p,
.process li,
.price-card p,
.proof-grid p,
.result-panel p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 640px;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.hero-stats {
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.hero-stats div {
  min-width: 140px;
  padding: 14px;
  background: rgba(17, 22, 26, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.scanner-band,
.pricing-band {
  background: #0d1114;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scanner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(290px, 0.82fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.scanner-panel,
.result-panel,
.price-card,
.proof-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.scanner-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  align-content: start;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0a0d0f;
  color: var(--text);
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(100, 199, 165, 0.36);
  border-color: var(--accent-2);
}

.full {
  width: 100%;
}

.form-note {
  margin-bottom: 0;
  font-size: 12px;
}

.result-panel {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 20px;
  align-items: center;
}

.score-ring {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  text-align: center;
  border: 10px solid rgba(227, 183, 91, 0.22);
  border-top-color: var(--accent);
  border-radius: 50%;
}

.score-ring span {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.score-ring small {
  display: block;
  max-width: 82px;
  color: var(--muted);
  font-size: 11px;
}

.risk-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.risk-list li {
  padding-left: 18px;
  color: var(--muted);
  position: relative;
}

.risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--danger);
  border-radius: 50%;
}

.hidden {
  display: none;
}

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

.proof-grid article,
.price-card {
  padding: 24px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  background: var(--panel-strong);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.price-card.featured {
  background: #1a211f;
  border-color: rgba(100, 199, 165, 0.5);
}

.price-card h3 {
  margin-bottom: 0;
  font-size: 38px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
}

.process ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 24px;
}

.site-footer {
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .scanner-grid,
  .proof-grid,
  .pricing-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 860px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .result-panel {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    width: 100%;
  }
}
