/* =========================================================
   Collaby — Design System
   Premium SaaS + creator economy + fintech-level data clarity.
   ========================================================= */

/* ---------- Design tokens ----------
   Collaby is a single, permanent dark theme — the same dark-purple
   brand surface used in the hero, header and footer, applied site-wide.
   There is no light mode and no data-theme toggle to keep in sync. */
:root{
  color-scheme: dark;

  /* Brand */
  --brand:            #9085e9;
  --brand-strong:     #aba2f0;
  --brand-soft:       #211c3d;
  --brand-soft-2:     #2a2450;

  /* Ink / surfaces (dataviz-validated neutrals) */
  --ink:               #ffffff;
  --ink-secondary:     #c3c2b7;
  --ink-muted:         #93918a;
  --surface:           #16151f;
  --surface-2:         #1c1b28;
  --page:              #100f17;
  --border:            rgba(255,255,255,0.10);
  --border-strong:     rgba(255,255,255,0.18);
  --gridline:          #2c2c2a;

  /* Status */
  --good:              #0ca30c;
  --good-text:         #3fd23f;
  --warning:           #fab219;
  --critical:          #ff6b6b;

  /* Chart categorical (fixed order — see dataviz palette) */
  --chart-1: #3987e5; /* blue    — reach / views */
  --chart-2: #d95926; /* orange  — clicks */
  --chart-3: #199e70; /* aqua    — conversions */
  --chart-4: #c98500; /* yellow  — engagement */
  --chart-7: #9085e9; /* violet  — brand accent series */

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.32);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.42);
  --container-w: 1180px;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Hero-dark brand surface — used by the header, hero sections and the
     footer. Same dark purple as the page background/glow family, kept as
     its own token set since these elements layer radial glows and blur
     effects that the flat --surface/--page tokens don't need. */
  --hd-bg-1: #0e0b1f;
  --hd-bg-2: #1a1440;
  --hd-glow-1: rgba(122,92,234,0.55);
  --hd-glow-2: rgba(74,58,167,0.40);
  --hd-accent: #b7ade8;
  --hd-ink-secondary: rgba(255,255,255,0.72);
  --hd-border: rgba(255,255,255,0.14);
  --hd-surface: rgba(255,255,255,0.06);
  --hd-surface-strong: rgba(255,255,255,0.12);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--page);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  font-variant-numeric: proportional-nums;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p,figure{ margin:0; }
button{ font-family:inherit; }
.tabular{ font-variant-numeric: tabular-nums; }

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--brand); color:#fff;
  padding:.75rem 1.25rem; z-index:1000; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

/* ---------- Layout ---------- */
.container{ max-width:var(--container-w); margin-inline:auto; padding-inline:1.25rem; }
.section{ padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight{ padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head{ max-width:640px; margin-bottom: 2.75rem; }
.section-head--center{ margin-inline:auto; text-align:center; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.8rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color:var(--brand); margin-bottom:.85rem;
}
.eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--brand); }
h1{ font-size:clamp(2.1rem, 4.4vw, 3.4rem); line-height:1.1; letter-spacing:-.02em; font-weight:800; }
h2{ font-size:clamp(1.65rem, 3vw, 2.35rem); line-height:1.15; letter-spacing:-.015em; font-weight:800; }
h3{ font-size:1.2rem; line-height:1.3; font-weight:700; }
.lede{ font-size:clamp(1.05rem, 1.6vw, 1.25rem); color:var(--ink-secondary); max-width:640px; }
.muted{ color:var(--ink-muted); }
.secondary-text{ color:var(--ink-secondary); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  font-weight:700; font-size:.95rem; padding:.8rem 1.4rem; border-radius:999px;
  border:1px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--brand); color:#fff; box-shadow:0 6px 18px rgba(74,58,167,0.28); }
.btn--primary:hover{ background:var(--brand-strong); box-shadow:0 10px 24px rgba(74,58,167,0.36); }
.btn--outline{ background:transparent; color:var(--ink); border-color:var(--border-strong); }
.btn--outline:hover{ border-color:var(--brand); color:var(--brand); }
.btn--ghost{ background:var(--surface-2); color:var(--ink); }
.btn--ghost:hover{ background:var(--brand-soft); color:var(--brand); }
.btn--sm{ padding:.55rem 1.05rem; font-size:.85rem; }
.btn--lg{ padding:1rem 1.9rem; font-size:1.02rem; }
.btn--block{ width:100%; }
.cta-row{ display:flex; flex-wrap:wrap; gap:.85rem; align-items:center; }

