/* ============================================================
   More Fans Less Hands — landing system
   Clean & trustworthy SaaS · teal accent · light + dark
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Schibsted Grotesk", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Brand (theme-independent) — single confident hue, no AI rainbow */
  --brand-rose: #c81e63;
  --brand-plum: #7a1540;

  --maxw: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Light theme (default) — OnlyFans azure on clean white ---------- */
:root,
:root[data-theme="light"] {
  --bg: #f4f8fb;
  --bg-2: #e8f1f8;
  --surface: #ffffff;
  --surface-2: #f2f8fc;
  --surface-3: #e8f2f9;

  --text: #0b1a26;
  --text-soft: #475a6b;
  --muted: #8397a8;

  --line: #e1ebf2;
  --line-strong: #ccdcea;

  --accent: #00aff0;
  --accent-press: #0092cc;
  --accent-2: #0077b6;
  --accent-ink: #0784b3;          /* readable azure text on white */
  --accent-soft: rgba(0,175,240,.10);
  --accent-line: rgba(0,175,240,.30);
  --good: #16a572;                /* green — success only, used sparingly */
  --good-soft: rgba(22,165,114,.12);

  --on-accent: #ffffff;
  --grid-line: rgba(11,26,38,.05);
  --glow-1: rgba(0,175,240,.16);
  --glow-2: rgba(0,119,182,.12);

  --hero-veil: linear-gradient(100deg,#f4f8fb 0%,rgba(244,248,251,.94) 30%,rgba(244,248,251,.58) 56%,rgba(244,248,251,.14) 100%);

  --shadow-sm: 0 1px 2px rgba(11,26,38,.05);
  --shadow-md: 0 1px 2px rgba(11,26,38,.04), 0 16px 40px -20px rgba(11,26,38,.20);
  --shadow-lg: 0 1px 3px rgba(11,26,38,.06), 0 36px 70px -34px rgba(8,40,64,.24);
  --header-bg: #ffffff;
  --mark: url("assets/mflh-azure.png");
}

/* ---------- Dark theme ---------- */
:root[data-theme="dark"] {
  --bg: #061119;
  --bg-2: #0a1923;
  --surface: #0f2230;
  --surface-2: #15303f;
  --surface-3: #1b3a4d;

  --text: #e9f4fb;
  --text-soft: #a4bccd;
  --muted: #6a8398;

  --line: rgba(255,255,255,.085);
  --line-strong: rgba(255,255,255,.17);

  --accent: #29c3ff;
  --accent-press: #5ed3ff;
  --accent-2: #7fd8ff;
  --accent-ink: #4ccaff;
  --accent-soft: rgba(41,195,255,.14);
  --accent-line: rgba(41,195,255,.34);
  --good: #34d399;
  --good-soft: rgba(52,211,153,.14);

  --on-accent: #042230;
  --grid-line: rgba(255,255,255,.05);
  --glow-1: rgba(41,195,255,.22);
  --glow-2: rgba(0,119,182,.28);

  --hero-veil: linear-gradient(100deg,#061119 0%,rgba(6,17,25,.94) 30%,rgba(6,17,25,.62) 56%,rgba(6,17,25,.2) 100%);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 2px 4px rgba(0,0,0,.35), 0 22px 50px -24px rgba(0,0,0,.7);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.4), 0 44px 90px -38px rgba(0,0,0,.8);
  --header-bg: rgba(6,17,25,.74);
  --mark: url("assets/mflh-azure-dark.png");
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent-soft); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 128px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.eyebrow.center::before { display: none; }

.section-head { max-width: 660px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-cluster {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: end;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 18px;
}
.section-sub {
  margin-top: 18px; color: var(--text-soft);
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.62;
}
.section-aside {
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.section-aside-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.section-aside-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.section-aside p {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
}

.grad-text { color: var(--accent); }

/* ---------- Custom icon set ---------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg.ico, svg.ic, .btn svg, .arr { display: inline-block; vertical-align: middle; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 650; font-size: 14px;
  letter-spacing: 0.005em;
  padding: 11px 16px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: linear-gradient(180deg, #173348, #102637);
  color: #f7fbfe;
  border-color: rgba(255,255,255,.05);
  box-shadow: 0 8px 18px -16px rgba(7, 25, 38, .52);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 22px -18px rgba(7, 25, 38, .62); }
.btn-brand {
  color: #f8fcff;
  background: linear-gradient(180deg, #0a739f, #075f85);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 22px -18px rgba(0, 102, 145, .66);
}
.btn-brand:hover { transform: translateY(-1px); background: linear-gradient(180deg, #096b93, #06587b); box-shadow: 0 12px 24px -18px rgba(0, 102, 145, .72); }
.btn-ghost {
  background: rgba(255,255,255,.88); color: var(--text);
  border-color: rgba(11,26,38,.10);
  box-shadow: 0 6px 14px -16px rgba(11,26,38,.34);
}
.btn-ghost:hover { border-color: rgba(0,175,240,.26); color: var(--accent-ink); transform: translateY(-1px); box-shadow: 0 10px 18px -18px rgba(11,26,38,.44); }
.btn-lg { padding: 13px 20px; font-size: 14.25px; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 38px; flex: none;
  background-image: var(--mark);
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; white-space: nowrap; }
.brand-name .light { font-weight: 500; color: var(--text-soft); }
.brand-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 999px; font-size: 15px; color: var(--text-soft);
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--surface-3); }
.header-actions { display: flex; align-items: center; gap: 8px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px; flex: none;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-strong);
  color: var(--text-soft); cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { color: var(--accent-ink); border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .moon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .moon { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 0%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 80% at 70% 0%, #000 30%, transparent 78%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .9; }
.orb-1 { width: 460px; height: 460px; left: -140px; top: -60px; background: radial-gradient(circle, var(--glow-1), transparent 68%); }
.orb-2 { width: 520px; height: 520px; right: -120px; top: -120px; background: radial-gradient(circle, var(--glow-2), transparent 68%); }

/* hero photo background — cinematic dark scrim (same in both themes) */
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: auto; }
.hero-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: var(--hero-scrim, .82);
  background: linear-gradient(100deg, rgba(5,14,21,.98) 0%, rgba(5,14,21,.9) 30%, rgba(5,14,21,.62) 58%, rgba(5,14,21,.3) 100%),
              linear-gradient(rgba(5,14,21,.15), rgba(5,14,21,.55)),
              radial-gradient(90% 70% at 78% 30%, rgba(0,175,240,.16), transparent 60%); }
.hero .hero-grid { z-index: 2;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); }
.hero .orb { z-index: 2; }

/* hero content reads on the dark photo regardless of theme */
.hero h1 { color: #fff; }
.hero .hero-sub { color: rgba(255,255,255,.84); }
.hero .assure-row { color: rgba(255,255,255,.86); }
.hero .assure-row .ic { color: #4fd6a6; }
.hero .badge { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); color: #fff; box-shadow: none; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.hero .badge code { color: #fff; }

/* brand-themed photo slots */
image-slot.bg-photo { display: block; }
image-slot.bg-photo::part(frame) { background: #0a1722; }
image-slot.bg-photo::part(ring) { border-color: var(--accent-line); }

.hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 7vw, 96px);
  pointer-events: none;
}
.hero-inner a, .hero-inner .btn, .hero-inner .console { pointer-events: auto; }
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-visual {
  max-width: 100%;
  min-width: 0;
}
.hero-kicker {
  margin: 18px 0 0;
  max-width: 34rem;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-strong);
  font-size: 13px; color: var(--text-soft); box-shadow: var(--shadow-sm);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 0 var(--good-soft); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--good-soft);} 70%{box-shadow:0 0 0 9px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }
