:root {
  --bg:            #fafaf9;
  --surface:       #ffffff;
  --surface-2:     #f4f4f2;
  --ink:           #0a0a0a;
  --ink-2:         #262626;
  --ink-soft:      #525252;
  --ink-mute:      #737373;
  --ink-faint:     #a3a3a3;
  --line:          #ebebe8;
  --line-strong:   #d4d4d1;
  --success:       #16a34a;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --radius-pill:   999px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:     0 1px 2px rgba(10,10,10,0.04), 0 1px 3px rgba(10,10,10,0.03);
  --shadow-card:   0 1px 2px rgba(10,10,10,0.04), 0 10px 28px -6px rgba(10,10,10,0.08), 0 4px 10px -4px rgba(10,10,10,0.05);
  --shadow-md:     0 4px 12px rgba(10,10,10,0.06), 0 1px 3px rgba(10,10,10,0.04);
  --shadow-lg:     0 20px 40px -12px rgba(10,10,10,0.12), 0 8px 16px -8px rgba(10,10,10,0.08);
  --shadow-xl:     0 40px 80px -20px rgba(10,10,10,0.18), 0 16px 32px -12px rgba(10,10,10,0.10);
}

/* Dark theme — opt-in via html[data-theme="dark"]. Marketing pages don't set
   the attribute and so stay light. The dashboard sets it from localStorage
   before paint to avoid a flash. */
html[data-theme="dark"] {
  --bg:            #0c0c0d;
  --surface:       #141416;
  --surface-2:     #1c1c1f;
  --ink:           #f5f5f4;
  --ink-2:         #e7e5e4;
  --ink-soft:      #b8b6b3;
  --ink-mute:      #8a8784;
  --ink-faint:     #595754;
  --line:          #28282b;
  --line-strong:   #3a3a3e;
  --shadow-sm:     0 1px 2px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.3);
  --shadow-card:   0 1px 2px rgba(0,0,0,0.4), 0 10px 28px -6px rgba(0,0,0,0.6), 0 4px 10px -4px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
  --shadow-lg:     0 20px 40px -12px rgba(0,0,0,0.7), 0 8px 16px -8px rgba(0,0,0,0.5);
  --shadow-xl:     0 40px 80px -20px rgba(0,0,0,0.8), 0 16px 32px -12px rgba(0,0,0,0.6);
  color-scheme:    dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  letter-spacing: -0.025em;
  color: #000;
}

.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }

/* === announcement bar === */
.announce {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 500;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: -0.005em;
}
.announce b { color: #fff; font-weight: 600; }
.announce a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(255,255,255,0.4); }
.announce a:hover { text-decoration-color: #fff; }

/* === floating pill nav === */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 20px 16px;
  background: rgba(250, 250, 249, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav {
  max-width: 920px; margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  padding: 8px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.nav > .logo { justify-self: start; }
.nav > .nav-cta { justify-self: end; }
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 700; letter-spacing: -0.02em; font-size: 16px;
  color: var(--ink);
}
.logo-mark {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--ink);
  display: grid; place-items: center; color: white;
}
.logo-mark svg { width: 13px; height: 13px; }
.nav-links {
  display: flex; gap: 2px;
  margin: 0;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 14px; font-weight: 500;
  transition: all 0.15s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--ink); background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: 6px; }

/* Dropdown menu inside nav-links */
.nav-drop { position: relative; }
.nav-drop-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  color: var(--ink-soft);
  font-size: 14px; font-weight: 500;
  background: none; border: 0; cursor: pointer;
  transition: all 0.15s var(--ease);
}
.nav-drop-trigger:hover, .nav-drop:hover .nav-drop-trigger,
.nav-drop.open .nav-drop-trigger, .nav-drop-trigger.active {
  color: var(--ink); background: var(--surface-2);
}
.nav-drop-trigger svg { width: 11px; height: 11px; transition: transform 0.15s var(--ease); }
.nav-drop:hover .nav-drop-trigger svg, .nav-drop.open .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: rgba(255,255,255,0.98);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  padding: 6px;
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; pointer-events: none;
  transition: all 0.18s var(--ease);
  z-index: 60;
}
/* Invisible hover-bridge fills the 8px gap between the trigger and the menu
   so the cursor doesn't lose hover state while moving from one to the other. */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 10px;
  color: var(--ink); font-size: 13.5px; font-weight: 500;
  transition: background 0.12s var(--ease);
}
.nav-drop-menu a:hover { background: var(--surface-2); }
.nav-drop-menu a small { color: var(--ink-mute); font-size: 11.5px; font-weight: 400; }
@media (max-width: 960px) {
  .nav-drop-menu {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    box-shadow: none; border: 0; padding: 0; min-width: 0; background: transparent;
    margin-left: 12px;
  }
  .nav-drop-trigger { width: 100%; justify-content: space-between; padding: 12px 14px; font-size: 15px; }
  .nav-drop-menu a { padding: 10px 14px; font-size: 14px; }
}

/* Pricing tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.tier:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tier.featured { border-color: var(--ink); box-shadow: var(--shadow-md); }
.tier-tag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.tier-name { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.tier-price-row { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.tier-price-prefix { font-size: 14px; color: var(--ink-mute); }
.tier-price { font-size: 38px; font-weight: 500; letter-spacing: -0.025em; color: var(--ink); }
.tier-price-suffix { font-size: 14px; color: var(--ink-mute); }
.tier-tag-line { font-size: 13px; color: var(--ink-mute); margin-bottom: 22px; }
.tier-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 22px; }
.tier-feats { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-feats li { font-size: 13.5px; color: var(--ink-soft); display: flex; gap: 10px; line-height: 1.5; }
.tier-feats li::before {
  content: ''; flex-shrink: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
  margin-top: 2px;
}
.tier .btn { width: 100%; justify-content: center; }
@media (max-width: 960px) { .tier-grid { grid-template-columns: 1fr; } }

/* FAQ list */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 17px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em;
}
.faq-q:hover { color: #000; }
.faq-q-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.2s var(--ease);
  font-size: 14px; color: var(--ink-soft);
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.25s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.65; max-width: 640px; }

