* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f2f5fb;
  --ink: #0f172a;
  --muted: #56627a;
  --blue: #2258c3;
  --blue-soft: #e9eef9;
  --card: #ffffff;
  --border: #dbe3f1;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.brand-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.brand-title {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.chip-dark {
  background: #0f172a;
  color: #fff;
  opacity: 0.7;
}

.hero {
  padding: 24px 0 40px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -10%;
  top: -120px;
  background: linear-gradient(135deg, #4f86ff, #5ecad6, #7dd3fc);
  opacity: 0.25;
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -10%;
  bottom: -120px;
  background: linear-gradient(135deg, #1f6fe5, #4f8df2, #6dd6ea);
  opacity: 0.2;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 16px 0;
}

.hero-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 44px;
  flex: 0 0 auto;
}

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

.btn.secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: #374151;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  color: var(--muted);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-frame {
  background: transparent;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(34, 88, 195, 0.2);
  max-width: 360px;
  width: 100%;
}

.hero-frame img {
  border-radius: 22px;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: #f7f9fd;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.two-col h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  margin: 8px 0 0;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.screenshot-grid {
  margin-top: 24px;
}

.shot {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.shot img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.highlight-grid {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.highlight-grid h3,
.highlight-grid h4 {
  margin: 0 0 8px;
}

.highlight-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.faq-card h3 {
  margin: 0 0 8px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-guides {
  margin-top: 24px;
}

.guide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.guide-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 18px;
}

.guide-card ul {
  margin: 0;
  padding-left: 18px;
}

.cta-inline {
  margin: 0;
  font-weight: 600;
}

.cta-inline a {
  color: var(--blue);
}

.cta-band {
  background: #0b1c3d;
  color: #fff;
  padding: 36px 0;
}

.cta-band .muted {
  color: rgba(226, 236, 255, 0.8);
}

.btn.light {
  background: #fff;
  color: #0f172a;
}

.btn.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 720px) {
  .chip-dark {
    display: none;
  }
  .hero-frame {
    max-width: 280px;
  }
  .cta-row {
    justify-content: flex-start;
  }
}
