:root {
  --bg: #f6f5f4;
  --paper: #ffffff;
  --sunken: #f8f4f4;
  --line: #eae7e7;
  --ink: #201e1d;
  --muted: #605d5d;
  --muted2: #7d7979;
  --accent: #ec3013;
  --accent-ink: #ffffff;
  --accent-tint: #fff2ef;
  --positive: #1c7a52;
  --shadow: 0 1px 2px rgba(32, 30, 29, 0.04), 0 12px 32px rgba(32, 30, 29, 0.06);
  --radius: 20px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1a19;
    --paper: #262422;
    --sunken: #322f2d;
    --line: #3d3937;
    --ink: #f5f3f1;
    --muted: #aca59f;
    --muted2: #968f89;
    --accent: #ec3013;
    --accent-ink: #ffffff;
    --accent-tint: rgba(236, 48, 19, 0.16);
    --positive: #63c493;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.3);
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: inherit;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-store {
  background: #000;
  color: #fff;
  padding: 11px 20px 11px 18px;
}

.btn-store .glyph {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-store .label {
  text-align: left;
  line-height: 1.15;
}

.btn-store .label small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
}

.btn-store .label strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn-soon {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 11px 20px 11px 18px;
  cursor: default;
}

.btn-soon .glyph {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.7;
}

.btn-soon .label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
}

.btn-soon .label strong {
  font-size: 15px;
  font-weight: 600;
}

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

.hero {
  padding: 72px 0 40px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-strip svg {
  width: 15px;
  height: 15px;
  color: var(--positive);
  flex-shrink: 0;
}

.hero-shot {
  justify-self: center;
}

.hero-shot img {
  width: 100%;
  max-width: 320px;
  border-radius: 28px;
}

section {
  padding: 88px 0;
}

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

.section-head .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: 34px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 96px;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-shot {
  order: 1;
}

.feature-shot img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 26px;
}

.feature-copy h3 {
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.feature-copy p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

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

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

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.plan h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.plan .price {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 4px;
}

.plan .price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.plan .tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}

.plan li svg {
  width: 18px;
  height: 18px;
  color: var(--positive);
  flex-shrink: 0;
  margin-top: 2px;
}

.plans-note {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted2);
}

.cta {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 32px;
}

.cta .store-row {
  justify-content: center;
}

footer {
  padding: 48px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

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

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

.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.prose {
  padding: 56px 0 96px;
}

.prose .wrap {
  max-width: 760px;
}

.prose h1 {
  font-size: 38px;
  margin-bottom: 8px;
}

.prose .updated {
  color: var(--muted2);
  font-size: 14px;
  margin: 0 0 40px;
}

.prose h2 {
  font-size: 22px;
  margin: 40px 0 12px;
}

.prose p {
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 16px;
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.prose li {
  font-size: 16px;
  margin-bottom: 8px;
}

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

.prose strong {
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.faq-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card .icon svg {
  width: 24px;
  height: 24px;
}

.contact-card strong {
  display: block;
  font-size: 16px;
}

.contact-card a.email {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 980px) and (min-width: 861px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    justify-content: center;
  }

  .store-row {
    justify-content: center;
  }

  .hero-shot {
    order: -1;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-row .feature-copy,
  .feature-row.reverse .feature-copy {
    order: 2;
  }

  .feature-row .feature-shot,
  .feature-row.reverse .feature-shot {
    order: 1;
  }

  .grid-3,
  .plans {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }

  .prose h1 {
    font-size: 30px;
  }
}
