/* RealTimeLifeLeads design system - all color lives here */
:root {
  --bg: #0a0e17;
  --bg-elev: #111726;
  --bg-card: #151c2e;
  --border: #243049;
  --text: #e9eef7;
  --text-muted: #9fb0cc;
  --text-dim: #6b7c9c;
  --accent: #19e3c0;
  --accent-2: #3b82f6;
  --accent-ink: #04121a;
  --good: #2ecc71;
  --warn: #ffb547;
  --danger: #ff5d5d;
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --grad-hero: radial-gradient(ellipse 1100px 620px at 50% -10%, rgba(25,227,192,.16), transparent 65%),
               radial-gradient(circle at 88% 110%, rgba(59,130,246,.12), transparent 55%);
  --font-head: "Barlow Condensed", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; margin: 0 0 .4em; letter-spacing: .5px; }
a { color: var(--accent); text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; padding: 14px 26px; border-radius: var(--radius-sm);
  border: 0; cursor: pointer; font-size: 16px; transition: transform .12s ease, filter .12s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
.muted { color: var(--text-muted); }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
*::-webkit-scrollbar { width: 16px; height: 16px; }
*::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); background-clip: padding-box; border: 4px solid transparent; border-radius: 999px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); background-clip: padding-box; border: 4px solid transparent; }
@media (max-width: 760px){ .section{ padding:56px 0; } }

/* ---- Header / nav ---- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(10,14,23,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-head .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--text); }
.brand .mark { width: 30px; height: 30px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--text-muted); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }
.hero { background: var(--grad-hero); padding: 92px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); }
.hero .lead { font-size: 19px; color: var(--text-muted); max-width: 540px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-elev); border: 1px solid var(--border); color: var(--accent); padding: 7px 14px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.cta-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; color: var(--text-dim); font-size: 14px; }
.feed { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.feed__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; color: var(--text-muted); font-size: 13px; font-weight: 700; }
.feed ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.feed__row { display: flex; align-items: center; gap: 10px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 12px; font-size: 14px; }
.feed__main { flex: 1; display: flex; flex-direction: column; }
.feed__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(25,227,192,.15); }
.feed__tag { font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 999px; }
.feed__tag--new { background: rgba(25,227,192,.16); color: var(--accent); }
.feed__tag--hot { background: rgba(255,93,93,.16); color: var(--danger); }
.feed__tag--live { background: rgba(59,130,246,.16); color: var(--accent-2); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { text-align: center; }
.stat b { font-family: var(--font-head); font-size: 42px; color: var(--accent); display: block; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.price { font-family: var(--font-head); font-size: 44px; }
.price small { font-size: 15px; color: var(--text-muted); font-family: var(--font-body); }
.tag-pop { position: absolute; top: -12px; right: 16px; background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: 12px; padding: 4px 12px; border-radius: 999px; }
.plan { position: relative; display: flex; flex-direction: column; }
.plan ul { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 9px; font-size: 14px; color: var(--text-muted); }
.plan li::before { content: "\2713"; color: var(--accent); font-weight: 800; margin-right: 8px; }
.plan .btn { margin-top: auto; justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step b { font-family: var(--font-head); font-size: 30px; color: var(--accent-2); }
.faq details { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }
.site-foot { background: var(--bg-elev); border-top: 1px solid var(--border); padding: 50px 0 30px; color: var(--text-dim); font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
.foot-grid a { color: var(--text-muted); display: block; margin: 6px 0; }
.lead-card .ico { font-size: 30px; }
.lead-card .badge { display:inline-block; font-size:12px; font-weight:700; color:var(--accent); border:1px solid var(--border); border-radius:999px; padding:3px 10px; margin-top:8px; }
.review .stars { color: var(--warn); letter-spacing:2px; }
.review .who { display:flex; align-items:center; gap:10px; margin-top:14px; }
.review .ava { width:38px; height:38px; border-radius:50%; background:var(--bg-elev); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--text-muted); }
.center { text-align:center; }
.mt { margin-top: 14px; }
@media (max-width: 900px){ .hero__grid,.foot-grid{ grid-template-columns:1fr; } .grid-3,.grid-4,.stats,.steps{ grid-template-columns:1fr 1fr; } }
@media (max-width: 620px){ .grid-3,.grid-4,.stats,.steps{ grid-template-columns:1fr; } .nav{ display:none; } .nav.open{ display:flex; position:absolute; top:66px; left:0; right:0; flex-direction:column; background:var(--bg-elev); padding:18px; border-bottom:1px solid var(--border);} .nav-toggle{ display:block; } }

/* ---- Legal pages ---- */
.legal { max-width: 820px; }
.legal h2 { margin-top: 32px; }
.legal p, .legal li { color: var(--text-muted); }
.legal a { color: var(--accent); }

/* ---- Promo / launch-special additions ---- */
.promo-code { display:inline-block; font-family: var(--font-mono, "JetBrains Mono", monospace); font-weight:700; letter-spacing:2px; color: var(--accent); background: var(--bg-elev); border:1px dashed var(--border); border-radius: var(--radius-sm); padding:8px 12px; margin:6px 0; }
.off-big { font-family: var(--font-head); font-size: 30px; color: var(--accent); }
.promo-head-label { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-left: 10px; opacity: .75; }
.section-eyebrow-row { display: flex; align-items: baseline; gap: 10px; }
