:root {
  --ink: #0d1726;
  --muted: #5a6575;
  --line: #d8deea;
  --bg: #f5f6fb;
  --panel: #ffffff;
  --blue: #1e66ff;
  --blue-deep: #1244b3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1000px 600px at 70% -100px, #d9e5ff 0%, #f5f6fb 55%);
  color: var(--ink);
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.4;
  position: relative;
}

.bg-glow {
  position: fixed;
  inset: auto -200px -200px auto;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 102, 255, 0.2) 0%, rgba(30, 102, 255, 0) 65%);
  pointer-events: none;
}

.wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.brand img {
  width: 30px;
  height: 30px;
}

.link-pill {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 40px 0 12px;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 0;
  max-width: 920px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.subhead {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(17px, 2.5vw, 22px);
  color: #2e3a4e;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  border-radius: 11px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #1658e6;
}

.btn-secondary {
  background: #e9edf8;
  color: #1f2b3b;
}

.note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cards article,
.panel,
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.cards h2,
.faq h2,
.pricing h3 {
  margin: 0;
  font-size: 18px;
}

.cards p,
.pricing p,
.faq p {
  margin: 8px 0 0;
  color: #304158;
}

.pricing {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.screenshots {
  margin-top: 26px;
}

.screenshots h2 {
  margin: 0;
  font-size: 28px;
  font-family: "Newsreader", Georgia, serif;
}

.screenshots-subhead {
  margin: 8px 0 0;
  color: #304158;
}

.shot-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shot {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.shot figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: #304158;
}

.featured {
  border-color: #afc3f7;
  background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
}

.faq {
  margin-top: 22px;
}

.faq h2 {
  margin-bottom: 10px;
}

.faq details {
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  margin-top: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

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

@media (max-width: 820px) {
  .cards,
  .pricing,
  .shot-grid {
    grid-template-columns: 1fr;
  }
  .topbar {
    gap: 10px;
    flex-wrap: wrap;
  }
}
