*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: color-mix(in oklab, var(--accent), black 16%); }
.ms {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.site-nav__brand img { width: 28px; height: 28px; }
.site-nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
}
.site-nav__links a:hover { color: var(--ink); }
.site-nav__cta {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: var(--accent);
  padding: 10px 18px;
  border-radius: var(--r-pill);
}
.site-nav__cta:hover { color: #fff; background: color-mix(in oklab, var(--accent), black 14%); }

@media (min-width: 768px) {
  .site-nav__links { display: flex; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: var(--sp-16);
  padding: var(--sp-8) 0;
}
.site-footer__row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: flex-start;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 800;
  font-size: 16px;
}
.site-footer__brand img { width: 22px; height: 22px; }
.site-footer__links {
  display: flex;
  gap: var(--sp-6);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.site-footer__links a { color: var(--ink-2); }
.site-footer__links a:hover { color: var(--ink); }
.site-footer__copyright {
  font-size: 13px;
  color: var(--ink-3);
}

@media (min-width: 768px) {
  .site-footer__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding: var(--sp-12) 0;
  text-align: center;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--sp-3);
}
.hero h1 {
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 var(--sp-4);
}
.hero__subhead {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 auto var(--sp-6);
}
.hero .store-badges { justify-content: center; }
.hero__visual { display: flex; justify-content: center; }

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: var(--sp-16) 0;
  }
  .hero__copy { flex: 1; }
  .hero__subhead { margin: 0 0 var(--sp-6); }
  .hero .store-badges { justify-content: flex-start; }
  .hero h1 { font-size: 52px; }
  .hero__visual { flex: 1; }
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.store-badge:hover { color: #fff; background: color-mix(in oklab, var(--ink), black 10%); }
.store-badge .ms { font-size: 22px; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge__text small { font-size: 11px; font-weight: 500; opacity: 0.8; }
/* Phone frame */
.phone-frame {
  width: 260px;
  aspect-ratio: 9 / 19.5;
  background: var(--ink);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--sh-lg);
  margin: 0 auto;
}
.phone-frame__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}
.phone-frame__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section heading, shared by How it works / For owners / Download */
.section-heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 var(--sp-8);
}

/* How it works */
.how { padding: var(--sp-12) 0; }
.how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.how__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--sp-6);
  text-align: center;
}
.how__icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  display: inline-block;
}
.how__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 var(--sp-2);
}
.how__card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .how__grid { grid-template-columns: repeat(3, 1fr); }
}

/* App showcase */
.showcase { padding: var(--sp-12) 0; }
.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  justify-items: center;
}

@media (min-width: 768px) {
  .showcase__grid { grid-template-columns: repeat(3, 1fr); }
}

/* For owners */
.owners {
  background: var(--surface-2);
  padding: var(--sp-12) 0;
}
.owners__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.owners__body {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 var(--sp-6);
}
