:root {
  color-scheme: light;
  --ink: #071a2f;
  --muted: #4f6480;
  --soft: #eef6ff;
  --line: rgba(14, 47, 86, .12);
  --panel: rgba(255, 255, 255, .82);
  --panel-strong: #ffffff;
  --blue: #0b6bd3;
  --blue-2: #174cff;
  --cyan: #2fe7ff;
  --violet: #7c5cff;
  --navy: #061a35;
  --danger: #9a1d31;
  --success: #166534;
  --shadow: 0 28px 80px rgba(3, 31, 70, .16);
  --shadow-strong: 0 38px 110px rgba(3, 31, 70, .24);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 14% -12%, rgba(47, 231, 255, .24), transparent 32rem),
    radial-gradient(circle at 90% 0%, rgba(124, 92, 255, .16), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 46%, #ffffff 100%);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 26, 53, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 53, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -1;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--navy);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, .72);
  border-bottom: 1px solid rgba(7, 26, 47, .08);
}
.site-header.is-elevated { box-shadow: 0 12px 36px rgba(7, 26, 47, .08); }
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.site-menu { display: flex; align-items: center; gap: 8px; }
.site-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #29445f;
  font-weight: 700;
  font-size: 14px;
}
.site-menu a:hover, .site-menu a:focus-visible {
  background: rgba(11, 107, 211, .1);
  color: var(--blue);
  outline: none;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 92px 0 80px;
  overflow: hidden;
}
.section-grid { position: relative; }
.section-grid::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -260px;
  top: 8%;
  background: radial-gradient(circle, rgba(47, 231, 255, .28), transparent 64%);
  filter: blur(20px);
  z-index: -1;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