.btn {
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  transition: all 0.15s var(--ease);
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.btn-ghost { color: var(--ink-soft); padding: 9px 16px; }
.btn-ghost:hover { color: var(--ink); background: var(--surface-2); }
.btn-outline {
  border: 1px solid var(--line-strong); color: var(--ink);
  background: var(--surface);
}
.btn-outline:hover { background: var(--surface-2); border-color: var(--ink); }
.btn-primary {
  background: var(--ink); color: #fff;
}
.btn-primary:hover { background: #1f1f1f; transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 15px; }

.nav-toggle { display: none; background: none; border: 0; padding: 0; color: var(--ink); cursor: pointer; margin-left: auto; }
.nav-toggle .nt-x { display: none; }
body.nav-open .nav-toggle .nt-bars { display: none; }
body.nav-open .nav-toggle .nt-x { display: inline; }

/* === hero === */
.hero { position: relative; padding: 0 24px 200px; }
.hero-inner {
  max-width: 900px; margin: 0 auto; text-align: center; position: relative;
  min-height: calc(100vh - 130px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero h1 {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 7.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 26px;
  color: #000;
}
.hero h1 .muted { color: #a3a3a3; }
.hero-sub {
  font-size: clamp(16px, 1.25vw, 18px);
  color: #525252;
  font-weight: 400;
  max-width: 640px; margin: 0 auto 36px;
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-mute);
}
.plat { display: inline-flex; align-items: center; gap: 7px; }

/* === dashboard mock === */
.dash-wrap {
  max-width: 1120px; margin: 0 auto; padding: 96px 24px 96px;
}
.mock-dash {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.mock-dash::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent 30%);
  pointer-events: none;
}
.mock-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mock-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); margin-left: 8px; }
.mock-breadcrumb .crumb-sep { color: var(--ink-faint); font-size: 11px; }
.mock-breadcrumb b { color: var(--ink); font-weight: 600; }
.mock-tabs { margin-left: auto; display: flex; gap: 2px; }
.mock-tab {
  padding: 6px 12px; border-radius: 7px;
  font-size: 12px; color: var(--ink-mute); font-weight: 500;
}
.mock-tab.active { background: var(--ink); color: #fff; }
.mock-body { padding: 22px 18px 18px; background: var(--surface-2); }
.mock-kpi-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 14px;
}
.mock-kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.mock-kpi-label {
  font-size: 11px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.mock-kpi-val {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; font-variant-numeric: tabular-nums; font-feature-settings: 'tnum';
  font-size: 22px; font-weight: 500;
  color: var(--ink);
  margin-top: 6px; letter-spacing: -0.02em;
}
.mock-kpi-delta { font-size: 11px; margin-top: 4px; color: var(--success); font-weight: 500; }
.mock-kpi-delta.flat { color: var(--ink-mute); }
.mock-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.mock-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.mock-panel-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.mock-panel-chip {
  font-size: 11px; color: var(--ink-mute);
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--line);
  font-weight: 500;
}
.mock-tbl { display: flex; flex-direction: column; gap: 4px; }
.mock-tr {
  display: grid;
  grid-template-columns: 24px 1fr 80px 70px;
  gap: 12px; align-items: center;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12.5px;
  transition: background 0.1s;
}
.mock-tr:hover { background: var(--surface-2); }
.mock-tr-plat {
  width: 22px; height: 22px; border-radius: 5px;
  display: grid; place-items: center;
}
.mock-tr-plat.tt { background: #0a0a0a; color: #fff; }
.mock-tr-plat.yt { background: #ffefef; color: #dc2626; }
.mock-tr-plat.ig { background: #fdeef2; color: #e4405f; }
.mock-tr-plat.x  { background: #eef2f7; color: #0a0a0a; }
.mock-tr-plat svg { width: 11px; height: 11px; }
.mock-tr-title { color: var(--ink); font-weight: 500; }
.mock-tr-sub { font-size: 11px; color: var(--ink-mute); font-weight: 400; margin-top: 1px; }
.mock-tr-bar { height: 4px; background: var(--line); border-radius: 2px; overflow: hidden; position: relative; }
.mock-tr-bar::after {
  content: ''; position: absolute; inset: 0;
  width: var(--w, 60%); background: var(--ink); border-radius: 2px;
}
.mock-tr-v {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; font-variant-numeric: tabular-nums; font-feature-settings: 'tnum';
  font-size: 12px; font-weight: 600;
  color: var(--ink); text-align: right;
}

/* === section scaffolding === */
section { padding: 96px 24px; }
.wrap { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px;
}
.section-title {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 400; letter-spacing: -0.025em;
  line-height: 1.04; margin-bottom: 22px;
  color: var(--ink);
}
.section-sub {
  font-size: 18px; color: var(--ink-soft);
  max-width: 580px; line-height: 1.55;
}
.section-head { margin-bottom: 64px; max-width: 880px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

/* === stat band (hairline row) === */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stat { padding: 56px 32px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat-val {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: clamp(44px, 4.6vw, 60px);
  font-weight: 500;
  color: var(--ink); line-height: 1;
  letter-spacing: -0.03em;
}
.stat-lbl { font-size: 13.5px; color: var(--ink-mute); margin-top: 16px; line-height: 1.4; letter-spacing: -0.005em; }
@media (max-width: 640px) {
  .stat { padding: 32px 22px; }
  .stat-val { font-size: 36px; }
  .stat-lbl { font-size: 12.5px; margin-top: 10px; }
}

/* === steps === */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-card);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.step-num {
  font-variant-numeric: tabular-nums;
  font-size: 11px; color: var(--ink-mute); margin-bottom: 36px;
  letter-spacing: 0.1em; font-weight: 500;
}
.step h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.02em; }
.step p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* === features === */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-card);
}
.feat:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.feat-check { width: 22px; height: 22px; display: block; margin-bottom: 18px; }
.feat h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.015em; }
.feat p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* === platform distribution === */
.dist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dist {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-card);
}
.dist:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.dist-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.dist-ic-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.dist.tiktok .dist-ic-wrap { background: #0a0a0a; color: #fff; }
.dist.youtube .dist-ic-wrap { background: #ffefef; color: #dc2626; }
.dist.instagram .dist-ic-wrap { background: #fdeef2; color: #e4405f; }
.dist.x .dist-ic-wrap { background: #f4f4f2; color: #0a0a0a; }
.dist-ic-wrap svg { width: 18px; height: 18px; }
.dist-name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.dist-sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.dist-stat {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 34px; font-weight: 500;
  color: var(--ink);
  line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.dist-lbl { font-size: 12px; color: var(--ink-mute); margin-bottom: 20px; }
.dist-detail { font-size: 12px; color: var(--ink-mute); display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--line); }
.dist-detail + .dist-detail { border-top: none; padding-top: 6px; }
.dist-detail b { color: var(--ink); font-weight: 600; }

/* === work === */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-card);
}
.work:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); border-color: var(--line-strong); }
.work-banner {
  height: 150px; position: relative;
  display: grid; place-items: center;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.work-banner .brand-logo { color: var(--ink); font-size: 22px; opacity: 0.9; }
.work-banner .brand-logo svg { width: 38px; height: 38px; }
.work-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 500;
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line);
}
.work-badge.live {
  background: #e8f6ee; color: #166534; border-color: #c9ebd4;
}
.work-body { padding: 20px; }
.work-brand { font-size: 12px; color: var(--ink-mute); margin-bottom: 4px; letter-spacing: 0.01em; }
.work-title { font-size: 16px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.015em; color: var(--ink); }
.work-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.work-stat-v {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; font-variant-numeric: tabular-nums; font-feature-settings: 'tnum';
  font-size: 15px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.work-stat-l { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }

/* platform pill badges on work cards */
.plat-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 500;
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--ink-soft);
}
.plat-pill svg { width: 11px; height: 11px; }
.plat-pill.tt svg { color: #0a0a0a; }
.plat-pill.yt svg { color: #dc2626; }
.plat-pill.ig svg { color: #e4405f; }
.plat-pill.x svg  { color: #0a0a0a; }

/* === quotes === */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-card);
}
.quote-text {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16.5px; margin-bottom: 20px;
  color: var(--ink); line-height: 1.5;
  letter-spacing: -0.005em; font-weight: 400;
}
.quote-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); display: grid; place-items: center;
  color: #fff; flex-shrink: 0;
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
}
.quote-name { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.quote-role { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }

.quote-foot {
  margin-top: 36px; display: flex; justify-content: center;
}
.quote-foot-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-mute);
}
.quote-foot-chip svg { width: 13px; height: 13px; color: var(--ink-soft); stroke-width: 2; }