/* ---------- Header ---------- */
/* Persistently dark, regardless of the visitor's light/dark preference —
   see --hd-* tokens above. Bookends the always-dark .site-footer around
   the light data-clarity body. */
.site-header{
  position:sticky; top:0; z-index:100; background:rgba(14,11,31,0.82);
  backdrop-filter:blur(10px); border-bottom:1px solid var(--hd-border);
}
.site-header__inner{ display:flex; align-items:center; gap:1.5rem; padding-block:.9rem; }
.brand{ display:flex; align-items:center; gap:.5rem; font-weight:800; font-size:1.25rem; color:#fff; margin-right:auto; }
.brand__mark{ width:30px; height:30px; border-radius:9px; background:linear-gradient(135deg, var(--brand), #7d6cf0); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:.95rem; }
.founder-avatar{ width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg, var(--brand), #7d6cf0); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:1.6rem; box-shadow:0 10px 24px rgba(122,92,234,0.32); }
.main-nav__list{ display:flex; align-items:center; gap:1.6rem; }
.main-nav__list a{ font-size:.94rem; font-weight:600; color:rgba(255,255,255,0.78); }
.main-nav__list a:hover{ color:#fff; }
.site-header__actions{ display:flex; align-items:center; gap:.7rem; }
.site-header .btn--outline{ color:#fff; border-color:rgba(255,255,255,0.32); }
.site-header .btn--outline:hover{ color:#fff; border-color:#fff; background:rgba(255,255,255,0.08); }
.nav-toggle{ display:none; background:none; border:1px solid rgba(255,255,255,0.32); border-radius:8px; width:40px; height:36px; padding:0; cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:4px; }
.nav-toggle span{ width:18px; height:2px; background:#fff; border-radius:2px; }

@media (max-width: 900px){
  /* .site-header uses backdrop-filter, which makes it the containing block
     for this fixed-position child — so height is sized with viewport units
     (vh), not inset/bottom, which would resolve against the header's own
     (small) box instead of the viewport. */
  .main-nav{
    position:fixed; top:0; left:0; right:0; height:100vh; height:100dvh;
    z-index:99; background:var(--hd-bg-1);
    padding:5.5rem 1.5rem 1.5rem; overflow-y:auto;
    transform:translateX(100%); transition:transform .25s ease;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav__list{ flex-direction:column; align-items:flex-start; gap:0; }
  .main-nav__list a{ display:block; width:100%; padding:.85rem 0; border-bottom:1px solid var(--hd-border); }
  .site-header__actions .btn--outline{ display:none; }
  .nav-toggle{ display:flex; position:relative; z-index:101; }
}
@media (min-width: 901px){
  .main-nav-only-mobile{ display:none; }
}

/* ---------- Hero ---------- */
.hero{ padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 6vw, 5rem); overflow:hidden; }
.hero__grid{ display:grid; grid-template-columns: 1.05fr 1fr; gap:3rem; align-items:center; }
@media (max-width: 980px){ .hero__grid{ grid-template-columns:1fr; } }
.hero h1{ margin-bottom:1.1rem; }
.hero .lede{ margin-bottom:1.75rem; max-width:560px; }
.hero-note{ margin-top:1.1rem; font-size:.85rem; color:var(--ink-muted); }

/* ---------- Dark hero (persistent brand surface, see --hd-* tokens) ---------- */
.hero-dark{
  position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 120% 80% at 12% -15%, var(--hd-glow-1), transparent 60%),
    radial-gradient(ellipse 100% 70% at 92% 5%, var(--hd-glow-2), transparent 55%),
    linear-gradient(180deg, var(--hd-bg-1), var(--hd-bg-2));
  color:#fff;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3rem, 6vw, 5rem);
}
.hero-dark::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 15%, black, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 15%, black, transparent 72%);
}
.hero-dark .container{ position:relative; }
.hero-dark .eyebrow{ color:var(--hd-accent); }
.hero-dark .eyebrow::before{ background:var(--hd-accent); }
.hero-dark h1{ color:#fff; }
.hero-dark .lede{ color:var(--hd-ink-secondary); }
.hero-dark .hero-note{ color:rgba(255,255,255,0.5); }
.hero-dark .btn--outline{ color:#fff; border-color:rgba(255,255,255,0.32); }
.hero-dark .btn--outline:hover{ border-color:#fff; background:rgba(255,255,255,0.08); }
/* Product-mockup cards (.card/.dash) floated on top of the hero use the
   same frosted-glass treatment as .orbit__center/.hero-pill instead of the
   flat --surface tile, so they read as an elevated layer on the hero's
   gradient rather than a flat panel of the same dark family. */
.hero-dark .card, .hero-dark .dash{
  color:var(--ink); background:var(--hd-surface); border-color:var(--hd-border);
  backdrop-filter:blur(10px); box-shadow:0 24px 55px rgba(0,0,0,0.35);
}
.hero-dark .dash__bar{ background:var(--hd-surface-strong); border-color:var(--hd-border); }

/* Tighter continuation band directly under a .hero-dark hero — used for
   the trust-strip so the dark surface reads as one unbroken section. */
.hero-dark--trust{ padding-block: 0 clamp(2.5rem, 5vw, 3.5rem); }

/* Floating decorative badges — desktop only, purely decorative (aria-hidden) */
.hero-pill{
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--hd-surface); border:1px solid var(--hd-border);
  backdrop-filter:blur(8px);
  color:rgba(255,255,255,0.88); font-size:.78rem; font-weight:700;
  padding:.5rem .9rem; border-radius:999px;
  box-shadow:0 10px 26px rgba(0,0,0,0.28);
  white-space:nowrap;
}
.hero-pill--float{ position:absolute; z-index:2; }
@media (max-width:900px){ .hero-pill--float{ display:none; } }
@media (prefers-reduced-motion:no-preference){
  .hero-pill--float{ animation: hero-float 6s ease-in-out infinite; }
}

/* ---------- Orbit diagram (pure CSS/SVG, no images) ---------- */
.orbit{ position:relative; width:100%; max-width:400px; aspect-ratio:1/1; margin-inline:auto; }
.orbit__ring{
  position:absolute; inset:0; border:1px dashed var(--hd-border); border-radius:50%;
}
.orbit__ring--inner{ inset:16%; }
@media (prefers-reduced-motion:no-preference){
  .orbit__ring{ animation: hero-orbit-spin 46s linear infinite; }
  .orbit__ring--inner{ animation-duration:34s; animation-direction:reverse; }
}
.orbit__center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:58%; text-align:left;
  background:var(--hd-surface); border:1px solid var(--hd-border);
  backdrop-filter:blur(10px); border-radius:var(--radius-md);
  padding:.9rem 1.05rem; box-shadow:0 24px 55px rgba(0,0,0,0.35);
}
.orbit__center-label{ font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:rgba(255,255,255,0.55); }
.orbit__center-value{ font-size:1.15rem; font-weight:800; color:#fff; margin-top:.2rem; }
.orbit__center-sub{ font-size:.74rem; color:rgba(255,255,255,0.55); margin-top:.15rem; }
.orbit__node{
  position:absolute; top:50%; left:50%; width:46px; height:46px; margin:-23px;
  transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
}
.orbit__avatar{
  width:100%; height:100%; border-radius:50%;
  background:var(--hd-surface-strong); border:1px solid var(--hd-border);
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.78rem; color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,0.32);
}

/* ---------- Persona cards (Brands / Creators / Agencies) ---------- */
.persona-card{
  position:relative; overflow:hidden; isolation:isolate;
  border-radius:var(--radius-lg); padding:1.85rem; color:#fff;
}
.persona-card__num{
  position:absolute; right:-.2rem; bottom:-1.3rem; z-index:-1;
  font-size:5.5rem; font-weight:800; line-height:1; opacity:.16;
}
.persona-card h3{ color:#fff; font-size:1.3rem; margin-bottom:.5rem; }
.persona-card p{ color:rgba(255,255,255,0.85); font-size:.9rem; margin-bottom:1.5rem; }
.persona-card .btn--ghost{ background:rgba(255,255,255,0.16); color:#fff; }
.persona-card .btn--ghost:hover{ background:rgba(255,255,255,0.26); }
.persona-card--brands{ background:linear-gradient(135deg,#4a3aa7,#7d6cf0); }
.persona-card--creators{ background:linear-gradient(135deg,#b8501f,#eb6834); }
.persona-card--agencies{ background:linear-gradient(135deg,#0d6b52,#1baf7a); }

/* ---------- Trust strip (honest placeholders — see README) ---------- */
.trust-strip__label{
  text-align:center; font-size:.76rem; font-weight:700; letter-spacing:.05em;
  text-transform:uppercase; color:rgba(255,255,255,0.5); margin-bottom:1.25rem;
}
.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
@media (max-width:760px){ .stat-row{ grid-template-columns:repeat(2,1fr); } }
.stat-tile{
  text-align:center; padding:1.1rem .75rem;
  border:1px dashed var(--border-strong); border-radius:var(--radius-md);
  background:var(--surface);
}
.stat-tile__value{ font-size:1.5rem; font-weight:800; color:var(--ink-muted); }
.stat-tile__label{ font-size:.76rem; color:var(--ink-muted); margin-top:.3rem; }
.logo-strip{ display:flex; flex-wrap:wrap; gap:.85rem; justify-content:center; margin-top:1.25rem; }
.logo-slot{
  width:120px; height:44px; border:1px dashed var(--border-strong); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:.66rem; font-weight:600; color:var(--ink-muted); background:var(--surface);
}

/* ---------- Hero band (lighter dark page-intro, no orbit/motion) ---------- */
.hero-band{
  background:linear-gradient(180deg, var(--hd-bg-1), var(--hd-bg-2));
  color:#fff; padding-block: clamp(2.5rem, 5vw, 3.25rem) clamp(2rem, 4vw, 2.75rem);
}
.hero-band .eyebrow{ color:var(--hd-accent); }
.hero-band .eyebrow::before{ background:var(--hd-accent); }
.hero-band h1{ color:#fff; margin-bottom:.6rem; }
.hero-band .lede{ color:var(--hd-ink-secondary); margin:0; }

/* ---------- Motion (guarded by prefers-reduced-motion) ---------- */
@keyframes hero-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
@keyframes hero-orbit-spin{ to{ transform:rotate(360deg); } }

.reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ---------- Dashboard mockup ---------- */
.dash{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); overflow:hidden;
}
.dash__bar{ display:flex; align-items:center; gap:.4rem; padding:.85rem 1.1rem; border-bottom:1px solid var(--border); background:var(--surface-2); }
.dash__dot{ width:9px; height:9px; border-radius:50%; background:var(--border-strong); }
.dash__title{ margin-left:.5rem; font-size:.78rem; font-weight:700; color:var(--ink-muted); }
.dash__body{ padding:1.25rem; }
.dash__label{ font-size:.78rem; color:var(--ink-muted); font-weight:600; text-transform:uppercase; letter-spacing:.03em; }
.dash-illustrative{
  display:inline-block; margin-top:.75rem; font-size:.72rem; font-weight:700; color:var(--ink-muted);
  background:var(--surface-2); border:1px dashed var(--border-strong); padding:.3rem .6rem; border-radius:6px;
}

.kpi-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:.9rem; margin-bottom:1.1rem; }
.kpi{ background:var(--surface-2); border:1px solid var(--border); border-radius:var(--radius-md); padding:.9rem 1rem; }
.kpi__label{ font-size:.72rem; color:var(--ink-muted); font-weight:700; text-transform:uppercase; letter-spacing:.03em; }
.kpi__value{ font-size:1.4rem; font-weight:800; margin-top:.3rem; letter-spacing:-.01em; }
.kpi__delta{ font-size:.78rem; font-weight:700; color:var(--good-text); margin-top:.2rem; }
.kpi__value.brand{ color:var(--brand); }

.bars{ display:flex; align-items:flex-end; gap:.55rem; height:96px; padding:.25rem .1rem 0; }
.bars > span{ flex:1; border-radius:5px 5px 2px 2px; background:var(--chart-1); position:relative; }
.bars > span:nth-child(2){ background:var(--chart-2); }
.bars > span:nth-child(3){ background:var(--chart-3); }
.bars > span:nth-child(4){ background:var(--chart-4); }
.bars > span:nth-child(5){ background:var(--chart-7); }
.bars > span:nth-child(6){ background:var(--chart-1); opacity:.7; }
.bars > span:nth-child(7){ background:var(--chart-2); opacity:.7; }

.rank-row{ display:flex; align-items:center; gap:.75rem; padding:.65rem 0; border-bottom:1px solid var(--border); }
.rank-row:last-child{ border-bottom:none; }
.rank-avatar{ width:34px; height:34px; border-radius:50%; background:var(--brand-soft); color:var(--brand); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.8rem; flex-shrink:0; }
.rank-row__meta{ flex:1; min-width:0; }
.rank-row__name{ font-weight:700; font-size:.88rem; }
.rank-row__sub{ font-size:.76rem; color:var(--ink-muted); }
.rank-row__score{ font-weight:800; color:var(--good-text); font-size:.9rem; white-space:nowrap; }

/* ---------- Badges / tags ---------- */
.badge{ display:inline-flex; align-items:center; gap:.35rem; font-size:.72rem; font-weight:700; padding:.28rem .6rem; border-radius:999px; }
.badge--soon{ background:var(--brand-soft); color:var(--brand); }
.badge--illustrative{ background:var(--surface-2); color:var(--ink-muted); border:1px dashed var(--border-strong); }
.badge--good{ background:rgba(12,163,12,0.18); color:var(--good-text); }
.badge--critical{ background:rgba(255,107,107,0.16); color:var(--critical); }
.tag{ display:inline-flex; font-size:.76rem; font-weight:600; color:var(--ink-secondary); background:var(--surface-2); border:1px solid var(--border); padding:.3rem .65rem; border-radius:999px; }

.callout{
  display:flex; gap:.6rem; align-items:flex-start; background:var(--brand-soft); border:1px solid var(--brand-soft-2);
  border-radius:var(--radius-md); padding:.9rem 1.1rem; font-size:.9rem; color:var(--ink-secondary);
}
.callout strong{ color:var(--ink); }

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap:1.4rem; }
.grid--2{ grid-template-columns:repeat(2,1fr); }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }
@media (max-width: 980px){ .grid--3{ grid-template-columns:repeat(2,1fr); } .grid--4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 640px){ .grid--2, .grid--3, .grid--4{ grid-template-columns:1fr; } }

.card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:1.5rem; box-shadow:var(--shadow-sm); }
.card--hover{ transition:transform .15s ease, box-shadow .15s ease; }
.card--hover:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.card__icon{ width:44px; height:44px; border-radius:12px; background:var(--brand-soft); color:var(--brand); display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
.card h3{ margin-bottom:.5rem; }
.card p{ color:var(--ink-secondary); font-size:.93rem; }

.step-list{ counter-reset:step; }
.step{ display:flex; gap:1rem; align-items:flex-start; }
.step__num{ counter-increment:step; flex-shrink:0; width:38px; height:38px; border-radius:50%; background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.95rem; }
.step__num::before{ content:counter(step); }
.step h3{ margin-bottom:.25rem; font-size:1.05rem; }
.step p{ color:var(--ink-secondary); font-size:.9rem; margin:0; }

/* Creator / campaign marketplace cards */
.creator-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:1.25rem; box-shadow:var(--shadow-sm); }
.creator-card__top{ display:flex; align-items:center; gap:.75rem; margin-bottom:.9rem; }
.creator-card__avatar{ width:46px; height:46px; border-radius:50%; background:var(--brand-soft); color:var(--brand); display:flex; align-items:center; justify-content:center; font-weight:800; }
.creator-card__name{ font-weight:700; font-size:.98rem; }
.creator-card__loc{ font-size:.78rem; color:var(--ink-muted); }
.creator-card__score{ margin-left:auto; text-align:right; }
.creator-card__score b{ display:block; font-size:1.05rem; color:var(--good-text); }
.creator-card__score span{ font-size:.68rem; color:var(--ink-muted); text-transform:uppercase; letter-spacing:.03em; }
.creator-card__stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:.5rem; margin:.9rem 0; }
.creator-card__stats div{ background:var(--surface-2); border-radius:8px; padding:.5rem .3rem; text-align:center; }
.creator-card__stats b{ display:block; font-size:.92rem; }
.creator-card__stats span{ font-size:.66rem; color:var(--ink-muted); }
.creator-card__tags{ display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:1rem; }

/* ---------- Comparison table ---------- */
.compare{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }
@media (max-width:760px){ .compare{ grid-template-columns:1fr; } }
.compare__col{ border-radius:var(--radius-lg); padding:1.75rem; border:1px solid var(--border); }
.compare__col--dim{ background:var(--surface-2); }
.compare__col--brand{ background:var(--surface); border-color:var(--brand); box-shadow:0 0 0 1px var(--brand), var(--shadow-md); }
.compare__col h3{ margin-bottom:1rem; }
.compare__col ul{ display:grid; gap:.65rem; }
.compare__col li{ display:flex; gap:.55rem; align-items:flex-start; font-size:.92rem; color:var(--ink-secondary); }
.compare__col--brand li{ color:var(--ink); font-weight:600; }
.ico-check, .ico-dash{ flex-shrink:0; margin-top:.15rem; }
.ico-check{ color:var(--good-text); }
.ico-dash{ color:var(--ink-muted); }

/* ---------- Pricing ---------- */
.pricing-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:1.75rem; display:flex; flex-direction:column; gap:1.1rem; }
.pricing-card--featured{ border-color:var(--brand); box-shadow:0 0 0 1px var(--brand), var(--shadow-md); position:relative; }
.pricing-card__badge{ position:absolute; top:-13px; left:1.5rem; background:var(--brand); color:#fff; font-size:.72rem; font-weight:700; padding:.3rem .7rem; border-radius:999px; }
.pricing-card__price{ font-size:1.6rem; font-weight:800; }
.pricing-card__price span{ font-size:.85rem; font-weight:600; color:var(--ink-muted); }
.pricing-card ul{ display:grid; gap:.55rem; font-size:.89rem; color:var(--ink-secondary); }
.pricing-card li{ display:flex; gap:.5rem; align-items:flex-start; }

/* ---------- FAQ ---------- */
.faq-list{ display:grid; gap:.75rem; max-width:760px; }
.faq-item{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; }
.faq-item summary{ cursor:pointer; padding:1.1rem 1.3rem; font-weight:700; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:1.3rem; color:var(--brand); font-weight:400; flex-shrink:0; }
.faq-item[open] summary::after{ content:"−"; }
.faq-item__body{ padding:0 1.3rem 1.2rem; color:var(--ink-secondary); font-size:.93rem; }

/* ---------- Forms ---------- */
.form-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2rem; box-shadow:var(--shadow-md); }
.field{ margin-bottom:1.1rem; }
.field label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:.4rem; }
.field input, .field select, .field textarea{
  width:100%; padding:.75rem .9rem; border-radius:10px; border:1px solid var(--border-strong);
  background:var(--surface); color:var(--ink); font-family:inherit; font-size:.94rem;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--brand); outline-offset:1px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }
.form-note{ font-size:.78rem; color:var(--ink-muted); margin-top:.9rem; }
.form-success{ display:none; background:var(--brand-soft); border:1px solid var(--brand-soft-2); border-radius:var(--radius-md); padding:1.5rem; text-align:center; }

/* ---------- Blog / case studies ---------- */
.post-card{ display:flex; flex-direction:column; gap:.7rem; }
.post-card__meta{ font-size:.78rem; color:var(--ink-muted); display:flex; gap:.6rem; align-items:center; }
.post-card__img{ aspect-ratio:16/9; border-radius:var(--radius-md); background:linear-gradient(135deg, var(--brand-soft), var(--brand-soft-2)); display:flex; align-items:center; justify-content:center; color:var(--brand); font-weight:800; }
.prose{ max-width:720px; font-size:1.02rem; color:var(--ink-secondary); }
.prose h2{ margin-top:2.2rem; margin-bottom:.8rem; color:var(--ink); }
.prose h3{ margin-top:1.6rem; margin-bottom:.6rem; color:var(--ink); }
.prose p{ margin-bottom:1.1rem; }
.prose ul, .prose ol{ margin:0 0 1.1rem 1.3rem; list-style:revert; display:revert; }
.prose li{ margin-bottom:.4rem; }
.prose a{ color:var(--brand); text-decoration:underline; }
.prose table{ width:100%; border-collapse:collapse; margin-bottom:1.3rem; font-size:.92rem; }
.prose th, .prose td{ border:1px solid var(--border); padding:.6rem .75rem; text-align:left; }
.prose th{ background:var(--surface-2); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{ padding-top:1.1rem; font-size:.82rem; color:var(--ink-muted); }
.breadcrumbs ol{ display:flex; flex-wrap:wrap; gap:.35rem; }
.breadcrumbs li:not(:last-child)::after{ content:"/"; margin-left:.35rem; color:var(--border-strong); }
.breadcrumbs a{ color:var(--ink-muted); }
.breadcrumbs a:hover{ color:var(--brand); }
.breadcrumbs li[aria-current]{ color:var(--ink-secondary); font-weight:600; }

/* ---------- CTA band ---------- */
.cta-band{ background:linear-gradient(135deg, var(--brand), #6a5ae0); border-radius:var(--radius-lg); padding:clamp(2.2rem,5vw,3.5rem); color:#fff; text-align:center; }
.cta-band h2{ color:#fff; margin-bottom:.8rem; }
.cta-band p{ color:rgba(255,255,255,0.85); max-width:560px; margin-inline:auto; margin-bottom:1.6rem; }
.cta-band .btn--primary{ background:#fff; color:var(--brand); box-shadow:none; }
.cta-band .btn--primary:hover{ background:#f2f0ff; }
.cta-band .btn--outline{ border-color:rgba(255,255,255,0.5); color:#fff; }
.cta-band .btn--outline:hover{ border-color:#fff; background:rgba(255,255,255,0.1); }

/* ---------- Footer ---------- */
.site-footer{ background:#08070c; color:rgba(255,255,255,0.7); margin-top:4rem; }
.footer-grid{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:2rem; padding-block:3.5rem 2.5rem; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-col h3{ color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:.04em; margin-bottom:1.1rem; }
.footer-col ul{ display:grid; gap:.65rem; }
.footer-col a{ font-size:.9rem; color:rgba(255,255,255,0.65); }
.footer-col a:hover{ color:#fff; }
.footer-col--brand p{ font-size:.88rem; margin:.9rem 0 1.1rem; max-width:280px; color:rgba(255,255,255,0.6); }
.footer-brand-mark{ display:flex; align-items:center; gap:.5rem; font-weight:800; font-size:1.15rem; color:#fff; }
.footer-social{ display:flex; gap:.9rem; }
.footer-social a{ font-size:.82rem; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); }
.footer-bottom__inner{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; padding-block:1.5rem; font-size:.82rem; }
.footer-legal{ display:flex; gap:1.2rem; flex-wrap:wrap; }
.footer-legal a{ color:rgba(255,255,255,0.55); }
.footer-legal a:hover{ color:#fff; }

/* ---------- Misc ---------- */
.divider{ height:1px; background:var(--border); margin-block:2.5rem; }
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.stack{ display:grid; gap:.9rem; }
.pill-row{ display:flex; flex-wrap:wrap; gap:.6rem; }
.hr-list{ display:grid; }
.hr-list > *{ padding-block:.9rem; border-bottom:1px solid var(--border); }
.hr-list > *:last-child{ border-bottom:none; }

.city-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:.75rem; }
@media (max-width:760px){ .city-grid{ grid-template-columns:repeat(2,1fr); } }
.city-chip{ display:block; text-align:center; padding:.85rem .5rem; border:1px solid var(--border); border-radius:10px; font-weight:600; font-size:.88rem; background:var(--surface); }
.city-chip:hover{ border-color:var(--brand); color:var(--brand); }

.sparkline{ display:block; }
.sparkline path.fill{ opacity:.12; }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:2rem; } }
.two-col.reverse .two-col__media{ order:-1; }
@media (max-width:900px){ .two-col.reverse .two-col__media{ order:0; } }

.checklist{ display:grid; gap:.6rem; }
.checklist li{ display:flex; gap:.6rem; align-items:flex-start; font-size:.95rem; }
.checklist li svg{ flex-shrink:0; margin-top:.2rem; color:var(--good-text); }
