:root {
  --navy-950: #06162f;
  --navy-900: #071b3d;
  --navy-850: #0a234d;
  --blue-600: #006cff;
  --blue-500: #1d8bff;
  --blue-100: #e8f3ff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --page: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --line: #e5edf7;
  --line-strong: #d6e3f2;
  --success: #12b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 14px 34px rgba(15, 23, 42, 0.1);
  --shadow-blue: 0 20px 60px rgba(0, 108, 255, 0.24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover,
a:focus {
  color: var(--blue-500);
}

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 139, 255, 0.34);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  width: min(var(--max), calc(100% - 48px));
}

.site-header {
  background: rgba(6, 22, 47, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 26px;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

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

.brand-text {
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand-text span span {
  color: #dcecff;
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 28px;
  justify-content: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #ffffff;
}

.nav-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.nav-login {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.nav-login:hover,
.nav-login:focus {
  color: #ffffff;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  margin-left: auto;
  padding: 9px;
  width: 44px;
}

.nav-toggle span {
  background: #ffffff;
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 14px 28px rgba(0, 108, 255, 0.28);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus {
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 108, 255, 0.35);
}

.button-secondary {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus {
  background: #f4f9ff;
  color: var(--blue-600);
}

.button-ghost {
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4px;
}

.button-ghost:hover,
.button-ghost:focus {
  color: #ffffff;
}

.button-light {
  background: #ffffff;
  color: var(--navy-950);
}

.button-light:hover,
.button-light:focus {
  color: var(--blue-600);
}

.button-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.66);
  color: #ffffff;
}

.button-outline-light:hover,
.button-outline-light:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.play-dot {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.play-dot::before {
  border-bottom: 6px solid transparent;
  border-left: 9px solid #ffffff;
  border-top: 6px solid transparent;
  content: "";
  display: block;
  margin-left: 2px;
}

.hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(29, 139, 255, 0.24), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(0, 108, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #031022);
  color: #ffffff;
  overflow: hidden;
  padding: 72px 0 80px;
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(115deg, transparent 0 32%, rgba(29, 139, 255, 0.18) 32.2%, transparent 32.6% 100%),
    linear-gradient(155deg, transparent 0 45%, rgba(29, 139, 255, 0.13) 45.2%, transparent 45.6% 100%),
    linear-gradient(25deg, transparent 0 62%, rgba(0, 108, 255, 0.14) 62.1%, transparent 62.5% 100%);
  content: "";
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(6, 22, 47, 0) 0%, rgba(6, 22, 47, 0.55) 100%),
    radial-gradient(circle at 26% 72%, rgba(29, 139, 255, 0.2), transparent 18%);
  bottom: 0;
  content: "";
  height: 220px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-network {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.node {
  background: #1d8bff;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(29, 139, 255, 0.9);
  display: block;
  height: 7px;
  opacity: 0.8;
  position: absolute;
  width: 7px;
}

.node-a { left: 8%; top: 68%; }
.node-b { left: 23%; top: 78%; }
.node-c { left: 37%; top: 63%; }
.node-d { left: 65%; top: 18%; }
.node-e { left: 89%; top: 34%; }

.hero-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  min-height: 650px;
  position: relative;
  z-index: 2;
}

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

.eyebrow,
.section-kicker {
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8cc8ff;
}

.hero h1,
.contact-hero h1 {
  font-size: 64px;
  line-height: 1.06;
  margin: 0;
}

.hero h1 span {
  color: #4ea4ff;
  display: inline;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.68;
  margin: 28px 0 0;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.hero-trust li {
  padding-left: 24px;
  position: relative;
}

.hero-trust li::before {
  background: linear-gradient(135deg, var(--blue-600), #5fd0ff);
  border-radius: 999px;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 9px;
}

.hero-visual {
  min-width: 0;
}

.dashboard-preview {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: var(--shadow-blue), 0 28px 80px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.dashboard-preview::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.dashboard-sidebar {
  background: linear-gradient(180deg, #081a36, #061225);
  color: rgba(255, 255, 255, 0.7);
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 13px;
}

.mini-brand {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.side-item {
  border-radius: 8px;
  display: block;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-item.is-active {
  background: var(--blue-600);
  color: #ffffff;
}

.dashboard-main {
  background: linear-gradient(180deg, #fbfdff, #ffffff);
  display: grid;
  gap: 18px;
  padding: 20px 24px 24px;
}

.dashboard-topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.search-pill,
.user-pill,
.sync-pill {
  background: #f5f8fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #718096;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
}

.sync-pill {
  background: #eaf7f1;
  color: #0f8b59;
}

.dashboard-title-row {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.dash-kicker {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-title-row h2 {
  font-size: 22px;
  line-height: 1.1;
  margin: 3px 0 0;
}

.metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card,
.map-panel,
.alarm-panel,
.compact-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.metric-card {
  display: grid;
  gap: 5px;
  min-height: 90px;
  padding: 14px;
}

.metric-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.metric-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.metric-card small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.metric-card .critical {
  color: var(--danger);
}

.sparkline {
  align-items: end;
  display: flex;
  gap: 3px;
  height: 24px;
}

.sparkline i {
  background: #9fe6c5;
  border-radius: 999px;
  display: block;
  flex: 1;
  height: 45%;
}

.sparkline i:nth-child(2) { height: 68%; }
.sparkline i:nth-child(3) { height: 52%; }
.sparkline i:nth-child(4) { height: 75%; }
.sparkline i:nth-child(5) { height: 62%; }

.dashboard-panels {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
}

.map-panel,
.alarm-panel,
.compact-panel {
  padding: 16px;
}

.panel-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.panel-heading h3,
.compact-panel h3 {
  font-size: 13px;
  line-height: 1.2;
  margin: 0;
}

.panel-heading span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.map-visual {
  background:
    radial-gradient(circle at 24% 44%, rgba(0, 108, 255, 0.12) 0 7%, transparent 8%),
    radial-gradient(circle at 62% 28%, rgba(0, 108, 255, 0.1) 0 8%, transparent 9%),
    radial-gradient(circle at 74% 62%, rgba(0, 108, 255, 0.1) 0 9%, transparent 10%),
    linear-gradient(120deg, rgba(229, 237, 247, 0.75), rgba(245, 250, 255, 0.88));
  border-radius: 10px;
  height: 174px;
  overflow: hidden;
  position: relative;
}

.map-visual::before {
  background:
    linear-gradient(15deg, transparent 0 28%, rgba(0, 108, 255, 0.14) 28.3%, transparent 28.8% 100%),
    linear-gradient(150deg, transparent 0 40%, rgba(0, 108, 255, 0.12) 40.2%, transparent 40.7% 100%),
    linear-gradient(75deg, transparent 0 62%, rgba(18, 185, 129, 0.14) 62.2%, transparent 62.6% 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.map-dot {
  background: var(--blue-600);
  border: 3px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(0, 108, 255, 0.16);
  height: 13px;
  position: absolute;
  width: 13px;
}

.dot-1 { left: 20%; top: 40%; }
.dot-2 { left: 34%; top: 58%; background: var(--success); box-shadow: 0 0 0 6px rgba(18, 185, 129, 0.16); }
.dot-3 { left: 55%; top: 36%; }
.dot-4 { left: 70%; top: 52%; background: var(--success); box-shadow: 0 0 0 6px rgba(18, 185, 129, 0.16); }
.dot-5 { left: 86%; top: 48%; }

.alarm-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.alarm-list li {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 10px minmax(0, 1fr) auto;
}

.alarm-list strong {
  color: var(--ink-soft);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alarm-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.alarm-dot {
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.alarm-dot.red { background: var(--danger); }
.alarm-dot.amber { background: var(--warning); }

.dashboard-bottom {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.bar-row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(76px, 0.8fr) minmax(60px, 1fr) 36px;
  margin-top: 12px;
}

.bar-row span,
.bar-row b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.bar-row i {
  background: linear-gradient(90deg, var(--blue-600), #9bd3ff);
  border-radius: 999px;
  display: block;
  height: 5px;
  width: var(--bar);
}

.mini-chart {
  align-items: end;
  display: flex;
  gap: 7px;
  height: 90px;
  margin-top: 14px;
}

.mini-chart i {
  background: linear-gradient(180deg, #5bb0ff, var(--blue-600));
  border-radius: 999px 999px 3px 3px;
  display: block;
  flex: 1;
  height: var(--h);
  min-width: 7px;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 94px;
}

.section-muted {
  background: #f7fbff;
}

.trust-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: 32px 0 34px;
  text-align: center;
}

.trust-strip p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 24px;
}

.logo-row {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-row span {
  color: #9ca8b8;
  filter: grayscale(1);
  font-size: 18px;
  font-weight: 800;
  opacity: 0.76;
}

.feature-layout,
.testimonial-grid,
.contact-grid,
.contact-hero-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.section-copy h2,
.section-heading h2,
.testimonial-copy h2,
.contact-grid h2 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1.14;
  margin: 0;
}

.section-copy p,
.section-heading p,
.testimonial-copy p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  margin: 20px 0 0;
}

.inline-link {
  align-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 108, 255, 0.2);
  color: #ffffff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  margin-top: 30px;
  min-height: 46px;
  padding: 12px 18px;
}

.inline-link:hover,
.inline-link:focus {
  color: #ffffff;
  transform: translateY(-2px);
}

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

.feature-card,
.security-card,
.testimonial-card,
.lead-form,
.contact-methods,
.about-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.security-card {
  min-height: 220px;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover,
.security-card:hover {
  border-color: #c5dcf7;
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-icon,
.security-icon,
.step-icon {
  align-items: center;
  background: var(--blue-100);
  border: 1px solid #cde4ff;
  border-radius: 16px;
  color: var(--blue-600);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  width: 52px;
}

.feature-card h3,
.security-card h3,
.step-card h3 {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.feature-card p,
.security-card p,
.step-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.workflow-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.steps-row {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 54px;
  position: relative;
}

.steps-row::before {
  background: linear-gradient(90deg, transparent, #d6e6fb 12% 88%, transparent);
  content: "";
  height: 2px;
  left: 7%;
  position: absolute;
  right: 7%;
  top: 42px;
}

.step-card {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-icon {
  background: #f3f8ff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 108, 255, 0.12);
  height: 84px;
  margin-bottom: 20px;
  width: 84px;
}

.proof-section {
  background: #ffffff;
  padding: 0 0 96px;
}

.proof-card {
  align-items: center;
  background:
    radial-gradient(circle at 82% 28%, rgba(29, 139, 255, 0.32), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  color: #ffffff;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  padding: 44px 48px;
  position: relative;
}

.proof-card::before {
  background-image:
    linear-gradient(35deg, transparent 0 44%, rgba(29, 139, 255, 0.22) 44.1%, transparent 44.5% 100%),
    linear-gradient(145deg, transparent 0 66%, rgba(29, 139, 255, 0.16) 66.1%, transparent 66.5% 100%);
  content: "";
  inset: 0;
  opacity: 0.7;
  position: absolute;
}

.proof-card h2,
.proof-stats {
  position: relative;
  z-index: 1;
}

.proof-card h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}

.proof-stats {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.proof-stats div {
  margin: 0;
}

.proof-stats dt {
  color: #48a5ff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.proof-stats dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  margin: 9px 0 0;
}

.security-section {
  background: #f7fbff;
}

.security-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.testimonial-section {
  background: #ffffff;
  padding-top: 80px;
}

.testimonial-card {
  min-height: 360px;
  padding: 42px;
}

.quote-mark {
  color: #c6defb;
  display: block;
  font-size: 78px;
  font-weight: 900;
  height: 54px;
  line-height: 0.9;
}

.testimonial-card blockquote {
  color: var(--ink-soft);
  font-size: 21px;
  line-height: 1.58;
  margin: 22px 0 34px;
}

.testimonial-person {
  align-items: center;
  display: flex;
  gap: 14px;
}

.avatar {
  align-items: center;
  background: linear-gradient(135deg, #e8f3ff, #ffffff);
  border: 1px solid #cfe3fb;
  border-radius: 999px;
  color: var(--blue-600);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: var(--ink);
  font-size: 15px;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  background: #ffffff;
  padding: 24px 0 0;
}

.cta-card {
  align-items: center;
  background:
    radial-gradient(circle at 85% 28%, rgba(123, 207, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #005de8, #0a7cff 58%, #071b3d);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue);
  color: #ffffff;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 48px 66px;
  position: relative;
}

.cta-card::before {
  background-image:
    linear-gradient(35deg, transparent 0 35%, rgba(255, 255, 255, 0.18) 35.1%, transparent 35.6% 100%),
    linear-gradient(150deg, transparent 0 58%, rgba(255, 255, 255, 0.14) 58.1%, transparent 58.6% 100%);
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: 36px;
  line-height: 1.16;
  margin: 0;
  max-width: 560px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  margin: 14px 0 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer {
  background: linear-gradient(180deg, #07162f, #061225);
  color: rgba(255, 255, 255, 0.74);
  margin-top: -2px;
  padding: 66px 0 28px;
}

.footer-main {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(230px, 1.45fr) repeat(4, minmax(120px, 0.7fr));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  margin: 20px 0 0;
  max-width: 310px;
}

.footer-column {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-column h2 {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.footer-column a:hover,
.footer-column a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #ffffff;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.contact-hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(29, 139, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
  color: #ffffff;
  padding: 96px 0;
}

.contact-hero-grid {
  align-items: start;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  margin: 20px 0 0;
  max-width: 640px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-methods a,
.contact-methods div {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  display: grid;
  gap: 4px;
  padding: 16px;
}

.contact-methods span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.lead-form label,
.lead-form .full {
  display: grid;
  gap: 8px;
}

.lead-form .full,
.form-status,
.form-note {
  grid-column: 1 / -1;
}

.lead-form span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  background: #fbfdff;
  border: 1px solid #cfddec;
  border-radius: 10px;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 13px;
  width: 100%;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(0, 108, 255, 0.16);
}

.honeypot {
  display: none;
}

.recaptcha-wrap {
  min-height: 78px;
  overflow: hidden;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.form-status {
  border-radius: 10px;
  display: none;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 14px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #e8f8f1;
  color: #12734e;
}

.form-status.is-error {
  background: #feeceb;
  color: #9b2925;
}

.about-card {
  padding: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: fade-up 680ms ease both;
  }

  .reveal-delay {
    animation-delay: 120ms;
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

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

  .dashboard-preview {
    max-width: 860px;
  }

  .feature-layout,
  .testimonial-grid,
  .contact-grid,
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .nav-shell {
    flex-wrap: wrap;
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: 0;
    order: 3;
  }

  .site-nav {
    background: rgba(6, 22, 47, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    gap: 0;
    grid-column: 1 / -1;
    justify-content: start;
    margin: 0 -18px;
    order: 5;
    padding: 10px 18px 18px;
    width: calc(100% + 36px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .nav-actions {
    margin-left: auto;
    order: 2;
  }

  .nav-login {
    display: none;
  }

  .hero {
    padding: 54px 0 66px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 52px;
  }

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

  .dashboard-panels,
  .dashboard-bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-row::before {
    display: none;
  }

  .proof-card,
  .cta-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-stats,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 68px 0;
  }

  .brand-text {
    font-size: 23px;
  }

  .nav-shell {
    gap: 12px;
  }

  .nav-cta {
    font-size: 13px;
    min-height: 40px;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    display: grid;
  }

  .button {
    white-space: normal;
  }

  .dashboard-preview {
    display: block;
    min-height: 0;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    gap: 14px;
    padding: 16px;
  }

  .dashboard-topbar,
  .dashboard-title-row {
    align-items: start;
    gap: 12px;
  }

  .dashboard-topbar {
    flex-direction: column;
  }

  .metric-grid,
  .feature-grid,
  .steps-row,
  .proof-stats,
  .security-grid,
  .lead-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-card,
  .security-card,
  .testimonial-card {
    min-height: 0;
    padding: 24px;
  }

  .section-copy h2,
  .section-heading h2,
  .testimonial-copy h2,
  .contact-grid h2,
  .cta-card h2 {
    font-size: 32px;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-card,
  .cta-card {
    padding: 32px 24px;
  }

  .proof-card h2 {
    font-size: 28px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 36px;
  }

  .map-visual {
    height: 150px;
  }

  .logo-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .bar-row {
    grid-template-columns: minmax(80px, 1fr) minmax(80px, 1fr);
  }

  .bar-row b {
    display: none;
  }
}