/* === CTA (inverse) === */
.cta-section { padding-top: 16px; padding-bottom: 96px; }
.cta-box {
  background: var(--ink); color: #fff;
  border-radius: 24px; padding: 72px 48px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(circle at 20% 100%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 300; letter-spacing: -0.02em;
  color: #fff; line-height: 1.1;
  margin-bottom: 14px; position: relative;
}
.cta-box p {
  color: rgba(255,255,255,0.72);
  font-size: 17px; max-width: 540px;
  margin: 0 auto 32px; position: relative;
  line-height: 1.5;
}
.cta-box .btn-primary {
  background: #fff; color: var(--ink);
  position: relative;
}
.cta-box .btn-primary:hover { background: #f4f4f2; transform: translateY(-1px); }

/* === legal pages === */
.legal-page { max-width: 820px; margin: 0 auto; padding: 72px 24px 112px; }
.legal-hero { padding-bottom: 32px; border-bottom: 1px solid var(--line); margin-bottom: 48px; }
.legal-hero h1 {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 5.2vw, 60px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #000;
}
.legal-hero .legal-meta { font-size: 14px; color: var(--ink-mute); }
.legal-sec { margin-bottom: 48px; padding: 0; }
.legal-sec h2 {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}
.legal-sec h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.legal-sec p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.legal-sec ul { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin: 0 0 16px 22px; }
.legal-sec li { margin-bottom: 8px; }
.legal-sec strong { color: var(--ink); font-weight: 600; }
.legal-sec a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
@media (max-width: 640px) {
  .legal-page { padding: 56px 20px 80px; }
  .legal-hero { padding-bottom: 24px; margin-bottom: 36px; }
  .legal-sec { margin-bottom: 36px; }
  .legal-sec h2 { font-size: 24px; }
  .legal-sec p, .legal-sec ul { font-size: 16px; }
}

/* === footer === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 64px 24px 28px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px; gap: 40px; flex-wrap: wrap;
}
.footer-brand { max-width: 340px; }
.footer-tag { color: var(--ink-soft); font-size: 13.5px; margin-top: 14px; line-height: 1.55; }
.footer-socials { display: flex; gap: 6px; }
.soc {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 12px; font-weight: 600;
  transition: all 0.15s;
}
.soc:hover { color: var(--ink); border-color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-col h5 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--ink-soft); transition: color 0.15s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--ink-mute);
}
.footer-bottom-right { display: flex; gap: 20px; align-items: center; }

/* === platform icons === */
.plat-ic { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; }
.plat-ic.lg { width: 18px; height: 18px; }
.plat-ic path { fill: currentColor; }

/* brand logo wrappers */
.brand-logo { display: inline-flex; align-items: center; gap: 8px; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.brand-logo svg { width: 26px; height: 26px; }

/* === page-level helpers === */
.page-hero { padding: 96px 24px 72px; text-align: center; position: relative; }
.page-hero .wrap { max-width: 880px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Helvetica Neue', 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(36px, 6.2vw, 68px);
  font-weight: 400; letter-spacing: -0.025em; line-height: 1.06;
  margin-bottom: 20px; color: #000;
}
.page-hero h1 .muted { color: #a3a3a3; }
.page-hero p { font-size: clamp(15px, 1.15vw, 17.5px); color: var(--ink-soft); max-width: 620px; margin: 0 auto; line-height: 1.6; }
.page-hero .eyebrow { display: inline-block; margin-bottom: 18px; }

/* Prose blocks (docs, blog bodies, legal) */
.prose { max-width: 760px; margin: 0 auto; color: var(--ink-2); }
.prose h2 { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 48px 0 14px; color: var(--ink); }
.prose h3 { font-size: 20px; font-weight: 600; margin: 32px 0 10px; letter-spacing: -0.015em; color: var(--ink); }
.prose p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; color: var(--ink-soft); }
.prose li { font-size: 16px; line-height: 1.7; margin-bottom: 6px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.prose a:hover { text-decoration-color: var(--ink); }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; padding: 2px 6px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 5px; }
.prose pre { background: var(--ink); color: #fafaf9; padding: 18px 20px; border-radius: 10px; overflow-x: auto; margin-bottom: 18px; font-size: 13.5px; line-height: 1.55; }
.prose pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }
.prose blockquote { border-left: 3px solid var(--line-strong); padding: 4px 0 4px 16px; margin: 20px 0; color: var(--ink-soft); font-style: italic; }

/* Forms */
.form-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line-strong);
  color: var(--ink); font-family: inherit; font-size: 14px;
  outline: none; transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 96px; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23525252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.form-panel button[type=submit] {
  width: 100%; margin-top: 6px; padding: 13px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 500;
  transition: all 0.15s var(--ease);
}
.form-panel button[type=submit]:hover { background: #1f1f1f; transform: translateY(-1px); }
.form-small { font-size: 12px; color: var(--ink-mute); margin-top: 10px; text-align: center; }

/* === capability rows (features page) === */
.cap-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.cap-row:last-child { margin-bottom: 0; }
.cap-row.reverse .cap-visual { order: -1; }
.cap-num { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.cap-copy h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; }
.cap-copy > p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin-bottom: 20px; }
.cap-bullets { list-style: none; padding: 0; }
.cap-bullets li { padding: 10px 0; color: var(--ink-2); font-size: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.cap-bullets li:first-child { border-top: 0; }
.cap-bullets li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.cap-visual { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-card); min-height: 260px; }
.cap-visual .mock-topbar { margin: -18px -18px 14px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

/* === chips / filter pills === */
.chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.chip { padding: 8px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s var(--ease); }
.chip:hover { border-color: var(--line-strong); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-bar { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.filter-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.filter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); min-width: 72px; }

/* === post grid (blog) === */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all 0.2s var(--ease); cursor: pointer; }
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.post-img { height: 160px; background: var(--surface-2); position: relative; display: grid; place-items: center; color: var(--ink-soft); font-size: 13px; font-weight: 500; border-bottom: 1px solid var(--line); }
.post-cat { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); font-size: 11px; font-weight: 500; color: var(--ink-soft); }
.post-body { padding: 22px; }
.post-meta { font-size: 12px; color: var(--ink-mute); margin-bottom: 10px; }
.post-title { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; line-height: 1.3; color: var(--ink); }
.post-ex { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

.featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); align-items: stretch; }
.featured-img { background: var(--surface-2); display: grid; place-items: center; min-height: 320px; position: relative; font-size: 28px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink); border-right: 1px solid var(--line); }
.featured-badge { position: absolute; top: 16px; right: 16px; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); font-size: 11px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; }
.featured-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.featured-meta { font-size: 12.5px; color: var(--ink-mute); margin-bottom: 12px; }
.featured-title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 16px; }
.featured-ex { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin-bottom: 22px; }
.featured-auth { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.auth-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 600; }
.auth-name { font-size: 13.5px; font-weight: 600; }
.auth-meta { font-size: 12px; color: var(--ink-mute); }

