:root {
  --ink: #07111f;
  --navy: #0b1730;
  --navy2: #10223f;
  --blue: #2f6fff;
  --blue2: #1f5be6;
  --cyan: #5ee7ff;
  --text: #101828;
  --muted: #667085;
  --line: #dfe7f2;
  --soft: #f6f8fb;
  --white: #ffffff;
  --green: #12b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --shadow: 0 18px 55px rgba(7, 17, 31, .10);
  --radius: 18px;
  --max: 1180px;
}

* { 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(--text);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 3rem); }
h3 { font-size: 1.12rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--blue); color: white; padding: 10px 14px; border-radius: 999px; }
.skip-link:focus { top: 16px; }

.topbar {
  background: #061225;
  color: rgba(255,255,255,.75);
  font-size: .86rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar a { color: white; font-weight: 760; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  overflow: hidden;
}
.brand-mark svg { width: 42px; height: 42px; }
.brand-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.32rem;
  letter-spacing: -.05em;
  font-weight: 900;
}
.brand-text span:first-child { color: var(--navy); }
.brand-text span:last-child { color: var(--blue); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #344054;
  font-weight: 760;
  font-size: .94rem;
}
.nav a:hover,
.nav a.active {
  color: var(--blue);
  background: #eef4ff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 6px;
}
.login-link { font-weight: 850; color: #344054; }
.login-link:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 13px 17px;
  font-weight: 850;
  line-height: 1;
  transition: .16s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 10px 24px rgba(47,111,255,.20); }
.btn-primary:hover { background: var(--blue2); }
.btn-outline { background: white; color: var(--navy); border-color: #cfd9e8; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-dark { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.16); }
.btn-dark:hover { background: rgba(255,255,255,.13); border-color: rgba(94,231,255,.42); }

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  margin-left: auto;
}
.mobile-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 999px; }

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(94,231,255,.12), transparent 28rem),
    linear-gradient(135deg, #07111f 0%, #0b1730 58%, #091120 100%);
  color: white;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 48px;
  align-items: center;
  min-height: 650px;
  padding: 78px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; border-radius: 999px; background: currentColor; }
.hero h1 span { display: block; color: #83afff; }
.hero-subtitle { margin-top: 18px; color: rgba(255,255,255,.92); font-size: 1.18rem; font-weight: 760; }
.hero-copy { margin-top: 18px; color: rgba(255,255,255,.74); font-size: 1.06rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.proof-card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
}
.proof-card strong { display: block; color: white; font-size: .92rem; }
.proof-card span { display: block; margin-top: 4px; color: rgba(255,255,255,.62); font-size: .82rem; }

.product {
  background: white;
  color: var(--text);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
  overflow: hidden;
}
.product-header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}
.product-header strong { color: var(--navy); }
.product-header span { color: var(--muted); font-size: .82rem; font-weight: 740; }
.product-body { padding: 18px; }
.product-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-kpi {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}
.product-kpi span { display: block; color: var(--muted); font-size: .72rem; font-weight: 760; }
.product-kpi strong { display: block; margin-top: 4px; font-size: 1.45rem; letter-spacing: -.045em; }
.product-kpi small { color: var(--green); font-weight: 820; font-size: .72rem; }
.product-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 10px;
  margin-top: 10px;
}
.product-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  background: white;
}
.product-panel h3 { font-size: .9rem; margin-bottom: 12px; }
.status-list { display: grid; gap: 9px; }
.status-row { display: flex; justify-content: space-between; color: #344054; font-weight: 720; font-size: .84rem; }
.status-row i { display: inline-block; width: 8px; height: 8px; border-radius: 999px; margin-right: 7px; }
.vendor-bars { display: grid; gap: 9px; }
.vendor-row { display: grid; grid-template-columns: 86px 1fr 48px; gap: 9px; align-items: center; color: #344054; font-weight: 720; font-size: .78rem; }
.track { height: 8px; background: #edf2f8; border-radius: 999px; overflow: hidden; }
.track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.activity {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 14px;
  padding: 15px;
}
.activity h3 { font-size: .9rem; margin-bottom: 11px; }
.case-list { display: grid; gap: 9px; }
.case {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
}
.case strong { display: block; font-size: .84rem; }
.case span { color: var(--muted); font-size: .78rem; }

.section { padding: 82px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: linear-gradient(135deg, #07111f, var(--navy2)); color: white; }
.section-dark p { color: rgba(255,255,255,.70); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { margin-top: 12px; font-size: 1.05rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card p { margin-top: 10px; }
.dark-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 24px;
}
.dark-card p { margin-top: 10px; color: rgba(255,255,255,.70); }
.num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 15px;
}
.dark-card .num { background: rgba(255,255,255,.10); color: var(--cyan); }

.metric-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.metric-card strong { display: block; font-size: 1.85rem; color: var(--blue); letter-spacing: -.05em; }
.metric-card span { display: block; margin-top: 5px; font-weight: 900; }
.metric-card p { margin-top: 9px; font-size: .92rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checks { margin-top: 18px; display: grid; gap: 11px; }
.checks li { position: relative; padding-left: 29px; color: #344054; font-weight: 720; }
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e8f8f1;
  color: var(--green);
  font-weight: 900;
  font-size: .74rem;
}

.page-hero {
  color: white;
  background:
    radial-gradient(circle at 84% 12%, rgba(94,231,255,.12), transparent 26rem),
    linear-gradient(135deg, #07111f, #0b1730);
  padding: 74px 0;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: end;
}
.page-hero h1 { font-size: clamp(2.3rem, 4.4vw, 4.05rem); max-width: 880px; }
.page-hero p { margin-top: 18px; color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 780px; }
.page-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 22px;
}
.page-card strong { display: block; font-size: 1.55rem; letter-spacing: -.05em; }
.page-card span { color: rgba(255,255,255,.70); display: block; margin-top: 6px; }

.cta {
  background: linear-gradient(135deg, #07111f, var(--navy2));
  color: white;
  padding: 70px 0;
}
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta p { color: rgba(255,255,255,.72); margin-top: 10px; max-width: 630px; }

.contact-box {
  color: white;
  background: var(--navy);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-box p { color: rgba(255,255,255,.72); margin-top: 10px; }
.big-email { display: inline-block; color: var(--cyan); font-size: clamp(1.55rem, 3vw, 2.45rem); font-weight: 900; letter-spacing: -.05em; margin: 20px 0; }
.form { display: grid; gap: 12px; }
.form input, .form textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 13px; font: inherit; outline: none; }
.form textarea { min-height: 128px; resize: vertical; }
.form input:focus, .form textarea:focus { border-color: var(--blue); }

.footer {
  background: #061225;
  color: white;
  padding: 52px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 34px; }
.footer .brand-text span:first-child { color: white; }
.footer p { color: rgba(255,255,255,.64); }
.footer-copy { margin-top: 14px; max-width: 420px; }
.footer h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; }
.footer a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.66); font-weight: 720; }
.footer a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.48);
  font-size: .9rem;
}

@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; }
  .product { max-width: 820px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .page-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  .topbar { display: none; }
  .header-inner { height: 72px; }
  .mobile-toggle { display: block; }
  .nav {
    display: none;
    position: fixed;
    left: 20px;
    right: 20px;
    top: 72px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-actions { display: none; }
  .product-kpis, .product-grid, .split, .cta-inner { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero-inner { min-height: auto; padding: 58px 0; }
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .vendor-row { grid-template-columns: 76px 1fr 44px; }
  .footer-bottom { flex-direction: column; }
}
