:root {
  --ink: #071827;
  --ink-2: #123c5b;
  --muted: #5b6b7f;
  --line: #d8e5f0;
  --line-strong: #b9cde0;
  --bg: #ffffff;
  --soft: #f6f9fc;
  --blue-soft: #eff6ff;
  --green-soft: #ecfdf5;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-2: #0f766e;
  --good: #15803d;
  --warn: #92400e;
  --shadow: 0 24px 80px rgba(7, 24, 39, 0.12);
  --shadow-sm: 0 10px 30px rgba(7, 24, 39, 0.08);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  background: var(--ink);
  color: #e5eff8;
  font-size: 14px;
}
.announcement-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  flex-wrap: wrap;
}
.announcement strong { color: #fff; }
.announcement a { color: #bfdbfe; font-weight: 850; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 229, 240, 0.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.03em;
}
.brand img { width: 166px; display: block; }
.brand-name {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 18px;
  white-space: nowrap;
}
.navlinks { display: flex; align-items: center; gap: 20px; }
.navlinks a {
  color: #38526a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 820;
}
.navlinks a:hover { color: var(--accent); }
.nav-cta { display: inline-flex; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.17), transparent 31%),
    radial-gradient(circle at 88% 10%, rgba(15, 118, 110, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 54%, #ecfdf5 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 24, 39, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 90%);
}
.hero-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px 72px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}
.hero-wrap.single { display: block; max-width: 980px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #bfe5f6;
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.84);
  color: #075985;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(21, 128, 61, 0.13);
}
h1 {
  margin: 20px 0 18px;
  max-width: 920px;
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1.01;
  letter-spacing: -0.058em;
}
.hero-wrap.single h1 { margin-left: auto; margin-right: auto; }
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #071827 0%, #0f5fa8 48%, #0f766e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.lead {
  margin: 0 0 16px;
  max-width: 820px;
  color: #455b70;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}
.hero-wrap.single .lead { margin-left: auto; margin-right: auto; }
.sublead {
  max-width: 790px;
  margin: 0;
  color: #526375;
  font-size: 17px;
  line-height: 1.6;
}
.hero-wrap.single .sublead { margin-left: auto; margin-right: auto; }

