
:root {
  --navy-950: #061124;
  --navy-900: #08132b;
  --navy-800: #0b1832;
  --ink: #07142f;
  --muted: #5f6b7d;
  --blue: #2563eb;
  --blue-2: #0d6bff;
  --cyan: #00c2d1;
  --green: #22d69a;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #dfe6ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 20, 47, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,230,239,.8);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 248px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: 14px; color: #334155; }
.nav a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(37,99,235,.28);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 18px 44px rgba(37,99,235,.32); background: #1e55d6; }
.button-secondary { background: #fff; color: var(--blue); box-shadow: none; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 14px; }

.hero {
  padding: 92px 0 74px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(37,99,235,.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -15% -38% auto;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(34,214,154,.18), transparent 58%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .88fr;
  align-items: center;
  gap: 62px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.hero-text {
  font-size: 20px;
  max-width: 680px;
  color: #344054;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.08);
  color: #244067;
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(223,230,239,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.panel-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  margin-bottom: 22px;
}
.panel-topline img { width: 38px; height: 38px; }
.status-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  margin-top: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
}
.status-card span { display: block; color: var(--muted); font-size: 14px; }
.status-card b {
  color: var(--blue);
  background: rgba(37,99,235,.08);
  padding: 6px 10px;
  border-radius: 999px;
}
.status-card.success b {
  color: #077a55;
  background: rgba(34,214,154,.12);
}

.logo-strip {
  padding: 34px 0;
  background: var(--navy-950);
  color: #fff;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.strip-grid div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
}
.strip-grid strong { display: block; font-size: 18px; }
.strip-grid p { grid-column: 2; color: #c9d4e6; font-size: 14px; margin: 2px 0 0; }
.mini-icon {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border: 1px solid rgba(34,214,154,.35);
}

.section { padding: 96px 0; }
.muted { background: var(--gray-50); }
.two-column {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
}
.body-copy p {
  color: #475467;
  font-size: 18px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card, .price-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 44px rgba(7,20,47,.06);
}
.feature-card p, .price-card p, .pricing-note { color: var(--muted); }

.dark-section {
  background:
    radial-gradient(circle at 75% 20%, rgba(37,99,235,.34), transparent 38%),
    linear-gradient(135deg, #061124 0%, #0b1832 100%);
  color: #fff;
}
.dark-section h2 { color: #fff; }
.dark-section p { color: #d8e2f2; }
.blue { color: #5d94ff; }
.dark-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.proof-list div {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.06);
}
.proof-list strong { display: block; margin-bottom: 6px; }
.proof-list span { color: #c7d4e9; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card.featured {
  border-color: rgba(37,99,235,.38);
  box-shadow: 0 24px 70px rgba(37,99,235,.16);
  transform: translateY(-10px);
}
.plan {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 900;
  color: var(--blue) !important;
}
.price-card h3 {
  font-size: 44px;
  letter-spacing: -0.055em;
  margin-bottom: 12px;
}
.price-card h3 span {
  font-size: 18px;
  color: var(--muted);
  letter-spacing: normal;
}
.price-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.price-card li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid var(--gray-100);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.pricing-note { font-size: 14px; margin-top: 22px; }

.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.contact-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  background: var(--navy-950);
  color: #fff;
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-card p { color: #cfdbed; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: #dce7f6;
  font-size: 14px;
  font-weight: 800;
}
.contact-form label:nth-child(4),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  outline: none;
}
select option { color: #061124; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.56); }
.form-note {
  margin: -2px 0 0;
  color: #92a3bb !important;
  font-size: 13px;
}

.site-footer {
  background: #050c1a;
  color: #cbd5e1;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img { width: 268px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid,
  .two-column,
  .dark-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .strip-grid,
  .feature-grid,
  .pricing-grid,
  .proof-list {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { height: 70px; }
  .brand img { width: 190px; }
  .button-small { display: none; }
  .hero { padding-top: 62px; }
  .strip-grid,
  .feature-grid,
  .pricing-grid,
  .proof-list,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label:nth-child(4),
  .contact-form button,
  .form-note {
    grid-column: auto;
  }
  .contact-card { padding: 30px; border-radius: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
