:root {
  --accent: #ff8a2a;
  --accent-deep: #e03a3e;
  --ink: #241c18;
  --ink-soft: #6b5f57;
  --paper: #fbf5ec;
  --card: #ffffff;
  --go: #17a558;
  --radius: 20px;
  --brand-grad: linear-gradient(135deg, #ff8a2a 0%, #e03a3e 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

a { color: var(--accent-deep); }

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

/* ---------- Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 28, 24, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { width: 38px; height: 38px; border-radius: 9px; }

.brand span {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 2px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand small {
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--ink-soft);
}

.nav-links { display: flex; align-items: center; gap: 26px; }

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}

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

.nav-links a.cta {
  background: var(--brand-grad);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(224, 58, 62, 0.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-grad);
  color: #fff;
  padding: 88px 0 110px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -60px -10%;
  height: 120px;
  background: var(--paper);
  border-radius: 50% 50% 0 0;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero p.lede {
  margin-top: 18px;
  font-size: 1.15rem;
  opacity: 0.94;
  max-width: 34rem;
}

.hero .badges { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

.badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 12, 8, 0.85);
  color: #fff;
  border-radius: 12px;
  padding: 11px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.badge-ghost {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 12px;
  padding: 9px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-art { position: relative; z-index: 1; display: flex; justify-content: center; }

.hero-art img.phone {
  width: min(290px, 70vw);
  border-radius: 34px;
  border: 6px solid rgba(20, 12, 8, 0.9);
  box-shadow: 0 30px 60px rgba(60, 12, 4, 0.45);
  transform: rotate(3deg);
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }

.kicker {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 900; margin-top: 6px; }

.sub { color: var(--ink-soft); margin-top: 10px; max-width: 40rem; }

/* Feature cards */
.grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 6px 24px rgba(36, 28, 24, 0.07);
  border: 1px solid rgba(36, 28, 24, 0.05);
}

.card .emoji { font-size: 1.9rem; }

.card h3 { margin-top: 12px; font-size: 1.06rem; font-weight: 800; }

.card p { margin-top: 8px; font-size: 0.92rem; color: var(--ink-soft); }

/* Cities */
.cities { background: #241c18; color: #fff; }

.cities .sub { color: rgba(255, 255, 255, 0.65); }

.city-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.city {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.city:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); }

.city .emoji { font-size: 2.2rem; }

.city h3 { margin-top: 10px; font-size: 1rem; font-weight: 800; }

.city p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); margin-top: 5px; }

/* Screens */
.screens-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.screens-row figure {
  border-radius: 26px;
  overflow: hidden;
  border: 5px solid rgba(20, 12, 8, 0.9);
  box-shadow: 0 20px 40px rgba(36, 28, 24, 0.2);
  transition: transform 0.25s ease;
}

.screens-row figure:hover { transform: scale(1.025); }

.screens-row figcaption {
  background: rgba(20, 12, 8, 0.9);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  padding: 9px;
}

/* Stats strip */
.stats {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  text-align: center;
}

.stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }

/* CTA band */
.cta-band {
  background: var(--brand-grad);
  border-radius: 28px;
  color: #fff;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 24px 50px rgba(224, 58, 62, 0.35);
}

.cta-band h2 { color: #fff; }

.cta-band .badges { margin-top: 26px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Content pages (privacy / support) ---------- */
.page { padding: 64px 0 80px; max-width: 760px; }

.page h1 { font-size: 2.1rem; font-weight: 900; }

.page .updated { color: var(--ink-soft); font-size: 0.85rem; margin-top: 6px; }

.page h2 { font-size: 1.25rem; margin: 34px 0 0; }

.page p, .page li { margin-top: 12px; color: #3d332d; }

.page ul { padding-left: 22px; }

.page .highlight {
  margin-top: 24px;
  background: #fff4e8;
  border: 1px solid rgba(255, 138, 42, 0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 600;
}

/* FAQ accordion */
details {
  background: var(--card);
  border-radius: 14px;
  border: 1px solid rgba(36, 28, 24, 0.08);
  padding: 18px 22px;
  margin-top: 14px;
}

details summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary::after { content: "+"; font-size: 1.3rem; color: var(--accent-deep); }

details[open] summary::after { content: "–"; }

details p { margin-top: 10px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer {
  background: #241c18;
  color: rgba(255, 255, 255, 0.75);
  padding: 44px 0;
  font-size: 0.88rem;
}

footer .cols {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

footer a { color: #ffb066; text-decoration: none; margin-right: 18px; }

footer a:hover { text-decoration: underline; }

footer .osm { margin-top: 14px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }

.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero .badges { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img.phone { width: min(220px, 60vw); }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(36, 28, 24, 0.1);
  }

  .nav-links.open { display: flex; }
}
