/* Follow Monitor — marketing site styles.
   Dark by default, brand gradient (violet → magenta → pink) matching the app. */
:root {
  --bg: #0e0e12;
  --bg-2: #14141b;
  --surface: #17171f;
  --surface-2: #1f1f29;
  --border: #2a2a36;
  --text: #ece8f3;
  --muted: #a8a3b6;
  --primary: #7c5cff;
  --positive: #2ecc71;
  --negative: #ff5c7a;
  --grad: linear-gradient(120deg, #7c5cff 0%, #b14bf4 50%, #ff6f91 100%);
  --radius: 18px;
  --maxw: 1080px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.muted { color: var(--muted); }

/* Ambient gradient glow in the background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% -10%, rgba(124, 92, 255, 0.25), transparent 70%),
    radial-gradient(40% 40% at 90% 10%, rgba(255, 111, 145, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
main, header, footer { position: relative; z-index: 1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(14, 14, 18, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 30px; height: 30px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(124, 92, 255, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(124, 92, 255, 0.45); }
.btn-ghost { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: #3a3a4a; transform: translateY(-2px); }

/* Store badges */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px 11px 18px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .15s ease, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.store:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.45); }
.store svg { width: 26px; height: 26px; flex: none; }
.store .small { font-size: 11px; line-height: 1; opacity: .7; }
.store .big { font-size: 18px; line-height: 1.1; font-weight: 700; }
.store.soon { background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: none; cursor: default; }
.store.soon:hover { transform: none; }
.store .badge-soon { font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 999px; background: var(--surface-2); color: var(--muted); margin-left: 4px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 7px 14px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--surface);
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin: 22px 0 18px; }
.hero p.lead { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero .stores { margin-bottom: 16px; }
.hero .note { font-size: 13px; color: var(--muted); }

/* ---------- Phone mockup ---------- */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 300px;
  background: #0b0b0f;
  border: 10px solid #1c1c24;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #1c1c24; border-radius: 0 0 16px 16px;
}
.screen { background: var(--bg); border-radius: 30px; overflow: hidden; padding: 16px 14px; }
.app-head { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 20px; }
.app-stats { display: flex; gap: 20px; }
.app-stats .s { font-size: 12px; color: var(--muted); }
.app-stats .s b { display: block; font-size: 18px; color: var(--text); }
.app-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 12px; margin-top: 14px; }
.app-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; font-weight: 700; }
.row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.row .av { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; }
.row .uname { font-size: 13px; font-weight: 600; flex: 1; }
.tag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.tag.up { color: var(--positive); background: rgba(46, 204, 113, .14); }
.tag.down { color: var(--negative); background: rgba(255, 92, 122, .14); }
.spark { height: 64px; margin-top: 6px; }

/* gradient avatar helpers */
.g1 { background: linear-gradient(135deg,#7C5CFF,#B14BF4); }
.g2 { background: linear-gradient(135deg,#FF6F91,#FF9671); }
.g3 { background: linear-gradient(135deg,#00C2A8,#1FB6FF); }
.g4 { background: linear-gradient(135deg,#845EC2,#D65DB1); }
.g5 { background: linear-gradient(135deg,#2C73D2,#0081CF); }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: #38384a; }
.card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(124,92,255,.14); margin-bottom: 16px; }
.card .ic svg { width: 24px; height: 24px; stroke: var(--primary); }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: relative; }
.step .n { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.alltime-note {
  margin-top: 26px; text-align: center; font-size: 14px; color: var(--muted);
  background: rgba(255, 92, 122, .10); border: 1px solid rgba(255, 92, 122, .25);
  border-radius: 14px; padding: 14px 18px;
}

/* Privacy banner */
.privacy-cta {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 44px; text-align: center;
}
.privacy-cta .ic { width: 60px; height: 60px; border-radius: 18px; background: var(--grad); display: grid; place-items: center; margin: 0 auto 20px; }
.privacy-cta .ic svg { width: 30px; height: 30px; stroke: #fff; }
.privacy-cta h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.privacy-cta p { color: var(--muted); max-width: 560px; margin: 14px auto 24px; }

/* CTA band */
.cta { text-align: center; }
.cta .stores { justify-content: center; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 30px; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot .brand { font-size: 15px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--muted); font-size: 14px; }
.foot-links a:hover { color: var(--text); }
.copy { color: var(--muted); font-size: 13px; }

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 40px; max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.legal p, .legal li { color: #cdc8d8; }
.legal ul { padding-left: 20px; }
.legal li { margin: 8px 0; }
.legal a { color: var(--primary); }
.legal a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 30px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .stores { justify-content: center; }
  .eyebrow { margin: 0 auto; }
  .features, .steps { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 480px) {
  .foot { flex-direction: column; text-align: center; }
}
