:root {
  color-scheme: light;
  --ink: #132033;
  --muted: #607086;
  --soft: #f5f8fb;
  --panel: #ffffff;
  --line: #dce5ee;
  --blue: #1f6feb;
  --teal: #08a6a6;
  --green: #14a66a;
  --orange: #e38b29;
  --navy: #0d1b2a;
  --shadow: rgba(22, 35, 55, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--soft); color: var(--ink); letter-spacing: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header {
  align-items: center;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand { align-items: center; display: flex; font-weight: 800; gap: 10px; }
.brand-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  width: 34px;
}
nav { align-items: center; display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; }
nav a { color: var(--muted); font-size: 14px; font-weight: 650; }
nav a:hover, nav a[aria-current="page"] { color: var(--blue); }
.header-action {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
  padding: 10px 14px;
  white-space: nowrap;
}
.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  min-height: min(760px, calc(100svh - 68px));
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 86px);
  position: relative;
}
.hero::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(31,111,235,.18), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(8,166,166,.16), transparent 24%),
    linear-gradient(135deg, #fff, #f4f9ff 58%, #eef7f4);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}
.hero::after {
  background-image:
    linear-gradient(rgba(19,32,51,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,32,51,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: .55;
  position: absolute;
  z-index: -1;
}
.hero-page { min-height: 560px; }
.hero-copy { max-width: 710px; }
.kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 840;
  margin: 0 0 16px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--navy);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .94;
  margin-bottom: 22px;
}
.hero p:not(.kicker), .section p, .card-grid p, .split p, .faq p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 780;
  min-height: 48px;
  padding: 0 18px;
}
.button.primary { background: var(--blue); color: #fff; box-shadow: 0 14px 28px rgba(31,111,235,.22); }
.button.secondary { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.hero-visual {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(220,229,238,.9);
  border-radius: 8px;
  box-shadow: 0 24px 70px var(--shadow);
  padding: 14px;
}
.hero-visual img { border-radius: 6px; width: 100%; }
.stats-band {
  background: var(--navy);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stats-band div { background: rgba(255,255,255,.04); padding: 30px clamp(18px, 4vw, 46px); }
.stats-band strong { display: block; font-size: clamp(28px, 4vw, 44px); line-height: 1; }
.stats-band span { color: rgba(255,255,255,.72); display: block; margin-top: 10px; }
.section { padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 86px); }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head p { color: var(--orange); font-size: 12px; font-weight: 820; margin-bottom: 10px; text-transform: uppercase; }
.section h2 { color: var(--navy); font-size: clamp(30px, 4vw, 58px); line-height: 1.02; margin-bottom: 16px; }
.card-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid article, .pricing article, .faq details, .console-panel, pre, .data-table, .status-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px var(--shadow);
}
.card-grid article { min-height: 190px; padding: 26px; }
.card-grid h3 { color: var(--navy); font-size: 22px; margin-bottom: 10px; }
.split { align-items: center; display: grid; gap: clamp(28px, 5vw, 70px); grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr); }
.console-panel { padding: 26px; }
.panel-line {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 12px 1fr auto;
  min-height: 54px;
}
.panel-line span, .dot {
  background: var(--green);
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}
.panel-line em { color: var(--muted); font-style: normal; }
.progress { background: #eaf1f8; border-radius: 999px; height: 12px; margin-top: 28px; overflow: hidden; }
.progress i { background: linear-gradient(90deg, var(--blue), var(--teal)); display: block; height: 100%; width: 78%; }
.data-table { overflow: hidden; }
.data-table div { display: grid; grid-template-columns: 1fr .8fr .9fr .9fr; }
.data-table span { border-bottom: 1px solid var(--line); color: var(--muted); padding: 16px 18px; }
.data-table span:first-child { color: var(--ink); font-weight: 760; }
.pricing { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing article { padding: 28px; }
.pricing strong { color: var(--blue); display: block; font-size: 42px; line-height: 1; }
.pricing ul { color: var(--muted); line-height: 1.9; padding-left: 20px; }
.pricing a { color: var(--blue); font-weight: 780; }
pre { color: #e9f4ff; background: #0f1b2d; overflow: auto; padding: 28px; }
code { font-family: "SFMono-Regular", Consolas, monospace; font-size: 14px; line-height: 1.7; white-space: pre-wrap; }
.status-list { overflow: hidden; }
.status-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 14px 1fr auto auto;
  padding: 18px 22px;
}
.status-list em { color: var(--green); font-style: normal; font-weight: 780; }
.status-list small { color: var(--muted); font-size: 14px; }
.faq { display: grid; gap: 14px; }
.faq details { padding: 22px 24px; }
.faq summary { color: var(--navy); cursor: pointer; font-size: 19px; font-weight: 780; }
.faq p { margin: 14px 0 0; }
.footer {
  align-items: center;
  background: var(--navy);
  color: rgba(255,255,255,.78);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 6vw, 86px);
}
.footer span:first-child { color: #fff; font-weight: 820; }
.footer a { color: #fff; font-weight: 720; }
@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr; justify-items: start; }
  nav { justify-content: flex-start; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .card-grid, .pricing, .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .header-action { display: none; }
  .hero { padding-top: 36px; }
  .card-grid, .pricing, .stats-band { grid-template-columns: 1fr; }
  .data-table div, .status-list div { grid-template-columns: 1fr; }
  .data-table span { border-bottom: 0; padding: 10px 16px; }
}
