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

:root {
  --purple:        #6B5DC0;
  --purple-dark:   #4A3D9E;
  --purple-deeper: #2E2478;
  --purple-light:  #8878CC;
  --purple-tint:   #EAE6F8;
  --olive:         #22C55E;
  --olive-dark:    #16a34a;
  --olive-light:   #4ade80;
  --green-tint:    #dcfce7;
  --brand-black:   #0F0F14;
  --off-white:     #F8F7FC;
  --grey-100:      #EEECF5;
  --grey-200:      #D4D1E8;
  --grey-400:      #8E8BA8;
  --grey-500:      #6B6985;
  --grey-600:      #4E4C63;
  --text:          #0F0F14;
  --text-muted:    #4E4C63;
  --bg:            #FFFFFF;
  --border:        #D4D1E8;
  --radius:        14px;
  --radius-lg:     22px;
  --shadow:        0 4px 24px rgba(59,36,128,0.10);
  --shadow-lg:     0 12px 48px rgba(59,36,128,0.16);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ─── REVEAL ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--grey-200) 20%, var(--grey-200) 80%, transparent); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ─── CHIPS — High contrast ──────────────────────────────── */
.chip {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.05em;
  margin-bottom: 18px; text-transform: uppercase;
}
.chip-purple { background: var(--purple); color: #fff; }
.chip-olive  { background: var(--olive-dark); color: #fff; }
.chip-light  { background: var(--purple-tint); color: var(--purple-dark); border: 1.5px solid var(--purple-light); }
.chip-win    { background: #1A1A1A; color: #F5C842; border: 1px solid #8a7000; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  background: var(--purple); color: #fff;
  padding: 13px 28px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,36,128,0.28); }
.btn-olive {
  background: var(--olive); color: #fff;
  padding: 13px 28px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-olive:hover { background: var(--olive-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--purple);
  padding: 12px 26px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--purple); cursor: pointer; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline:hover { background: var(--purple-tint); transform: translateY(-2px); }
.btn-ghost { color: var(--grey-600); font-weight: 600; font-size: 14px; display: inline-block; transition: color 0.2s; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 18px 44px; font-size: 17px; border-radius: 999px; }
.btn-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--purple); font-weight: 700; font-size: 16px;
  word-break: break-all; transition: color 0.2s;
}
.btn-email:hover { color: var(--purple-dark); }

/* ─── SOCIAL ICONS ───────────────────────────────────────── */
.social-icon {
  color: var(--purple); display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--purple-tint); border: 1.5px solid var(--grey-200);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.social-icon:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.social-icon-dark { color: var(--grey-600); background: var(--grey-100); border-color: var(--grey-200); }
.social-icon-dark:hover { background: var(--purple); color: #fff; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(59,36,128,0.10); }
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; }
.logo-text { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-be { color: var(--purple); }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-link {
  color: var(--grey-600); font-size: 14px; font-weight: 600;
  padding: 6px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--grey-100); }
.nav-link.active { color: var(--purple); background: var(--purple-tint); }
.nav-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.nav-email { font-size: 13px; font-weight: 700; color: var(--purple); }
.nav-email:hover { color: var(--purple-dark); }

/* ─── NAV DROPDOWNS ──────────────────────────────────────── */
.nav-item { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px;
  min-width: 220px;
  z-index: 200;
}
.nav-item:hover .nav-dropdown { display: flex; flex-direction: column; gap: 2px; }
.nav-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--grey-600);
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dd-item:hover { background: var(--grey-100); color: var(--text); }
.nav-dd-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey-400);
  padding: 6px 12px 2px;
}
.nav-dd-sep { height: 1px; background: var(--grey-200); margin: 4px 0; }
.nav-dd-badge {
  font-size: 10px; font-weight: 700; background: var(--grey-100);
  color: var(--grey-500); padding: 2px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em; margin-left: auto;
}
.dd-icon { font-size: 14px; flex-shrink: 0; }

/* Mobile: hide dropdowns entirely, show simplified nav */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ctas .btn-primary { font-size: 13px; padding: 8px 16px; }
}

