:root {
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --bg-dark: #0b0e14;
  --ink: #0e1116;
  --ink-secondary: #4b5563;
  --accent: #0f62fe;
  --accent-hover: #0043ce;
  --success: #059669;
  --border: #e5e7eb;
  --border-dark: #1f2937;
  --dark-text: #f9fafb;
  --dark-secondary: #d1d5db;
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.nav {
  max-width: var(--max);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0f62fe, #059669);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: #374151;
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: #eef4ff;
  color: var(--accent-hover);
  outline: none;
}
.menu-toggle { display: none; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 720;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease-out, background 150ms ease-out, border-color 150ms ease-out;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-hover); }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.button-ghost { color: var(--accent); padding: 0; min-height: auto; border: 0; }
.section { padding: 112px 24px; }
.section.alt { background: var(--bg-alt); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 650;
  margin-bottom: 22px;
}
h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 650;
  margin-bottom: 18px;
}
h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 650;
  margin-bottom: 10px;
}
.lede {
  max-width: 68ch;
  color: var(--ink-secondary);
  font-size: 18px;
  line-height: 1.65;
}
.hero {
  min-height: calc(100vh - 68px);
  padding: 96px 24px 112px;
  background:
    radial-gradient(circle at 82% 22%, rgba(15, 98, 254, .24), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(5, 150, 105, .18), transparent 32%),
    var(--bg-dark);
  color: var(--dark-text);
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 56px;
}
.hero .lede { color: var(--dark-secondary); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 16px; }
.hero .button-secondary { color: #fff; border-color: rgba(255,255,255,.78); }
.trust-line { color: #e5e7eb; font-size: 15px; margin: 18px 0 0; }
.workflow-panel {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 30px 100px rgba(0,0,0,.34);
}
.workflow-panel svg { width: 100%; height: auto; display: block; }
.intake-card {
  max-width: 920px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  background: #fff;
  box-shadow: var(--shadow);
}
.field-label { display: block; font-weight: 680; margin-bottom: 10px; }
textarea, input, select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
textarea { min-height: 132px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.chip {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}
.chip[aria-pressed="true"] { color: #fff; background: var(--accent); border-color: var(--accent); }
.privacy-line { color: var(--ink-secondary); font-size: 14px; margin: 16px 0 0; }
.step-two {
  display: none;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.intake-card.has-problem .step-two { display: block; }
.route-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.route-preview div {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.route-preview strong { display: block; margin-bottom: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
details.optional { margin: 18px 0; }
details.optional summary { cursor: pointer; font-weight: 680; }
.success {
  display: none;
  margin-top: 18px;
  border-radius: 14px;
  padding: 14px 16px;
  background: #ecfdf5;
  color: #064e3b;
  border: 1px solid #a7f3d0;
}
.success.show { display: block; }
.hp-field {
  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;
}
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.card, .price-card, .proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  transition: transform 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.card:hover, .price-card:hover, .proof-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: var(--shadow);
}
.icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 22px;
}
.card p, .proof-card p, .price-card p { color: var(--ink-secondary); }
.text-link {
  color: var(--accent);
  font-weight: 720;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.text-link:hover { text-decoration: underline; }
.section-link-row { margin-top: 24px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.mini-flow {
  margin-bottom: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.mini-flow svg { width: 100%; display: block; height: auto; }
.metric {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 760;
}
.process-strip, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.step {
  border-top: 2px solid var(--accent);
  padding-top: 18px;
}
.step-number { display: block; color: var(--accent); font-weight: 800; margin-bottom: 10px; }
.price { font-size: 30px; line-height: 1.15; font-weight: 780; letter-spacing: -0.02em; margin: 18px 0 10px; }
.faq-list { max-width: 900px; margin-top: 32px; border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-list summary { cursor: pointer; font-size: 18px; font-weight: 720; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { max-width: 72ch; color: var(--ink-secondary); margin: 12px 0 0; }
.footer {
  background: var(--bg-dark);
  color: var(--dark-text);
  padding: 56px 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.footer p, .footer a { color: var(--dark-secondary); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 20px; justify-content: flex-end; }
.footer a { display: inline-flex; align-items: center; min-height: 32px; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.page-hero {
  padding: 92px 24px 86px;
  background:
    radial-gradient(circle at 80% 20%, rgba(15, 98, 254, .16), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(5, 150, 105, .12), transparent 34%),
    var(--bg-dark);
  color: var(--dark-text);
}
.page-hero .lede { color: var(--dark-secondary); }
.page-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.page-hero .button-secondary { color: #fff; border-color: rgba(255,255,255,.72); }
.kicker-grid, .content-grid, .article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}
.copy-block { max-width: 74ch; color: var(--ink-secondary); }
.copy-block p { margin-bottom: 18px; }
.copy-block ul { margin: 0; padding-left: 22px; }
.copy-block li { margin-bottom: 10px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.list-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}
.list-card p { color: var(--ink-secondary); margin-bottom: 16px; }
.article-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.article-thumb {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 28% 24%, rgba(15, 98, 254, .22), transparent 31%),
    radial-gradient(circle at 76% 72%, rgba(5, 150, 105, .18), transparent 30%),
    #0b0e14;
  border-bottom: 1px solid var(--border);
  display: grid;
  place-items: center;
  padding: 22px;
}
.article-thumb svg { width: 100%; height: auto; max-height: 140px; }
.article-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-card-body p { color: var(--ink-secondary); margin: 0; }
.article-card-body .text-link { margin-top: auto; }
.category-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.category-row a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0 14px;
  color: var(--ink-secondary);
  text-decoration: none;
  font-weight: 680;
  font-size: 14px;
}
.category-row a.active, .category-row a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 84px 24px;
}
.article-body p { color: var(--ink-secondary); font-size: 19px; line-height: 1.78; }
.article-body h2 { margin-top: 44px; }
.note-panel {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--bg-alt);
  padding: 24px;
}
.route-check {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 980px) {
  .hero-grid, .footer-inner { grid-template-columns: 1fr; }
  .card-grid, .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-strip, .pricing-grid { grid-template-columns: 1fr; }
  .kicker-grid, .content-grid, .article-grid, .service-list, .two-col { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .nav { min-height: 64px; padding: 0 16px; }
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 46px; justify-content: flex-start; }
  .nav > .button { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
  }
  .hero { min-height: auto; padding: 72px 20px 80px; }
  .page-hero { padding: 58px 20px 54px; }
  .section { padding: 56px 20px; }
  .intake-card { padding: 24px; }
  .form-grid, .route-preview, .card-grid, .proof-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}