/* ============================================================
   SocialBling — Main Stylesheet
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #F97316;
  --primary-d: #EA580C;
  --secondary: #06B6D4;
  --mom: #EC4899;
  --dad: #3B82F6;
  --family: #8B5CF6;
  --dark: #000000;
  --dark2: #0a0a0a;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --border: #1E2530;
  --bg: #0a0a0a;
  --bg-light: #111318;
  --bg-card: #13161d;
  --r: 16px;
  --r-sm: 8px;
  --r-lg: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.6), 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.5), 0 2px 4px -1px rgba(0,0,0,.4);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.6), 0 4px 6px -2px rgba(0,0,0,.4);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.7), 0 8px 16px rgba(0,0,0,.5);
  --t: 0.2s ease;
  --glow-primary: 0 0 24px rgba(249,115,22,0.18);
  --glow-mom: 0 0 24px rgba(236,72,153,0.18);
  --glow-dad: 0 0 24px rgba(59,130,246,0.18);
  --glow-family: 0 0 24px rgba(139,92,246,0.18);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
ul { list-style: none; }
input, textarea { font-family: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--t);
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); }
.btn-white {
  background: white;
  color: var(--dark);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-circle { border-radius: var(--r-sm); padding: 12px 24px; }
.btn-mom { background: var(--mom); color: white; }
.btn-mom:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-dad { background: var(--dad); color: white; }
.btn-dad:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-family { background: var(--family); color: white; }
.btn-family:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(249,115,22,0.2);
  letter-spacing: 0.3px;
}
.badge-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

/* ---------- Section ---------- */
.section { padding: 96px 0; background: var(--bg); }
.section-dark { background: #050507; }
.section-light { background: #0d0f14; }
.section-cta { background: linear-gradient(135deg, #000000 0%, #0f0520 50%, #000000 100%); }

.sec-hdr { text-align: center; margin-bottom: 64px; }
.sec-hdr h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--text);
}
.sec-hdr p { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.sec-hdr-light h2, h2.light { color: white; }
.sec-hdr-light p, p.light { color: rgba(255,255,255,0.55); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(249,115,22,0.08), var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark { font-size: 24px; line-height: 1; }
.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
  padding: 4px 0;
}
.nav-links a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% -10%, rgba(249,115,22,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 0% 80%, rgba(6,182,212,0.06) 0%, transparent 60%),
              #000000;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob-1 { width: 700px; height: 700px; background: var(--primary); top: -150px; right: -150px; }
.hero-blob-2 { width: 500px; height: 500px; background: var(--secondary); bottom: -100px; left: -150px; animation-delay: -4s; }
@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: white;
}
.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, var(--mom) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat b { font-size: 22px; font-weight: 800; color: white; line-height: 1; }
.stat span { font-size: 12px; color: var(--muted); font-weight: 500; }
.stat-sep { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 560px;
}
.phone-mockup {
  width: 270px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 14px 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  margin: -14px auto 8px;
  position: relative;
  z-index: 5;
}
.phone-screen {
  background: #f0f0f0;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: #075E54;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wa-info { flex: 1; }
.wa-info b { display: block; font-size: 12px; font-weight: 700; color: white; line-height: 1.3; }
.wa-info span { font-size: 10px; color: rgba(255,255,255,0.65); }
.wa-dots { color: rgba(255,255,255,0.7); font-size: 16px; }
.wa-messages {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3C/svg%3E");
  min-height: 220px;
}
.wa-msg { display: flex; flex-direction: column; max-width: 85%; }
.wa-msg-other { align-self: flex-start; }
.wa-msg-me { align-self: flex-end; }
.wa-bubble {
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 1.45;
  position: relative;
}
.wa-msg-other .wa-bubble { background: white; border-top-left-radius: 2px; }
.wa-msg-me .wa-bubble { background: #DCF8C6; border-top-right-radius: 2px; }
.wa-name { font-size: 9px; color: #128C7E; font-weight: 600; margin-top: 2px; padding-left: 2px; }
.wa-reactions {
  display: flex;
  gap: 4px;
  align-self: flex-start;
}
.wa-reactions span {
  background: white;
  padding: 2px 7px;
  border-radius: 50px;
  font-size: 9px;
  box-shadow: var(--shadow);
}
.wa-input-bar {
  background: #f0f0f0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #ddd;
}
.wa-input-placeholder {
  flex: 1;
  font-size: 10px;
  color: #999;
  background: white;
  padding: 5px 10px;
  border-radius: 20px;
}
.wa-send { color: #075E54; font-size: 14px; }

/* Floating Cards */
.float-card {
  position: absolute;
  background: #15181f;
  border-radius: var(--r);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  font-size: 12px;
  z-index: 3;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
}
.float-card > span { font-size: 20px; flex-shrink: 0; }
.float-card b { display: block; font-size: 12px; font-weight: 700; line-height: 1.3; color: white; }
.float-card small { font-size: 10px; color: var(--muted); }
.fc-1 { top: 50px; left: -20px; animation: float1 4s ease-in-out infinite; }
.fc-2 { top: 90px; right: -30px; animation: float2 4.5s ease-in-out infinite; }
.fc-3 { bottom: 130px; left: -30px; animation: float1 5s ease-in-out infinite 0.5s; }
.fc-4 { bottom: 70px; right: -20px; animation: float2 3.8s ease-in-out infinite 1s; }
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(8px); }
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl), var(--glow-primary); border-color: rgba(249,115,22,0.25); }
.step-num {
  font-size: 52px;
  font-weight: 800;
  color: rgba(249,115,22,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: white; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.step-arrow {
  font-size: 28px;
  color: var(--border);
  padding-top: 72px;
  flex-shrink: 0;
}

/* ---------- CIRCLES ---------- */
.circles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.circle-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.3s;
  border-top: 4px solid var(--accent-c, var(--primary));
}
.circle-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.cc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cc-emoji { font-size: 36px; flex-shrink: 0; }
.cc-top h3 { color: white; font-size: 20px; font-weight: 700; line-height: 1.2; }
.cc-top small { color: rgba(255,255,255,0.45); font-size: 12px; }
.circle-card > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}
.cc-list { margin-bottom: 24px; }
.cc-list li {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.cc-list li::before {
  content: '✓';
  color: var(--accent-c, var(--primary));
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
}

/* ---------- MEETUPS ---------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.filter-btn {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--t);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.meetups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  min-height: 100px;
}
.meetup-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}
.meetup-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl), 0 0 30px rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.2); }
.meetup-accent { height: 4px; }
.meetup-accent.playdate { background: linear-gradient(90deg, var(--primary), #fb923c); }
.meetup-accent.mom { background: linear-gradient(90deg, var(--mom), #f472b6); }
.meetup-accent.dad { background: linear-gradient(90deg, var(--dad), #60a5fa); }
.meetup-accent.family { background: linear-gradient(90deg, var(--family), #a78bfa); }
.meetup-body { padding: 20px; }
.meetup-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.meetup-emoji { font-size: 28px; line-height: 1; padding-top: 2px; }
.meetup-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; color: white; }
.meetup-date { font-size: 11px; color: var(--muted); font-weight: 500; }
.meetup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.meta-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.meetup-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.meetup-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  gap: 12px;
  background: var(--bg-card);
}
.meetup-spots { font-size: 12px; font-weight: 600; }
.spots-full { color: var(--muted); }
.spots-few { color: #EF4444; }
.spots-open { color: #22C55E; }
.meetup-rsvp {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  flex-shrink: 0;
}
.meetup-rsvp:hover { filter: brightness(1.1); transform: scale(1.03); }
.meetup-rsvp.rsvp-done { background: #10B981; cursor: default; transform: none; }
.meetup-rsvp.rsvp-full { background: rgba(255,255,255,0.05); color: var(--muted); cursor: default; border: 1px solid var(--border); }
.meetup-rsvp.wa-live-btn {
  background: #25D366;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.meetup-rsvp.wa-live-btn:hover { background: #20bb5a; transform: scale(1.03); }
.meetups-footer { text-align: center; }
.meetups-footer p { color: var(--muted); margin-bottom: 16px; font-size: 14px; }

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl), var(--glow-primary); border-color: rgba(249,115,22,0.25); }
.feature-card:hover::before { opacity: 1; }
.feat-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: white; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- NEIGHBORHOODS ---------- */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.hood-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  transition: all 0.25s;
  cursor: pointer;
  text-align: center;
}
.hood-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md), var(--glow-primary); }
.hood-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: white; }
.hood-zone { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.hood-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid rgba(249,115,22,0.2);
}
.hood-card.hood-new .hood-badge { background: rgba(100,116,139,0.1); color: var(--muted); border-color: var(--border); }
.hood-card.hood-new { border-style: dashed; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.testimonial:hover { box-shadow: var(--shadow-lg), var(--glow-primary); transform: translateY(-4px); border-color: rgba(249,115,22,0.2); }
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-author b { display: block; font-size: 14px; color: white; }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-box {
  text-align: center;
  padding: 80px 40px;
}
.cta-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-box h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.7;
}
.footer-links { display: flex; gap: 48px; }
.footer-links h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links ul { }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color var(--t);
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #111318;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(249,115,22,0.08);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scroll-behavior: smooth;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-progress {
  height: 4px;
  background: rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--mom));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.07);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  transition: all var(--t);
  border: 1px solid var(--border);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: white; }
