:root {
  --bg: #0b0f0d;
  --bg-alt: #111512;
  --text: #f2f4f2;
  --text-muted: #93a09b;
  --border: #212823;
  --accent: #34d399;
  --accent-ink: #06231a;
  --card: #131813;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --maxw: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.nav .wrap,
footer .wrap {
  padding-bottom: 0;
}

/* Nav */
.nav {
  padding: 28px 0;
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
}

.brand-link .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--text-muted);
}

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

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

/* Hero */
.hero {
  padding: 56px 0 88px;
  text-align: center;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero p.lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.store-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  cursor: default;
}

.store-badge strong {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}

/* Screenshot strip */
.shot-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shot-frame {
  flex: 0 0 230px;
  scroll-snap-align: start;
  border: 7px solid var(--card);
  outline: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
}

.shot-frame img {
  display: block;
  width: 100%;
}

/* Sections */
section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 32px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.feature-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 600;
}

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

.feature-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
}

/* Showcase (screenshot + copy) */
.showcase {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.showcase-reverse {
  grid-template-columns: 1fr 340px;
}

@media (min-width: 861px) {
  .showcase:not(.showcase-reverse) .phone-frame {
    order: 1;
  }
  .showcase:not(.showcase-reverse) .showcase-copy {
    order: 2;
  }
  .showcase-reverse .showcase-copy {
    order: 1;
  }
  .showcase-reverse .phone-frame {
    order: 2;
  }
}

.phone-frame {
  border: 8px solid var(--card);
  outline: 1px solid var(--border);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
}

.phone-frame img {
  display: block;
  width: 100%;
}

.phone-frame.watch-frame {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.phone-frame.watch-frame img {
  width: auto;
  height: 340px;
}

.showcase-copy h2 {
  font-size: 30px;
  margin: 0 0 16px;
  font-weight: 700;
}

.showcase-copy p {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 14px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.price-card.pro {
  border-color: var(--accent);
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.price-card .price {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
}

.price-card li:first-child {
  border-top: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
}

.price-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 24px;
}

/* Privacy */
.privacy {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 56px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.privacy-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-muted);
}

.privacy-item .check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

footer a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
}

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

footer .foot-links {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
}

@media (max-width: 860px) {
  .shot-strip {
    justify-content: flex-start;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .showcase {
    grid-template-columns: 1fr;
  }
  .phone-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  .phone-frame.watch-frame {
    max-width: none;
  }
  .phone-frame.watch-frame img {
    height: 240px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  .privacy {
    padding: 36px 24px;
  }
  h1 {
    font-size: 36px;
  }
  .nav-links {
    display: none;
  }
}