.badge code { font-family: var(--font-mono); font-size: 12px; color: var(--text); }

.hero h1 { font-size: clamp(40px, 6vw, 70px); font-weight: 800; margin-top: 22px; }
.hero-sub { margin-top: 24px; font-size: clamp(17px, 1.8vw, 20px); color: var(--text-soft); max-width: 560px; line-height: 1.55; }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-cta .btn,
.footer-brand-actions .btn,
.cta-actions .btn {
  min-height: 46px;
}
.hero-cta .btn {
  min-width: 196px;
}
.hero-proof-grid {
  width: 100%;
  max-width: 780px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-proof-card {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  box-shadow: 0 22px 42px -28px rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.hero-proof-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.hero-proof-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.hero-assure { margin-top: 30px; display: grid; gap: 12px; max-width: 540px; }
.assure-row { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--text-soft); }
.assure-row .ic { width: 22px; height: 22px; flex: none; color: var(--good); margin-top: 1px; }

/* ---------- Hero product mock ---------- */
.console {
  position: relative; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.console, .panel, .feature, .step, .stat-card, .cta-band, .asset-card {
  min-width: 0;
}
.console-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid var(--line); background: var(--surface-2);
}
.console-creators { display: flex; align-items: center; gap: 8px; }
.creator-pill { display: flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.creator-pill.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); }
.avatar { width: 24px; height: 24px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.av-1 { background: #00aff0; }
.av-2 { background: #0a6cc0; }
.av-3 { background: #00bfa6; }
.console-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.console-body { padding: 18px; display: grid; gap: 14px; background:
   radial-gradient(120% 60% at 100% 0%, var(--accent-soft), transparent 60%); }
.msg { max-width: 84%; padding: 11px 14px; border-radius: 16px; font-size: 14.5px; line-height: 1.5; }
.msg.fan { align-self: flex-start; background: var(--surface-3); border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--text); }
.msg-label { font-size: 11px; color: var(--muted); margin: 0 4px 6px; font-weight: 600; letter-spacing: .02em; }

.ai-reply { align-self: flex-end; width: 100%; border-radius: 16px; border: 1px solid var(--accent); background: var(--surface); box-shadow: var(--shadow-md); overflow: hidden; }
.ai-reply-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 12px; background: var(--accent-soft); border-bottom: 1px solid var(--line); }
.ai-who { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--accent-ink); }
.ai-who svg { width: 14px; height: 14px; }
.chip { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.chip-match { background: var(--good-soft); color: var(--good); }
.ai-reply-text { padding: 12px 14px; font-size: 14.5px; line-height: 1.55; color: var(--text); }
.ppv-card { margin: 0 12px 12px; display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line); }
.ppv-thumb { width: 42px; height: 42px; border-radius: 9px; flex: none; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; color: var(--accent-ink); }
.ppv-thumb svg { width: 18px; height: 18px; }
.ppv-meta { flex: 1; min-width: 0; }
.ppv-meta .t { font-size: 13px; font-weight: 700; }
.ppv-meta .s { font-size: 12px; color: var(--muted); }
.ppv-price { font-family: var(--font-mono); font-weight: 600; font-size: 14px; color: var(--accent-ink); }
.console-actions { display: flex; gap: 8px; padding: 0 12px 12px; }
.mini-btn { flex: 1; text-align: center; padding: 9px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s var(--ease); }
.mini-send { background: var(--text); color: var(--bg); }
.mini-send:hover { opacity: .9; }
.mini-edit { background: var(--surface-2); border: 1px solid var(--line); color: var(--text-soft); }
.mini-edit:hover { border-color: var(--line-strong); color: var(--text); }

.console-foot { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-top: 1px solid var(--line); background: var(--surface-2); font-size: 12.5px; color: var(--text-soft); }
.console-foot { justify-content: flex-start; }
.console-foot svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; }
.console-foot b { color: var(--accent-ink); }
.con-foot-r { margin-left: auto; color: var(--muted); font-weight: 600; }

