:root {
  color-scheme: light dark;
  --bg: #f4f7fb;
  --bg-2: #e8eef6;
  --panel: #ffffff;
  --panel-2: #f8fbff;
  --ink: #0f172a;
  --muted: #334155;
  --line: rgba(51, 65, 85, 0.16);
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #081019;
    --bg-2: #0b1220;
    --panel: #101a26;
    --panel-2: #0d1520;
    --ink: #f2f6fb;
    --muted: #c3d0de;
    --line: rgba(151, 176, 199, 0.22);
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-soft: rgba(249, 115, 22, 0.14);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, var(--accent-soft), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--ink);
}
.page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}
.hero,
.signup-layout,
.result-grid,
.pricing-grid,
.proof-strip {
  display: grid;
  gap: 24px;
}
.hero {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: start;
  padding: 24px 0 32px;
}
.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 10ch;
  margin-bottom: 18px;
}
.lede,
.panel-header p,
.result-summary,
.signup-message,
.pricing-note,
.hero-card p,
dd,
li,
.proof-strip span,
textarea,
input,
select {
  color: var(--muted);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--accent);
  color: #fff;
}
.button-primary:hover { background: var(--accent-dark); }
.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,0.03);
}
.trust-list,
.hero-card dl,
.result-grid ul,
.signup-card ul,
.price-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-list li,
.signup-card li,
.result-grid li,
.price-card li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}
.trust-list li::before,
.signup-card li::before,
.result-grid li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-card,
.panel,
.signup-card,
.result-grid section,
.next-step,
.proof-strip > div,
.price-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.hero-card,
.panel,
.signup-card,
.next-step,
.result-grid section,
.proof-strip > div,
.price-card {
  padding: 24px;
}
.hero-card dl { display: grid; gap: 16px; }
dt {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}
.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}
.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--ink);
}
.card-label,
.hero-card p,
.proof-strip span,
.proof-strip strong {
  color: var(--ink);
}
.panel { margin-top: 24px; }
.audit-form,
.signup-form,
.feedback-form {
  display: grid;
  gap: 16px;
}
.audit-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}
.signup-layout,
.pricing-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}
.pricing-grid {
  margin-bottom: 20px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
input,
select,
textarea,
button {
  font: inherit;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  color: var(--ink);
}
textarea { resize: vertical; }
button { cursor: pointer; }
.result-shell { margin-top: 28px; }
.result-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}
.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 8px 0 16px;
}
.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}
.checkout-link { margin-top: 8px; }
.signup-message {
  min-height: 24px;
  font-weight: 700;
}
.signup-message.success { color: #7dd3a7; }
.hidden { display: none; }
@media (max-width: 900px) {
  .hero,
  .signup-layout,
  .audit-form,
  .result-grid,
  .pricing-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }
  h1 { max-width: none; }
  .result-topline { flex-direction: column; }
}


.hero-card,
.proof-strip > div,
.panel,
.signup-card,
.result-grid section,
.next-step,
.price-card {
  background-image: none;
}
.hero-card h2,
.hero-card p,
.hero-card dt,
.hero-card dd,
.proof-strip strong,
.proof-strip span,
.card-label {
  color: #0f172a !important;
}
@media (prefers-color-scheme: dark) {
  .hero-card h2,
  .hero-card p,
  .hero-card dt,
  .hero-card dd,
  .proof-strip strong,
  .proof-strip span,
  .card-label {
    color: #f8fafc !important;
  }
}
