/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PEÇAAÍ — styles.css
   light-only · electric blue app marketing
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

/* ─── Tokens ─── */
:root {
  --blue: #1f6bff;
  --blue-deep: #0f4dc2;
  --blue-soft: #e8f0ff;
  --blue-glow: rgba(31, 107, 255, 0.35);
  --ink: #0b1b3d;
  --ink-dim: #4a5878;
  --ink-faint: #8592ad;
  --bg: #ffffff;
  --bg-soft: #f6f8fd;
  --bg-cream: #eef2fa;
  --border: #e4e8f2;
  --border-strong: #cfd5e6;
  --grad-1: linear-gradient(135deg, #1f6bff 0%, #5e8dff 50%, #9bb5ff 100%);
  --grad-text: linear-gradient(100deg, #1f6bff 0%, #5e8dff 60%, #9bb5ff 100%);
  --shadow-sm: 0 2px 10px rgba(11, 27, 61, 0.06);
  --shadow-md: 0 16px 40px -20px rgba(31, 107, 255, 0.3);
  --shadow-lg: 0 40px 100px -40px rgba(31, 107, 255, 0.5);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

/* ─── Decorative blobs ─── */
.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}
.blob-1 {
  width: min(620px, 90vw);
  height: min(620px, 90vw);
  top: -200px;
  right: -180px;
  background: radial-gradient(circle, #bcd0ff 0%, transparent 70%);
}
.blob-2 {
  width: min(540px, 85vw);
  height: min(540px, 85vw);
  top: 40%;
  left: -220px;
  background: radial-gradient(circle, #d4e0ff 0%, transparent 70%);
  opacity: 0.55;
}
.blob-3 {
  width: min(480px, 80vw);
  height: min(480px, 80vw);
  bottom: -200px;
  right: 10%;
  background: radial-gradient(circle, #e1e9ff 0%, transparent 70%);
  opacity: 0.6;
}
main, .nav, .footer { position: relative; z-index: 1; }

/* ─── Typography base ─── */
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.85); }
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.section-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.section-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto;
}
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.grad-light {
  background: linear-gradient(100deg, #ffffff 0%, #bcd0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 80px;
  text-align: center;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 24px -10px rgba(11, 27, 61, 0.5);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--blue-glow);
}
.btn-pill {
  background: var(--blue);
  color: #ffffff;
  padding: 12px 22px;
  font-size: 13px;
}
.btn-pill:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}
.btn-white {
  background: #ffffff;
  color: var(--ink);
  padding: 16px 28px;
}
.btn-white:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  transition: all 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 32px;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: inline-flex;
}
.logo-word {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
}
.nav-links a {
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--blue); }

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  margin-right: 4px;
}
.nav-lang-btn {
  background: transparent;
  border: none;
  padding: 4px 6px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  transition: color 0.2s ease;
}
.nav-lang-btn:hover { color: var(--blue); }
.nav-lang-btn.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-lang-sep { opacity: 0.4; }