/* console — richer details */
.creator-pill { position: relative; }
.cre-n { margin-left: 2px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px;
  background: var(--text-soft); color: var(--surface); font-size: 10px; font-weight: 700;
  display: inline-grid; place-items: center; }
.creator-pill.active .cre-n { background: var(--accent); color: var(--on-accent); }
.con-auto { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--good);
  background: var(--good-soft); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.con-auto-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); animation: pulse 2.4s infinite; }
.con-day { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 11px; }
.con-day span { white-space: nowrap; }
.con-day::before, .con-day::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.fan-row { display: flex; gap: 10px; align-items: flex-start; }
.fan-av { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--surface-3);
  border: 1px solid var(--line); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--text-soft); }
.fan-col { flex: 1; min-width: 0; }
.fan-name { font-size: 12px; font-weight: 700; margin: 1px 0 6px; }
.fan-meta { font-weight: 500; color: var(--muted); }
.ai-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 4px; }
.ai-tags .tag { font-size: 11px; font-weight: 600; color: var(--text-soft); background: var(--surface-2);
  border: 1px solid var(--line); padding: 3px 9px; border-radius: 6px; }
.mini-icon { flex: 0 0 auto; width: 40px; font-family: var(--font-mono); background: var(--surface-2);
  border: 1px solid var(--line); color: var(--accent-ink); }
.mini-icon:hover { border-color: var(--accent); }
.float-stat {
  position: absolute; z-index: 2; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-lg);
}
.float-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.float-stat .l { font-size: 11.5px; color: var(--muted); }
.float-a { right: -14px; top: 30%; }
.float-b { left: -22px; bottom: 16%; }