/* === docs layout === */
.docs-layout { max-width: 1200px; margin: 0 auto; padding: 60px 24px 120px; display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.docs-sidebar { position: sticky; top: 100px; max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 8px; }
.docs-sidebar-group { margin-bottom: 24px; }
.docs-sidebar-group h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.docs-sidebar-group ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.docs-sidebar-group a { display: block; padding: 6px 10px; border-radius: 7px; font-size: 13.5px; color: var(--ink-soft); transition: all 0.1s; }
.docs-sidebar-group a:hover { color: var(--ink); background: var(--surface-2); }
.docs-sidebar-group a.active { color: var(--ink); background: var(--surface-2); font-weight: 500; }
.docs-content { min-width: 0; }
.docs-callout { background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--ink); border-radius: var(--radius); padding: 16px 20px; margin: 22px 0; font-size: 14px; color: var(--ink-2); }
.docs-callout p { margin-bottom: 0; }
.code-label { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: var(--surface-2); border: 1px solid var(--line); border-bottom: 0; border-radius: 10px 10px 0 0; font-size: 11.5px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 16px; font-weight: 500; }
.code-label + pre { margin-top: 0 !important; border-radius: 0 0 10px 10px !important; }
.docs-content table.endpoints { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 16px 0 24px; }
.docs-content table.endpoints th { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line-strong); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); }
.docs-content table.endpoints td { padding: 10px 14px; border-bottom: 1px solid var(--line); color: var(--ink-2); vertical-align: top; }
.docs-content table.endpoints td.path { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px; color: var(--ink); }
.method { display: inline-block; padding: 2px 8px; border-radius: 5px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.method-get { background: #e8f0fe; color: #1a56b8; }
.method-post { background: #e8f6ee; color: #166534; }
.table-scroll { overflow-x: auto; }
.docs-foot { margin-top: 56px; padding: 32px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.docs-foot h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.docs-foot p { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.docs-foot .btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* === docs search pill === */
.search-bar { display: flex; align-items: center; gap: 10px; max-width: 540px; margin: 24px auto 0; padding: 10px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.search-bar svg, .search-bar .search-ic { color: var(--ink-faint); font-size: 14px; }
.search-bar input { flex: 1; border: 0; outline: 0; background: none; font-size: 14px; color: var(--ink); }
.search-bar input::placeholder { color: var(--ink-faint); }
.search-bar kbd { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; padding: 2px 7px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-mute); }

/* === login card === */
.login-card { max-width: 460px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.login-card h2 { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; }
.login-sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 24px; }
.login-card .field { margin-bottom: 14px; }
.login-card .field-row { display: flex; justify-content: space-between; align-items: center; margin: 6px 0 18px; font-size: 13px; }
.login-card .remember { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); cursor: pointer; }
.login-card .remember input { width: 14px; height: 14px; accent-color: var(--ink); }
.login-card .field-row a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.login-card .submit button { width: 100%; padding: 12px; border-radius: var(--radius-pill); background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; transition: all 0.15s var(--ease); }
.login-card .submit button:hover { background: #1f1f1f; transform: translateY(-1px); }
.login-card .submit button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.login-error { color: #c0392b; font-size: 13px; line-height: 1.45; margin: 4px 0 12px; min-height: 1em; }
.login-error:empty { margin: 0; min-height: 0; }
.divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.sso-btns { display: flex; flex-direction: column; gap: 10px; }
.sso-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 11px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line-strong); color: var(--ink); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.15s var(--ease); }
.sso-btn:hover { background: var(--surface-2); border-color: var(--ink); }
.sso-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; font-size: 11px; font-weight: 700; color: var(--ink-soft); }
.login-foot { margin-top: 22px; font-size: 13px; color: var(--ink-soft); text-align: center; }
.login-foot a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }

/* === trust row === */
.trust { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); flex-shrink: 0; }
.trust-ic svg { width: 16px; height: 16px; }
.trust-text { font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.trust-sub { font-size: 12px; color: var(--ink-mute); margin-top: 1px; }

/* === phases (campaigns) === */
.phases { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.phase { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 22px; box-shadow: var(--shadow-card); transition: all 0.2s var(--ease); }
.phase:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.phase-num { font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 28px; }
.phase h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; }
.phase p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.55; }

/* === included grid (enterprise) === */
.pricing-points { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pp { text-align: left; padding: 44px 48px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.pp:nth-child(odd) { border-left: none; }
.pp:nth-child(-n+2) { border-top: none; }
.pp-num { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em; margin-bottom: 14px; }
.pp-label { font-size: 19px; font-weight: 500; color: var(--ink); letter-spacing: -0.015em; line-height: 1.3; margin-bottom: 10px; }
.pp-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 440px; }
@media (max-width: 760px) {
  .pricing-points { grid-template-columns: 1fr; }
  .pp { padding: 32px 0; border-left: none !important; border-top: 1px solid var(--line) !important; }
  .pp:first-child { border-top: none !important; }
}

.included-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.incl { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-card); }
.incl-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); margin-bottom: 18px; }
.incl-ic svg { width: 17px; height: 17px; }
.incl h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.incl p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* === brief builder (enterprise) === */
.builder { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.builder-grid { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.b-field { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.b-field.full { grid-column: 1 / -1; }
.b-label { font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 6px; }
.b-value { font-size: 14px; color: var(--ink); font-weight: 500; }
.b-value.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.b-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.b-pill { padding: 3px 10px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line-strong); font-size: 12px; color: var(--ink); }
.b-pill.muted { color: var(--ink-mute); }

/* alt cards (client access) */
.alt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.alt-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); transition: all 0.2s var(--ease); display: flex; flex-direction: column; gap: 10px; }
.alt-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.alt-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); margin-bottom: 4px; }
.alt-card h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; }
.alt-card p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.55; flex: 1; }
.alt-card .arrow { font-size: 13px; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }

