:root {
  --ink: #071a3d;
  --muted: #61718a;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --purple: #7c3aed;
  --coral: #ff4d5a;
  --green: #14b981;
  --paper: #f5f9ff;
  --line: #dbe7f6;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 26px 70px rgba(43, 72, 118, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(6, 182, 212, 0.08), transparent 30%, rgba(255, 77, 90, 0.07) 72%, transparent),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 48%, #f8fbff 100%);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(219, 231, 246, 0.86);
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(18px);
}

.brand, .nav-actions, .actions, .mini-proof {
  display: flex;
  align-items: center;
}

.brand { gap: 11px; font-size: 24px; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  font-weight: 900;
}
.nav nav { display: flex; gap: 30px; color: #142543; font-size: 14px; font-weight: 750; }
.nav-actions, .actions { gap: 12px; }

.button, .secondary, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 850;
}
.button {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}
.secondary {
  border: 1px solid #cfe0f4;
  color: #184687;
  background: #ffffff;
}
.ghost { min-height: 38px; padding: 0 12px; color: #1c2f4b; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 48px;
  align-items: center;
  padding: 72px 4vw 54px;
}

.pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid #cfe0f4;
  border-radius: 999px;
  color: #1557c8;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}
.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(20, 185, 129, 0.12);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #061532;
  font-size: 80px;
  line-height: 0.96;
  letter-spacing: 0;
}
h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
}
.lede {
  max-width: 620px;
  color: #51627b;
  font-size: 20px;
}
.mini-proof {
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #5a6f8b;
  font-size: 13px;
  font-weight: 750;
}
.mini-proof span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
}

.product-visual { min-width: 0; }
.console-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(207, 224, 244, 0.94);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(232,247,255,0.9)),
    #ffffff;
  box-shadow: var(--shadow);
}
.console-card::before {
  content: "AUTOPILOT";
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0e7490;
  background: #e6fbff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-right: 120px;
}
.console-top strong { font-size: 20px; }
.console-top span { color: var(--muted); font-size: 13px; }
.metric-row, .device-strip, .console-main {
  display: grid;
  gap: 16px;
}
.metric-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}
.metric-row article, .device-strip article, .problem-grid article, .steps article, .audience-grid article, .resource-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(43, 72, 118, 0.08);
}
.metric-row article { padding: 18px; }
.metric-row span, .metric-row small { display: block; color: var(--muted); }
.metric-row b { display: block; margin: 4px 0; font-size: 27px; }
.console-main {
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  margin-top: 16px;
}
.network-map, .health-ring, .alert-list {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f2f8ff);
}
.network-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.09), transparent),
    #ffffff;
}
.network-map::before, .network-map::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px dashed rgba(37, 99, 235, 0.26);
  border-radius: 50%;
}
.network-map::after { inset: 76px; }
.network-map i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(20, 185, 129, 0.26);
}
.network-map i:nth-child(1){left:18%;top:34%}.network-map i:nth-child(2){left:44%;top:18%}.network-map i:nth-child(3){left:70%;top:32%}.network-map i:nth-child(4){left:36%;top:62%;background:var(--coral)}.network-map i:nth-child(5){left:62%;top:70%;background:var(--blue)}.network-map i:nth-child(6){left:50%;top:45%;width:32px;height:32px;background:var(--ink)}.network-map i:nth-child(7){left:78%;top:58%;background:var(--cyan)}
.health-ring {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}
.health-ring span {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 64%, var(--amber) 64% 82%, var(--coral) 82% 100%);
  mask: radial-gradient(circle, transparent 54%, #000 56%);
}
.health-ring b { margin-top: 12px; font-size: 24px; }
.health-ring small, .alert-list span { color: var(--muted); }
.alert-list {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}
.alert-list p {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: #f7fbff;
}
.alert-list strong, .alert-list span { display: block; }
.device-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}
.device-strip article {
  padding: 16px;
  text-align: center;
}
.device-strip span {
  display: block;
  height: 92px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}
.desktop-screen { background: linear-gradient(135deg, #071a3d, #2563eb) !important; }
.chart-screen { background: linear-gradient(135deg, #7c3aed, #ff4d5a) !important; }
.device-strip small { color: var(--muted); }

.problem, .flow, .audiences, .resources, .truth {
  padding: 82px 4vw;
}
.problem {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 32px;
  background: rgba(255, 255, 255, 0.7);
  border-block: 1px solid var(--line);
}
.section-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}
.section-copy p:not(.pill), .problem-grid p, .steps p, .audience-grid p, .resource-grid p, .truth p, .truth li, .cta p {
  color: var(--muted);
}
.problem-grid, .steps, .audience-grid, .resource-grid {
  display: grid;
  gap: 18px;
}
.problem-grid { grid-template-columns: repeat(4, 1fr); }
.problem-grid article, .steps article, .audience-grid article, .resource-grid article {
  padding: 22px;
}
.steps {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
}
.steps i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}
.audiences {
  color: white;
  background: linear-gradient(135deg, #071a3d, #17255f 55%, #26155f);
}
.audiences .pill { color: #dbeafe; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.22); }
.audiences .section-copy p:not(.pill), .audiences .audience-grid p { color: #c7d7f2; }
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.audience-grid article {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}
.resources { background: #ffffff; }
.resource-grid { grid-template-columns: repeat(4, 1fr); }
.resource-grid small {
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.resource-grid a {
  color: var(--blue);
  font-weight: 850;
}
.truth {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  background: #edf6ff;
}
.truth ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.truth li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}
.cta {
  margin: 54px 4vw 70px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(120deg, var(--blue), var(--purple) 55%, var(--cyan));
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.3);
}
.cta .pill { color: white; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
.cta h2 {
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 1.05;
}
.cta p { color: #eaf3ff; }
.light { color: var(--blue); background: white; }
footer {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 30px 4vw;
  border-top: 1px solid var(--line);
  color: #60718d;
  background: #ffffff;
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .product-visual { max-width: 900px; }
  .problem, .truth { grid-template-columns: 1fr; }
  .metric-row, .console-main, .device-strip, .problem-grid, .audience-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav { padding: 0 18px; }
  .nav nav, .nav-actions .ghost { display: none; }
  .hero, .problem, .flow, .audiences, .resources, .truth { padding: 54px 20px; }
  h1 { font-size: 52px; }
  .section-copy h2, .cta h2 { font-size: 34px; }
  .metric-row, .console-main, .device-strip, .problem-grid, .steps, .audience-grid, .resource-grid { grid-template-columns: 1fr; }
  .console-card { padding: 18px; border-radius: 22px; }
  .console-card::before { position: static; display: inline-flex; margin-bottom: 14px; }
  .console-top { display: block; padding-right: 0; }
  .cta { display: block; margin: 28px 20px; padding: 30px; }
  .cta .button { margin-top: 16px; }
}

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