* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --panel: #121923;
  --panel-strong: #17202b;
  --text: #f5f7fb;
  --muted: #9ca7b5;
  --line: #263241;
  --blue: #2684ff;
  --green: #23c483;
  --yellow: #f7c948;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

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

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(38, 132, 255, .28);
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 54px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(35, 196, 131, .34);
  border-radius: 999px;
  padding: 6px 10px;
  color: #a7f3d0;
  background: rgba(35, 196, 131, .1);
  font-size: 13px;
  font-weight: 750;
}

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

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 72px);
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.proof div,
.card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.proof div {
  padding: 14px;
}

.proof strong {
  display: block;
  color: var(--text);
  font-size: 22px;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.hero-media img {
  display: block;
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
}

.section > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

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

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

.card {
  padding: 22px;
}

.card h3 {
  font-size: 20px;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul,
.panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.panel {
  padding: 28px;
  margin-top: 24px;
}

.steps {
  counter-reset: step;
}

.steps .card h3::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 8px;
  background: rgba(38, 132, 255, .18);
  color: #93c5fd;
  font-size: 14px;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(247, 201, 72, .32);
  border-radius: 8px;
  padding: 24px;
  background: rgba(247, 201, 72, .08);
}

.pricing-note strong {
  color: var(--yellow);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

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

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 28px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

@media (max-width: 860px) {
  .topbar,
  .nav,
  .hero,
  .proof,
  .grid,
  .grid.two,
  .pricing-note {
    display: block;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-media,
  .card,
  .proof div,
  .pricing-note {
    margin-top: 14px;
  }

  h1 {
    font-size: 42px;
  }
}
