:root {
  --teal: #0d9b8a;
  --teal-dark: #0b7a6d;
  --teal-deep: #065f56;
  --ink: #134e4a;
  --muted: #6b7c7a;
  --line: #dceae7;
  --bg: #f3faf8;
  --gold: #f5c518;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 21px; object-fit: cover; }
.nav nav { display: flex; gap: 22px; align-items: center; font-weight: 600; font-size: 14px; }
.nav-admin {
  background: linear-gradient(90deg, #14b8a6, #059669);
  color: white !important;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 64px 8vw 80px;
}
.eyebrow { color: var(--teal-dark); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.hero h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin: 8px 0 16px; }
.lede { font-size: 18px; color: var(--muted); max-width: 520px; line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #14b8a6, #059669);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
}
.btn.ghost {
  background: white;
  color: var(--teal-dark);
  border: 1px solid var(--line);
}
.hero-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-phone .phone { width: min(280px, 72vw); }
.hero-phone-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  max-width: 280px;
  line-height: 1.4;
}
.phone {
  background: #0c1f1c;
  border-radius: 42px;
  padding: 11px;
  box-shadow:
    0 28px 60px rgba(6, 95, 86, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #e8f4f1;
  line-height: 0;
}
.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.phones {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.phones::-webkit-scrollbar { height: 8px; }
.phones::-webkit-scrollbar-thumb {
  background: #b7d8d2;
  border-radius: 999px;
}
.phone-card {
  flex: 0 0 220px;
  margin: 0;
  scroll-snap-align: center;
  text-align: center;
}
.phone-card.featured { flex-basis: 248px; }
.phone-card .phone { width: 100%; }
.phone-card figcaption {
  margin-top: 16px;
  display: grid;
  gap: 4px;
}
.phone-card strong { font-size: 15px; }
.phone-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.section { padding: 72px 8vw; }
.section.muted { background: white; }
.section h2 { font-size: 32px; margin: 0 0 8px; }
.section-lede { color: var(--muted); margin: 0 0 28px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(11, 122, 109, 0.06);
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); line-height: 1.45; }
.steps { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps span {
  width: 36px; height: 36px; border-radius: 18px; flex-shrink: 0;
  background: var(--teal); color: white; display: grid; place-items: center; font-weight: 800;
}
.steps h3 { margin: 0 0 4px; }
.steps p { margin: 0; color: var(--muted); }
.cities { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.cities li {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.cities li.soon {
  background: transparent;
  border-style: dashed;
  color: var(--muted);
  font-weight: 600;
}
.footer {
  background: linear-gradient(180deg, #0b7a6d, #065f56);
  color: white;
  padding: 40px 8vw 24px;
  display: grid;
  gap: 16px;
}
.footer img { width: 48px; height: 48px; border-radius: 24px; object-fit: cover; background: white; }
.footer-links { display: flex; gap: 18px; }
.footer a { color: #d7f5ef; font-weight: 600; }
.copy { opacity: .7; font-size: 13px; }
.legal {
  max-width: 760px;
  padding: 48px 8vw 80px;
}
.legal h1 { font-size: 36px; margin: 0 0 8px; }
.legal .updated { color: var(--muted); margin: 0 0 28px; }
.legal h2 { font-size: 20px; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--muted); line-height: 1.65; }
.legal ul { padding-left: 20px; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 48px; }
  .hero-phone { order: -1; }
  .nav nav a[href^="#"] { display: none; }
  .phone-card, .phone-card.featured { flex-basis: 200px; }
}
