:root {
  --navy-950: #07141d;
  --navy-900: #0a1b25;
  --navy-850: #0d2633;
  --navy-800: #123443;
  --ink: #10232e;
  --muted: #60717d;
  --line: #d9e2e7;
  --light: #f3f6f8;
  --white: #ffffff;
  --blue: #2489ff;
  --teal: #16b895;
  --red: #ef4457;
  --orange: #f3a244;
  --violet: #8869f4;
  --shadow: 0 24px 65px rgba(7, 20, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-family: var(--font-geist-sans), Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #70b4ff;
  outline-offset: 3px;
}

.wrap {
  width: min(1320px, calc(100% - 56px));
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 22, 31, 0.94);
  box-shadow: 0 8px 30px rgba(4, 13, 18, 0.12);
  backdrop-filter: blur(18px);
}

.nav-inner {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--white);
  padding: 7px 10px;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 25px;
  color: #c6d3da;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  transition: color 150ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--white);
}

.mobile-menu-cta {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.nav-cta {
  min-height: 39px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  padding: 9px 15px;
  font-size: 14px;
}

.button {
  padding: 14px 18px;
}

.cta-envelope {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform: translateY(-1px);
}

.nav-cta .cta-envelope {
  width: 15px;
  height: 15px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(36, 137, 255, 0.25);
}

.button-primary:hover {
  background: #127cf3;
  box-shadow: 0 16px 34px rgba(36, 137, 255, 0.32);
}

.button-secondary {
  background: var(--white);
  color: var(--navy-950);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 80%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: -220px;
  right: -110px;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(20, 99, 125, 0.62), rgba(10, 27, 37, 0) 68%);
}

.hero-orb-two {
  bottom: -340px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(22, 184, 149, 0.09), rgba(10, 27, 37, 0) 70%);
}

.hero-grid {
  display: grid;
  min-height: 700px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
  padding-block: 92px 84px;
}

.eyebrow {
  margin-bottom: 13px;
  color: #71b7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(46px, 5.1vw, 72px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #becdd5;
  font-size: 20px;
  line-height: 1.65;
}

.badge-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-row {
  margin-top: 28px;
}

.badge {
  border: 1px solid #294552;
  border-radius: 999px;
  background: #142c38;
  color: #d6e2e8;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 800;
}

.badge-teal {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.badge-blue {
  border-color: #7abaff;
  background: #e8f3ff;
  color: #1265b5;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  max-width: 640px;
  margin: 24px 0 0;
  color: #91a6b1;
  font-size: 15px;
  line-height: 1.6;
}

.product-shell {
  border: 1px solid #2a4754;
  border-radius: 22px;
  background: rgba(14, 39, 51, 0.92);
  padding: 18px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  transform: rotate(0.8deg);
}

.window-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid #2b4b59;
  border-radius: 11px;
  background: #173b49;
  padding: 0 13px;
  color: #a5bbc5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red { background: var(--red); }
.dot-orange { background: var(--orange); }
.dot-teal { background: var(--teal); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-block: 14px;
}

.metric {
  border: 1px solid #294653;
  border-radius: 12px;
  background: #122e3a;
  padding: 14px;
}

.metric strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.metric span {
  color: #91a8b3;
  font-size: 12px;
}

.metric-red { color: var(--red); }
.metric-orange { color: var(--orange); }
.metric-blue { color: var(--blue); }

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.module {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 10px;
  border: 1px solid #294653;
  border-radius: 12px;
  background: #122e3a;
  padding: 11px;
}

.module-icon,
.number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
}

.module-icon {
  width: 27px;
  height: 27px;
}

