:root {
  --lime: #DAFAB4;
  --lime-deep: #8FE84F;
  --indigo: #3636F0;
  --indigo-dark: #22228F;
  --ink: #1A1A2E;
  --ink-muted: #5C6B4A;
  --warm: #FFF7E8;
  --gold: #E8A63C;
  --white: #FFFFFF;
  --border: rgba(54, 54, 240, 0.14);
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Baloo 2', 'Inter', sans-serif; font-weight: 700; text-wrap: balance; margin: 0; }

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--indigo); text-decoration: none; }
.nav-cta {
  background: var(--indigo);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--indigo-dark); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--lime);
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--lime-deep);
  opacity: 0.5;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-logo img { height: 56px; width: auto; margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  color: var(--ink);
  max-width: 780px;
}
.hero h1 em {
  font-style: normal;
  color: var(--indigo);
}
.hero p.lede {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 560px;
  margin-top: 20px;
  opacity: 0.85;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: default;
}
.btn-primary { background: var(--indigo); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--border); }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--ink-muted); }

/* Photo strip */
.photo-strip { padding: 0 0 88px; background: var(--white); }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 420px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
}
.photo-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.16);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 10px;
  display: block;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 620px; }
.section-lede { color: var(--ink-muted); max-width: 560px; margin-top: 14px; font-size: 1.05rem; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step {
  background: var(--warm);
  border-radius: 20px;
  padding: 28px 24px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Baloo 2', sans-serif;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--ink-muted); font-size: 0.95rem; margin: 0; }

/* Categories */
.categories { background: var(--ink); color: var(--white); }
.categories .section-title, .categories .section-eyebrow { color: var(--white); }
.categories .section-eyebrow { color: var(--lime-deep); }
.categories .section-lede { color: rgba(255,255,255,0.65); }
.chip-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 40px;
}
.chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Cities */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.city-card {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px;
}
.city-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime-deep); margin-bottom: 14px; }
.city-card h3 { font-size: 1.15rem; }
.city-card p { color: var(--ink-muted); font-size: 0.92rem; margin: 6px 0 0; }

/* Trust / safety */
.trust { background: var(--lime); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-item .mark {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.trust-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.trust-item p { color: var(--ink); opacity: 0.75; font-size: 0.92rem; margin: 0; }

/* CTA band */
.cta-band {
  background: var(--indigo);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,0.75); margin-top: 14px; }
.cta-band .btn-primary { background: var(--white); color: var(--indigo); margin-top: 28px; }

/* Footer */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 48px 0 32px; font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
footer .foot-logo img { height: 34px; margin-bottom: 10px; filter: brightness(0) invert(1); opacity: 0.9; }
footer .foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
footer a { color: rgba(255,255,255,0.75); }
footer a:hover { color: var(--white); }
.foot-copy { margin-top: 24px; font-size: 13px; opacity: 0.6; }

/* ---------- Legal pages ---------- */
.legal-header {
  background: var(--lime);
  padding: 48px 0 40px;
}
.legal-header .wrap { display: flex; align-items: center; gap: 16px; }
.legal-header img { height: 44px; }
.legal-header h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 4px; }
.back-link { font-size: 14px; font-weight: 700; color: var(--indigo-dark); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; }

.legal-body { padding: 56px 0 96px; }
.legal-body .wrap { max-width: 720px; }
.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--indigo-dark);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink); font-size: 1rem; }
.legal-body p { margin: 0 0 16px; }
.legal-body ul { padding-left: 22px; margin: 0 0 16px; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 0.95rem; }
.legal-body th, .legal-body td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal-body th { background: var(--warm); }
.legal-updated { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 0; }
.placeholder { background: #FFF3CD; color: #7A5C00; padding: 2px 6px; border-radius: 6px; font-weight: 600; }

@media (max-width: 780px) {
  .steps, .cities-grid, .trust-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); margin-top: -32px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  footer .wrap { flex-direction: column; }
}
