:root {
  --blue-950: #061935;
  --blue-900: #082b61;
  --blue-800: #0f3f92;
  --blue-700: #145fd6;
  --blue-600: #1f77f0;
  --orange-600: #ff8a00;
  --orange-500: #ff9d1f;
  --green-600: #18a264;
  --purple-600: #7a5af8;
  --body: #1f2c45;
  --muted: #5f708f;
  --line: #dfe8f5;
  --bg: #f4f8fe;
  --card: #ffffff;
  --shadow: 0 26px 60px rgba(8, 43, 97, 0.12);
  --radius: 24px;
  --logo-height: 195px;
  --logo-height-sm: 165px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-light { background: #fff; }
.section-blue {
  background: linear-gradient(135deg, var(--blue-900) 0%, #042252 100%);
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(20, 95, 214, .08);
  color: var(--blue-800);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow.light { background: rgba(255,255,255,.14); color: #dbe8ff; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; }
.hero h1 {
  font-size: clamp(1.625rem, 2.9vw, 3.1rem);
}
.hero-copy .welcome-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.65vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--orange-600);
}
@media (min-width: 640px) {
  .hero-copy .welcome-title,
  .hero-copy .welcome-tagline {
    white-space: nowrap;
  }
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero-copy .welcome-title {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.hero-copy .welcome-tagline {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(0.98rem, 1.75vw, 1.18rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--blue-800);
}
.section-heading h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
#features .section-heading h2 { font-size: clamp(1.5rem, 2.55vw, 2.25rem); }
.section-heading p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.left-align { text-align: left; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(223, 230, 242, .88);
  overflow: visible;
}
.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.65rem;
  padding-left: clamp(200px, 22vw, 270px);
}
.site-header .brand {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% + 10px));
  height: fit-content;
  width: max-content;
  display: flex;
  align-items: center;
  line-height: 0;
  z-index: 2;
}
.brand-logo,
.footer-logo {
  width: auto;
  object-fit: contain;
}
.footer-logo {
  height: var(--logo-height);
}
.site-header .brand-logo {
  height: 234px;
}
.main-nav {
  grid-column: 1;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.4rem;
  row-gap: 0.5rem;
  align-items: center;
  min-width: 0;
}
.main-nav a {
  color: #25406d;
  font-weight: 600;
  font-size: .96rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--orange-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.nav-actions {
  grid-column: 2;
  display: flex;
  gap: .75rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .82rem 1.25rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: 0 16px 30px rgba(245, 124, 0, .25);
}
.btn-secondary {
  background: #fff;
  color: var(--blue-800);
  border-color: #d7e3f8;
}
.btn-ghost {
  background: rgba(9, 62, 151, .06);
  color: var(--blue-800);
  border-color: rgba(9, 62, 151, .1);
}
.btn-lg { padding: 1rem 1.45rem; font-size: 1rem; }
.full { width: 100%; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 10px;
}
.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(17, 95, 214, 0.14), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(255, 143, 31, 0.12), transparent 20%),
    linear-gradient(180deg, #fcfdff 0%, #eef5ff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 3rem;
  align-items: center;
}
.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 1.25rem 0 1.8rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
  color: var(--blue-800);
  font-weight: 600;
  font-size: .92rem;
}
.hero-points span {
  background: rgba(13, 86, 201, 0.08);
  padding: .65rem .9rem;
  border-radius: 999px;
}
.hero-shell {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(221,230,244,.8);
  padding: 1rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.shell-topbar { display: flex; align-items: center; gap: 1rem; padding: .3rem .1rem 1rem; }
.shell-dots { display: flex; gap: .4rem; }
.shell-dots span {
  width: 10px; height: 10px; border-radius: 50%; background: #d6e1f5;
}
.shell-dots span:first-child { background: #ffb45f; }
.shell-dots span:nth-child(2) { background: #70c48f; }
.shell-dots span:nth-child(3) { background: #7da7e8; }
.shell-search {
  flex: 1;
  background: #f4f7fc;
  border: 1px solid #e2eaf6;
  color: #8190ac;
  padding: .75rem 1rem;
  border-radius: 16px;
  font-size: .92rem;
}
.shell-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e3ebf7;
}
.shell-sidebar {
  background: linear-gradient(180deg, #04255f 0%, #00173f 100%);
  color: rgba(255,255,255,.8);
  padding: 1rem;
}
.sidebar-brand {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: .7rem;
  margin-bottom: 1rem;
}
.sidebar-brand img { width: 100%; }
.sidebar-links { display: grid; gap: .45rem; }
.sidebar-links span {
  padding: .78rem .85rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: .92rem;
}
.sidebar-links span.active { background: rgba(22, 115, 230, .85); color: #fff; }
.shell-main { padding: 1.2rem; background: #fbfcff; }
.mini-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.mini-stat {
  background: #fff;
  border: 1px solid #e6edf8;
  border-radius: 18px;
  padding: 1rem;
}
.mini-stat small { color: #6f7f9f; display: block; margin-bottom: .3rem; }
.mini-stat strong { font-size: 1.8rem; color: var(--blue-900); }
.mini-stat.accent strong { color: var(--orange-600); }
.mini-panel {
  background: #fff;
  border: 1px solid #e6edf8;
  border-radius: 20px;
  margin-top: 1rem;
  padding: 1rem;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: .75rem;
}
.linkish { color: var(--blue-700); font-size: .94rem; }
.table-mock { display: grid; gap: .55rem; }
.row {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr .7fr;
  gap: .75rem;
  align-items: center;
  background: #fff;
  border: 1px solid #edf1f8;
  border-radius: 14px;
  padding: .8rem .9rem;
  font-size: .86rem;
  color: #32476f;
}
.row-head { border: none; background: #f4f8fe; font-weight: 700; color: #62759b; }
.pill {
  display: inline-flex;
  justify-content: center;
  padding: .42rem .68rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .72rem;
}
.pill.green { background: rgba(32, 178, 107, .12); color: #1a8f56; }
.pill.amber { background: rgba(255, 143, 31, .14); color: #cf6d00; }
.pill.blue { background: rgba(20, 95, 214, .12); color: var(--blue-700); }
.trust-strip { background: #fff; border-top: 1px solid #ecf1fb; border-bottom: 1px solid #ecf1fb; }
.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}
.trust-grid strong { color: var(--blue-900); font-size: 1.02rem; }
.trust-items { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: flex-end; }
.trust-items span {
  border: 1px solid #dfebfb;
  background: #f8fbff;
  color: var(--blue-800);
  padding: .6rem .85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
}
.section-heading { text-align: center; max-width: 820px; margin: 0 auto 2.5rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.feature-card, .roadmap-card, .sales-card, .contact-card, .lead-form, .product-panel {
  background: var(--card);
  border: 1px solid #e5edf9;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(8, 43, 97, .06);
}
.feature-card {
  padding: 1.5rem;
}
.feature-card h3 { font-size: 1.18rem; margin: .8rem 0 .65rem; color: var(--blue-900); }
.feature-card p { color: var(--muted); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff;
}
.feature-icon.blue { background: linear-gradient(135deg, var(--blue-700), var(--blue-800)); }
.feature-icon.orange { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.feature-icon.green { background: linear-gradient(135deg, #35c88a, var(--green-600)); }
.feature-icon.purple { background: linear-gradient(135deg, #9578ff, var(--purple-600)); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.compact-gap { gap: 1.4rem; }
.check-list { display: grid; gap: 1rem; margin-top: 1.2rem; }
.check-list div {
  background: #fff;
  border: 1px solid #e7eef9;
  border-radius: 18px;
  padding: 1rem 1.1rem;
}
.check-list strong { display: block; margin-bottom: .28rem; color: var(--blue-900); }
.check-list span { color: var(--muted); }
#mobile .two-col {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
}
.mobile-stack {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 400px)) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.floating-card { transform: translateY(-8px); }
.phone-card {
  background: linear-gradient(180deg, #081e45, #0d2b61);
  border-radius: 34px;
  padding: 11px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}
.phone-notch {
  width: 110px;
  height: 18px;
  border-radius: 0 0 12px 12px;
  background: #020c1f;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #f6f9ff;
  border-radius: 24px;
  padding: 0.85rem 0.9rem;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}
.phone-title { font-weight: 800; color: var(--blue-900); }
.phone-badge {
  padding: .28rem .55rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  background: var(--orange-600);
}
.capture-box {
  border-radius: 18px;
  border: 1px dashed #c9d9f5;
  background: #fff;
  color: #6a7da0;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.photo-box { min-height: 120px; }
.id-box { min-height: 88px; }
.field-row {
  background: #fff;
  border: 1px solid #e5edf9;
  border-radius: 14px;
  padding: .72rem .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
  font-size: .9rem;
}
.field-row span { color: #6b7a95; }
.field-row strong { color: var(--blue-900); }
.phone-btn {
  width: 100%;
  margin-top: .5rem;
  border: 0;
  border-radius: 16px;
  padding: .9rem 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}
.outline-card { padding: 1.3rem; }
.outline-card h3, .sales-card h3 { color: var(--blue-900); margin-bottom: .8rem; }
.outline-card ul, .sales-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.roadmap-card {
  padding: 1.5rem;
  background: rgba(255,255,255,.97);
}
.roadmap-card h3 { color: var(--blue-900); margin-bottom: .55rem; }
.roadmap-card p { color: var(--muted); }
.sales-card, .contact-card { padding: 1.55rem; }
.sales-card p { color: var(--muted); margin-top: .5rem; }
.sales-line {
  margin-top: 1rem !important;
  font-weight: 800;
  color: var(--blue-900) !important;
}
.sales-line a, .contact-email { color: var(--orange-600); }
.faq-grid { display: grid; gap: 1rem; }
.faq-item {
  background: #fff;
  border: 1px solid #e4edf9;
  border-radius: 20px;
  padding: 1rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-900);
}
.faq-item p { margin-top: .7rem; color: var(--muted); }
.section-cta {
  background: linear-gradient(180deg, #eff5ff 0%, #f8fbff 100%);
}
.cta-box {
  background: linear-gradient(135deg, var(--blue-900), #07397f);
  color: #fff;
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-box > div:first-child > h2 {
  margin-top: 0.75rem;
  margin-top: 0.5lh;
}
.cta-box p { color: rgba(255,255,255,.84); margin-top: .8rem; max-width: 680px; }
.cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.contact-section .two-col { align-items: start; }
.contact-section .section-heading > .eyebrow {
  margin-bottom: 1rem;
}
.simple-contact {
  display: inline-flex;
  flex-direction: column;
  gap: .3rem;
  margin-top: 1rem;
}
.contact-label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 700;
}
.contact-email {
  font-size: 1.22rem;
  font-weight: 800;
}
.lead-form { padding: 1.5rem; }
.lead-form h3 { color: var(--blue-900); margin-bottom: 1rem; }
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  margin-bottom: .4rem;
  font-weight: 700;
  color: var(--blue-900);
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #d8e3f3;
  background: #fff;
  color: var(--body);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: #8eb2ee; box-shadow: 0 0 0 4px rgba(20, 95, 214, 0.08); }
.error { color: #d84d4d; display: block; min-height: 18px; margin-top: .35rem; font-size: .84rem; }
.form-status { margin-top: .9rem; font-weight: 600; min-height: 24px; }
.site-footer {
  background: #071b39;
  color: rgba(255,255,255,.8);
}
.footer-grid {
  padding: 8px 0 4px;
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 0.25rem;
}
.site-footer .footer-grid > div:first-child .footer-logo {
  margin-bottom: 0;
}
.site-footer .footer-tagline {
  margin-top: 1em;
  max-width: 36rem;
}
.site-footer h4 { color: #fff; margin-bottom: 0.1rem; }
.site-footer a { display: block; margin-bottom: 0.07rem; color: rgba(255,255,255,.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 2px 0 3px;
  font-size: 0.92rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-delay { transition-delay: .12s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .mobile-stack,
  .footer-grid,
  .cta-box,
  .trust-grid { grid-template-columns: 1fr; }
  .roadmap-grid,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-items { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .site-header .brand {
    position: static;
    top: auto;
    transform: none;
    width: auto;
    height: auto;
    align-self: center;
  }
  .nav-wrap {
    padding-left: 0;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .main-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .nav-actions {
    grid-column: 1 / -1;
  }
  .nav-toggle { display: inline-flex; }
  .main-nav,
  .nav-actions {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 1rem;
  }
  .main-nav.open,
  .nav-actions.open { display: flex; }
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: .8rem;
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .shell-body { grid-template-columns: 1fr; }
  .shell-sidebar { display: none; }
}
@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .container { width: min(100% - 24px, 1180px); }
  .feature-grid,
  .roadmap-grid,
  .mini-stats { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .btn, .btn-lg { width: 100%; }
  .footer-logo {
    height: var(--logo-height-sm);
  }
  .site-header .brand-logo {
    height: 198px;
  }
}