/* campaigns page work-card tweaks */
.work-plats { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 5px; flex-wrap: wrap; }
.work-industry { font-size: 12px; color: var(--ink-mute); margin: -8px 0 12px; }
.work-duration { font-size: 12px; color: var(--ink-mute); margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }

/* Sample scope cards (campaigns page + index) */
.scope-grid-page { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.scope { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.scope-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-bottom: 1px solid var(--line); background: #fff; gap: 12px; }
.scope-vertical { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.scope-badge { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; }
.scope-body { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.scope-title { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; color: var(--ink); }
.scope-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 22px; }
.scope-grid { display: grid; gap: 0; }
.scope-row { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.scope-row:last-child { border-bottom: none; padding-bottom: 0; }
.scope-row:first-child { padding-top: 0; }
.scope-row-label { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.scope-row-val { font-size: 14px; color: var(--ink); line-height: 1.55; }
@media (max-width: 860px) { .scope-grid-page { grid-template-columns: 1fr; } .scope-row { grid-template-columns: 1fr; gap: 4px; } }

/* Operator bench */
.op-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 28px; }
.op-name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px; }
.op-role { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10.5px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.op-bio { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
@media (max-width: 1000px) { .op-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .op-grid { grid-template-columns: 1fr; } }

/* Compact scope row for index teaser (3 cols) */
.scope-grid-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .scope-grid-index { grid-template-columns: 1fr; } }

@media (max-width: 960px) {
  .cap-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 64px; }
  .cap-row.reverse .cap-visual { order: 0; }
  .post-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured-img { min-height: 200px; border-right: 0; border-bottom: 1px solid var(--line); }
  .docs-layout { grid-template-columns: 1fr; gap: 24px; padding: 40px 20px 80px; }
  .docs-sidebar { position: static; max-height: none; overflow: visible; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child, .trust-item:nth-child(2) { border-top: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .phases { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .builder-grid { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .filter-row { gap: 6px; }
  .filter-label { min-width: auto; width: 100%; margin-bottom: 4px; }
}

/* === FAQ accordion (connected card, smooth open) === */
:root { interpolate-size: allow-keywords; }

.faq-grid {
  display: flex; flex-direction: column;
  max-width: 760px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq {
  background: transparent;
  border: 0; border-radius: 0; box-shadow: none;
  border-top: 1px solid var(--line);
  transition: background-color 0.2s var(--ease);
}
.faq:first-child { border-top: 0; }
.faq:hover { background: rgba(244,244,242,0.5); }
.faq[open] { background: var(--surface-2); }
.faq summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 15.5px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(135deg); }

/* Smooth height animation: keep content rendered; control via height */
.faq:not([open]) > *:not(summary) { display: block; }
.faq-body {
  height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 14.5px; line-height: 1.65;
  transition: height 0.3s var(--ease), padding-bottom 0.3s var(--ease);
}
.faq[open] .faq-body {
  height: auto;
  padding-bottom: 22px;
}

/* === responsive === */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-wrap { padding: 12px 16px 0; top: 12px; }
  .nav { display: flex; padding: 8px 8px 8px 16px; border-radius: 16px; gap: 10px; flex-wrap: wrap; grid-template-columns: none; }
  .nav-toggle { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; }
  .nav-toggle:hover { background: var(--surface-2); }
  .nav-cta { display: none; margin-left: auto; }
  body.nav-open .nav-links { display: flex; flex-basis: 100%; flex-direction: column; gap: 4px; padding: 10px 0 6px; border-top: 1px solid var(--line); margin: 0; }
  body.nav-open .nav-cta { display: flex; flex-basis: 100%; flex-direction: column; gap: 8px; padding: 4px 0 6px; }
  body.nav-open .nav-links a { padding: 12px 14px; font-size: 15px; }
  body.nav-open .nav-cta .btn { width: 100%; justify-content: center; padding: 12px 20px; }
  .stats-row, .steps, .feat-grid, .dist-grid, .work-grid, .quotes { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 72px 24px; }
  .hero { padding: 56px 24px 32px; }
  .page-hero { padding: 56px 24px 40px; }
  .dash-wrap { padding: 0 16px 72px; }
  .cta-section { padding-bottom: 72px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .mock-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .mock-tabs { display: none; }
  .mock-tr { grid-template-columns: 24px 1fr 60px; gap: 8px; }
  .mock-tr-bar { display: none; }
  .hero { padding: 44px 18px 28px; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-sub { font-size: 15.5px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 14px 20px; font-size: 12.5px; }
  section { padding: 56px 18px; }
  .section-title { font-size: clamp(26px, 7vw, 38px); }
  .section-sub { font-size: 15.5px; }
  .section-head { margin-bottom: 32px; }
  .cta-box { padding: 44px 22px; border-radius: 20px; }
  .cta-box h2 { font-size: clamp(24px, 7vw, 36px); }
  .cta-box p { font-size: 15.5px; margin-bottom: 24px; }
  .footer { padding: 48px 18px 24px; }
  .announce { font-size: 12px; padding: 9px 16px; }
  input, textarea, select { font-size: 16px; }
  .form-panel { padding: 24px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .section-title { font-size: 24px; }
  section { padding: 48px 16px; }
}

/* ============================================================
   v2 visual layer — backgrounds, motion, phone showcase, marquee
   Additive only. Existing classes untouched.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
}

/* Hero background: warm radial mesh + subtle dot grid */
.hero {
  background:
    radial-gradient(ellipse 70% 45% at 50% 8%, rgba(10,10,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 12% 70%, rgba(220,38,38,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 88% 30%, rgba(228,64,95,0.045) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px),
    radial-gradient(circle, #b8b8b4 0.7px, transparent 0.7px);
  background-size: 88px 88px, 88px 88px, 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, black 0%, transparent 80%);
  opacity: 0.7;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 100px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 320px;
  background: radial-gradient(ellipse, rgba(10,10,10,0.05) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-inner { z-index: 2; }
.hero { padding-bottom: 80px; }

/* Hero badge (above headline) */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a; position: relative;
}
.hero-badge .pulse-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: #16a34a;
  opacity: 0.35; animation: livepulse 1.8s ease-out infinite;
}
.hero-badge b { color: var(--ink); font-weight: 600; }
@keyframes livepulse {
  0% { transform: scale(0.6); opacity: 0.45; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* === phone showcase below hero === */
.phone-stage {
  max-width: 1080px;
  margin: 8vh auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  perspective: 1600px;
  position: relative;
  z-index: 1;
}
.phone {
  position: relative;
  width: 100%; max-width: 240px; justify-self: center;
  aspect-ratio: 9 / 19.5;
  background: #0a0a0a;
  border-radius: 34px;
  padding: 6px;
  box-shadow:
    0 1px 0 1px rgba(255,255,255,0.04) inset,
    0 30px 60px -20px rgba(10,10,10,0.32),
    0 12px 32px -10px rgba(10,10,10,0.18),
    0 4px 10px -2px rgba(10,10,10,0.10);
  transform-style: preserve-3d;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.phone-stage .phone:nth-child(1) {
  transform: rotateY(11deg) rotateX(2deg) translateY(28px) translateX(8px) scale(0.95);
  z-index: 1;
}
.phone-stage .phone:nth-child(2) {
  transform: rotateX(-1deg) translateY(-18px);
  z-index: 3;
}
.phone-stage .phone:nth-child(3) {
  transform: rotateY(-11deg) rotateX(2deg) translateY(28px) translateX(-8px) scale(0.95);
  z-index: 1;
}
.phone-stage:hover .phone:nth-child(1) { transform: rotateY(8deg) rotateX(1deg) translateY(20px) translateX(6px) scale(0.97); }
.phone-stage:hover .phone:nth-child(2) { transform: rotateX(-1deg) translateY(-26px); }
.phone-stage:hover .phone:nth-child(3) { transform: rotateY(-8deg) rotateX(1deg) translateY(20px) translateX(-6px) scale(0.97); }

.phone-bezel {
  width: 100%; height: 100%;
  border-radius: 28px; overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px; border-radius: 14px;
  background: #000; z-index: 5;
}

.clip-thumb {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--g-acc, rgba(220,38,38,0.35)) 0%, transparent 55%),
    linear-gradient(165deg, var(--g-from, #1f1f1f) 0%, var(--g-to, #050505) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 14px;
}
.clip-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.clip-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  background: #000;
}
.clip-plat-tag {
  position: absolute; top: 44px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 9px 5px 7px; border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 10px; font-weight: 600; color: #fff;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 3;
}
.clip-plat-tag svg { width: 11px; height: 11px; }
.clip-live {
  position: absolute; top: 44px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 9px; font-weight: 700; color: #fff;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 3;
}
.clip-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.7);
  animation: liveblink 1.6s ease-in-out infinite;
}
@keyframes liveblink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.clip-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,0.45);
  z-index: 2;
  animation: playbreath 3.4s ease-in-out infinite;
}
.clip-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
@keyframes playbreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.18); }
  50% { transform: translate(-50%, -50%) scale(1.04); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.clip-actions {
  position: absolute; right: 12px; bottom: 96px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  z-index: 3;
}
.clip-action {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: #fff;
}
.clip-action-c {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
}
.clip-action-c svg { width: 14px; height: 14px; }
.clip-action-n { font-size: 9.5px; font-weight: 700; letter-spacing: -0.01em; }
.clip-meta {
  position: relative; z-index: 2;
  color: #fff;
}
.clip-creator {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.clip-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--av-from, #fafafa), var(--av-to, #d4d4d1));
  border: 1.5px solid #fff;
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: var(--ink);
}
.clip-handle { font-size: 12px; font-weight: 700; }
.clip-cap {
  font-size: 10.5px; line-height: 1.35;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.clip-views-tag {
  position: absolute; top: 12px; right: 12px;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.92);
  font-size: 10px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
}

/* === brand marquee strip === */
.marquee-section {
  padding: 48px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  margin-top: 64px;
  overflow: hidden;
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--surface) 0%, transparent 100%); }
.marquee-section::after  { right: 0; background: linear-gradient(270deg, var(--surface) 0%, transparent 100%); }
.marquee-eyebrow {
  text-align: center;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 42s linear infinite;
  width: max-content;
  padding: 8px 0;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Helvetica Neue', 'Inter', sans-serif;
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.marquee-item:hover { color: var(--ink); }
.marquee-item svg { width: 32px; height: 32px; }
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--line-strong); flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === enhanced dashboard mock === */
.mock-panel-chip .live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #16a34a; margin-right: 6px;
  position: relative;
  animation: bardotpulse 1.8s ease-in-out infinite;
}
@keyframes bardotpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.55); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}

/* sparkline next to KPI */
.mock-kpi-spark {
  margin-top: 10px;
  height: 28px; width: 100%;
}
.mock-kpi-spark path.line {
  stroke: var(--ink); stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 200; stroke-dashoffset: 200;
}
.mock-kpi-spark.in path.line {
  animation: sparkdraw 1.4s var(--ease) forwards;
}
.mock-kpi-spark path.fill {
  fill: rgba(10,10,10,0.06); stroke: none;
  opacity: 0; transition: opacity 0.4s 0.8s var(--ease);
}
.mock-kpi-spark.in path.fill { opacity: 1; }
@keyframes sparkdraw {
  to { stroke-dashoffset: 0; }
}

/* animated bars in dashboard table */
.mock-tr-bar { transition: none; }
.mock-tr-bar::after { transition: width 1.1s var(--ease); }
.mock-tr-bar:not(.in)::after { width: 0 !important; }
.mock-tr-bar.in::after { width: var(--w, 60%); }
.mock-tr:nth-child(1) .mock-tr-bar.in::after { transition-delay: 0.05s; }
.mock-tr:nth-child(2) .mock-tr-bar.in::after { transition-delay: 0.18s; }
.mock-tr:nth-child(3) .mock-tr-bar.in::after { transition-delay: 0.31s; }
.mock-tr:nth-child(4) .mock-tr-bar.in::after { transition-delay: 0.44s; }

/* === clips wall === */
.clips-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cw {
  position: relative; aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, var(--c-acc, rgba(255,255,255,0.18)) 0%, transparent 55%),
    linear-gradient(160deg, var(--c-from, #1f1f1f) 0%, var(--c-to, #050505) 100%);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cw::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.cw:hover { transform: translateY(-5px) scale(1.015); box-shadow: var(--shadow-xl); }
.cw-plat {
  position: absolute; top: 10px; left: 10px;
  width: 24px; height: 24px; border-radius: 7px;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; z-index: 2;
  border: 1px solid rgba(255,255,255,0.08);
}
.cw-plat svg { width: 12px; height: 12px; }
.cw-views {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 8px; border-radius: 6px;
  background: rgba(255,255,255,0.92);
  font-size: 10.5px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.005em;
  z-index: 2;
}
.cw-bottom {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  z-index: 2; color: #fff;
}
.cw-creator {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 6px;
}
.cw-av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #fafafa, #d4d4d1);
  border: 1.5px solid #fff;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700; color: var(--ink);
  flex-shrink: 0;
}
.cw-handle { font-size: 11px; font-weight: 700; letter-spacing: -0.005em; }
.cw-cap { font-size: 10.5px; opacity: 0.92; line-height: 1.35; font-weight: 500; }
.cw-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: grid; place-items: center;
  border: 1.5px solid rgba(255,255,255,0.35);
  z-index: 2;
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.cw-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 9px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}
.cw:hover .cw-play { opacity: 1; }

@media (max-width: 1080px) { .clips-wall { grid-template-columns: repeat(4, 1fr); } .clips-wall .cw:nth-child(n+5) { display: none; } }
@media (max-width: 720px)  { .clips-wall { grid-template-columns: repeat(3, 1fr); } .clips-wall .cw:nth-child(n+4) { display: none; } }
@media (max-width: 480px)  { .clips-wall { grid-template-columns: repeat(2, 1fr); } .clips-wall .cw:nth-child(n+5) { display: none; } .clips-wall .cw:nth-child(-n+4) { display: block; } }

/* === scroll reveal === */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.45s; }

/* count-up tabular */
.count-up { font-variant-numeric: tabular-nums; }

/* stat hover */
.stat { transition: background 0.2s var(--ease); }
.stat:hover { background: var(--surface-2); }

/* phone showcase mobile fallback */
@media (max-width: 880px) {
  .phone-stage {
    grid-template-columns: 1fr;
    margin-top: 32px;
    gap: 0;
  }
  .phone-stage .phone:nth-child(1),
  .phone-stage .phone:nth-child(3) { display: none; }
  .phone-stage .phone:nth-child(2) {
    transform: none; max-width: 220px;
  }
  .marquee-section { margin-top: 56px; }
  .marquee-item { font-size: 18px; gap: 10px; }
  .marquee-item svg { width: 26px; height: 26px; }
}
@media (max-width: 640px) {
  .hero { padding: 44px 18px 56px; }
  .hero-badge { font-size: 11.5px; margin-bottom: 18px; }
}

/* ====================================================================
   Campaigns page — visual upgrades (hero pill, vertical icons, timeline)
   ==================================================================== */

/* Animated "Booking now" hero pill */
.campaigns-hero { padding: 88px 24px 64px; }
.campaigns-hero .eyebrow { margin-top: 18px; }
.hero-pill {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-pill-dot { display: none; }
@keyframes pillpulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 1; }
}

/* Hero stat row */
.hero-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 640px; margin: 36px auto 0;
}
.hero-stat {
  text-align: center;
  padding: 18px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hero-stat:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.hero-stat-num {
  font-size: 30px; font-weight: 600; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-lbl {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px; color: var(--ink-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .hero-stat-row { gap: 12px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-lbl { font-size: 9.5px; letter-spacing: 0.06em; }
}

/* Scope card upgrades — vertical icon header + start CTA */
.scope-grid-page > .scope { transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.scope-grid-page > .scope:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.scope-visual {
  position: relative;
  height: 88px;
  background:
    radial-gradient(circle at 20% 50%, var(--scope-acc, rgba(10,10,10,0.10)) 0%, transparent 60%),
    linear-gradient(135deg, var(--scope-from, #f4f4f2) 0%, var(--scope-to, #ebebe8) 100%);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; padding: 0 24px;
  overflow: hidden;
}
.scope-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(10,10,10,0.06) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 80%);
  mask-image: linear-gradient(90deg, black 0%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}
.scope-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  color: var(--ink);
  position: relative; z-index: 1;
  transition: transform 0.3s var(--ease);
}
.scope:hover .scope-icon { transform: rotate(-4deg) scale(1.05); }
.scope-icon svg { width: 26px; height: 26px; }

.scope--podcast  { --scope-from: #fef9c3; --scope-to: #fde68a; --scope-acc: rgba(202,138,4,0.18); }
.scope--brand    { --scope-from: #fee2e2; --scope-to: #fca5a5; --scope-acc: rgba(220,38,38,0.16); }
.scope--streamer { --scope-from: #ddd6fe; --scope-to: #c4b5fd; --scope-acc: rgba(124,58,237,0.16); }
.scope--creator  { --scope-from: #cffafe; --scope-to: #a5f3fc; --scope-acc: rgba(8,145,178,0.16); }

.scope-pitch {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
  margin: 0 0 18px;
}
.scope-cta-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-top: auto; padding-top: 22px; }
.scope-cta--ghost { color: var(--ink-mute); }
.scope-cta--ghost:hover { color: var(--ink); }
.scope-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.scope-cta svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.scope-cta:hover { gap: 10px; color: var(--ink); }
.scope-cta:hover svg { transform: translateX(2px); }
.scope-fineprint {
  margin: 36px auto 0;
  text-align: center;
  font-size: 13px; color: var(--ink-mute);
  max-width: 720px;
  line-height: 1.6;
}

/* Phases — animated timeline track with icons */
.phases-track {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.phases-track::before {
  content: '';
  position: absolute;
  top: 56px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--line-strong) 12%, var(--line-strong) 88%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.phases-track .phase {
  position: relative; z-index: 1;
  padding-top: 28px;
}
.phase-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.phase-icon svg { width: 22px; height: 22px; }
.phase:hover .phase-icon {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--ink);
}
.phase--active .phase-icon {
  border-color: var(--ink);
  color: var(--ink);
}
@keyframes phasepulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 1; }
}
.phases-track .phase {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px 22px;
}
.phases-track .phase-num { margin-bottom: 6px; text-align: center; }
.phases-track .phase h3 { text-align: center; }
.phases-track .phase p { text-align: center; }

@media (max-width: 1000px) {
  .phases-track { grid-template-columns: repeat(2, 1fr); }
  .phases-track::before { display: none; }
}
@media (max-width: 640px) {
  .phases-track { grid-template-columns: 1fr; }
}

/* === View guarantee card (used on persona pages) === */
.guarantee-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.guarantee-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guarantee-ic {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: #0a0a0a;
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.guarantee-ic svg { width: 24px; height: 24px; }
.guarantee-body .eyebrow { margin-bottom: 12px; }
.guarantee-body h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}
.guarantee-body p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}
@media (max-width: 720px) {
  .guarantee-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .guarantee-ic { width: 48px; height: 48px; }
  .guarantee-ic svg { width: 20px; height: 20px; }
}

/* === Amplification visual (used on brands page) === */
.amp-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  max-width: 980px;
  margin: 32px auto 0;
  position: relative;
  overflow: hidden;
}
.amp-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.amp-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.amp-tile-num {
  font-size: 30px; font-weight: 600; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.amp-tile-lbl {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px; color: var(--ink-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 10px;
}
.amp-tile-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; line-height: 1.4; }
.amp-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 20px; color: var(--ink-mute);
  pointer-events: none;
}
@media (max-width: 720px) {
  .amp-visual { grid-template-columns: 1fr; padding: 22px; }
  .amp-arrow { display: none; }
}