.blue, .number-blue { background: var(--blue); }
.teal, .number-teal { background: var(--teal); }
.red, .number-red { background: var(--red); }
.orange { background: var(--orange); }
.violet { background: var(--violet); }
.sky { background: #2a9ee8; }

.module strong,
.module small {
  display: block;
}

.module strong {
  font-size: 14px;
}

.module small {
  margin-top: 2px;
  color: #91a8b3;
  font-size: 12px;
}

.section {
  padding-block: 94px;
}

.section-light { background: var(--light); }
.section-white { background: var(--white); }
.section-muted { background: #edf2f5; }
.section-dark { background: var(--navy-950); color: var(--white); }

.section-heading {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-heading h2,
.section-dark h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-lead {
  max-width: 770px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-dark .section-lead {
  color: #b7c7cf;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  padding: 23px;
  box-shadow: 0 8px 25px rgba(7, 20, 29, 0.045);
}

.number {
  width: 35px;
  height: 35px;
  margin-bottom: 18px;
}

.feature-card h3,
.timeline-step h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
}

.feature-card p,
.timeline-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 44px;
}

.timeline-step {
  position: relative;
  min-height: 194px;
  border: 1px solid #2b4855;
  border-radius: 14px;
  background: var(--navy-850);
  color: var(--white);
  padding: 21px 18px;
}

.timeline-step > span {
  color: #70b6ff;
  font-size: 12px;
  font-weight: 900;
}

.timeline-step > b {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -31px;
  width: 27px;
  height: 52px;
  background: var(--blue);
  clip-path: polygon(0 0, 42% 0, 100% 50%, 42% 100%, 0 100%, 58% 50%);
  color: transparent;
  font-size: 0;
  transform: translateY(-50%);
}

.timeline-step > b::after {
  content: none;
}

.ai-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 58px;
}

.ai-grid h2 {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.check-item {
  display: flex;
  gap: 12px;
  border: 1px solid #284451;
  border-radius: 13px;
  background: #122c38;
  padding: 14px;
}

.check-item > span {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.check-item p {
  margin-bottom: 0;
  color: #b8c7cf;
  font-size: 15px;
}

.check-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 16px;
}

.chat-card {
  border: 1px solid #2a4754;
  border-radius: 20px;
  background: #102a36;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  border: 1px solid #2a4957;
  border-radius: 10px;
  background: #173b49;
  padding: 11px 13px;
  color: #a7bbc5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.chat-header strong {
  color: #76baff;
}

.chat-bubble {
  margin-block: 12px;
  border-radius: 13px;
  padding: 14px 16px;
}

.chat-user {
  max-width: 84%;
  margin-left: auto;
  background: #193946;
  color: var(--white);
  font-size: 15px;
}

.chat-answer {
  max-width: 92%;
  background: #eef6f9;
  color: var(--ink);
  font-size: 15px;
}

.chat-answer ul {
  margin-block: 8px 12px;
  padding-left: 18px;
}

.chat-answer button {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.chat-card > small {
  color: #8fa7b2;
  font-size: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.13fr 0.72fr;
  align-items: stretch;
  gap: 18px;
}

.pricing-heading {
  margin-inline: auto;
  text-align: center;
}

.pricing-heading .section-lead {
  margin-inline: auto;
}

.pricing-grid.pricing-grid-single {
  max-width: 760px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  padding: 26px;
}

.price-card {
  position: relative;
}

.price-featured {
  border: 3px solid var(--teal);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.featured-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--teal);
  padding: 6px 9px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-amount {
  margin-bottom: 25px;
}

.price-amount strong,
.price-amount span {
  display: block;
}

.price-amount strong {
  font-size: 53px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-amount span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.price-featured .price-amount span {
  color: #afc2cb;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}

.price-featured ul {
  color: #c2d0d7;
}

.price-card li::before {
  margin-right: 9px;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.price-button {
  width: 100%;
  margin-top: 24px;
}

.pricing-note,
.timeline-note {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.timeline-step {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.timeline-step h3 {
  margin-top: 13px;
}

.timeline-step p {
  font-size: 15px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 16px 18px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.faq-grid summary::marker {
  color: var(--blue);
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  background: linear-gradient(120deg, var(--navy-950), #123e51);
  color: var(--white);
  padding-block: 84px;
  text-align: center;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 25px;
  color: #bed0d9;
  font-size: 18px;
}

.site-footer {
  background: #061018;
  color: #91a5af;
  padding-block: 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer-inner > img {
  width: 135px;
  border-radius: 9px;
  background: var(--white);
  padding: 7px 9px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: #d4e0e5;
  font-size: 14px;
}

.footer-inner span,
.footer-inner small,
.footer-links {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-inner small {
  grid-column: 2 / -1;
}

.legal-hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(19, 112, 143, 0.42), transparent 32%),
    var(--navy-950);
  color: var(--white);
  padding-block: 84px 96px;
}

.legal-hero-inner {
  max-width: 850px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #bed0d9;
  font-size: 19px;
}

.legal-section {
  padding-block: 72px 96px;
}

.legal-content {
  max-width: 900px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #40545f;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 7px;
  padding-left: 22px;
}

.legal-content a,
.consent-row a {
  color: #126fc7;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-shell,
  .chat-card {
    width: min(680px, 100%);
  }

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

  .feature-grid article:last-child {
    grid-column: 1 / -1;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-step > b {
    display: none;
  }

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

}

@media (max-width: 780px) {
  .nav-inner {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #294450;
    border-radius: 0 0 14px 14px;
    background: rgba(8, 22, 31, 0.99);
    padding: 10px 16px 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid #1f3540;
    padding: 13px 5px;
  }

  .nav-cta {
    margin-left: auto;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 4px;
    border: 1px solid #2a4653;
    border-radius: 10px;
    background: #102b37;
    padding: 0;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #d5e1e6;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 76px 68px;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 64px);
  }

  .section {
    padding-block: 76px;
  }

  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .price-featured {
    transform: none;
  }

}

@media (max-width: 590px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 114px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links .mobile-menu-cta {
    display: flex;
    min-height: 44px;
    justify-content: center;
    gap: 9px;
    margin-top: 10px;
    border: 0;
    border-radius: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 11px 14px;
    font-weight: 850;
  }

  .menu-button {
    margin-left: auto;
  }

  .hero-grid {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .product-shell {
    padding: 12px;
  }

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

  .metric {
    padding: 10px;
  }

  .module-grid,
  .feature-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .feature-grid article:last-child {
    grid-column: auto;
  }

  .module {
    min-height: 62px;
  }

  .section-heading h2,
  .section-dark h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .price-amount strong {
    font-size: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner small {
    grid-column: auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