.modal-step { padding: 32px; }
.modal-step.hidden { display: none; }
.modal-hdr { margin-bottom: 24px; padding-right: 40px; }
.step-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.modal-hdr h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: white;
}
.modal-hdr p { font-size: 14px; color: var(--muted); }

/* Type Grid */
.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.type-card {
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--t);
  background: rgba(255,255,255,0.02);
}
.type-card:hover { border-color: var(--primary); background: rgba(249,115,22,0.06); }
.type-card.selected { border-color: var(--primary); background: rgba(249,115,22,0.08); box-shadow: var(--glow-primary); }
.type-card > span { font-size: 32px; display: block; margin-bottom: 8px; }
.type-card b { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; color: white; }
.type-card small { font-size: 11px; color: var(--muted); }

/* Age Grid */
.age-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  max-height: 320px;
  overflow-y: auto;
}
.age-card {
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px;
  cursor: pointer;
  transition: all var(--t);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.02);
}
.age-card:hover { border-color: var(--primary); background: rgba(249,115,22,0.05); }
.age-card.selected { border-color: var(--primary); background: rgba(249,115,22,0.08); box-shadow: var(--glow-primary); }
.age-card > span { font-size: 22px; flex-shrink: 0; }
.age-card b { display: block; font-size: 12px; font-weight: 700; line-height: 1.3; color: white; }
.age-card small { font-size: 10px; color: var(--muted); display: block; }