/* ---------- Logos / trust strip ---------- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 0; flex-wrap: wrap; }
.trust-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.trust-items { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-soft); }
.trust-pill svg { width: 17px; height: 17px; color: var(--accent-ink); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card {
  padding: 26px 24px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.stat-label { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.stat-label svg { width: 16px; height: 16px; color: var(--accent-ink); }
.stat-value { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 44px); margin-top: 14px; letter-spacing: -0.03em; }
.stat-value .grad-text { font-weight: 800; color: var(--accent); }
.stat-body { margin-top: 12px; font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; position: relative; }
.step {
  position: relative; padding: 26px 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.step-num {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 16px;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--line);
}
.step-arrow { position: absolute; right: -13px; top: 42px; z-index: 2; color: var(--line-strong); display: grid; }
.step-arrow svg { width: 22px; height: 22px; }
.step h3 { font-size: 18px; margin-top: 18px; }
.step p { margin-top: 9px; font-size: 14.5px; color: var(--text-soft); line-height: 1.55; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 52px; }
.feature {
  display: flex; gap: 18px; padding: 30px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.feature-ic {
  width: 52px; height: 52px; flex: none; border-radius: 15px; display: grid; place-items: center;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line);
}
.feature:hover .feature-ic { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.feature-ic svg { width: 23px; height: 23px; }
.feature h3 { font-size: 19px; }
.feature p { margin-top: 9px; font-size: 15px; color: var(--text-soft); line-height: 1.58; }

/* ---------- Split (voice / customs) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.split.lean { grid-template-columns: 0.92fr 1.08fr; }
.panel {
  padding: clamp(28px, 3.5vw, 44px); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.panel.tint { background: var(--bg-2); }
.panel h2 { font-size: clamp(26px, 3vw, 36px); margin-top: 16px; }
.panel p + p { margin-top: 14px; }
.panel .lead { margin-top: 18px; color: var(--text-soft); font-size: 16px; line-height: 1.62; }
.panel .sub { color: var(--muted); font-size: 15px; line-height: 1.62; }

/* voice fingerprint panel */
.vfp { display: flex; flex-direction: column; gap: 18px; }
.vfp-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vfp-id { display: flex; align-items: center; gap: 11px; }
.vfp-pulse { width: 9px; height: 9px; flex: none; border-radius: 50%; background: var(--good); animation: pulse 2.4s infinite; }
.vfp-t { font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.vfp-s { font-size: 12px; color: var(--muted); margin-top: 1px; }
.vfp-live { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 4px 10px; border-radius: 999px; }

.wave { display: flex; align-items: center; gap: 3px; height: 52px; padding: 0 2px; }
.wave span { flex: 1; border-radius: 999px; min-height: 4px; background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: .9; animation: waveA 1.8s var(--ease) infinite alternate; }
@keyframes waveA { from { transform: scaleY(.28); } to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .wave span { animation: none; } }

.vfp-rows { display: flex; flex-direction: column; gap: 13px; }
.vfp-row { display: flex; flex-direction: column; gap: 7px; }
.vfp-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.vfp-name { font-size: 13.5px; font-weight: 600; }
.vfp-ex { font-family: var(--font-mono); font-size: 12px; color: var(--accent-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 56%; text-align: right; }
.vfp-meter { display: flex; align-items: center; gap: 11px; }
.vfp-bar { flex: 1; height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.vfp-bar i { display: block; height: 100%; width: var(--w); border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent)); transform-origin: left; }
.reveal.in .vfp-bar i { animation: vfpgrow 1.1s var(--ease) both; }
@keyframes vfpgrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .reveal.in .vfp-bar i { animation: none; } }
.vfp-pct { font-family: var(--font-mono); font-size: 12px; color: var(--muted); width: 24px; text-align: right; }

.vfp-foot { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line); }
.vfp-foot .ring { width: 58px; height: 58px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--surface-3) 0); }
.vfp-foot .ring i { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; font-style: normal; color: var(--text); }
.vfp-foot-txt { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: var(--text-soft); line-height: 1.45; }
.vfp-foot-txt b { color: var(--text); font-size: 13.5px; }

