/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  line-height: 1.5;
  color: #0f1724;
  background: #ffffff;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e6edf3;
  background: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.logo {
  width: 40px;
  height: 40px;
}
.nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #334155;
}

/* Hero */
.hero {
  padding: 48px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
}
.lead {
  color: #475569;
  margin-top: 12px;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}
.btn.primary {
  background: #0b74ff;
  color: #fff;
}
.btn.ghost {
  border: 1px solid #e2e8f0;
  color: #0f1724;
  background: transparent;
  margin-left: 8px;
}
.mockup {
  display: flex;
  justify-content: center;
}
.phone-mock {
  width: 220px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
}

/* Features */
.features {
  padding: 36px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-grid article {
  background: #fbfdff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #eef2f6;
}

/* Screenshots */
.screens-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.shot {
  width: calc(33.333% - 9.33px);
}
.shot-svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}

/* Download/badges */
.badges {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.badge {
  padding: 10px 14px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  text-decoration: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid #eef2f6;
  padding: 18px 0;
  margin-top: 28px;
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-links a {
  margin-left: 12px;
  color: #64748b;
  text-decoration: none;
}

/* Utilities */
.container h2 {
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 8px;
}

/* Content typography for long-form pages */
.prose {
  max-width: 72ch;
  color: #334155;
  margin-top: 12px;
  line-height: 1.7;
}

/* Privacy / long-form adjustments */
.container.prose {
  padding-top: 32px;
  padding-bottom: 32px;
}
.container.prose header h1 {
  font-size: 28px;
  margin: 0 0 6px;
  color: #0f1724;
}
.container.prose .subtitle {
  color: #0f1724;
  margin-bottom: 6px;
}
.container.prose .muted {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.container.prose .card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  padding: 14px;
  border-radius: 10px;
  margin-top: 12px;
}
.container.prose .card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: #0f1724;
}
.container.prose h2 {
  margin-top: 26px;
  margin-bottom: 8px;
  color: #0b1830;
}
.container.prose h3 {
  margin-top: 12px;
  margin-bottom: 6px;
  color: #0b1830;
}
.container.prose ul {
  margin-left: 20px;
  margin-top: 8px;
}
.container.prose a {
  color: #0b74ff;
  text-decoration: underline;
}
.container.prose footer {
  margin-top: 18px;
}

@media (max-width: 880px) {
  .container.prose {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .shot {
    width: 100%;
  }
  .nav {
    display: none;
  }
}
