:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-strong: #f1f4f8;
  --border: rgba(12, 18, 28, 0.12);
  --text: #070b12;
  --muted: #5e6876;
  --faint: #8b95a3;
  --accent: #0071e3;
  --accent-2: #34c759;
  --good: #34c759;
  --danger: #ff3b30;
  --max: 1120px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(13, 20, 33, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}


a { color: inherit; }

img { max-width: 100%; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(12, 18, 28, 0.08);
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

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

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #0b0f17;
  background: #0b0f17;
  color: #ffffff;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(13, 20, 33, 0.16);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.hero {
  overflow-x: clip;
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: #0759ad;
  font-size: 0.82rem;
  font-weight: 680;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 0 7px rgba(134, 239, 172, 0.12);
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 7vw, 6.8rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: #4c5664;
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.price-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 620px;
  margin-top: 34px;
}

.pill {
  border: 1px solid rgba(12, 18, 28, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #374151;
  font-size: 0.9rem;
}

.demo-card {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: -8% -18% -5%;
  z-index: 0;
  border-radius: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(221, 235, 222, 0.34) 34%, rgba(226, 235, 244, 0.32) 68%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(42, 92, 62, 0.08) 0 1px, transparent 1px 62px);
  filter: blur(0.2px);
  opacity: 0.82;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  mask-composite: intersect;
  pointer-events: none;
}

.app-preview {
  display: block;
  width: 100%;
  height: auto;
}

.hero-preview {
  width: min(82vw, 370px);
  margin: 24px auto 18px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 86px 0;
  border-top: 1px solid rgba(12, 18, 28, 0.08);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(13, 20, 33, 0.06);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

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

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--good);
  font-weight: 800;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.use-card {
  overflow: hidden;
  padding: 0;
}

.use-card img {
  display: block;
  width: min(100%, 210px);
  height: auto;
  margin: 18px auto 0;
}

.use-card h3,
.use-card p {
  padding-inline: 18px;
}

.use-card h3 {
  margin-top: 18px;
}

.use-card p {
  margin-bottom: 20px;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 15px;
  background: rgba(125, 211, 252, 0.09);
  color: var(--accent);
  font-size: 1.25rem;
}

.cta {
  overflow: hidden;
  position: relative;
  padding: 52px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.legal-page {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 82px 0 92px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: 0;
}

.legal-page h2 {
  margin: 34px 0 8px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

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

.legal-page a { color: var(--accent); }

.faq {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(12, 18, 28, 0.08);
  color: var(--muted);
  font-size: 0.94rem;
}

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

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

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

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

@media (max-width: 860px) {
  .hero { padding-top: 54px; }

  .hero-grid,
  .split,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-grid { gap: 36px; }

  .nav-links a:not(.button) { display: none; }

  .hero-preview {
    width: min(78vw, 330px);
    margin-block: 18px 14px;
  }

  .cta { padding: 34px 24px; }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav-links .button {
    display: none;
  }

  .hero {
    padding: 52px 0 58px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.6rem, 13vw, 3.4rem);
    line-height: 0.92;
  }

  .lede {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .audience-row {
    max-width: 100%;
  }

  .hero-preview {
    width: min(86vw, 292px);
  }
}
