:root {
  --navy: #0d1035;
  --white: #fafaf9;
  --off: #f4f3f0;
  --border: #e6e5e1;
  --card: #ffffff;
  --mid: #6b6b6b;
  --brand-start: #00d4ff;
  --brand-end: #6b2fff;
  --brand-mid: #3d8eff;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #3d8eff 50%, #6b2fff 100%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(250, 250, 249, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-counter {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.nav-cta {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 65% 55% at 10% 20%,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 60% at 90% 75%,
      rgba(107, 47, 255, 0.06) 0%,
      transparent 65%
    ),
    var(--white);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.28;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    black 10%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    black 10%,
    transparent 100%
  );
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* HERO: logo mark only (dark bg version, shown as circular app icon) */
.hero-app-icon {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease both;
  box-shadow:
    0 8px 40px rgba(61, 142, 255, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 142, 255, 0.07);
  border: 1px solid rgba(61, 142, 255, 0.18);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand-mid);
  margin-bottom: 28px;
  animation: fadeUp 0.55s 0.05s ease both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 840px;
  margin-bottom: 14px;
  color: var(--navy);
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 .gw {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tagline {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--mid);
  margin-bottom: 14px;
  animation: fadeUp 0.6s 0.15s ease both;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--mid);
  max-width: 460px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* Live signup ticker */
.live-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.ticker-avatars {
  display: flex;
}
.ticker-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}
.ticker-avatar:first-child {
  margin-left: 0;
}
.ticker-text {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 300;
}
.ticker-text strong {
  color: var(--navy);
  font-weight: 600;
}

.platform-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.25s ease both;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}
.platform-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--navy);
  flex-shrink: 0;
}

/* ── WAITLIST FORM ── */
.waitlist-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 40px;
  width: 100%;
  max-width: 480px;
  box-shadow:
    0 8px 60px rgba(61, 142, 255, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.04);
  animation: fadeUp 0.6s 0.3s ease both;
}
.waitlist-form h2 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--navy);
}
.form-desc {
  font-size: 0.875rem;
  color: var(--mid);
  margin-bottom: 22px;
  font-weight: 300;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.field input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--off);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.field input:focus {
  border-color: var(--brand-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 142, 255, 0.1);
}
.field input::placeholder {
  color: #c0bfbc;
}
.field-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1) !important;
}
.error-msg {
  font-size: 0.72rem;
  color: #e53e3e;
  margin-top: 2px;
  display: none;
}

.submit-btn {
  width: 100%;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(61, 142, 255, 0.3);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-privacy {
  font-size: 0.73rem;
  color: var(--mid);
  text-align: center;
  margin-top: 11px;
}

/* Referral block shown after signup */
.success-msg {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.success-check {
  width: 58px;
  height: 58px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.12),
    rgba(107, 47, 255, 0.12)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.success-msg h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.success-msg p {
  color: var(--mid);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.referral-box {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
}
.referral-box p {
  font-size: 0.78rem;
  color: var(--mid);
  margin-bottom: 10px;
  font-weight: 400;
}
.referral-link-row {
  display: flex;
  gap: 8px;
}
.referral-link-row input {
  flex: 1;
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--navy);
  outline: none;
  min-width: 0;
}
.copy-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.copy-btn:hover {
  background: var(--brand-mid);
}
.share-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.share-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.2s;
}
.share-btn:hover {
  background: var(--off);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 300;
}

/* ── FEATURES ── */
.features {
  padding: 96px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 460px;
  margin-bottom: 52px;
  color: var(--navy);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feat-card {
  background: var(--card);
  padding: 32px 28px;
  transition: background 0.2s;
}
.feat-card:hover {
  background: var(--off);
}
.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.08),
    rgba(107, 47, 255, 0.08)
  );
  border: 1px solid rgba(61, 142, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.feat-card h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
  color: var(--navy);
}
.feat-card p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CITY COUNTER SECTION ── */
.cities-section {
  background: var(--off);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cities-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.city-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  cursor: default;
}
.city-card:hover {
  border-color: rgba(61, 142, 255, 0.3);
  box-shadow: 0 4px 20px rgba(61, 142, 255, 0.08);
}
.city-card .city-flag {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.city-card .city-name-label {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.city-card .city-waiters {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 300;
}
.city-card .city-waiters strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(61, 142, 255, 0.08);
}
.stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.author-meta {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 300;
}
.beta-tag {
  display: inline-block;
  background: rgba(61, 142, 255, 0.08);
  color: var(--brand-mid);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--off);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 34px;
  height: 34px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
}
.step-content h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
  color: var(--navy);
}
.step-content p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
  font-weight: 300;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-shell {
  width: 260px;
  height: 530px;
  background: #0d1035;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 40px 100px rgba(13, 16, 53, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 20px;
  background: #0d1035;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: var(--gradient);
  padding: 36px 14px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-header-icon {
  font-size: 1rem;
}
.phone-header-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.phone-body {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.phone-feed-item {
  background: var(--off);
  border-radius: 10px;
  padding: 9px;
  display: flex;
  gap: 8px;
}
.phone-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.phone-line {
  height: 5px;
  border-radius: 100px;
  background: var(--border);
}
.phone-loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(61, 142, 255, 0.1);
  border-radius: 100px;
  padding: 2px 7px;
  font-size: 0.5rem;
  color: var(--brand-mid);
  font-weight: 500;
  width: fit-content;
}

/* ── FAQ ── */
.faq-section {
  padding: 96px 48px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--off);
}
.faq-chevron {
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--mid);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}
.faq-item.open .faq-answer {
  display: block;
}