/* ─── LANDING PAGE ───────────────────────────────────────── */
.landing-body { background: #fff; }

.landing-hero {
  min-height: 100vh; padding-top: 64px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--off-white); position: relative; overflow: hidden;
  text-align: center;
}
.landing-orb-1 {
  position: absolute; width: 700px; height: 700px; top: -200px; left: -150px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(107,93,192,0.10) 0%, transparent 70%);
}
.landing-orb-2 {
  position: absolute; width: 600px; height: 600px; bottom: -200px; right: -150px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
}
.landing-hero-inner { position: relative; z-index: 1; padding: 40px 28px; max-width: 800px; }

.landing-phone-wrap { margin: 0 auto 40px; position: relative; display: inline-block; }

/* Large hero phone */
.hero-phone {
  width: 280px; background: #111122; border-radius: 42px; padding: 14px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 40px 100px rgba(0,0,0,0.40), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.hero-phone-notch {
  width: 80px; height: 22px; background: #111122;
  border-radius: 0 0 16px 16px; margin: -14px auto 0; position: relative; z-index: 2;
}
.hero-phone-screen {
  background: #F7F6FB; border-radius: 30px; overflow: hidden; height: 520px;
  display: flex; flex-direction: column;
}
/* Phone screen content reused from demo screens */
.hero-phone .dscreen-status { background: #F7F6FB; padding: 12px 16px 6px; }
.hero-phone .dscreen-appbar { background: #F7F6FB; padding: 3px 16px 8px; }
.hero-phone .dscreen-tabs { padding: 0 14px 8px; background: #F7F6FB; }
.hero-phone .dscreen-feed { padding: 6px 12px; gap: 8px; }
.hero-phone .dcard { border-radius: 12px; padding: 11px 13px; }

/* Hero floating badge */
.hero-badge {
  position: absolute; background: #fff; border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14); border: 1px solid var(--grey-200);
  animation: floatBadge 3s ease-in-out infinite alternate; white-space: nowrap;
}
.hero-badge-right { bottom: 80px; right: -80px; animation-delay: 0s; }
.hero-badge-left  { top: 100px; left: -80px; animation-delay: 1.5s; }
.hb-icon { font-size: 1.2rem; }
.hb-title { font-size: 11px; font-weight: 700; color: #111; }
.hb-sub   { font-size: 9px; color: var(--grey-400); margin-top: 1px; }
@keyframes floatBadge { from { transform: translateY(0); } to { transform: translateY(-10px); } }

.landing-tagline {
  font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em; color: var(--brand-black);
  margin-bottom: 16px;
}
.landing-sub {
  font-size: 1.1rem; color: var(--text-muted); margin-bottom: 48px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* Path cards */
.path-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1080px; margin: 0 auto;
}
.path-card {
  display: block; padding: 56px 52px; transition: transform 0.2s;
  cursor: pointer; text-decoration: none; position: relative; overflow: hidden;
}
.path-card:hover { transform: translateY(-4px); }
.path-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.2s;
}
.path-card:hover::before { opacity: 1; }

.path-business { background: var(--purple-deeper); color: #fff; border-radius: 0 0 0 var(--radius-lg); }
.path-business::before { background: rgba(255,255,255,0.04); }
.path-business .pc-chip { background: rgba(255,255,255,0.18); color: #fff; }
.path-business .pc-title { color: #fff; }
.path-business .pc-desc { color: rgba(255,255,255,0.72); }
.path-business .pc-cta { color: var(--olive-light); }

.path-users { background: #fff; border: 2px solid var(--grey-200); border-top: none; border-left: none; border-radius: 0 0 var(--radius-lg) 0; }
.path-users::before { background: var(--off-white); }
.path-users .pc-chip { background: var(--olive); color: #fff; }
.path-users .pc-title { color: var(--brand-black); }
.path-users .pc-desc { color: var(--text-muted); }
.path-users .pc-cta { color: var(--purple); }

.pc-icon { font-size: 2.8rem; margin-bottom: 20px; }
.pc-chip {
  display: inline-block; font-size: 10px; font-weight: 800; padding: 4px 12px;
  border-radius: 999px; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.pc-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.pc-desc { font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
.pc-cta { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.pc-cta-arrow { transition: transform 0.2s; }
.path-card:hover .pc-cta-arrow { transform: translateX(6px); }

/* Landing accolade bar */
.landing-accolades {
  background: #fff; border-top: 1px solid var(--grey-200);
  padding: 16px 28px; text-align: center;
  font-size: 12px; color: var(--grey-400); font-weight: 500; letter-spacing: 0.04em;
}
.landing-accolades strong { color: var(--grey-600); }

/* ─── SHARED BUSINESS + USERS PAGES ─────────────────────── */
.page-nav { padding-top: 64px; }

/* Hero variants */
.biz-hero {
  padding: 100px 0 80px; background: var(--off-white); position: relative; overflow: hidden;
}
.biz-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.biz-hero-orb-1 { width: 700px; height: 700px; top: -250px; right: -150px; background: radial-gradient(circle, rgba(107,93,192,0.09) 0%, transparent 70%); }
.biz-hero-orb-2 { width: 500px; height: 500px; bottom: -200px; left: -100px; background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, transparent 70%); }
.biz-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.biz-hero-copy h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px; }
.biz-hero-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 420px; }
.biz-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.biz-hero-email-block {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px; background: #fff; border: 2px solid var(--purple);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.biz-hero-email-block .beb-label { font-size: 11px; font-weight: 700; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.biz-hero-email-block a { font-size: 15px; font-weight: 800; color: var(--purple); }
.biz-hero-email-block a:hover { color: var(--purple-dark); }
.biz-hero-email-icon { color: var(--purple); opacity: 0.6; }

/* Proof bar */
.proof-bar { background: #fff; border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); padding: 16px 0; }
.proof-bar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.pb-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--grey-600); }
.pb-sep { color: var(--grey-200); font-size: 1.4rem; line-height: 1; }

/* Email CTA banner (business page) */
.email-banner {
  background: var(--purple-deeper); color: #fff;
  padding: 22px 0; text-align: center;
}
.email-banner-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.email-banner h3 { font-size: 16px; font-weight: 700; }
.email-banner a.btn-email-banner {
  display: inline-block; background: #fff; color: var(--purple-deeper);
  font-weight: 800; font-size: 15px; padding: 10px 24px;
  border-radius: 999px; transition: transform 0.15s;
}
.email-banner a.btn-email-banner:hover { transform: scale(1.03); }

/* ─── PROBLEM / SOLUTION ─────────────────────────────────── */
.ps-compare { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 24px; align-items: start; }
.ps-col {
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.ps-problem { background: #FFF4F4; border: 1.5px solid #F5C5C5; }
.ps-solution { background: var(--green-tint); border: 1.5px solid var(--olive-light); }
.ps-col-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.ps-x { color: #D32F2F; font-size: 14px; }
.ps-check { color: var(--olive-dark); font-size: 14px; }
.ps-col-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
.ps-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ps-list li { font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; font-weight: 500; }
.ps-list-bad  li::before { content: "✕  "; color: #D32F2F; font-weight: 700; position: absolute; left: 0; }
.ps-list-good li::before { content: "✓  "; color: var(--olive-dark); font-weight: 700; position: absolute; left: 0; }
.ps-vs { font-size: 14px; font-weight: 800; color: var(--grey-400); padding-top: 80px; text-align: center; }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step {
  background: #fff; border: 1.5px solid var(--grey-200);
  border-radius: var(--radius); padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-connector { display: flex; align-items: center; justify-content: center; padding: 0 8px; padding-top: 40px; }
.step-num { font-size: 2rem; font-weight: 800; color: var(--purple); opacity: 0.15; line-height: 1; margin-bottom: 12px; }
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ─── FEATURES ───────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  display: flex; gap: 16px; padding: 26px;
  background: #fff; border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.fc-purple { background: var(--purple-tint); }
.fc-olive  { background: var(--green-tint); }
.fc-dark   { background: #111122; }
.feat-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feat-body p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.feat-coming { font-size: 11px; font-weight: 700; color: var(--olive-dark); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── ROI ────────────────────────────────────────────────── */
.roi-section { background: var(--purple-deeper); color: #fff; }
.roi-inner { display: grid; grid-template-columns: 1fr auto; gap: 72px; align-items: center; }
.roi-copy h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.roi-copy > p { color: rgba(255,255,255,0.70); margin-bottom: 28px; font-size: 15px; }
.roi-equation { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.roi-eq-item {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 16px 20px; text-align: center;
}
.roi-eq-num { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.roi-eq-label { display: block; font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.roi-eq-op { font-size: 1.3rem; color: rgba(255,255,255,0.4); font-weight: 700; }
.roi-eq-result { border-color: var(--olive-light); background: rgba(34,197,94,0.15); }
.roi-eq-result .roi-eq-num { color: var(--olive-light); }
.roi-callout {
  background: rgba(34,197,94,0.14); border-left: 3px solid var(--olive);
  border-radius: 0 8px 8px 0; padding: 12px 16px;
  font-weight: 600; font-size: 14px; color: var(--olive-light); margin-bottom: 22px;
}
.roi-promo-note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: rgba(255,255,255,0.80); font-weight: 500;
}
.roi-list { list-style: none; }
.roi-list li { padding: 7px 0; font-size: 14px; color: rgba(255,255,255,0.70); border-bottom: 1px solid rgba(255,255,255,0.07); }
.roi-list li::before { content: "✓  "; color: var(--olive-light); font-weight: 700; }
.roi-cards { display: flex; flex-direction: column; gap: 14px; min-width: 200px; }
.roi-stat-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 24px 28px; }
.roi-stat-highlight { border-color: var(--olive); background: rgba(34,197,94,0.12); }
.rsc-num { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.rsc-label { font-size: 11px; color: rgba(255,255,255,0.50); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.roi-stat-highlight .rsc-num { color: var(--olive-light); }

/* ─── PRICING / CONTACT ───────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.contact-card {
  background: #fff; border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  padding: 32px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cc-featured { border-color: var(--purple); box-shadow: 0 0 0 3px var(--purple-tint); }
.cc-icon { font-size: 1.8rem; margin-bottom: 4px; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; }
.contact-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.cc-social { margin-top: 8px; display: flex; gap: 8px; }

.founding-callout {
  background: var(--purple-deeper); border-radius: var(--radius-lg);
  padding: 40px 44px; color: #fff; position: relative; overflow: hidden;
}
.founding-callout::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
}
.founding-badge {
  display: inline-block; background: var(--olive); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 14px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px;
}
.founding-body { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.founding-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.founding-body p { color: rgba(255,255,255,0.75); font-size: 14px; max-width: 500px; line-height: 1.6; }
.founding-cta { background: var(--olive); flex-shrink: 0; align-self: center; }
.founding-cta:hover { background: var(--olive-dark) !important; }
.founding-features { display: flex; flex-wrap: wrap; gap: 8px 20px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
.ff-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.80); font-weight: 500; }
.ff-check { color: var(--olive-light); font-weight: 800; }

/* ─── TEAM ───────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-bottom: 36px; }
.team-card {
  text-align: center; background: var(--off-white); border: 1.5px solid var(--grey-200);
  border-radius: var(--radius); padding: 26px 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  font-size: 0.95rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; color: #fff;
}
.avatar-purple { background: var(--purple); }
.avatar-dark   { background: #1a1a2e; }
.avatar-olive  { background: var(--olive); }
.team-name { font-weight: 700; font-size: 13px; line-height: 1.3; }
.team-role { color: var(--grey-400); font-size: 11px; margin-top: 3px; }
.team-footer { text-align: center; color: var(--text-muted); font-size: 14px; }
.team-email { color: var(--purple); font-weight: 600; }

/* ─── INTERACTIVE DEMO ───────────────────────────────────── */
.demo-section { background: var(--purple-deeper); color: #fff; }
.demo-section .section-header h2 { color: #fff; }
.demo-section .section-header p { color: rgba(255,255,255,0.65); }
.demo-layout { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }

.demo-steps { margin-bottom: 36px; }
.demo-step {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer; opacity: 0.38; transition: opacity 0.3s;
}
.demo-step:last-child { border-bottom: none; }
.demo-step.active { opacity: 1; }
.demo-step:hover:not(.active) { opacity: 0.65; }
.ds-num { font-size: 0.9rem; font-weight: 800; color: var(--purple-light); opacity: 0.6; min-width: 26px; padding-top: 2px; transition: opacity 0.3s; }
.demo-step.active .ds-num { opacity: 1; color: var(--olive-light); }
.ds-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.ds-body p { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.5; }

.demo-controls { display: flex; align-items: center; gap: 14px; }
.demo-prev, .demo-next {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.demo-prev:hover, .demo-next:hover { background: rgba(255,255,255,0.22); }
.demo-dots { display: flex; gap: 7px; }
.demo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.22); border: none; cursor: pointer;
  transition: background 0.25s, transform 0.25s; padding: 0;
}
.demo-dot.active { background: var(--olive); transform: scale(1.3); }

.demo-phone-wrap { display: flex; justify-content: center; }
.demo-phone-frame {
  width: 230px; background: #0D0D1A; border-radius: 36px; padding: 11px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 32px 80px rgba(0,0,0,0.5);
}
.demo-phone-notch {
  width: 68px; height: 18px; background: #0D0D1A;
  border-radius: 0 0 12px 12px; margin: -11px auto 0; position: relative; z-index: 2;
}
.demo-phone-screen { background: #F7F6FB; border-radius: 26px; overflow: hidden; height: 460px; position: relative; }

.dscreen {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none; overflow: hidden;
}
.dscreen-active { opacity: 1; pointer-events: auto; }

/* Shared mini-phone components (reused across landing + demo) */
.dscreen-status { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px 5px; background: #F7F6FB; }
.dscreen-status-dark { background: var(--purple-deeper); }
.ds-time { font-size: 11px; font-weight: 700; color: #111; }
.dscreen-status-dark .ds-time { color: #fff; }
.dscreen-appbar { display: flex; justify-content: space-between; align-items: center; padding: 3px 14px 7px; background: #F7F6FB; }
.dscreen-logo { font-size: 14px; }
.dscreen-bell { position: relative; color: #555; }
.dbell-dot { position: absolute; top: -2px; right: -2px; width: 6px; height: 6px; border-radius: 50%; background: #E94560; border: 1.5px solid #F7F6FB; }
.dscreen-tabs { display: flex; padding: 0 12px 7px; background: #F7F6FB; }
.dtab { font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 999px; color: var(--grey-400); cursor: pointer; }
.dtab-active { background: var(--purple); color: #fff; }
.dscreen-feed { flex: 1; padding: 4px 10px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.dscreen-tap-hint { text-align: center; font-size: 10px; color: var(--grey-400); font-weight: 600; padding: 6px 0 10px; animation: hintPulse 2s ease-in-out infinite; }
@keyframes hintPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.dcard { background: #fff; border-radius: 10px; padding: 9px 11px; box-shadow: 0 2px 8px rgba(59,36,128,0.08); border: 1px solid rgba(212,209,232,0.6); }
.dcard-tap { cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.dcard-tap:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(59,36,128,0.15); }
.dcard-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 7px; }
.dcard-name { font-size: 11px; font-weight: 700; color: #111; }
.dcard-venue { font-size: 9px; color: var(--grey-600); margin-top: 1px; }
.dcard-footer { display: flex; justify-content: space-between; align-items: center; }
.dtag { font-size: 8px; font-weight: 800; padding: 2px 7px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.dtag-social { background: var(--purple); color: #fff; }
.dtag-deal   { background: var(--olive); color: #fff; }
.dtag-live   { background: #C62828; color: #fff; }
.dpav-row { display: flex; align-items: center; gap: 2px; }
.dpav { width: 18px; height: 18px; border-radius: 50%; font-size: 7px; font-weight: 800; display: flex; align-items: center; justify-content: center; color: #fff; border: 1.5px solid #fff; margin-left: -3px; }
.dpav:first-child { margin-left: 0; }
.dpav-purple { background: var(--purple); }
.dpav-dark   { background: #1a1a2e; }
.dpav-olive  { background: var(--olive); }
.dpav-count  { font-size: 9px; color: var(--grey-600); font-weight: 600; margin-left: 4px; }
.drsvp { background: var(--purple); color: #fff; font-size: 9px; font-weight: 800; padding: 4px 10px; border-radius: 999px; border: none; cursor: pointer; letter-spacing: 0.04em; font-family: 'Poppins', sans-serif; }
.drsvp-sm { font-size: 9px; padding: 3px 8px; margin-top: 5px; }
.drsvp-done { background: var(--olive); }

.dscreen-back { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--purple); padding: 6px 12px; cursor: pointer; background: #F7F6FB; }
.ddetail-header { background: var(--purple); padding: 20px 14px 14px; display: flex; align-items: center; justify-content: space-between; }
.ddetail-emoji { font-size: 2rem; }
.ddetail-body { padding: 12px; flex: 1; overflow: hidden; }
.ddetail-title { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 2px; }
.ddetail-venue { font-size: 11px; color: var(--grey-600); margin-bottom: 8px; }
.ddetail-meta-row { display: flex; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.ddetail-meta { font-size: 10px; color: var(--grey-600); font-weight: 500; }
.ddetail-desc { font-size: 10px; color: var(--grey-600); line-height: 1.5; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--grey-200); }
.ddetail-going-label { font-size: 11px; font-weight: 700; color: #111; margin-bottom: 6px; }
.ddetail-friends-label { font-size: 10px; color: var(--olive-dark); font-weight: 700; margin-bottom: 10px; }
.drsvp-big { width: 100%; padding: 10px; border-radius: 999px; background: var(--purple); color: #fff; font-size: 12px; font-weight: 800; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; transition: background 0.2s; }
.drsvp-big:hover { background: var(--purple-dark); }
.drsvp-big.drsvp-done { background: var(--olive); }
.drsvp-confirm-box { background: var(--green-tint); border: 1.5px solid var(--olive-light); border-radius: 10px; padding: 12px; text-align: center; margin-bottom: 10px; }
.drsvp-check { font-size: 1.4rem; color: var(--olive-dark); font-weight: 800; }
.drsvp-confirm-text { font-size: 13px; font-weight: 800; color: #111; }
.drsvp-confirm-sub { font-size: 10px; color: var(--grey-600); margin-top: 2px; }
.dfriend-item { display: flex; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--grey-200); }
.dfriend-item:last-child { border-bottom: none; }
.dfriend-new { background: var(--purple-tint); border-radius: 8px; padding: 9px; margin: 0 -2px; }
.dfriend-av { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; font-size: 10px; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; }
.dfriend-body { flex: 1; }
.dfriend-action { font-size: 10px; color: #111; line-height: 1.4; }
.dfriend-time { font-size: 9px; color: var(--grey-400); margin-top: 2px; }
.ddash-header { background: var(--purple-deeper); padding: 10px 14px 14px; color: #fff; }
.ddash-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; }
.ddash-venue { font-size: 14px; font-weight: 800; }
.ddash-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.ddash-event-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px; box-shadow: 0 2px 10px rgba(59,36,128,0.08); }
.ddash-event-name { font-size: 13px; font-weight: 800; color: #111; margin-bottom: 2px; }
.ddash-event-time { font-size: 10px; color: var(--grey-600); margin-bottom: 10px; }
.ddash-stat-row { display: flex; gap: 0; margin-bottom: 12px; }
.ddash-stat { flex: 1; text-align: center; border-right: 1px solid var(--grey-200); }
.ddash-stat:last-child { border-right: none; }
.ddash-stat-num { font-size: 1.3rem; font-weight: 800; color: #111; line-height: 1; }
.ddash-stat-purple { color: var(--purple); }
.ddash-stat-olive  { color: var(--olive-dark); }
.ddash-stat-label { font-size: 9px; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.ddash-chart { display: flex; flex-direction: column; gap: 5px; }
.ddash-bar-row { display: flex; align-items: center; gap: 7px; }
.ddash-bar-label { font-size: 9px; color: var(--grey-400); font-weight: 600; width: 22px; }
.ddash-bar { height: 10px; border-radius: 999px; background: var(--grey-200); }
.ddash-bar-active { background: var(--purple); }
.ddash-roi-pill { background: var(--purple-tint); border: 1.5px solid var(--purple-light); border-radius: 999px; padding: 8px 14px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--purple-dark); font-weight: 700; }

/* ─── USERS PAGE ─────────────────────────────────────────── */
.users-hero { background: var(--off-white); padding: 100px 0 80px; position: relative; overflow: hidden; }
.users-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.users-hero-copy h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 18px; }
.users-hero-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; }
.users-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.users-social { display: flex; align-items: center; gap: 12px; }
.social-label { font-size: 13px; color: var(--grey-600); font-weight: 600; }

.signup-card {
  background: #fff; border-radius: var(--radius-lg); padding: 38px;
  box-shadow: var(--shadow-lg); border: 1.5px solid var(--grey-200);
}
.signup-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.signup-card > p { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.signup-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.signup-form input {
  padding: 13px 18px; border: 2px solid var(--grey-200); border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-size: 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--off-white);
}
.signup-form input:focus { border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px var(--purple-tint); }
.signup-features { border-top: 1px solid var(--grey-200); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.signup-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.sfeat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); flex-shrink: 0; }

/* Social loop */
.loop-section { background: var(--off-white); }
.loop-diagram { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; row-gap: 28px; margin-bottom: 36px; }
.loop-node { background: #fff; border: 1.5px solid var(--grey-200); border-radius: var(--radius); padding: 22px 20px; text-align: center; min-width: 105px; box-shadow: var(--shadow); transition: transform 0.2s; }
.loop-node:hover { transform: translateY(-4px); }
.loop-node.node-result { border-color: var(--olive); background: var(--green-tint); }
.loop-icon { font-size: 1.5rem; margin-bottom: 7px; }
.loop-label { font-size: 11px; font-weight: 600; color: var(--text-muted); line-height: 1.4; }
.loop-label strong { color: var(--text); }
.loop-arrow { color: var(--grey-400); padding: 0 4px; display: flex; align-items: center; }
.loop-arrow-pulse { animation: arrowPulse 1.8s ease-in-out infinite; }
@keyframes arrowPulse { 0%, 100% { opacity: 0.3; transform: translateX(0); } 50% { opacity: 1; transform: translateX(5px); } }
.loop-callout { text-align: center; max-width: 520px; margin: 0 auto; font-size: 15px; color: var(--text-muted); font-weight: 500; font-style: italic; padding: 16px 28px; background: #fff; border-radius: var(--radius); border: 1.5px solid var(--grey-200); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: #0F0F14; color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding: 60px 28px 48px; max-width: 1080px; margin: 0 auto; }
.footer-logo { font-size: 1.4rem; margin-bottom: 8px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-icon { color: rgba(255,255,255,0.4); width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.footer-social-icon:hover { background: var(--purple); color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-location { font-size: 13px; color: rgba(255,255,255,0.30); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 28px; }
.footer-bottom-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.30); flex-wrap: wrap; gap: 8px; }
.footer-accolade { color: rgba(255,255,255,0.45); font-weight: 500; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1020px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .path-split { grid-template-columns: 1fr; }
  .path-card { border-radius: 0; padding: 48px 32px; }
  .path-business { border-radius: 0; }
  .path-users { border: none; border-top: 1px solid var(--grey-200); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .biz-hero-inner { grid-template-columns: 1fr; }
  .users-hero-inner { grid-template-columns: 1fr; }
  .demo-layout { grid-template-columns: 1fr; }
  .demo-phone-wrap { order: -1; }
  .ps-compare { grid-template-columns: 1fr; }
  .ps-vs { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .roi-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founding-body { flex-direction: column; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .loop-arrow { display: none; }
  .loop-diagram { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .landing-tagline { font-size: 2rem; }
  .hero-badge-left, .hero-badge-right { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-equation { gap: 8px; }
  .email-banner-inner { flex-direction: column; gap: 14px; }
}
