:root {
  --pm-ink: #17212b;
  --pm-muted: #657180;
  --pm-line: #d9e1ea;
  --pm-bg: #f7f8fb;
  --pm-panel: #ffffff;
  --pm-blue: #2563eb;
  --pm-coral: #f26d5b;
  --pm-green: #1f9d72;
  --pm-yellow: #f0b429;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--pm-ink);
  background: var(--pm-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar {
  backdrop-filter: blur(18px);
  background: rgba(247, 248, 251, 0.88);
  border-bottom: 1px solid rgba(217, 225, 234, 0.8);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  object-fit: cover;
  border-radius: 9px;
}

.hero {
  min-height: calc(100vh - 74px);
  padding-top: 6rem;
  padding-bottom: 3.5rem;
  display: flex;
  align-items: center;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy {
  max-width: 630px;
  color: var(--pm-muted);
  font-size: 1.2rem;
}

.app-store-badge {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
}

.app-store-badge img {
  width: 230px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-preview {
  width: min(100%, 520px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.hero-carousel {
  width: min(100%, 520px);
  margin-inline: auto;
}

.visual-card {
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: var(--pm-panel);
  box-shadow: 0 20px 60px rgba(23, 33, 43, 0.07);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--pm-blue);
}

.feature-icon-coral {
  background: var(--pm-coral);
}

.feature-icon-green {
  background: var(--pm-green);
}

.feature-icon-yellow {
  background: var(--pm-yellow);
}

.section-pad {
  padding: 5.5rem 0;
}

.section-kicker {
  color: var(--pm-blue);
  font-weight: 700;
}

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

.band {
  background: #fff;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.metric {
  border-left: 3px solid var(--pm-blue);
}

.download-panel {
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent 36%),
    linear-gradient(315deg, rgba(31, 157, 114, 0.11), transparent 38%),
    #fff;
  border: 1px solid var(--pm-line);
}

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

.footer-link:hover {
  color: var(--pm-blue);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 5rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 3.15rem;
  }
}
