:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4f8;
  --ink: #102033;
  --muted: #536274;
  --soft: #7a8796;
  --line: #d9e3ea;
  --blue: #1769e0;
  --cyan: #0891b2;
  --green: #0f9f6e;
  --navy: #0d1b2e;
  --shadow: 0 24px 70px rgba(15, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(8, 145, 178, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(219, 234, 254, 0.72) 0, rgba(246, 248, 251, 0) 560px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.list a,
p a {
  overflow-wrap: anywhere;
}

.site-shell {
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.mark {
  position: relative;
  display: grid;
  place-items: end center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding-bottom: 7px;
  background: linear-gradient(145deg, #07111f, #123247);
  color: #ffffff;
  font-size: 13px;
  box-shadow: 0 10px 28px rgba(13, 27, 46, 0.18);
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #31d2ff;
}

.mark::before {
  top: 10px;
  left: 9px;
  right: 9px;
  height: 3px;
}

.mark::after {
  top: 10px;
  left: 50%;
  width: 3px;
  height: 18px;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(23, 105, 224, 0.08);
  color: var(--blue);
}

.nav-links .nav-cta {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(13, 27, 46, 0.15);
}

.nav-links .nav-cta:hover {
  background: #10294a;
  color: #ffffff;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 22px 76px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 54px;
  align-items: center;
  padding-top: 54px;
}

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

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(23, 105, 224, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--blue);
  background: rgba(23, 105, 224, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-top: 22px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 740px;
  font-size: 21px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(13, 27, 46, 0.2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  box-shadow: none;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid rgba(15, 159, 110, 0.22);
  border-radius: 999px;
  background: rgba(15, 159, 110, 0.08);
  color: #087252;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 800;
}

.screenshot-frame {
  margin: 0;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(15, 32, 51, 0.12);
  border-radius: 28px;
  background: #dbeafe;
  box-shadow: var(--shadow);
}

.hero-product-frame img {
  border-radius: 18px;
  background: #07111f;
}

.screenshot-frame figcaption {
  margin-top: 12px;
  color: var(--soft);
  font-size: 13px;
  text-align: center;
}

.section {
  padding: 58px 0;
}

.section.page {
  padding-right: 22px;
  padding-left: 22px;
}

.status-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 32px;
}

.status-strip h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.status-strip p {
  margin: 0;
  font-size: 18px;
}

.store-panel {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.store-panel p {
  max-width: 720px;
}

.install-actions {
  margin-bottom: 18px;
}

.compact-section {
  padding-top: 20px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 24px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(15, 32, 51, 0.06);
}

.card p {
  margin-bottom: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: start;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #edf6ff);
  padding: 34px;
  box-shadow: 0 18px 55px rgba(15, 32, 51, 0.08);
}

.steps,
.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li,
.list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 15px;
  color: var(--muted);
}

.steps strong,
.list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.steps span {
  color: var(--muted);
}

.simple-page {
  max-width: 920px;
}

.simple-page h1 {
  max-width: 840px;
}

.simple-page h2 {
  margin-top: 34px;
  font-size: 28px;
}

.support-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(15, 32, 51, 0.06);
}

.support-row {
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 1.56fr;
  gap: 16px;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.support-row:first-child {
  border-top: 0;
}

.support-head {
  background: var(--navy);
  color: #e0f2fe;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-row strong {
  color: var(--ink);
}

.support-head strong {
  color: inherit;
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 24px 22px 42px;
  color: var(--soft);
  font-size: 14px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(15, 32, 51, 0.05);
  padding: 2px 6px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .feature-band,
  .status-strip,
  .grid,
  .grid.four,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    padding-top: 28px;
  }

  .page {
    padding-top: 18px;
  }

  .support-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-band {
    padding: 24px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .section.page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-product-frame img {
    border-radius: 12px;
  }
}
