:root {
  color-scheme: dark;
  --bg: #061426;
  --panel: #0c213b;
  --panel-2: #102b49;
  --text: #f4f8ff;
  --muted: #aabbd0;
  --cyan: #62e5ff;
  --blue: #7588ff;
  --line: rgba(255,255,255,.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: radial-gradient(circle at 82% 5%, #193c65 0, transparent 27%), var(--bg); color: var(--text); line-height: 1.65; }
a { color: inherit; }
.site-header { max-width: 1180px; margin: auto; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 750; }
.brand img { border-radius: 11px; }
.text-link { color: var(--cyan); text-underline-offset: 4px; }
main { overflow: hidden; }
.hero, .section, .cta { max-width: 1180px; margin: auto; padding: 90px 28px; }
.hero { padding-top: 110px; padding-bottom: 120px; }
.eyebrow { color: var(--cyan); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
h1 { max-width: 880px; margin: 18px 0; font-size: clamp(3.1rem, 8vw, 6.8rem); line-height: .96; letter-spacing: -.06em; }
.hero-copy { max-width: 760px; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 44px; }
.button { display: inline-block; padding: 14px 20px; border-radius: 11px; text-decoration: none; font-weight: 800; }
.primary { background: linear-gradient(120deg, var(--cyan), #8ef0d1); color: #04121f; }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.04); }
.proof { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 42px; }
.proof li { display: grid; }
.proof strong { font-size: 1.85rem; }
.proof span { color: var(--muted); }
.section { border-top: 1px solid var(--line); }
.section-copy { max-width: 770px; margin-bottom: 40px; }
h2 { margin: 12px 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.035em; }
.section-copy > p:last-child, article p, .pricing-note, details p, .cta p { color: var(--muted); }
.grid { display: grid; gap: 18px; }
.checks { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); }
.use-cases { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.pricing { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); }
article { position: relative; padding: 26px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); border: 1px solid var(--line); border-radius: 18px; }
article > span { color: var(--cyan); font-size: .74rem; font-weight: 850; letter-spacing: .08em; }
article h3 { margin: 10px 0 6px; }
.band { position: relative; }
.band::before { content: ""; position: absolute; inset: 22px -45vw; z-index: -1; background: rgba(98,229,255,.035); }
pre { overflow: auto; padding: 28px; color: #c7f8ff; background: #03101e; border: 1px solid var(--line); border-radius: 18px; font-size: .94rem; }
.pricing article strong { display: block; margin: 8px 0; font-size: 2rem; }
.pricing .featured { border-color: rgba(98,229,255,.7); box-shadow: 0 18px 70px rgba(98,229,255,.08); }
details { padding: 20px 0; border-top: 1px solid var(--line); }
summary { cursor: pointer; font-size: 1.05rem; font-weight: 750; }
.cta { margin-top: 30px; margin-bottom: 80px; text-align: center; background: linear-gradient(135deg, rgba(98,229,255,.12), rgba(117,136,255,.14)); border: 1px solid var(--line); border-radius: 26px; }
.cta p { max-width: 640px; margin-left: auto; margin-right: auto; }
footer { max-width: 1180px; margin: auto; padding: 30px 28px 45px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 620px) {
  .site-header span { display: none; }
  .hero, .section, .cta { padding: 68px 20px; }
  .hero { padding-top: 72px; }
  .proof { gap: 24px; }
  .cta { margin-left: 14px; margin-right: 14px; }
  footer { flex-direction: column; }
}
