/* Socnivo — marketing site. Brand tokens mirror app/lib/core/theme/tokens.dart
   and match the resident guide so the two sites feel like one product. */
:root {
  --ink: #191b2a;
  --muted: #6b7085;
  --faint: #9aa0b5;
  --canvas: #f5f6fb;
  --card: #ffffff;
  --hairline: #e8eaf2;
  --indigo: #4f46e5;
  --violet: #6d28d9;
  --red: #e0384b;

  --hero: linear-gradient(135deg, #4338ca 0%, #5b21b6 55%, #7c3aed 100%);
  --brand: linear-gradient(135deg, #4f46e5, #6d28d9);

  --shadow-card: 0 2px 6px rgba(25, 27, 42, 0.05), 0 14px 34px rgba(25, 27, 42, 0.08);
  --shadow-soft: 0 1px 2px rgba(25, 27, 42, 0.04), 0 8px 24px rgba(25, 27, 42, 0.06);
  --shadow-btn: 0 8px 18px rgba(79, 70, 229, 0.35);
  --shadow-lift: 0 24px 60px rgba(25, 27, 42, 0.14);

  --r-card: 22px;
  --r-btn: 13px;
  --r-pill: 999px;
  --maxw: 1140px;
  --nav-h: 68px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* module tints */
  --t-amber-bg: #fdf0d7; --t-amber-fg: #b45309;
  --t-green-bg: #d9f3e6; --t-green-fg: #047857;
  --t-indigo-bg: #e7e6fb; --t-indigo-fg: #4f46e5;
  --t-red-bg: #fce3e7;   --t-red-fg: #e0384b;
  --t-violet-bg: #ece7fd; --t-violet-fg: #6d28d9;
  --t-blue-bg: #dcebfd;  --t-blue-fg: #1d4ed8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
a { color: var(--indigo); text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid rgba(79, 70, 229, 0.55); outline-offset: 2px; border-radius: 6px; }
/* Light focus ring on dark / gradient surfaces so it stays visible (WCAG 1.4.11). */
.footer a:focus-visible, .btn-on-dark:focus-visible, .demo-copy a:focus-visible, .why a:focus-visible, .cta-band a:focus-visible { outline-color: #fff; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--card); color: var(--indigo); font-weight: 800; font-size: 14px; padding: 10px 16px; border-radius: 10px; box-shadow: var(--shadow-card); transition: top .2s; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--violet);
  background: var(--t-violet-bg); padding: 6px 12px; border-radius: var(--r-pill);
}
.section { padding: 84px 0; }
.section-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 16px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 800; font-size: 15px;
  padding: 13px 22px; border-radius: var(--r-btn); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s cubic-bezier(.3,1.35,.45,1), box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(79,70,229,.42); }
.btn-secondary { background: var(--card); color: var(--ink); border-color: var(--hairline); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { transform: translateY(-2px); border-color: #d7dae8; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(25,27,42,.05); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-on-dark { background: #fff; color: var(--indigo); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-on-dark:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60; height: var(--nav-h);
  background: rgba(245,246,251,0.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--hairline); box-shadow: 0 6px 20px rgba(25,27,42,.05); background: rgba(245,246,251,0.92); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; flex: 0 0 34px; object-fit: contain; display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 700; font-size: 14.5px; padding: 9px 12px; border-radius: 9px; }
.nav-links a:hover { color: var(--ink); background: rgba(25,27,42,.05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

/* mobile drawer */
.nav-scrim { display: none; }
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-toggle {
    display: grid; place-items: center; width: 48px; height: 48px; border-radius: 10px;
    border: 1px solid var(--hairline); background: var(--card); cursor: pointer; color: var(--ink);
  }
  .drawer {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 55;
    background: var(--card); border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-card); padding: 14px 24px 22px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .2s, opacity .2s, visibility .2s;
  }
  body.menu-open .drawer { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .drawer a { display: block; padding: 12px 6px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--hairline); }
  .drawer a:last-of-type { border-bottom: 0; }
  .drawer .btn { margin-top: 14px; width: 100%; }
  .nav-scrim { display: block; position: fixed; inset: var(--nav-h) 0 0; z-index: 54; background: rgba(15,16,23,.35); opacity: 0; pointer-events: none; transition: .2s; }
  body.menu-open .nav-scrim { opacity: 1; pointer-events: auto; }
}
.drawer { display: none; }
@media (max-width: 860px) { .drawer { display: block; } }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 84px) 0 64px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; letter-spacing: -0.03em; }
.hero h1 .grad { background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--muted); font-size: clamp(17px, 2.1vw, 20px); font-weight: 500; margin: 20px 0 8px; max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; color: var(--muted); font-size: 13.5px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--t-green-fg); }

/* phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 14px 8px 18px; }
.hero-glow { position: absolute; inset: -8% 0 -16%; background: radial-gradient(62% 55% at 60% 35%, rgba(124,58,237,.28), rgba(67,56,202,.10) 55%, transparent 72%); filter: blur(6px); z-index: 0; }
.phone {
  position: relative; z-index: 1; width: 290px; max-width: 80vw;
  border-radius: 42px; background: #0e0f17; padding: 11px;
  box-shadow: var(--shadow-lift); border: 1px solid #2a2d3f;
  animation: heroRise .85s cubic-bezier(.3, 1, .45, 1) both, heroFloat 6s ease-in-out 1.1s infinite;
  will-change: transform;
}
.phone img { width: 100%; height: auto; aspect-ratio: 640 / 1391; object-fit: cover; object-position: top center; border-radius: 32px; background: var(--canvas); display: block; }
.float-badge {
  position: absolute; z-index: 2; background: var(--card); border: 1px solid var(--hairline);
  border-radius: 14px; box-shadow: var(--shadow-card); padding: 10px 13px;
  display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px;
}
.float-badge .fb-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: 0 0 30px; }
.float-badge .fb-ic svg { width: 16px; height: 16px; }
.float-badge small { display: block; font-weight: 600; font-size: 11px; color: var(--faint); }
/* Positioned clear of the flat/society header at the top of the mockup. */
.fb-1 { top: 45%; left: -8%; animation: fbIn .6s .95s ease both, fbFloat 5s 1.55s ease-in-out infinite; will-change: transform; }
.fb-2 { bottom: 15%; right: -8%; animation: fbIn .6s 1.25s ease both, fbFloat 5.6s 1.85s ease-in-out infinite; will-change: transform; }
@media (max-width: 560px) { .fb-1 { left: -2%; top: 42%; } .fb-2 { right: -2%; bottom: 13%; } }

/* Hero motion — gentle, tasteful; disabled under prefers-reduced-motion below. */
@keyframes heroRise { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fbIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* logos / social proof strip */
.proof { padding: 26px 0 4px; }
.proof p { text-align: center; color: var(--muted); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.proof-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; margin-top: 18px; }
.proof-chip { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 800; font-size: 15px; }
.proof-chip svg { width: 20px; height: 20px; color: var(--indigo); }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 26px; box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.ic svg { width: 24px; height: 24px; }
.ic.amber { background: var(--t-amber-bg); color: var(--t-amber-fg); }
.ic.green { background: var(--t-green-bg); color: var(--t-green-fg); }
.ic.indigo { background: var(--t-indigo-bg); color: var(--t-indigo-fg); }
.ic.red { background: var(--t-red-bg); color: var(--t-red-fg); }
.ic.violet { background: var(--t-violet-bg); color: var(--t-violet-fg); }
.ic.blue { background: var(--t-blue-bg); color: var(--t-blue-fg); }
.feature h3 { font-size: 18px; font-weight: 800; margin-bottom: 7px; }
.feature p { color: var(--muted); font-size: 14.5px; font-weight: 500; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 26px 22px; box-shadow: var(--shadow-soft); position: relative; }
.step .num {
  width: 40px; height: 40px; border-radius: 12px; background: var(--brand); color: #fff;
  font-weight: 800; font-size: 17px; display: grid; place-items: center; box-shadow: var(--shadow-btn); margin-bottom: 16px;
}
.step h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; font-weight: 500; }
.step .arrow { position: absolute; top: 44px; right: -14px; z-index: 2; color: #c7cbdd; }
.step .arrow svg { width: 24px; height: 24px; }
.step:last-child .arrow { display: none; }

/* ---------- Audiences ---------- */
.audiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aud {
  border-radius: var(--r-card); padding: 28px; border: 1px solid var(--hairline);
  background: var(--card); box-shadow: var(--shadow-soft);
}
.aud .ic { margin-bottom: 18px; }
.aud h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.aud ul { list-style: none; margin: 0; padding: 0; }
.aud li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--muted); font-weight: 600; font-size: 14.5px; }
.aud li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f46e5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.aud-note { text-align: center; color: var(--muted); font-size: 13.5px; font-weight: 600; margin-top: 26px; }