.btnrow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-wrap.single .btnrow, .center .btnrow { justify-content: center; }
.btn {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}
.btn.primary:hover { background: var(--accent-dark); }
.btn.secondary { border-color: #cbd9e6; background: #fff; }
.btn.ghost { border-color: #b9f4d7; color: #065f46; background: #eafcf5; }
.btn.dark { color: #fff; background: var(--ink); }
.btn.full { width: 100%; }
.btn[disabled] { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.38);
  outline-offset: 3px;
}

.microcopy {
  margin-top: 15px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}
.truststrip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid #c7e8d2;
  border-radius: 999px;
  color: #14532d;
  background: #f0fdf4;
  font-size: 13px;
  font-weight: 850;
}
.chip::before { content: "\2713"; color: var(--good); font-weight: 950; }

.proof-card {
  padding: 26px;
  border: 1px solid #cfe0ef;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}
.proof-top {
  padding-bottom: 18px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.proof-top h2 { margin: 0 0 6px; font-size: 24px; }
.proof-top p { margin: 0; font-size: 14px; }
.status {
  padding: 7px 10px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 950;
}
.proof-row {
  margin: 10px 0;
  padding: 12px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 11px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: #f8fafc;
}
.proof-dot {
  width: 14px;
  height: 14px;
  justify-self: center;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 5px rgba(21, 128, 61, 0.11);
}
.tiny { color: #64748b; font-size: 12px; font-weight: 800; }
.score {
  margin-top: 17px;
  padding: 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #071827, #123c5b);
}
.score strong { display: block; font-size: 28px; letter-spacing: -0.04em; }
.score span { display: block; margin-top: 4px; color: #d6e2ed; font-size: 14px; }

.section { padding: 78px 24px; }
.section.soft { background: var(--soft); }
.section.blue { background: linear-gradient(135deg, var(--blue-soft), var(--green-soft)); }
.section.dark { color: #fff; background: var(--ink); }
.wrap { max-width: var(--max); margin: 0 auto; }
.center { max-width: 900px; margin: 0 auto; text-align: center; }
.kicker {
  margin-bottom: 11px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section.dark .kicker { color: #93c5fd; }
h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.048em;
}
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; letter-spacing: -0.025em; }
p { margin: 0 0 16px; color: var(--muted); font-size: 18px; line-height: 1.64; }
.section.dark p { color: #cbd5e1; }
.small { font-size: 14px; line-height: 1.55; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.mt { margin-top: 30px; }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card.emphasis { border-color: #bde7ff; background: linear-gradient(180deg, #fff, #f3fbff); }
.card.success { border-color: #b9f4d7; background: linear-gradient(180deg, #fff, #f0fdf4); }
.card p:last-child { margin-bottom: 0; }
.icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #1d4ed8;
  background: #dbeafe;
  font-weight: 950;
}
.number {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #1d4ed8;
  background: #dbeafe;
  font-weight: 950;
}

.list { margin: 16px 0 0; padding: 0; list-style: none; }
.list li {
  position: relative;
  padding: 8px 0 8px 25px;
  border-bottom: 1px solid #edf2f7;
  color: #425466;
  font-size: 16px;
  line-height: 1.45;
}
.list li::before { content: "\2713"; position: absolute; left: 0; color: var(--good); font-weight: 950; }
.list li:last-child { border-bottom: 0; }

.notice {
  padding: 18px 20px;
  border-left: 5px solid var(--accent-2);
  border-radius: 17px;
  color: #124c3a;
  background: var(--green-soft);
}
.notice.warn { border-left-color: #f59e0b; color: #713f12; background: #fffbeb; }
.notice p { margin: 0; color: inherit; font-size: 15px; }

.offer {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, #071827 0%, #123c5b 100%);
  box-shadow: var(--shadow);
}
.offer p { color: #cbd5e1; }
.offer .list li { border-color: rgba(255,255,255,0.12); color: #e5edf5; }
.offer .list li::before { color: #86efac; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.price-card { display: flex; flex-direction: column; }
.price-card.featured { border-color: #93c5fd; box-shadow: var(--shadow); }
.badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 950;
}
.price { margin: 8px 0 4px; color: #0f5fa8; font-size: 38px; font-weight: 950; letter-spacing: -0.05em; }
.price span { color: #64748b; font-size: 16px; font-weight: 800; letter-spacing: 0; }
.price-card .description { min-height: 84px; }
.price-card .btnrow { margin-top: auto; padding-top: 8px; }

.form-shell {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #cfe0ef;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-header { padding: 26px 30px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fff, #f3fbff); }
.form-header p { margin-bottom: 0; }
.intake-form { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #17334a; font-size: 14px; font-weight: 900; }
.required { color: #b42318; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b9c8d7;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.field textarea { min-height: 128px; resize: vertical; }
.helper { margin: 0; color: #64748b; font-size: 13px; line-height: 1.45; }
.consent {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid #d6e2ed;
  border-radius: 16px;
  background: #f8fafc;
}
.consent input { margin-top: 4px; }
.consent label { color: #425466; font-size: 14px; line-height: 1.5; }
.bot-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-footer {
  margin-top: 24px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.form-footer p { max-width: 690px; margin: 0; color: #64748b; font-size: 14px; line-height: 1.5; }

.article { max-width: 860px; margin: 0 auto; }
.article-meta { color: #64748b; font-size: 15px; }
.article h2 { margin-top: 34px; font-size: clamp(27px, 3vw, 38px); }
.article p, .article li { font-size: 18px; line-height: 1.72; }
.article ul { padding-left: 23px; }
.article .card { margin: 26px 0; }

.table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; min-width: 720px; border-collapse: collapse; }
th, td { padding: 14px 16px; border-bottom: 1px solid #e6edf5; text-align: left; vertical-align: top; font-size: 15px; line-height: 1.55; }
th { color: var(--ink-2); background: #f1f7ff; font-weight: 950; }
td { color: #425466; }

.cta {
  padding: 82px 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 30% 15%, rgba(37, 99, 235, 0.28), transparent 32%),
    linear-gradient(135deg, #071827 0%, #123c5b 100%);
}
.cta h2 { color: #fff; }
.cta p { max-width: 820px; margin-left: auto; margin-right: auto; color: #cbd5e1; }

.footer { padding: 34px 24px; color: #cbd5e1; background: #06111c; font-size: 14px; }
.footer-wrap { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer img { width: 156px; padding: 8px 11px; border-radius: 14px; background: #fff; }
.footer-copy { max-width: 760px; color: #aab7c5; line-height: 1.6; }
.footer-copy a { color: #dbeafe; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 10px; }
.footer-links a { color: #dbeafe; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  .navlinks { display: none; }
  .hero-wrap, .grid-2, .grid-3, .grid-4, .offer, .pricing-grid { grid-template-columns: 1fr; }
  .hero-wrap { padding: 64px 20px 56px; }
  .section { padding: 60px 20px; }
  .price-card .description { min-height: 0; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .intake-form { padding: 22px 18px; }
  .form-header { padding: 22px 18px; }
  .proof-row { grid-template-columns: 26px 1fr; }
  .proof-row > .tiny:last-child { display: none; }
  .brand-name { display: none; }
  .brand img { width: 144px; }
  .announcement-inner { padding: 9px 16px; }
}

@media (max-width: 560px) {
  h1 { font-size: 39px; }
  .nav { padding: 12px 16px; }
  .nav-cta .btn { min-height: 42px; padding: 10px 14px; font-size: 13px; }
  .btnrow .btn { width: 100%; }
  .offer, .card, .proof-card { padding: 22px; }
  .form-footer { display: block; }
  .form-footer .btn { width: 100%; margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