/* ── CTA ── */
.cta-section {
  padding: 110px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 70% at 25% 50%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 70% at 75% 50%,
      rgba(107, 47, 255, 0.05) 0%,
      transparent 65%
    );
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--navy);
}
.cta-section p {
  color: var(--mid);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-btn {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 15px 44px;
  border-radius: 100px;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: -0.01em;
}
.cta-btn:hover {
  opacity: 0.87;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(61, 142, 255, 0.3);
}
.cta-platforms {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cta-platform-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--mid);
}
.cta-platform-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--mid);
  opacity: 0.7;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 48px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover {
  color: var(--brand-mid);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--mid);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.2s;
}
.social-link:hover {
  border-color: rgba(61, 142, 255, 0.4);
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(250, 250, 249, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.mobile-sticky button {
  width: 100%;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

/* ── ADMIN TOGGLE ── */
.admin-toggle-bar {
  background: var(--navy);
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.admin-toggle {
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 15px;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-toggle:hover {
  color: #fff;
  border-color: rgba(61, 142, 255, 0.5);
}

/* ── ADMIN PANEL ── */
#admin-panel {
  display: none;
  background: #07070f;
  min-height: 100vh;
  color: #fff;
  padding: 44px;
  font-family: "DM Sans", sans-serif;
}
#admin-panel.active {
  display: block;
}
.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 14px;
}
.admin-header-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.admin-header h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.admin-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 3px;
  font-weight: 300;
}
.admin-close {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.83rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.admin-close:hover {
  background: rgba(61, 142, 255, 0.15);
  border-color: rgba(61, 142, 255, 0.4);
  color: #fff;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.admin-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px 18px;
  transition: border-color 0.2s;
}
.admin-stat-card:hover {
  border-color: rgba(61, 142, 255, 0.3);
}
.admin-stat-card .num {
  font-family: "Syne", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.admin-stat-card .lbl {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 300;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 18px;
}
.admin-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 22px;
}
.admin-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-placeholder {
  height: 210px;
  background: rgba(61, 142, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(61, 142, 255, 0.07);
  position: relative;
  overflow: hidden;
}
.map-bg-svg {
  opacity: 0.1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.map-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.map-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--brand-mid);
  opacity: 0.2;
  animation: ripple 2.5s infinite;
}
.map-dot.big {
  width: 12px;
  height: 12px;
}
.map-dot.big::after {
  inset: -7px;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.city-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 16px;
}
.city-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.city-name {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  width: 96px;
  flex-shrink: 0;
}
.city-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
}
.city-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
}
.city-count {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.28);
  width: 28px;
  text-align: right;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 110px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  height: 100%;
  justify-content: flex-end;
}
.chart-bar {
  width: 100%;
  background: rgba(61, 142, 255, 0.18);
  border-radius: 4px 4px 0 0;
}
.chart-bar.highlight {
  background: var(--gradient);
}
.chart-day {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.22);
}
.signup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.signup-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.signup-table th {
  text-align: left;
  padding: 0 9px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 500;
}
.signup-table td {
  padding: 10px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.68);
}
.signup-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.67rem;
  font-weight: 500;
}
.tag.new {
  background: rgba(0, 212, 255, 0.12);
  color: var(--brand-start);
}
.tag.verified {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.38);
}
.search-bar {
  display: flex;
  gap: 9px;
  margin-bottom: 16px;
}
.search-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 9px 13px;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 0.83rem;
  outline: none;
  min-width: 0;
}
.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
.search-bar input:focus {
  border-color: rgba(61, 142, 255, 0.4);
}
.export-btn {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  padding: 9px 13px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.export-btn:hover {
  background: rgba(61, 142, 255, 0.15);
}

/* Supabase status indicator */
.db-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.db-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}
.db-dot.connected {
  background: #4ade80;
  animation: pulse 2s infinite;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .how-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .phone-mockup {
    display: none;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 12px 18px;
  }
  .nav-counter {
    display: none;
  }
  .nav-logo {
    height: 28px;
  }
  .hero {
    padding: 96px 18px 56px;
  }
  .waitlist-form {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .features,
  .testimonials,
  .faq-section {
    padding: 56px 18px;
  }
  .cities-section,
  .how-section,
  .cta-section {
    padding: 56px 18px;
  }
  footer {
    padding: 28px 18px;
  }
  .footer-links {
    gap: 24px;
  }
  .stats-bar {
    padding: 18px;
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
  .admin-toggle-bar {
    padding: 9px 18px;
  }
  #admin-panel {
    padding: 18px 14px;
  }
  .signup-table th:nth-child(3),
  .signup-table td:nth-child(3) {
    display: none;
  }
  .mobile-sticky {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}
