:root {
  --bg-deep: #0a1628;
  --bg-mid: #0f1d32;
  --bg-card: #152847;
  --fg: #e8edf3;
  --fg-dim: #8fa3bf;
  --accent: #c9a84c;
  --accent-soft: rgba(201, 168, 76, 0.12);
  --accent-glow: rgba(201, 168, 76, 0.25);
  --warmth: #e8734a;
  --success: #4ad295;
  --radius: 12px;
  --max-w: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ───── HERO ───── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(240, 160, 48, 0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-dim);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-top: 4px;
}

/* ───── PROBLEM ───── */
.problem {
  padding: 100px 0;
  background: var(--bg-mid);
}

.problem .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warmth);
  margin-bottom: 12px;
}

.problem h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 48px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.problem-card .icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.problem-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.problem-card p {
  font-size: 0.92rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ───── HOW IT WORKS ───── */
.how {
  padding: 100px 0;
}

.how .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
  margin-bottom: 12px;
}

.how h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 580px;
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding-top: 48px;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}

.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ───── WHO ───── */
.who {
  padding: 100px 0;
  background: var(--bg-mid);
}

.who .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.who h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 580px;
  margin-bottom: 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.audience-card {
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.audience-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

/* ───── CLOSING ───── */
.closing {
  padding: 120px 0;
  text-align: center;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 0 auto;
}

/* ───── FOOTER ───── */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-dim);
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer p {
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

.footer a:hover {
  opacity: 0.8;
}

.footer .brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent);
}

/* ───── PILLARS ───── */
.pillars {
  padding: 80px 0;
  background: var(--bg-mid);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  background: var(--bg-deep);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.pillar-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ───── CTA GRID (homepage 5-button layout) ───── */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Primary — Housing Operators + Placement Requests */
.cta-primary {
  background: linear-gradient(135deg, #1a3a6b 0%, #0f2545 100%);
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.cta-primary:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.3);
}

/* Secondary — Caseworkers + Find a Bed */
.cta-secondary {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-secondary:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: #1a3352;
}

/* Accent — Invest/List Property */
.cta-accent {
  background: linear-gradient(135deg, #c9a84c 0%, #a8852e 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-accent:hover {
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.cta-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  display: block;
}

.cta-accent .cta-label {
  color: #0a1628;
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.5;
  display: block;
}

.cta-accent .cta-sub {
  color: rgba(10, 22, 40, 0.7);
}

.hero-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--fg-dim);
  opacity: 0.7;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero { min-height: auto; padding: 90px 0 60px; }
  .hero-stat-row { gap: 28px; }
  .hero-stat .num { font-size: 1.6rem; }
  .problem, .how, .who, .pillars { padding: 72px 0; }
  .closing { padding: 80px 0; }
  .steps { gap: 28px; }
  .pillars-grid { gap: 16px; }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cta-card { padding: 22px 20px; }
  .cta-label { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════
   PREMIUM RESTYLE — LANDING NAV
═══════════════════════════════════════════════ */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8, 16, 30, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.landing-nav-links a {
  color: rgba(232, 237, 243, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.landing-nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.06); }

.landing-nav-links .nav-highlight {
  color: var(--accent);
  font-weight: 600;
}
.landing-nav-links .nav-highlight:hover { background: var(--accent-soft); }

.landing-nav-links .nav-signin {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
}
.landing-nav-links .nav-signin:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--accent);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(8, 16, 30, 0.98);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 12px 20px 20px;
  gap: 4px;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-mobile-drawer a:hover { color: var(--fg); background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════════════
   PREMIUM RESTYLE — HERO LANDING
═══════════════════════════════════════════════ */
.hero-landing {
  padding-top: 108px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Atmospheric orb */
.hero-bg-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, rgba(20, 55, 110, 0.08) 45%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-logo-wrap {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 0;
  text-transform: uppercase;
}

.hero-headline-realtime {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 0;
}

.hero-headline-accent {
  color: var(--accent);
  display: inline-block;
  position: relative;
  font-weight: 900;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-dim);
  margin-bottom: 0;
  letter-spacing: 0.01em;
  font-style: italic;
}

.hero-sub-tight {
  margin-bottom: 20px;
}

.hero-positioning-line {
  font-size: 0.9rem;
  color: rgba(201,168,76,0.7);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
  font-weight: 500;
}

/* Mission banner */
.mission-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 48px;
  max-width: 580px;
  line-height: 1.5;
  text-align: left;
}

.mission-icon {
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════
   4-CARD CTA GRID (2×2)
═══════════════════════════════════════════════ */
.cta-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: left;
}

.cta4-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  border-radius: 14px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.cta4-card:hover {
  transform: translateY(-4px);
}

/* Primary cards */
.cta4-primary {
  background: linear-gradient(145deg, #0f2245 0%, #0a1628 100%);
  border: 1px solid rgba(201,168,76,0.25);
}
.cta4-primary:hover {
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.2);
}

/* Secondary (providers) */
.cta4-secondary {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
}
.cta4-secondary:hover {
  border-color: rgba(201,168,76,0.35);
  background: #162e4e;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* Ambassador — premium gold accent */
.cta4-ambassador {
  background: linear-gradient(145deg, #1a1208 0%, #0f1c08 40%, #0a1628 100%);
  border: 1px solid rgba(201,168,76,0.45);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.08), inset 0 1px 0 rgba(201,168,76,0.15);
}
.cta4-ambassador:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(201,168,76,0.18), 0 0 32px rgba(201,168,76,0.1), 0 0 0 1px rgba(201,168,76,0.3);
  transform: translateY(-5px);
}

/* Direct Bed Finder — premium consumer marketplace card */
.cta4-direct-bed {
  background: linear-gradient(145deg, #0d1f40 0%, #0a1628 60%);
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.06), inset 0 1px 0 rgba(201,168,76,0.12);
}
.cta4-direct-bed:hover {
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(201,168,76,0.12), 0 0 0 1px rgba(201,168,76,0.25);
  transform: translateY(-5px);
}
.direct-bed-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.cta4-sub-bright {
  color: rgba(232,237,243,0.75);
}
.cta4-btn-bright {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: var(--accent);
  color: #0a1628;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.15s;
  align-self: flex-start;
}
.cta4-direct-bed:hover .cta4-btn-bright {
  background: #d4b757;
  transform: translateY(-1px);
}

.cta4-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.cta4-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--fg);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.cta4-label-gold {
  color: var(--accent);
}