/* Area Grid */
.search-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color var(--t);
  background: rgba(255,255,255,0.04);
  color: white;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { outline: none; border-color: var(--primary); background: rgba(249,115,22,0.05); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 20px;
  max-height: 240px;
  overflow-y: auto;
}
.area-chip {
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  cursor: pointer;
  transition: all var(--t);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.02);
}
.area-chip:hover { border-color: var(--primary); background: rgba(249,115,22,0.05); }
.area-chip.selected { border-color: var(--primary); background: rgba(249,115,22,0.08); box-shadow: var(--glow-primary); }
.area-chip span { font-size: 13px; font-weight: 600; color: white; }
.area-chip small { font-size: 10px; color: var(--muted); white-space: nowrap; }

/* Form */
.form-fields { margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,0.8); }
.field input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  transition: border-color var(--t);
  background: rgba(255,255,255,0.04);
  color: white;
}
.field input::placeholder { color: var(--muted); }
.field input:focus { outline: none; border-color: var(--primary); background: rgba(249,115,22,0.05); }
.opt { color: var(--muted); font-weight: 400; }
.phone-wrap {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--t);
  background: rgba(255,255,255,0.04);
}
.phone-wrap:focus-within { border-color: var(--primary); background: rgba(249,115,22,0.05); }
.phone-pre {
  background: rgba(255,255,255,0.06);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  border-right: 2px solid var(--border);
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--muted);
}
.phone-wrap input {
  border: none !important;
  border-radius: 0;
  flex: 1;
  background: transparent;
  padding: 10px 12px;
}
.phone-wrap input:focus { outline: none; border-color: transparent !important; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.checkbox-label input { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.checkbox-label a { color: var(--primary); }
.modal-footer-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Success Screen */
.success-screen { text-align: center; }
.success-anim {
  font-size: 60px;
  margin-bottom: 16px;
  display: block;
  animation: successBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successBounce {
  0% { transform: scale(0) rotate(-10deg); }
  70% { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}
.success-screen h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; color: white; }
.success-screen > p { color: var(--muted); margin-bottom: 20px; font-size: 15px; }
#groupsList { text-align: left; margin-bottom: 24px; }
.group-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all var(--t);
  background: rgba(255,255,255,0.03);
}
.group-item:hover { box-shadow: var(--shadow-md); border-color: rgba(255,255,255,0.15); }
.group-info { display: flex; align-items: center; gap: 10px; min-width: 0; }
.group-emoji { font-size: 24px; flex-shrink: 0; }
.group-name { font-size: 13px; font-weight: 700; margin-bottom: 2px; color: white; }
.group-members { font-size: 11px; color: var(--muted); }
.wa-join-btn {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t);
}
.wa-join-btn:hover { filter: brightness(1.1); transform: scale(1.03); }
.wa-join-btn.joined { background: #10B981; }
.success-tips {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.success-tips h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: white; }
.success-tips ul { display: flex; flex-direction: column; gap: 6px; }
.success-tips li { font-size: 13px; color: var(--muted); }

/* ---------- ALL GROUPS PANEL ---------- */
.ag-filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ag-filter-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
}
.ag-filter-btn.active,
.ag-filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
#allGroupsList { display: flex; flex-direction: column; gap: 8px; }
.ag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
}
.ag-item:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.06);
  transform: translateX(4px);
}
.ag-emoji { font-size: 26px; flex-shrink: 0; }
.ag-info { flex: 1; min-width: 0; }
.ag-name { font-size: 13px; font-weight: 700; color: white; margin-bottom: 2px; }
.ag-desc { font-size: 11px; color: var(--muted); }
.ag-arrow { font-size: 18px; flex-shrink: 0; opacity: 0.6; }
.ag-item:hover .ag-arrow { opacity: 1; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark2);
  color: white;
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 400;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---------- REVEAL ANIMATIONS ---------- */
/* Base: fade up */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Section transition line — glowing underline when section enters view */
.section-enter-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
  margin-bottom: 64px;
}
.section-enter-line.visible { transform: scaleX(1); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .circles-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 80px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; }
  .phone-mockup { width: 230px; }
  .hero-blob-1 { width: 400px; height: 400px; top: -80px; right: -80px; }
  .hero-blob-2 { width: 300px; height: 300px; }
  .fc-1 { top: 20px; left: -5px; }
  .fc-2 { top: 50px; right: -5px; }
  .fc-3 { bottom: 90px; left: -5px; }
  .fc-4 { bottom: 30px; right: -5px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #0d0f14;
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    gap: 0;
    z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open li a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stat-sep { display: none; }
  .footer-links { gap: 32px; }
  .cta-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .age-grid { max-height: none; }
  .area-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; gap: 8px; }
  .type-card { display: flex; align-items: center; gap: 12px; text-align: left; padding: 14px 16px; }
  .type-card > span { font-size: 28px; margin-bottom: 0; flex-shrink: 0; }
  .footer-inner { flex-direction: column; }
}