/* ---------- Why (dark band) ---------- */
.why { background: var(--hero); border-radius: 28px; padding: clamp(36px, 5vw, 60px); color: #fff; box-shadow: var(--shadow-card); }
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.why h2 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 800; }
.why .lede { color: rgba(255,255,255,.9); font-weight: 500; margin-top: 14px; font-size: 17px; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
.why-list li { display: flex; gap: 12px; }
.why-list .wk { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.why-list .wk svg { width: 18px; height: 18px; color: #fff; }
.why-list b { display: block; font-weight: 800; font-size: 15px; }
.why-list span { color: rgba(255,255,255,.82); font-weight: 500; font-size: 13.5px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: 30px 26px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.plan.featured { border: 2px solid var(--indigo); box-shadow: var(--shadow-card); position: relative; }
.plan .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-weight: 800; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-btn); }
.plan h3 { font-size: 20px; font-weight: 800; }
.plan .who { color: var(--muted); font-weight: 500; font-size: 14px; margin: 6px 0 18px; min-height: 40px; }
.plan .price { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; }
.plan .price small { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 4px; }
.plan ul { list-style: none; margin: 20px 0 24px; padding: 0; }
.plan li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--muted); font-weight: 600; font-size: 14px; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23047857' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.plan .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--muted); font-weight: 600; font-size: 14px; margin-top: 26px; }

/* ---------- Demo form ---------- */
.demo { background: var(--card); border: 1px solid var(--hairline); border-radius: 28px; box-shadow: var(--shadow-card); overflow: hidden; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; }
.demo-copy { padding: clamp(30px, 4vw, 52px); background: var(--hero); color: #fff; }
.demo-copy h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; }
.demo-copy p { color: rgba(255,255,255,.9); font-weight: 500; margin-top: 14px; font-size: 16px; }
.demo-copy ul { list-style: none; margin: 24px 0 0; padding: 0; }
.demo-copy li { display: flex; gap: 11px; align-items: center; margin-bottom: 12px; font-weight: 600; }
.demo-copy li svg { width: 20px; height: 20px; flex: 0 0 20px; color: #fff; }
.demo-form { padding: clamp(30px, 4vw, 52px); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 800; font-size: 13.5px; margin-bottom: 7px; }
.field input {
  width: 100%; padding: 13px 14px; border: 1px solid var(--hairline); border-radius: var(--r-btn);
  font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); background: var(--canvas); outline: none;
  transition: border-color .15s, background .15s;
}
.field input:focus { border-color: var(--indigo); background: var(--card); }
.field input::placeholder { color: var(--faint); font-weight: 500; }
.field .hint { color: var(--muted); font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.form-foot { color: var(--muted); font-size: 12.5px; font-weight: 600; margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 4px; }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--t-green-bg); color: var(--t-green-fg); display: grid; place-items: center; }
.form-success .tick svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-weight: 500; }
form.hide { display: none; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card); box-shadow: var(--shadow-soft); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font); font-weight: 800; font-size: 16.5px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { flex: 0 0 22px; transition: transform .25s; color: var(--muted); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .28s ease, visibility .28s; }
.faq-item.open .faq-a { visibility: visible; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-weight: 500; font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .inner { background: var(--hero); border-radius: 28px; padding: clamp(40px, 6vw, 68px) 24px; color: #fff; box-shadow: var(--shadow-card); }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.9); font-weight: 500; font-size: 18px; margin: 14px auto 0; max-width: 48ch; }
.cta-band .btn { margin-top: 28px; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal { padding: 44px 0 20px; }
.legal .container { max-width: 820px; }
.legal .eyebrow { margin-bottom: 14px; }
.legal h1 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; letter-spacing: -0.02em; }
.legal-updated { color: var(--muted); font-weight: 600; font-size: 14px; margin: 12px 0 4px; }
.legal-lead { color: var(--muted); font-size: 17px; font-weight: 500; margin: 18px 0 6px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 34px 0 10px; letter-spacing: -0.01em; }
.legal h3 { font-size: 16.5px; font-weight: 800; margin: 22px 0 6px; }
.legal p { color: var(--ink); font-weight: 500; margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; color: var(--ink); font-weight: 500; }
.legal b { font-weight: 800; }
.legal a { color: var(--indigo); font-weight: 700; }
.legal .toc { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 18px 22px; box-shadow: var(--shadow-soft); margin: 20px 0 10px; }
.legal .toc-title { font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); margin-bottom: 10px; }
.legal .toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; font-size: 14.5px; }
.legal .toc li { margin-bottom: 7px; break-inside: avoid; }
.legal .contact { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 20px 24px; box-shadow: var(--shadow-soft); margin-top: 6px; }
.legal .contact p { margin-bottom: 6px; }
@media (max-width: 640px) { .legal .toc ol { columns: 1; } }

/* Powered-by credit in the footer */
.powered a { color: #a7abbc; font-weight: 700; }
.powered a:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer { background: #12131c; color: #c7cad6; padding: 56px 0 30px; margin-top: 84px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { color: #fff; }
.footer .brand-mark { box-shadow: none; }
.footer-tag { color: #8b90a3; font-weight: 500; font-size: 14px; margin-top: 14px; max-width: 34ch; }
.footer h3 { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: #a7abbc; font-weight: 600; font-size: 14.5px; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #23252f; margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: #7c8091; font-size: 13px; font-weight: 600; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.3,1,.45,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature { transition: none; }
  /* No hero motion for users who opt out — keep everything visible + still. */
  .phone, .float-badge { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features-grid, .steps, .audiences, .pricing { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .why-grid, .demo-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .features-grid, .steps, .audiences, .pricing { grid-template-columns: 1fr; }
  .plan.featured { order: -1; }
  .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero h1 br { display: none; }
}