h1, h2, h3 { line-height: 1.02; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 84px); max-width: 870px; }
h2 { font-size: clamp(34px, 4.8vw, 58px); }
h3 { font-size: 24px; letter-spacing: -.03em; }
p { color: var(--muted); margin: 0; }
.hero-lede {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  max-width: 720px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); outline: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2) 58%, var(--violet));
  color: white;
  box-shadow: 0 18px 44px rgba(11, 107, 211, .28);
}
.btn-secondary {
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  border-color: rgba(11, 107, 211, .18);
  box-shadow: 0 12px 34px rgba(7, 26, 47, .08);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 38px 0 0;
}
.trust-strip div {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 36px rgba(7, 26, 47, .06);
}
.trust-strip dt { font-weight: 900; color: var(--ink); }
.trust-strip dd { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.hero-system { perspective: 1200px; }
.system-card {
  min-height: 585px;
  border-radius: 42px;
  padding: 24px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.92), rgba(221,241,255,.72)),
    radial-gradient(circle at 80% 10%, rgba(47, 231, 255, .34), transparent 26rem);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-strong);
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
}
.system-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, rgba(47,231,255,.3), transparent 28%, rgba(124,92,255,.18));
  pointer-events: none;
  opacity: .65;
}
.system-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  background: rgba(6, 26, 53, .92);
  color: white;
  border-radius: 22px;
  padding: 14px 16px;
  font-size: 14px;
}
.system-topline strong { margin-left: auto; color: var(--cyan); }
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(47, 231, 255, .16);
}
.orbit-map {
  position: relative;
  height: 365px;
  margin: 22px 0;
  border: 1px solid rgba(11, 107, 211, .14);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(11, 107, 211, .14), transparent 38%),
    linear-gradient(160deg, rgba(255,255,255,.74), rgba(232,244,255,.88));
}
.orbit-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(11, 107, 211, .32);
  stroke-width: 2.5;
  fill: none;
}
.core-pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  border-radius: 32px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 1000;
  letter-spacing: .08em;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--violet));
  box-shadow: 0 26px 70px rgba(11, 107, 211, .38);
}
.node {
  position: absolute;
  z-index: 3;
  padding: 10px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(11, 107, 211, .18);
  box-shadow: 0 16px 38px rgba(6, 26, 53, .16);
  font-weight: 900;
  font-size: 13px;
}
.node-a { top: 52px; left: 38px; }
.node-b { top: 95px; right: 48px; }
.node-c { bottom: 68px; left: 74px; }
.node-d { bottom: 54px; right: 62px; }
.node-e { top: 45%; left: 52%; }
.signal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.signal-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}
.signal-grid span { display: block; color: var(--muted); font-size: 13px; }
.signal-grid strong { font-size: 18px; color: var(--ink); }
.problem-band {
  padding: 82px 0;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.problem-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(47, 231, 255, .18), transparent 28rem),
    radial-gradient(circle at 90% 30%, rgba(124, 92, 255, .18), transparent 28rem);
}
.problem-layout { position: relative; max-width: 940px; }
.problem-layout h2 { color: white; margin-bottom: 22px; }
.problem-layout p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 19px; }
.section-head { max-width: 810px; margin-bottom: 42px; }
.section-head p:not(.eyebrow) { margin-top: 16px; font-size: 18px; }
.service-grid, .industry-grid, .backend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card, .industry-card, .backend-grid article, .workflow-step, .lead-form, .contact-meter div, details {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.service-card {
  min-height: 255px;
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(47,231,255,.22), transparent 70%);
}
.card-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(11, 107, 211, .1);
  color: var(--blue);
  font-weight: 1000;
  margin-bottom: 26px;
}
.service-card h3 { margin-bottom: 13px; }
.systems { background: linear-gradient(180deg, rgba(6,26,53,.03), transparent); }
.systems-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 48px; align-items: start; }
.workflow-board { display: grid; gap: 14px; }
.workflow-step {
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  align-items: start;
}
.workflow-step b {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}
.workflow-step span { font-size: 20px; font-weight: 900; color: var(--ink); }
.workflow-step p { margin-top: 4px; }
.industry-grid { grid-template-columns: repeat(4, 1fr); }
.industry-card, .backend-grid article {
  border-radius: var(--radius);
  padding: 26px;
}
.industry-card h3, .backend-grid h3 { margin-bottom: 12px; }
.backend-panel {
  background:
    radial-gradient(circle at 82% 14%, rgba(47,231,255,.16), transparent 30rem),
    linear-gradient(180deg, #f8fbff, #edf6ff);
}
.backend-layout { display: grid; gap: 18px; }
.backend-grid { grid-template-columns: repeat(4, 1fr); }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92em;
  color: #043c85;
  background: rgba(11,107,211,.08);
  padding: .12rem .32rem;
  border-radius: 7px;
}
.proof {
  background: var(--navy);
  color: white;
}
.proof-layout { display: grid; grid-template-columns: .86fr 1fr; gap: 40px; align-items: start; }
.proof h2 { color: white; }
.proof-list { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.proof-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
}
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-copy { position: sticky; top: 112px; }
.contact-copy h2 { margin-bottom: 18px; }
.contact-meter { display: grid; gap: 12px; margin-top: 28px; }
.contact-meter div { border-radius: 20px; padding: 16px; }
.contact-meter span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }
.contact-meter strong { display: block; color: var(--ink); font-size: 20px; margin-top: 4px; }
.lead-form {
  border-radius: 34px;
  padding: 28px;
  background: rgba(255,255,255,.9);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 8px; font-weight: 900; color: var(--ink); margin-bottom: 16px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(7, 26, 47, .15);
  background: #f8fbff;
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; min-height: 142px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(11, 107, 211, .7);
  background: white;
  box-shadow: 0 0 0 4px rgba(11, 107, 211, .12);
}
.trap-field { position: absolute; left: -100vw; opacity: 0; pointer-events: none; }
.form-status { min-height: 28px; margin-top: 14px; font-weight: 800; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.faq-list { display: grid; gap: 14px; }
details {
  border-radius: 22px;
  padding: 20px 22px;
}
summary { cursor: pointer; font-weight: 900; font-size: 18px; }
details p { margin-top: 14px; }
.site-footer {
  padding: 54px 0;
  background: #f7fbff;
  border-top: 1px solid var(--line);
}
.footer-layout { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 28px; align-items: start; }
.footer-layout p { margin-top: 14px; max-width: 440px; }
.footer-layout nav { display: grid; gap: 10px; }
.footer-layout a { color: var(--blue); font-weight: 800; }
.footer-note { justify-self: end; text-align: right; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1080px) {
  .hero-layout, .systems-layout, .contact-layout, .proof-layout { grid-template-columns: 1fr; }
  .hero-system { max-width: 640px; }
  .service-grid, .industry-grid, .backend-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-copy { position: static; }
}
@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .hero { padding-top: 64px; min-height: auto; }
  .hero-layout { gap: 40px; }
  .nav-toggle { display: inline-flex; }
  .site-menu {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .site-menu.is-open { display: flex; }
  .site-menu a { padding: 14px 16px; }
  .trust-strip, .service-grid, .industry-grid, .backend-grid, .form-grid, .footer-layout { grid-template-columns: 1fr; }
  .footer-note { justify-self: start; text-align: left; }
  .system-card { min-height: auto; padding: 16px; border-radius: 30px; }
  .orbit-map { height: 320px; }
  .signal-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .workflow-step { grid-template-columns: 1fr; }
  .workflow-step b { margin-bottom: 12px; }
}
.legal { max-width: 850px; }
.legal h1 { margin-bottom: 22px; }
.legal h2 { margin: 34px 0 10px; font-size: 28px; }
.admin-shell { max-width: 1100px; }
.lead-table-wrap { margin-top: 28px; overflow-x: auto; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); background: white; }
.lead-table { width: 100%; border-collapse: collapse; min-width: 920px; }
.lead-table th, .lead-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.lead-table th { background: #edf6ff; color: var(--ink); }
.lead-table td { color: var(--muted); font-size: 14px; }