.cta4-sub {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.55;
  display: block;
  flex: 1;
}

.cta4-sub-gold {
  color: rgba(201,168,76,0.65);
}

.cta4-arrow {
  display: block;
  margin-top: 16px;
  color: var(--fg-muted);
  font-size: 1rem;
  transition: transform 0.2s, color 0.2s;
}
.cta4-primary:hover .cta4-arrow,
.cta4-secondary:hover .cta4-arrow { color: var(--accent); transform: translateX(4px); }

/* New button style for 4-card grid */
.cta4-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: var(--accent);
  color: #0a1628;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.15s;
  align-self: flex-start;
}
.cta4-primary:hover .cta4-btn {
  background: #d4b757;
  transform: translateY(-1px);
}
.cta4-btn-dark {
  background: rgba(201,168,76,0.15);
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.3);
}
.cta4-btn-dark:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Ambassador card new layout */
.amb-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cta4-amb-sub {
  font-size: 0.82rem;
  color: rgba(201,168,76,0.65);
  line-height: 1.5;
  margin-bottom: 10px;
}
.cta4-price-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}
.cta4-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cta4-bullets li {
  font-size: 0.8rem;
  color: rgba(201,168,76,0.8);
  font-weight: 500;
}
.cta4-amb-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #c9a84c 0%, #a8852e 100%);
  color: #0a1628;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.15s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
  align-self: flex-start;
}
.cta4-amb-btn:hover {
  background: #d4b757;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

/* ═══════════════════════════════════════════════
   AMBASSADOR BADGE — premium reusable component
═══════════════════════════════════════════════ */
.ambassador-badge-icon {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.amb-crown {
  display: block;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}

.amb-check {
  position: absolute;
  bottom: -2px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0a1628;
  box-shadow: 0 0 0 2px #0a1628, 0 0 8px rgba(201,168,76,0.6);
  line-height: 1;
  display: block;
  text-align: center;
  line-height: 20px;
}

/* Verified Ambassador pill — shows on ambassador card */
.verified-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 5px 12px;
  background: linear-gradient(90deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.08) 100%);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(201,168,76,0.12);
}
.verified-badge-pill::before {
  content: '♛';
  font-size: 0.7rem;
}

/* Reusable ambassador badge class for profile pages */
.ambassador-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2) 0%, rgba(201,168,76,0.08) 100%);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(201,168,76,0.15), inset 0 1px 0 rgba(201,168,76,0.2);
}
.ambassador-verified-badge::before {
  content: '♛';
  font-size: 0.9rem;
  filter: drop-shadow(0 0 4px rgba(201,168,76,0.8));
}

/* ═══════════════════════════════════════════════
   UPDATED FOOTER
═══════════════════════════════════════════════ */
.footer-disclaimer {
  background: rgba(232,90,74,0.06);
  border: 1px solid rgba(232,90,74,0.18);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: center;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
  align-items: start;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-info-col span {
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.footer-info-col a {
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-info-col a:hover { color: var(--accent); }

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-links-col a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: var(--fg); }

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════════════
   SOCIAL PROOF BAR (Fix 7)
═══════════════════════════════════════════════ */
.social-proof-bar {
  background: rgba(15, 29, 50, 0.8);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 20px 0;
  margin-top: 0;
}

.social-proof-bar .sp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-proof-bar .sp-heading {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(201,168,76,0.6);
  text-transform: uppercase;
}

.social-proof-bar .sp-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  align-items: center;
}

.social-proof-bar .sp-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.social-proof-bar .sp-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.social-proof-bar .sp-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232, 237, 243, 0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — new components
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .landing-nav-links { display: none !important; }
  .nav-hamburger { display: block; }

  /* Fix 1: mobile nav — logo + hamburger only */
  .landing-nav > .wrap > a { display: flex; }
  .landing-nav > .wrap { justify-content: space-between; }

  .hero-landing { padding-top: 88px; padding-bottom: 72px; }
  .hero-headline { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-headline-realtime { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-positioning-line { font-size: 0.82rem; margin-bottom: 20px; }

  .cta-grid-4 {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 12px;
  }

  .mission-banner {
    font-size: 0.72rem;
    padding: 10px 18px;
    margin-bottom: 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-links-col { align-items: flex-start; }
}.cta4-amb-btn-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(10, 22, 40, 0.7);
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-align: center;
}
