:root {
  --navy: #102b4e;
  --navy-2: #173f70;
  --blue: #2e74b5;
  --blue-2: #438bd0;
  --sky: #e9f4ff;
  --sky-2: #f5faff;
  --ink: #182433;
  --muted: #5e6b7a;
  --line: #dce5ee;
  --white: #ffffff;
  --surface: #f7f9fc;
  --green: #1b8a68;
  --shadow: 0 18px 55px rgba(16, 43, 78, 0.12);
  --shadow-sm: 0 10px 30px rgba(16, 43, 78, 0.08);
  --radius: 20px;
  --radius-sm: 13px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: .75rem 1rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 790px); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-tint { background: var(--surface); }
.section-dark { color: var(--white); background: var(--navy); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: #9bcfff; }

h1, h2, h3, h4 { margin: 0 0 1rem; color: var(--navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.28rem; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.lead { max-width: 720px; margin: 0 0 2rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.center .lead { margin-inline: auto; }
.section-dark .lead { color: #d2dfec; }
.text-link { color: var(--blue); font-weight: 750; }
.text-link:hover { color: var(--navy); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 229, 238, .8);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 220px; height: auto; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  padding: .65rem .78rem;
  border-radius: 9px;
  color: #445262;
  font-size: .94rem;
  font-weight: 700;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); background: var(--sky-2); }
.site-nav .nav-cta { margin-left: .5rem; padding: .72rem 1rem; color: var(--white); background: var(--navy); }
.site-nav .nav-cta:hover { color: var(--white); background: var(--blue); }
.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy);
  background: var(--white);
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5.5rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(67, 139, 208, .21), transparent 32%),
    linear-gradient(135deg, #fff 28%, #f2f8ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(46, 116, 181, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(46, 116, 181, .04), 0 0 0 140px rgba(46, 116, 181, .03);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 5rem; }
.hero h1 span { color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue); box-shadow: 0 12px 25px rgba(46, 116, 181, .2); }
.button-secondary { color: var(--navy); border-color: #bfcede; background: var(--white); }
.button-secondary:hover { color: var(--white); border-color: var(--blue); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { color: var(--white); }
.button-block { width: 100%; }

.trust-line { display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--muted); font-size: .91rem; font-weight: 650; }
.trust-line span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-line span::before { content: "✓"; color: var(--green); font-weight: 900; }

.hero-panel {
  position: relative;
  padding: 1.15rem;
  border: 1px solid rgba(46, 116, 181, .18);
  border-radius: 26px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}
.dashboard-card { overflow: hidden; border-radius: 17px; color: var(--white); background: var(--navy); }
.dashboard-top { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.status { display: inline-flex; align-items: center; gap: .45rem; color: #bdebdc; font-size: .8rem; font-weight: 750; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ad19f; box-shadow: 0 0 0 4px rgba(74, 209, 159, .12); }
.dashboard-body { padding: 1.35rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin-bottom: 1rem; }
.metric { padding: 1rem .8rem; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.06); }
.metric strong { display: block; font-size: 1.25rem; }
.metric small { color: #b5c7d9; }
.support-list { display: grid; gap: .6rem; }
.support-item { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; border-radius: 10px; color: #dce8f3; background: rgba(255,255,255,.055); font-size: .87rem; }
.support-item b { color: #9bcfff; }
.floating-badge { position: absolute; right: -1.6rem; bottom: 1.8rem; padding: .9rem 1rem; border-radius: 13px; background: var(--white); box-shadow: var(--shadow-sm); font-weight: 800; color: var(--navy); }
.floating-badge small { display: block; color: var(--muted); font-weight: 600; }

.logo-strip { border-block: 1px solid var(--line); background: var(--white); }
.logo-strip .container { display: grid; grid-template-columns: 1.25fr repeat(4, 1fr); align-items: center; gap: 1rem; padding-block: 1.2rem; }
.logo-strip strong { color: var(--navy); }
.proof-chip { padding: .55rem .7rem; border-radius: 9px; color: var(--muted); background: var(--surface); text-align: center; font-size: .85rem; font-weight: 700; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.card {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16,43,78,.02);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: #b8cee2; box-shadow: var(--shadow-sm); }
.card p { margin: 0; color: var(--muted); }
.icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.2rem; border-radius: 13px; color: var(--blue); background: var(--sky); }
.icon-box svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 5rem; }
.feature-panel { padding: 2.2rem; border-radius: 26px; color: var(--white); background: linear-gradient(145deg, var(--navy), var(--navy-2)); box-shadow: var(--shadow); }
.feature-panel h3 { color: var(--white); font-size: 1.7rem; }
.feature-panel p { color: #c9d8e7; }
.check-list { display: grid; gap: .85rem; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.9rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; display: grid; place-items: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; color: var(--white); background: var(--blue); font-size: .72rem; font-weight: 900; }
.section-dark .check-list li { color: #dce8f3; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: steps; }
.process-step { position: relative; padding: 1.4rem 1.15rem 1.2rem; border-top: 3px solid var(--blue); background: var(--white); box-shadow: var(--shadow-sm); border-radius: 0 0 var(--radius-sm) var(--radius-sm); counter-increment: steps; }
.process-step::before { content: "0" counter(steps); display: block; margin-bottom: .65rem; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.process-step p { margin: 0; color: var(--muted); font-size: .92rem; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.price-card.featured { border: 2px solid var(--blue); box-shadow: var(--shadow); transform: translateY(-8px); }
.price-badge { position: absolute; top: -14px; right: 1.2rem; padding: .35rem .7rem; border-radius: 999px; color: var(--white); background: var(--blue); font-size: .73rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.price { margin: .6rem 0 1.1rem; color: var(--navy); font-size: 2.35rem; font-weight: 850; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: .93rem; font-weight: 600; letter-spacing: 0; }
.price-list { flex: 1; display: grid; align-content: start; gap: .7rem; margin: 0 0 1.5rem; padding: 0; list-style: none; color: var(--muted); }
.price-list li { position: relative; padding-left: 1.55rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.pricing-note { margin-top: 1.5rem; padding: 1rem 1.2rem; border-radius: 12px; color: var(--muted); background: var(--surface); font-size: .9rem; text-align: center; }

.cta-band { overflow: hidden; position: relative; padding: 3.3rem; border-radius: 28px; color: var(--white); background: linear-gradient(135deg, var(--navy), var(--blue)); }
.cta-band::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -100px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.04); }
.cta-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { max-width: 680px; margin: 0; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }

.page-hero { padding: 5rem 0 4rem; background: linear-gradient(135deg, #f7fbff, #eaf4ff); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.35rem); }
.breadcrumbs { margin-bottom: 1.1rem; color: var(--muted); font-size: .87rem; font-weight: 700; }
.breadcrumbs a { color: var(--blue); }

.service-row { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; padding: 2.4rem 0; border-bottom: 1px solid var(--line); }
.service-row:last-child { border-bottom: 0; }
.service-row .icon-box { width: 58px; height: 58px; }
.service-row ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 1.5rem; margin: 1.2rem 0 0; padding: 0; list-style: none; color: var(--muted); }
.service-row li { position: relative; padding-left: 1.2rem; }
.service-row li::before { content: ""; position: absolute; left: 0; top: .7rem; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value { padding: 1.4rem; border-left: 3px solid var(--blue); background: var(--surface); }
.value p { margin: 0; color: var(--muted); font-size: .92rem; }
.founder-card { display: grid; grid-template-columns: 190px 1fr; gap: 2rem; align-items: center; padding: 2rem; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.founder-mark { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; color: var(--white); background: linear-gradient(145deg, var(--blue), #73b8ee); font-size: 3.2rem; font-weight: 850; }
.founder-card h3 { color: var(--white); font-size: 1.8rem; }
.founder-card p { color: #cbd9e7; }

.insight-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.insight-visual { min-height: 380px; display: grid; place-items: center; padding: 3rem; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.insight-visual svg { width: min(100%, 280px); color: #a7d6ff; }
.insight-copy { display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; }
.tag { display: inline-flex; align-self: flex-start; padding: .3rem .65rem; border-radius: 999px; color: var(--blue); background: var(--sky); font-size: .75rem; font-weight: 800; }
.meta { margin: .7rem 0; color: var(--muted); font-size: .83rem; }
.article-card { overflow: hidden; padding: 0; }
.article-card .article-art { height: 150px; display: grid; place-items: center; color: #9bcfff; background: var(--navy); }
.article-card .article-art svg { width: 60px; height: 60px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.article-card .article-body { padding: 1.4rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 4rem; align-items: start; }
.contact-list { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border: 1px solid var(--line); border-radius: 13px; }
.contact-item .icon-box { flex: 0 0 auto; width: 42px; height: 42px; margin: 0; }
.contact-item strong { display: block; color: var(--navy); }
.contact-item span, .contact-item a { color: var(--muted); }
.form-card { padding: 2rem; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .42rem; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .88rem; font-weight: 780; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cbd7e3; border-radius: 10px; padding: .78rem .85rem; color: var(--ink); background: var(--white); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46, 116, 181, .12); }
.form-note { margin: .9rem 0 0; color: var(--muted); font-size: .82rem; }
.form-status { min-height: 1.3rem; margin-top: .7rem; color: var(--green); font-size: .9rem; font-weight: 700; }
.form-status.error { color: #b42318; }
.button:disabled { cursor: wait; opacity: .7; }

.faq { display: grid; gap: .75rem; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.faq summary { padding: 1rem 1.15rem; color: var(--navy); font-weight: 800; cursor: pointer; }
.faq details p { padding: 0 1.15rem 1rem; margin: 0; color: var(--muted); }

.site-footer { padding: 4rem 0 1.5rem; color: #c3d2df; background: #0a2039; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 340px; color: #9eb1c3; }
.footer-col h3 { margin-bottom: .9rem; color: var(--white); font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; width: fit-content; margin: .42rem 0; color: #b8c9d8; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12); color: #8ea3b7; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 82px 0 auto 0; display: grid; gap: .35rem; padding: 1rem; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .25s ease; }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .82rem 1rem; }
  .site-nav .nav-cta { margin: .3rem 0 0; text-align: center; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: 4.8rem; }
  .hero-panel { max-width: 670px; }
  .cards, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .process, .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .section { padding: 4rem 0; }
  .brand img { width: 183px; }
  .nav-wrap { min-height: 72px; }
  .site-nav { inset-block-start: 72px; }
  .hero { padding: 3.8rem 0; }
  .hero-grid { gap: 2.3rem; }
  .metric-row { grid-template-columns: 1fr; }
  .floating-badge { position: static; margin: 1rem 0 0; }
  .logo-strip .container { grid-template-columns: 1fr 1fr; }
  .logo-strip strong { grid-column: 1 / -1; text-align: center; }
  .cards, .cards-2, .price-grid, .process, .values, .form-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .service-row { grid-template-columns: 1fr; gap: .5rem; }
  .service-row ul { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-mark { width: 140px; margin-inline: auto; }
  .insight-feature { grid-template-columns: 1fr; }
  .insight-visual { min-height: 230px; }
  .cta-band { padding: 2rem 1.4rem; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .field-full { grid-column: auto; }
}
