:root {
  --ink: #111827;
  --muted: #5b6475;
  --line: #e5e7eb;
  --paper: #fafafa;
  --card: #ffffff;
  --indigo: #4f46e5;
  --green: #10b981;
  --amber: #f59e0b;
  --soft-indigo: #eef2ff;
  --soft-green: #ecfdf5;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 250, 250, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  font-size: 21px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

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

.button.primary {
  background: var(--indigo);
  color: white;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.25);
}

.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  padding: 82px 0 56px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--soft-indigo);
  color: #3730a3;
  font-size: 13px;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 20px;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
}

h3 {
  font-size: 21px;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 650px;
  color: #4b5563;
  font-size: 20px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 640px;
}

.trust-pill {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 13px;
  font-weight: 800;
  color: #374151;
}

.dashboard {
  border-radius: 18px;
  background: #0b1020;
  color: white;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 9px; height: 9px; border-radius: 999px; background: #6b7280; }
.window-dots span:nth-child(1) { background: #fb7185; }
.window-dots span:nth-child(2) { background: #fbbf24; }
.window-dots span:nth-child(3) { background: #34d399; }

.score-panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
}

.score-ring {
  min-height: 160px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 91%, rgba(255,255,255,.08) 91% 100%);
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  background: #0b1020;
}

.score-ring strong, .score-ring span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.score-ring strong { font-size: 42px; font-family: "Space Grotesk", Inter, sans-serif; }
.score-ring span { color: #a7f3d0; font-size: 13px; font-weight: 800; }

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

.check-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #e5e7eb;
  font-size: 14px;
}

.ok { color: #6ee7b7; font-weight: 900; }
.warn { color: #fbbf24; font-weight: 900; }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.metric {
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.metric span { display: block; color: #9ca3af; font-size: 12px; font-weight: 700; }
.metric strong { display: block; margin-top: 4px; font-size: 22px; font-family: "Space Grotesk", Inter, sans-serif; }

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro p {
  color: var(--muted);
  font-size: 18px;
  margin: 15px 0 0;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.why-editorial {
  max-width: 920px;
  margin-bottom: 38px;
}

.why-editorial p {
  max-width: 800px;
  color: var(--muted);
  font-size: 18px;
  margin: 16px 0 0;
}

.why-editorial .why-lede {
  max-width: 900px;
  color: #1f2937;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.25;
}

.why-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-top: 28px;
  border-top: 1px solid #d1d5db;
}

.why-flow div {
  position: relative;
}

.why-flow div + div::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: #e5e7eb;
}

.why-flow h3 {
  font-size: 20px;
}

.why-flow p {
  color: var(--muted);
  margin: 10px 0 0;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card .icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--soft-indigo);
  color: var(--indigo);
  font-weight: 900;
  margin-bottom: 18px;
}

.card p, .legal p, .faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

.dark-band {
  background: var(--ink);
  color: white;
}

.dark-band .section-intro p,
.dark-band .card p {
  color: #cbd5e1;
}

.dark-band .card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.11);
}

.positioning-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.position-card {
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
}

.position-card h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.position-card p {
  color: var(--muted);
  font-size: 17px;
  margin: 14px 0 0;
}

.position-card.preferred {
  background: #111827;
  color: white;
  border-color: #111827;
  box-shadow: var(--shadow);
}

.position-card.preferred p {
  color: #d1d5db;
}

.position-card.preferred .section-kicker {
  color: #a7f3d0;
}

.muted-card {
  background: #f8fafc;
}

.signal-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 24px;
  color: #e5e7eb;
  font-weight: 700;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.signal-list.quiet li {
  color: #4b5563;
}

.signal-list.quiet li::before {
  background: #94a3b8;
}

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

.price strong {
  font-size: 42px;
  font-family: "Space Grotesk", Inter, sans-serif;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: #374151;
}

.list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 9px;
}

.page-hero {
  padding: 74px 0 42px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.legal {
  max-width: 860px;
  padding-bottom: 80px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 28px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

label { font-weight: 800; font-size: 13px; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  background: white;
}

textarea { min-height: 132px; resize: vertical; }

.footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer a, .footer p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0;
}

@media (max-width: 880px) {
  .nav { align-items: flex-start; padding: 16px 0; }
  .nav-links { display: none; }
  .hero-grid, .score-panel, .grid-3, .grid-2, .contact-panel, .footer-grid, .why-flow, .positioning-panel {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 48px; }
  .trust-row, .metric-grid { grid-template-columns: 1fr; }
  .dashboard { border-radius: 12px; }
  .why-flow div + div::before { display: none; }
  .why-flow div {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
  }
  .why-flow div:first-child {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .actions .button { width: 100%; }
  .position-card { padding: 22px; }
}