/* mini cards inside panels */
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vault-grid { margin-top: 44px; }
.mini-card { padding: 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
.panel.tint .mini-card { background: var(--surface); }
.mini-card .mh { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.mini-card .mh svg { width: 18px; height: 18px; color: var(--accent-ink); flex: none; }
.mini-card p { margin-top: 10px; font-size: 14px; color: var(--text-soft); line-height: 1.55; }

/* customs steps list */
.flow-list { margin-top: 26px; display: grid; gap: 12px; }
.flow-item { display: flex; gap: 14px; align-items: flex-start; padding: 15px 16px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line); }
.panel.tint .flow-item { background: var(--surface); }
.flow-n { width: 30px; height: 30px; flex: none; border-radius: 9px; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--accent-ink); background: var(--accent-soft); }
.flow-item p { font-size: 14.5px; color: var(--text-soft); line-height: 1.5; }

/* approval queue mock */
.queue { display: grid; gap: 12px; }
.queue-head { display: flex; align-items: center; justify-content: space-between; }
.queue-head .qt { font-weight: 700; font-size: 15px; }
.queue-head .qc { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.qrow { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.qrow .qthumb { width: 40px; height: 40px; border-radius: 9px; flex: none; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; color: var(--accent-ink); }
.qrow .qthumb svg { width: 17px; height: 17px; }
.qrow .qmeta { flex: 1; min-width: 0; }
.qrow .qmeta .qn { font-size: 14px; font-weight: 600; }
.qrow .qmeta .qs { font-size: 12.5px; color: var(--muted); }
.qstatus { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.qstatus.wait { background: var(--accent-soft); color: var(--accent-ink); }
.qstatus.ok { background: var(--good-soft); color: var(--good); }

/* ---------- Content store / classified asset ---------- */
.asset-card { border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden; align-self: start; }
.asset-modes { display: flex; gap: 4px; padding: 12px 14px 0; }
.amode { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); padding: 8px 13px; border-radius: 10px 10px 0 0; }
.amode svg { width: 15px; height: 15px; }
.amode.active { color: var(--accent-ink); background: var(--accent-soft); }
.asset-photo-wrap { position: relative; margin: 14px; }
.asset-photo { display: block; width: 100%; height: 300px; }
.asset-photo::part(frame) { background: linear-gradient(160deg, #11293a, #0a1a26); }
.asset-photo::part(empty) { color: rgba(210,235,250,.62); }
.asset-photo::part(ring) { border-color: rgba(120,200,240,.32); }
.asset-badge { position: absolute; left: 12px; top: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #fff; background: rgba(8,20,30,.72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 999px; }
.asset-badge svg { width: 13px; height: 13px; }
.asset-body { padding: 2px 18px 20px; }
.asset-h { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 16px 0 9px; }
.asset-desc { font-size: 13.5px; line-height: 1.55; color: var(--text-soft); }
.ctags, .ftags { display: flex; flex-wrap: wrap; gap: 8px; }
.ctag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 5px 11px; border-radius: 999px; }
.ctag b { color: var(--accent); font-weight: 700; }
.ftag { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--text-soft);
  background: var(--surface-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }

.modality { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 6px; }
.mchip { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-strong); padding: 9px 15px; border-radius: 999px; }
.mchip svg { width: 16px; height: 16px; color: var(--accent-ink); }

.nomatch { display: flex; gap: 13px; align-items: flex-start; margin-top: 16px; padding: 16px;
  border-radius: 16px; background: var(--accent-soft); border: 1px solid var(--accent-line); }
.nomatch-ic { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--accent); color: var(--on-accent); }
.nomatch-ic svg { width: 19px; height: 19px; }
.nomatch p { font-size: 14px; line-height: 1.55; color: var(--text-soft); }
.nomatch b { color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 76px); text-align: center; color: #fff; background: #07273a; box-shadow: var(--shadow-lg); }
.cta-photo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.cta-tint { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(78% 95% at 50% -12%, rgba(0,175,240,.32), transparent 60%),
              linear-gradient(158deg, rgba(7,39,58,.72), rgba(4,16,25,.93)); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(80% 100% at 50% 0%, #000, transparent 75%); mask-image: radial-gradient(80% 100% at 50% 0%, #000, transparent 75%); }
.cta-content { position: relative; z-index: 2; pointer-events: none; }
.cta-content .btn { pointer-events: auto; }
.cta-band h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 800; color: #fff; }
.cta-band p { margin: 18px auto 0; max-width: 540px; font-size: 18px; color: rgba(255,255,255,.86); }
.cta-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: rgba(255,255,255,.96);
  color: #07273a;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 26px -20px rgba(0,0,0,.45);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -24px rgba(0,0,0,.52); }
.btn-glass {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.btn-glass:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding: 56px 0 40px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-family: var(--font-mono); font-weight: 500; }
.footer-col ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--text-soft); transition: color .2s; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-brand p { margin-top: 16px; font-size: 14.5px; color: var(--text-soft); max-width: 280px; line-height: 1.6; }
.footer-brand-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0 40px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom .cp { font-size: 13.5px; color: var(--muted); }
.footer-url { font-family: var(--font-mono); font-size: 13px; color: var(--text-soft); display: inline-flex; align-items: center; gap: 7px; }
.footer-url .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); }
.footer-inner-compact { grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr); }

