:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --primary: #0f172a;
  --primary-fg: #ffffff;
  --accent: #2563eb;
  --band-alt: #f8fafc;
  --max: 1080px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  color: var(--fg);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.muted { color: var(--muted); font-size: 0.95rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(90deg, #1e3a8a 0%, #4338ca 50%, #6d28d9 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 6px rgba(67, 56, 202, 0.18);
}
.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.site-header .brand:hover { text-decoration: none; }
.brand-word {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 60%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo-mark { display: block; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.92rem;
}
.site-header nav a { color: #ffffff; }
.site-header nav a:hover { color: #e0e7ff; text-decoration: none; }
.site-header nav a.link { color: rgba(255, 255, 255, 0.85); }
.site-header nav a.cta {
  background: #ffffff;
  color: #1e3a8a;
  border-color: rgba(255, 255, 255, 0.6);
}
.site-header nav a.cta:hover { background: #e0e7ff; color: #1e3a8a; opacity: 1; }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.cta.primary, .site-header nav a.cta {
  background: var(--primary);
  color: var(--primary-fg);
}
.cta.primary:hover, .site-header nav a.cta:hover { opacity: 0.92; text-decoration: none; }
.cta.ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.cta.ghost:hover { background: var(--band-alt); text-decoration: none; }

.hero {
  padding: 5rem 1.5rem 4rem;
  background: radial-gradient(
    ellipse at top,
    rgba(67, 56, 202, 0.10),
    transparent 60%
  );
}
.hero-cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.hero-inner { min-width: 0; }
.hero-art {
  display: block;
  min-width: 0;
}
.hero-art img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow:
    0 20px 50px rgba(67, 56, 202, 0.18),
    0 4px 12px rgba(15, 23, 42, 0.08);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 840px) {
  .hero-cols { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { aspect-ratio: 16 / 9; }
}
.hero .lead {
  max-width: 38em;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.band {
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}
.band.alt { background: var(--band-alt); }
.band > h2,
.band > p,
.band > ul,
.band > div,
.band > .grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.band > h2 { margin-bottom: 2rem; }

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid article {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}
.grid article p { color: var(--muted); margin: 0; }

.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.checks li {
  padding: 1rem 1.1rem 1rem 2.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  position: relative;
  color: var(--muted);
}
.checks li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.checks strong { color: var(--fg); }
.checks.center-checks {
  max-width: 60em;
  margin: 1.5rem auto 0;
  grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--band-alt);
  padding: 0.1em 0.35em;
  border-radius: 0.3em;
  border: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner nav { display: flex; gap: 1rem; }
.footer-inner nav a { color: var(--muted); }

.lead.center { max-width: 50em; margin-left: auto; margin-right: auto; text-align: center; }
.center { text-align: center; }
.center-cta { justify-content: center; }

.stats {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
}
.stats > div {
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}
.stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.stats span { color: var(--muted); font-size: 0.95rem; }

.grid.pricing {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}
.grid.pricing article {
  display: flex;
  flex-direction: column;
}
.grid.pricing article.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  position: relative;
}
.grid.pricing .price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0.25rem 0 0.75rem;
}
.grid.pricing .price span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
}
.grid.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex-grow: 1;
}
.grid.pricing ul li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 600;
}
.cta.block {
  width: 100%;
  display: flex;
}

.closer { text-align: center; }
.closer .hero-cta { margin-top: 1.5rem; }

.img-grid,
.shot-grid {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.img-grid figure,
.shot-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(67, 56, 202, 0.08);
}
.img-grid img,
.shot-grid img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--band-alt);
}
.shot-grid img { height: 240px; }
.img-grid figcaption,
.shot-grid figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.screenshots .muted.center { margin-top: 1.25rem; }

.band-cols {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
}
.band-cols .band-copy { min-width: 0; }
.band-cols .band-copy h2 { margin-top: 0; margin-bottom: 1rem; }
.band-cols .band-copy .lead {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.band-shot {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(67, 56, 202, 0.08);
}
.band-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--band-alt);
}
.band-shot figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
@media (max-width: 840px) {
  .band-cols { grid-template-columns: 1fr; }
  .band-shot { order: -1; }
}

@media (max-width: 640px) {
  .site-header nav a:not(.cta):not(.link) { display: none; }
}
