:root {
  --bg: #fdf8f0;
  --surface: #fefbf7;
  --map: #e3f4e2;
  --ink: #3e2f27;
  --ink-soft: #726660;
  --ink-faint: #a59c98;
  --line: #ebe3dd;
  --accent: #f0ab90;
  --accent-dark: #b25634;
  --accent-soft: #ffe7dd;
  --mint: #3a6a45;
  --mint-soft: #e0f0e3;
  --sky: #cae2f3;
  --fur: #eed2b5;
  --white: #ffffff;
  --radius-card: 22px;
  --radius-cta: 28px;
  --radius-chip: 999px;
  --shadow: 0 18px 40px -20px rgba(62, 47, 39, 0.35);
  --shadow-cta: 0 8px 18px -6px rgba(178, 86, 52, 0.45);
  --font-display: "Quicksand", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-mark: "Caveat", cursive;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 8px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.brand span {
  font-family: var(--font-mark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.8px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-cta);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
}

.btn-solid {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.btn-solid:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1.5px solid var(--accent-dark);
}

.btn-mint {
  background: var(--mint);
  color: var(--white);
}

.btn-sm {
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--radius-chip);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  max-width: 14ch;
}

.lede {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 38ch;
}

.waitlist {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 6px;
  max-width: 460px;
  box-shadow: var(--shadow);
}

.waitlist input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 16px;
  font: 500 15px var(--font-body);
  color: var(--ink);
  outline: none;
}

.waitlist input::placeholder {
  color: var(--ink-faint);
}

.form-ok {
  margin-top: 20px;
  background: var(--mint-soft);
  color: var(--mint);
  border-radius: 18px;
  padding: 14px 18px;
  font-weight: 600;
  max-width: 460px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 600;
}

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

.stores {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.store {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  line-height: 1.2;
  min-width: 148px;
  text-decoration: none;
  opacity: 0.88;
}

.store b {
  font-size: 14px;
  font-family: var(--font-display);
}

.store[aria-disabled="true"] {
  pointer-events: none;
}

/* —— Phone mock —— */
.stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.blob-a {
  width: 340px;
  height: 340px;
  background: var(--mint-soft);
  top: 20px;
  right: 10px;
}

.blob-b {
  width: 220px;
  height: 220px;
  background: var(--sky);
  bottom: 40px;
  left: 30px;
  opacity: 0.7;
}

.device {
  position: relative;
  width: 290px;
  height: 600px;
  background: #1c1410;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 40px 70px -28px rgba(62, 47, 39, 0.5),
    inset 0 0 0 2px #3a2a24;
}

.device-screen {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
  font-size: 12px;
}

.notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #1c1410;
  border-radius: 12px;
  z-index: 2;
}

.mock-head {
  padding: 28px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mock-head strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.mock-head p {
  color: var(--ink-soft);
  font-size: 11px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.search {
  margin: 12px 16px 0;
  height: 36px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--ink-faint);
  gap: 8px;
}

.chips {
  display: flex;
  gap: 6px;
  padding: 10px 16px 0;
  overflow: hidden;
}

.chip {
  flex: none;
  padding: 5px 10px;
  border-radius: var(--radius-chip);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
}

.chip.on {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.mock-map {
  position: relative;
  margin: 10px 16px 0;
  height: 248px;
  border-radius: 22px;
  background: var(--map);
  overflow: hidden;
}

.pond {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mint) 18%, var(--map));
}

.pond-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: -30px;
}

.pond-2 {
  width: 120px;
  height: 120px;
  right: -28px;
  top: 70px;
}

.path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.you {
  position: absolute;
  left: 28px;
  bottom: 36px;
  width: 14px;
  height: 14px;
  background: var(--accent-dark);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent-dark) 22%, transparent);
}

.pin {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--accent-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px -2px rgba(62, 47, 39, 0.35);
}

.pin.mint {
  background: var(--mint);
}

.pin svg {
  transform: rotate(-45deg);
}

.pin-a {
  top: 42px;
  right: 54px;
}

.pin-b {
  top: 150px;
  left: 108px;
}

.pin-label {
  position: absolute;
  top: 108px;
  left: 86px;
  background: var(--white);
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.pin-label b {
  display: block;
  font-size: 11px;
}

.pin-label span {
  color: var(--ink-soft);
  font-size: 10px;
}

.peek {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 62px;
  height: 72px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  padding: 10px;
}

.peek-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
}

.peek b {
  display: block;
  font-size: 12px;
}

.peek span {
  color: var(--ink-soft);
  font-size: 11px;
}

.tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--ink-faint);
  text-align: center;
}

.tabbar .on {
  color: var(--accent-dark);
}

.mascot {
  position: absolute;
  left: -18px;
  top: 86px;
  width: 86px;
  filter: drop-shadow(0 10px 16px rgba(62, 47, 39, 0.18));
}

/* —— Sections —— */
section,
#partner {
  scroll-margin-top: 88px;
}

section {
  padding: 72px 0;
}

.section-kicker {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  max-width: 18ch;
}

.section-sub {
  margin-top: 10px;
  color: var(--ink-soft);
  max-width: 46ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
}

.step-n {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.card p {
  color: var(--ink-soft);
  font-size: 14.5px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
}

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.icon-bubble.mint {
  background: var(--mint-soft);
  color: var(--mint);
}

.icon-bubble.sky {
  background: var(--sky);
  color: #597f9b;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.city {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-chip);
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
}

.city.lead {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--white);
}

.partner {
  background: var(--mint);
  color: #e8f6ea;
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.partner h2,
.partner .section-title {
  color: var(--white);
}

.partner p {
  color: #d5ead8;
}

.partner-form {
  display: grid;
  gap: 10px;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font: 500 15px var(--font-body);
  background: var(--white);
  color: var(--ink);
}

.partner-form textarea {
  min-height: 90px;
  resize: vertical;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}

summary {
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal {
  padding: 48px 0 80px;
  max-width: 720px;
}

.legal h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.legal h2 {
  font-size: 20px;
  margin: 28px 0 8px;
}

.legal p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .hero-grid,
  .steps,
  .features,
  .partner {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a,
  .nav-links .btn {
    width: 100%;
  }

  .stage {
    min-height: 560px;
  }

  .waitlist {
    flex-direction: column;
    border-radius: 22px;
    padding: 10px;
  }

  .waitlist .btn {
    width: 100%;
  }

  .hero {
    padding-top: 12px;
  }

  .partner {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