/* ---------- Public info / legal pages ---------- */
.info-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, var(--glow-1), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.info-shell {
  padding: 40px 0 88px;
}
.info-hero {
  padding: 42px 0 20px;
}
.info-title {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -.035em;
  line-height: 1.02;
}
.info-lede {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--text-soft);
}
.info-section {
  padding: 18px 0;
}
.info-section-tight {
  padding-top: 0;
}
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 22px;
}
.info-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.prose-block h2 {
  font-size: 24px;
  letter-spacing: -.02em;
}
.prose-block h2 + p,
.prose-block p + p,
.prose-block p + ul,
.prose-block h2 + ul {
  margin-top: 14px;
}
.prose-block h2:not(:first-child) {
  margin-top: 24px;
}
.prose-block p,
.prose-block li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}
.legal-list,
.link-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.info-facts h2 {
  font-size: 18px;
}
.inline-link {
  color: var(--accent-ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-line);
  text-underline-offset: 3px;
}
.inline-link:hover {
  color: var(--accent);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 760px; justify-self: stretch; }
  .hero-sub, .hero-assure { max-width: none; }
  .hero h1 { font-size: clamp(40px, 7vw, 62px); }
  .hero-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-cluster { grid-template-columns: 1fr; }
  .split, .split.lean { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-inner-compact { grid-template-columns: 1fr 1fr; }
  .float-stat { display: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .nav { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .site-header { position: sticky; top: 0; }
  .header-inner {
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 14px 0 12px;
  }
  .brand { align-items: flex-start; }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  .header-actions .theme-toggle { width: 42px; height: 42px; }
  .header-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-inner { padding: 28px 0 44px; gap: 28px; }
  .hero h1 { font-size: clamp(34px, 11vw, 46px); line-height: .98; }
  .hero-kicker {
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: .14em;
  }
  .hero-sub { margin-top: 18px; font-size: 16px; line-height: 1.62; }
  .hero-cta { margin-top: 26px; flex-direction: column; }
  .hero-cta .btn { width: 100%; min-width: 0; }
  .hero-proof-grid {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-proof-card { padding: 16px; }
  .hero-assure { margin-top: 22px; gap: 10px; }
  .assure-row { font-size: 14px; }
  .console-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .console-creators { flex-wrap: wrap; }
  .console-body { padding: 14px; gap: 12px; }
  .msg { max-width: 100%; font-size: 14px; }
  .ai-reply-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .ppv-card { align-items: flex-start; }
  .console-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mini-icon { width: 100%; }
  .console-foot {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
  }
  .con-foot-r { margin-left: 0; width: 100%; }
  .trust-strip { padding: 2px 0; }
  .trust-inner { padding: 18px 0; }
  .stats { grid-template-columns: 1fr; }
  .stat-card { padding: 22px 20px; }
  .steps { grid-template-columns: 1fr; margin-top: 36px; }
  .step { padding: 22px 18px; }
  .feature { padding: 22px 20px; flex-direction: column; gap: 14px; }
  .feature-ic { width: 48px; height: 48px; }
  .panel, .cta-band { padding: 24px 20px; border-radius: 24px; }
  .section-aside { padding: 18px 18px 17px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-top: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mini-grid { grid-template-columns: 1fr; }
  .header-actions .btn-text-hide { display: none; }
  .info-shell { padding-bottom: 64px; }
  .info-hero { padding-top: 28px; }
  .info-card { padding: 22px 20px; border-radius: 20px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .hero-inner { padding-top: 22px; }
  .hero h1 { font-size: clamp(32px, 12vw, 42px); }
  .badge { font-size: 12px; }
  .console-top, .console-body, .console-foot { padding-left: 12px; padding-right: 12px; }
  .console-actions { grid-template-columns: 1fr; }
  .ai-tags { gap: 5px; }
  .ai-tags .tag { font-size: 10.5px; }
  .hero-proof-value { font-size: 24px; }
  .trust-items { gap: 10px 18px; }
  .footer-inner { gap: 20px; }
  .footer-bottom { padding-bottom: 32px; }
}
