:root {
  --bg: #0f1720;
  --bg-soft: #f5f7fb;
  --surface: #ffffff;
  --surface-tint: #f9fcfd;
  --text: #111827;
  --text-soft: #4b5563;
  --line: #dbe3ee;
  --line-strong: #bfd0dd;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #ecfeff;
  --accent-strong: #d6f6f3;
  --warning: #f59e0b;
  --shadow: 0 18px 50px rgba(15, 23, 32, 0.08);
  --radius: 18px;
  --container: 1120px;
}

* { 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(--text);
  background: #fff;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(780px, 100%); }
.center { text-align: center; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219,227,238,0.8);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand img { width: 36px; height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.nav-links a:hover,
.text-link:hover,
.inline-links a:hover {
  color: var(--brand-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.button-primary,
.nav-cta {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.24);
}

.button-primary:hover,
.nav-cta:hover { background: var(--brand-dark); }

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.button-wide { width: 100%; }

.hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.hero-grid,
.landing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-card,
.panel,
.card,
.problem-grid article,
.fit-box,
.faq-list article,
.feature-list article,
.mini-card,
.quote-card,
.checklist-box,
.download-card,
.note-card,
.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(15, 23, 32, 0.04);
}

.hero-card,
.panel,
.form-shell,
.download-card { padding: 2rem; }

.hero-card-label,
.page-kicker {
  color: var(--text-soft);
  font-weight: 700;
}

.hero-card-price { font-size: 3.5rem; font-weight: 800; margin: 0.4rem 0 0.75rem; }

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }

.page-title { max-width: 13ch; }

.lead,
.section-copy,
.pricing-copy,
.small-note,
.form-note {
  color: var(--text-soft);
}

.lead { font-size: 1.08rem; max-width: 60ch; }
.section-copy { font-size: 1rem; max-width: 60ch; }

.hero-actions,
.resource-actions,
.centered-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points {
  padding-left: 1.1rem;
  margin: 1.2rem 0 0;
  color: var(--text-soft);
}

.hero-points li,
.fit-box li,
.problem-list li,
.checklist li { margin: 0.45rem 0; }

.stack,
.inline-links,
.micro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stack,
.inline-links { margin-top: 1rem; }

.pill,
.card-tag,
.metric {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.metric {
  min-width: 116px;
  justify-content: center;
  font-weight: 700;
}

.proof-strip { padding: 1.15rem 0; background: var(--bg); color: #fff; }

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

.proof-grid div { display: flex; flex-direction: column; gap: 0.15rem; }
.proof-grid strong { font-size: 1.15rem; }
.proof-grid span { color: rgba(255,255,255,0.72); }

.section { padding: 5rem 0; }
.section-light { background: var(--bg-soft); }
.section-heading { margin-bottom: 2rem; }

.problem-grid,
.cards.three-up,
.fit-grid,
.feature-list,
.two-up,
.quote-grid {
  display: grid;
  gap: 1.25rem;
}

.problem-grid,
.cards.three-up,
.feature-list { grid-template-columns: repeat(3, 1fr); }

.fit-grid,
.two-up,
.quote-grid { grid-template-columns: 1fr 1fr; }

.card,
.problem-grid article,
.fit-box,
.faq-list article,
.feature-list article,
.mini-card,
.quote-card,
.checklist-box,
.note-card { padding: 1.5rem; }

.card-accent { background: var(--surface-tint); }

.fit-box-alt { background: #fcfcfd; }

.fit-box ul,
.problem-list,
.checklist {
  margin: 0;
  padding-left: 1.1rem;
}

.split-callout,
.resource-band,
.download-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.pricing-section { padding-top: 2rem; }

.pricing-card {
  background: linear-gradient(135deg, #0f1720 0%, #12343a 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(15, 23, 32, 0.18);
}

.pricing-copy,
.small-note { font-size: 0.92rem; }

.small-note { margin-top: 0.8rem; }

.price-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 1.5rem;
}

.price { font-size: 3.25rem; font-weight: 800; margin-bottom: 1rem; }
.faq-list { display: grid; gap: 1rem; }
.final-cta { background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%); }

.page-hero {
  padding: 4.75rem 0 3.5rem;
  background: linear-gradient(180deg, #f9fcfd 0%, #ffffff 100%);
}

.page-lead {
  font-size: 1.05rem;
  max-width: 62ch;
  color: var(--text-soft);
}

.page-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.inline-links a {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.operator-note {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--accent);
  border: 1px solid var(--accent-strong);
  color: var(--brand-dark);
  font-weight: 600;
}

.feature-list article h3,
.faq-list article h3,
.quote-card h3,
.card h3 { margin-bottom: 0.65rem; }

.quote-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.quote-card p:last-child,
.mini-card p:last-child,
.card p:last-child { margin-bottom: 0; }

.checklist-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.form-shell {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.form-shell h2 { margin-bottom: 0.75rem; }

.capture-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.form-row,
.form-grid {
  display: grid;
  gap: 0.85rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.18);
  border-color: var(--brand);
}

.privacy-copy {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.download-card {
  background: linear-gradient(135deg, #0f1720 0%, #12343a 100%);
  color: #fff;
}

.download-card .small-note,
.download-card .section-copy { color: rgba(255,255,255,0.78); }

.download-card .button-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.download-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.download-list li { margin: 0.45rem 0; }

.note-card {
  background: #fffdf7;
  border-color: #f2dfb3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--text-soft);
}

@media (max-width: 960px) {
  .hero-grid,
  .landing-grid,
  .problem-grid,
  .cards.three-up,
  .fit-grid,
  .split-callout,
  .pricing-card,
  .proof-grid,
  .feature-list,
  .two-up,
  .quote-grid,
  .resource-band,
  .download-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero { padding-top: 4rem; }

  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .nav { gap: 1rem; }
  .nav-cta { display: none; }
  .button,
  .button-wide { width: 100%; }
  .hero-actions,
  .resource-actions,
  .centered-actions { flex-direction: column; }
  .section { padding: 4rem 0; }
  h1 { max-width: none; }
}