/* ─── Reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━ 1. HERO ━━━━━━━━━ */
.hero {
  padding: 160px 32px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--blue-soft);
  border: 1px solid rgba(31, 107, 255, 0.22);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--blue-deep);
  font-weight: 500;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--blue-glow); }
  70% { box-shadow: 0 0 0 8px rgba(31, 107, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 107, 255, 0); }
}
.hero-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-alt {
  font-style: italic;
  color: var(--ink-dim);
  font-weight: 500;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item .trust-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item .trust-label {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── Phone mockup ─── */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit-chip {
  position: absolute;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.chip-1 {
  top: 8%;
  left: -4%;
  color: var(--blue-deep);
  animation-delay: 0s;
}
.chip-2 {
  top: 44%;
  right: -6%;
  animation-delay: -2s;
}
.chip-3 {
  bottom: 10%;
  left: 4%;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.phone {
  position: relative;
  width: min(320px, 80vw);
  height: min(660px, 165vw);
  max-height: 660px;
  background: #0b1b3d;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 50px 100px -30px rgba(31, 107, 255, 0.35),
    0 0 0 2px #1a2a50,
    0 0 0 8px rgba(31, 107, 255, 0.08);
  transform: rotate(-3deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.phone:hover { transform: rotate(0deg); }
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0b1b3d;
  border-radius: 12px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f6f8fd 0%, #ffffff 30%);
  border-radius: 34px;
  overflow: hidden;
  padding: 44px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 4px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.status-icons {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: var(--ink);
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6px;
}
.app-hello {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.app-where {
  font-size: 11px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.app-search {
  background: var(--bg-cream);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
  font-size: 12px;
}
.app-pill-row {
  display: flex;
  gap: 6px;
  overflow: hidden;
}
.app-pill {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-dim);
  background: var(--bg-cream);
  border-radius: 999px;
  white-space: nowrap;
}
.app-pill.is-active {
  background: var(--ink);
  color: #ffffff;
}
.app-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(11, 27, 61, 0.05);
}
.app-card-featured {
  background: linear-gradient(135deg, var(--blue) 0%, #3d80ff 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 12px 28px -8px var(--blue-glow);
}
.app-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.app-card-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
}
.app-card-rating {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}
.app-card-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}
.app-card-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.app-card-stats span {
  display: flex;
  flex-direction: column;
}
.app-card-stats strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  color: #ffffff;
}
.app-card-stats small {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
}
.app-cta {
  width: 100%;
  padding: 10px;
  background: #ffffff;
  color: var(--blue-deep);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.app-card-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}
.mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mini-text { flex: 1; min-width: 0; }
.mini-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mini-sub {
  font-size: 10px;
  color: var(--ink-faint);
  margin-top: 1px;
}
.mini-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.app-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 14px 6px 2px;
  border-top: 1px solid var(--border);
  color: var(--ink-faint);
}
.tab {
  position: relative;
  padding: 6px;
}
.tab.is-active { color: var(--blue); }
.tab-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ━━━━━━━━━ 2. MARQUEE STRIP ━━━━━━━━━ */
.marquee-strip {
  background: var(--ink);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  margin: 40px 0 0;
}
.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}
.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.marquee-track span:nth-child(even) {
  color: var(--blue);
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ━━━━━━━━━ 3. HOW IT WORKS ━━━━━━━━━ */
.how {
  padding: 140px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-step {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.how-step:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.how-step-lifted {
  background: linear-gradient(180deg, var(--blue-soft) 0%, #ffffff 100%);
  border-color: rgba(31, 107, 255, 0.22);
}
.how-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.how-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.how-step-lifted .how-icon {
  background: var(--ink);
  color: #ffffff;
}
.how-step h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.how-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
}

/* ━━━━━━━━━ 4 + 5. AUDIENCE ━━━━━━━━━ */
.audience {
  padding: 140px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.audience-inner.reverse .audience-text { order: 2; }
.audience-inner.reverse > div:last-child { order: 1; }
.audience-text .section-title { text-align: left; }
.audience-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 480px;
  margin-bottom: 32px;
}
.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
}
.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

/* Stat card (mechanics side) */
.audience-stat-card {
  background: var(--ink);
  color: #ffffff;
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.audience-stat-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(31, 107, 255, 0.4) 0%, transparent 60%);
  border-radius: 50%;
}
.asc-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.asc-compare {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.asc-name {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.asc-bar {
  position: relative;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.asc-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  animation: fillGrow 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.asc-fill-bad {
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}
.asc-fill-good {
  background: var(--grad-1);
}
@keyframes fillGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}
.asc-val {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  z-index: 1;
}
.asc-save {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.asc-save strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.asc-save span {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* Seller panel (sellers side) */
.seller-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.sp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.sp-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.sp-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: var(--blue-soft);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--blue-deep);
  text-transform: uppercase;
  font-weight: 600;
}
.sp-metric {
  margin-bottom: 24px;
}
.sp-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.sp-label {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.sp-delta {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}
.sp-chart {
  margin-bottom: 24px;
}
.sp-chart svg {
  width: 100%;
  height: auto;
}
.sp-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}
.sp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.sp-row-name {
  flex: 1;
  font-size: 13px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sp-row-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

/* ━━━━━━━━━ 6. COVERAGE ━━━━━━━━━ */
.coverage {
  padding: 140px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.city:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.city p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.city small {
  font-size: 11px;
  color: var(--ink-faint);
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.city-soon {
  background: var(--bg-cream);
  border-style: dashed;
}
.city-soon p { color: var(--ink-faint); }
.city-soon small { color: var(--blue); }

/* ━━━━━━━━━ 7. TESTIMONIALS ━━━━━━━━━ */
.testimonials {
  padding: 140px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi {
  padding: 36px 32px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}
.testi:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testi blockquote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}
.testi blockquote::before {
  content: "“";
  display: block;
  font-size: 56px;
  color: var(--blue);
  line-height: 0.5;
  margin-bottom: 20px;
  font-family: "Bricolage Grotesque", sans-serif;
}
.testi figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 27, 61, 0.08);
}
.testi.testi-lift {
  background: var(--ink);
  border-color: var(--ink);
}
.testi.testi-lift blockquote,
.testi.testi-lift figcaption strong {
  color: #ffffff;
}
.testi.testi-lift figcaption small {
  color: rgba(255, 255, 255, 0.6);
}
.testi.testi-lift figcaption {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi figcaption strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.testi figcaption small {
  display: block;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* ━━━━━━━━━ 8. FAQ ━━━━━━━━━ */
.faq {
  padding: 140px 32px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] {
  border-color: var(--blue);
  background: var(--blue-soft);
}
.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
  transition: transform 0.3s ease;
}
.faq-plus::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-plus::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item p {
  padding: 0 28px 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
}

/* ━━━━━━━━━ 9. FINAL CTA ━━━━━━━━━ */
.final-cta {
  padding: 60px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.fc-inner {
  position: relative;
  background: linear-gradient(135deg, #0b1b3d 0%, #1f6bff 100%);
  border-radius: var(--radius-lg);
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
}
.fc-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fc-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.fc-inner > * { position: relative; z-index: 1; }
.fc-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
}
.fc-lede {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin: 0 auto 40px;
}
.fc-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ━━━━━━━━━ FOOTER ━━━━━━━━━ */
.footer {
  padding: 100px 32px 40px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 340px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.footer-cols ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-cols a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.footer-cols a:hover { color: var(--blue); }
.footer-base {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ━━━━━━━━━ RESPONSIVE ━━━━━━━━━ */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-phone-wrap {
    order: -1;
  }
  .phone {
    transform: rotate(0);
  }
  .how-steps,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .audience-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .audience-inner.reverse .audience-text,
  .audience-inner.reverse > div:last-child {
    order: unset;
  }
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.nav-burger {
  display: none;
  position: relative;
  z-index: 100;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding-top: env(safe-area-inset-top);
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile-close {
  position: absolute;
  top: calc(env(safe-area-inset-top) + 16px);
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-mobile-close span {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav-mobile-close span:nth-child(1) { transform: rotate(45deg); }
.nav-mobile-close span:nth-child(2) { transform: rotate(-45deg); }
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-mobile a {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-inner > .btn-pill { display: none; }
  .nav-burger { display: flex; }
  .hero {
    padding: 130px 20px 60px;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 16px;
  }
  .trust-sep { display: none; }
  .marquee-track {
    font-size: 24px;
    gap: 28px;
  }
  .how,
  .audience,
  .coverage,
  .testimonials,
  .faq,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-stat-card,
  .seller-panel {
    padding: 32px 24px;
  }
  .fc-inner {
    padding: 80px 24px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-base {
    flex-direction: column;
    gap: 8px;
  }
  .orbit-chip { font-size: 12px; padding: 8px 12px; }
  .chip-1 { top: 2%; left: 2%; }
  .chip-2 { top: 40%; right: 0; }
  .chip-3 { bottom: 4%; left: 6%; }
}

/* Hide the floating "$47.00", "Delivery 45min", "4.9 ★" orbit chips
   on phone-sized viewports. The desktop "floating outside the phone"
   placement relies on horizontal slack a 390px screen does not have,
   and they tip past the viewport edge or clip the phone. Decorative,
   not load-bearing — better to drop them than to crowd the mockup. */
@media (max-width: 540px) {
  .orbit-chip { display: none !important; }
}
