/* CookieBox – light, bold, modern. System fonts only (no third-party requests). */
:root {
  --ink: #0b1b3f;          /* headings, primary text */
  --navy: #001f6b;         /* dark brand surface */
  --navy-2: #00307f;
  --blue: #0a5cff;         /* primary action */
  --blue-hover: #0047d6;
  --blue-soft: #eaf1ff;
  --sky: #dfeaff;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #1c2a4a;
  --muted: #5d6b85;
  --line: #e3e9f3;
  --line-strong: #cdd7e8;
  --ok: #0a8a55;
  --ok-bg: #e5f6ee;
  --warn: #9a5b00;
  --warn-bg: #fff4e0;
  --error: #c4221b;
  --error-bg: #fdecea;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(11, 27, 63, .06);
  --shadow: 0 2px 6px rgba(11, 27, 63, .04), 0 12px 32px rgba(11, 27, 63, .08);
  --shadow-lg: 0 24px 64px rgba(0, 31, 107, .18);
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-hover); }
h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h2 { font-size: 1.25rem; font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 700; }
code { font-family: var(--mono); font-size: .88em; background: var(--blue-soft); color: var(--navy); padding: .15em .45em; border-radius: 8px; word-break: break-all; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--sky); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.main { padding-top: 36px; padding-bottom: 80px; min-height: 70vh; }
.main--full { padding-top: 0; padding-bottom: 0; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.inline { display: inline; }
.ok { color: var(--ok); font-weight: 600; }
.warn { color: var(--warn); font-weight: 600; }

/* ---------- Top bar ---------- */
.topbar { background: rgba(255, 255, 255, .92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--ink); text-decoration: none; letter-spacing: -.02em; }
.brand:hover { color: var(--ink); }
.brand__mark { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; box-shadow: 0 6px 16px rgba(10, 92, 255, .3); }
.topbar__nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__nav > a:not(.btn) { text-decoration: none; font-weight: 600; color: var(--ink); }
.topbar__nav > a:not(.btn):hover { color: var(--blue); }
.topbar__user { color: var(--muted); font-size: .9rem; }

/* ---------- Buttons (pill) ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 22px; border-radius: 999px; border: 2px solid transparent; font: inherit; font-weight: 700; letter-spacing: -.005em; cursor: pointer; text-decoration: none; white-space: nowrap; transition: background .18s, border-color .18s, color .18s, transform .08s, box-shadow .18s; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(10, 92, 255, .28); }
.btn--primary:hover { background: var(--blue-hover); color: #fff; box-shadow: 0 8px 24px rgba(10, 92, 255, .36); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--ink); color: #fff; }
.btn--outline, .btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover, .btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost { border-color: var(--line-strong); background: var(--surface); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--sky); color: var(--navy); }
.btn--danger { background: var(--error); color: #fff; }
.btn--danger:hover { background: #a31a14; color: #fff; }
.btn--sm { min-height: 36px; padding: 6px 16px; font-size: .9rem; }
.btn--lg { min-height: 52px; padding: 12px 28px; font-size: 1.05rem; }
.btn--xl { min-height: 58px; padding: 14px 34px; font-size: 1.1rem; }
.btn--block { width: 100%; }
.link-button { background: none; border: 0; padding: 0; font: inherit; font-weight: 600; color: var(--blue); cursor: pointer; text-decoration: none; }
.link-button:hover { text-decoration: underline; }
.link-button.danger { color: var(--error); }

/* ---------- Alerts & badges ---------- */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin: 0 0 20px; background: var(--blue-soft); color: var(--navy); border: 1px solid #cfdcff; font-weight: 500; }
.main--full > .alert { margin-top: 20px; }
.alert--success { background: var(--ok-bg); border-color: #bfe6d3; color: #065f3b; }
.alert--error { background: var(--error-bg); border-color: #f5c7c3; color: var(--error); }
.alert--warn { background: var(--warn-bg); border-color: #f3dcae; color: var(--warn); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--ok { background: var(--ok-bg); color: var(--ok); }
.badge--warn { background: var(--warn-bg); color: var(--warn); }
.badge--muted { background: #edf1f7; color: var(--muted); }

/* ---------- Landing ---------- */
.display { font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: 1.02; letter-spacing: -.04em; font-weight: 800; margin-bottom: 24px; }
.headline { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.035em; font-weight: 800; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; margin: 0 0 14px; }
.pill-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: .85rem; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.pill-label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.l-lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 34em; margin: 0 0 32px; }
.l-sub { font-size: 1.15rem; color: var(--muted); max-width: 40em; }

.l-hero { background: radial-gradient(1200px 600px at 85% -10%, #d9e6ff 0%, rgba(217, 230, 255, 0) 60%), linear-gradient(180deg, #f3f7ff 0%, var(--bg) 100%); padding: clamp(72px, 10vw, 136px) 0 112px; overflow: hidden; }
.l-hero__top { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: end; }
.l-hero__title .display { margin-bottom: 0; }
.l-hero__side .l-lead { margin-bottom: 32px; line-height: 1.7; }
.l-hero__title .pill-label { margin-bottom: 32px; }
.l-trust--center { justify-content: center; margin-top: 32px; }
.l-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.l-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 28px 0 0; color: var(--ink); font-weight: 600; font-size: .95rem; }
.l-trust li, .l-list li { display: inline-flex; align-items: center; gap: 8px; }
.ico-check { width: 20px; height: 20px; flex: none; color: #fff; background: var(--ok); border-radius: 50%; padding: 3px; }

/* Hero media: looping video in a large rounded frame + floating product UI */
.l-hero__media { position: relative; margin-top: clamp(56px, 8vw, 112px); }
.l-video-frame { position: relative; border-radius: 40px; overflow: hidden; aspect-ratio: 16 / 9; background: #dfe7f5; box-shadow: var(--shadow-lg); }
.l-video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 31, 107, 0) 55%, rgba(0, 31, 107, .18) 100%); pointer-events: none; }
.l-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.l-float-banner { position: absolute; right: 64px; bottom: 0; width: min(410px, 82%); background: #fff; border-radius: 22px; box-shadow: 0 24px 56px rgba(11, 27, 63, .22); padding: 18px; border: 1px solid var(--line); animation: l-rise .9s .3s cubic-bezier(.2, .8, .2, 1) both; }
.l-float-banner .l-banner__btns { flex-wrap: nowrap; align-items: center; }
.l-float-banner .b { flex: 1 1 auto; white-space: nowrap; padding: 8px 14px; border: 2px solid transparent; }
.l-float-banner .b--ghost { border-color: var(--ink); }
.l-chip--video { top: 24px; left: 24px; z-index: 1; animation: l-rise .9s .6s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes l-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.w60 { width: 60%; } .w70 { width: 70%; } .w80 { width: 80%; } .w90 { width: 90%; }

/* Audience cards (photo / video on top) */
.l-audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.l-aud-card { display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.l-aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.l-aud-card__media { width: 100%; height: auto; flex: none; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: #dfe7f5; transition: transform .6s; }
.l-aud-card:hover .l-aud-card__media { transform: scale(1.04); }
.l-aud-card__body { position: relative; background: var(--surface); padding: 28px 28px 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; flex: 1; }
.l-aud-card__body h3 { font-size: 1.45rem; letter-spacing: -.025em; margin: 0; }
.l-aud-card__body p { color: var(--muted); margin: 0 0 8px; }
.l-aud-card__tag { padding: 5px 12px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.l-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: var(--ink); text-decoration: none; margin-top: auto; }
.l-more:hover { color: var(--blue); }
.ico-arrow { width: 18px; height: 18px; transition: transform .2s; }
.l-more:hover .ico-arrow { transform: translateX(4px); }

/* Split photo sections */
.l-split__media { position: relative; }
.l-photo { width: 100%; height: auto; display: block; border-radius: 36px; object-fit: cover; aspect-ratio: 4 / 3; box-shadow: var(--shadow); background: #dfe7f5; }
.l-photo--tall { aspect-ratio: 4 / 5; max-height: 640px; }
.l-split--reverse .l-split__media { order: 2; }
.l-stat-card { position: absolute; right: -20px; bottom: 36px; display: grid; gap: 2px; width: 230px; padding: 22px 24px; border-radius: 24px; background: var(--navy); color: #fff; box-shadow: var(--shadow-lg); }
.l-stat-card__num { font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.l-stat-card__label { color: #c9d8ff; font-weight: 600; font-size: .92rem; }
.l-panel--float { position: absolute; left: -32px; bottom: 56px; width: min(360px, 85%); padding: 20px; }
.l-panel--float .l-panel__row { padding: 12px 14px; margin-bottom: 8px; font-size: .92rem; }
.l-panel--float .l-panel__head { font-size: 1rem; margin-bottom: 12px; }

/* CTA with photo */
.l-cta.l-cta--photo { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; padding: 0; overflow: hidden; align-items: stretch; }
.l-cta__text { padding: 64px; display: grid; gap: 8px; align-content: center; justify-items: start; }
.l-cta__text .btn { margin-top: 20px; }
.l-cta__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }

.l-banner { position: absolute; left: 18px; right: 18px; bottom: 18px; background: #fff; border-radius: 18px; box-shadow: 0 18px 44px rgba(11, 27, 63, .2); padding: 18px; border: 1px solid var(--line); }
.l-banner__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; color: var(--ink); }
.l-banner__icon { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); }
.l-banner__icon svg { width: 18px; height: 18px; }
.l-banner p { margin: 0 0 14px; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.l-banner__btns { display: flex; gap: 8px; }
.b { flex: 1; text-align: center; font-size: .78rem; font-weight: 700; padding: 9px 8px; border-radius: 999px; }
.b--solid { background: var(--blue); color: #fff; }
.b--ghost { border: 2px solid var(--ink); color: var(--ink); }
.b--sm { flex: none; padding: 6px 14px; }
.l-chip { position: absolute; display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 999px; padding: 10px 18px; box-shadow: var(--shadow); font-size: .85rem; color: var(--ink); font-weight: 600; white-space: nowrap; }
.l-chip b { color: var(--ok); }
.l-chip--a { top: 4px; left: -24px; }
.l-chip--b { bottom: -10px; right: 6px; }
.l-chip__num { font-weight: 800; font-size: 1.05rem; color: var(--blue); }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--ok { background: var(--ok); box-shadow: 0 0 0 4px var(--ok-bg); }

.l-strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.l-strip__inner { display: flex; align-items: center; gap: 28px; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; }
.l-strip__label { color: var(--muted); font-weight: 600; font-size: .9rem; }
.l-strip__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.l-strip__list li { padding: 7px 16px; border-radius: 999px; background: var(--bg); color: var(--ink); font-weight: 700; font-size: .88rem; }

.l-section { padding: 104px 0; background: var(--surface); }
.l-section--tint { background: var(--bg); }
.l-section--tight { padding: 56px 0 88px; }
.l-section__head { max-width: 760px; margin-bottom: 56px; }

.l-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; }
.l-step { position: relative; padding: 32px; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--line); }
.l-step h3 { font-size: 1.35rem; margin-top: 20px; }
.l-step p { color: var(--muted); margin: 0; }
.l-step__num { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--navy); color: #fff; font-weight: 800; font-size: 1.5rem; }

.l-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.l-feature { background: var(--surface); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.l-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.l-feature h3 { font-size: 1.2rem; margin-top: 20px; }
.l-feature p { color: var(--muted); margin: 0; }
.l-feature__icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--blue-soft); color: var(--blue); }
.l-feature__icon svg { width: 26px; height: 26px; }

.l-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.l-list { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 14px; color: var(--ink); font-weight: 600; }
.l-panel { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 28px; border: 1px solid var(--line); }
.l-panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: 1.15rem; color: var(--ink); }
.l-panel__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; background: var(--bg); margin-bottom: 10px; font-weight: 700; color: var(--ink); }

.l-cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 56px 64px; border-radius: 36px; color: #fff; background: radial-gradient(600px 300px at 90% 10%, rgba(94, 150, 255, .55), transparent 70%), linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue) 130%); box-shadow: var(--shadow-lg); }
.l-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); letter-spacing: -.03em; font-weight: 800; margin-bottom: 8px; }
.l-cta p { margin: 0; color: #c9d8ff; font-size: 1.15rem; }
.l-fineprint { margin: 28px auto 0; max-width: 760px; text-align: center; color: var(--muted); font-size: .9rem; }

/* ---------- Forms ---------- */
.auth-card { max-width: 540px; margin: 32px auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 2rem; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; font-weight: 600; color: var(--ink); }
.field > span { font-size: .92rem; }
.field em { font-style: normal; font-weight: 400; }
input:not([type="checkbox"]):not([type="color"]), select, textarea {
  width: 100%; min-height: 50px; padding: 12px 16px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); font: inherit; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
textarea { min-height: 0; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #aebcd6; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px rgba(10, 92, 255, .15); }
.field__error { color: var(--error); font-size: .85rem; margin: 0; font-weight: 600; }
.check { display: flex; gap: 12px; align-items: flex-start; font-weight: 400; color: var(--text); }
.check input { margin-top: 3px; width: 20px; height: 20px; accent-color: var(--blue); flex: none; }
.check--strong { font-weight: 700; color: var(--ink); }
.check--warn { background: var(--warn-bg); padding: 12px 14px; border-radius: var(--radius-sm); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--muted); margin: 24px 0; font-size: .85rem; font-weight: 600; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.color-input { display: flex; gap: 8px; align-items: center; }
.color-input input[type="color"] { width: 50px; height: 50px; padding: 4px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); background: #fff; flex: none; cursor: pointer; }
.inline-form { display: flex; gap: 12px; flex-wrap: wrap; margin: 16px 0; }
.inline-form input { flex: 1 1 260px; }
.inline-form--compact { margin: 0; flex-wrap: nowrap; }
.inline-form--compact select { width: auto; min-height: 36px; padding: 4px 10px; }
.copy-row { display: flex; gap: 10px; margin-top: 10px; }

/* ---------- Dashboard ---------- */
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.page-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -.035em; margin: 0; }
.empty { text-align: center; padding: 64px 24px; background: var(--surface); border: 2px dashed var(--line-strong); border-radius: var(--radius-lg); }
.empty p { font-size: 1.1rem; color: var(--muted); }
.site-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.site-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; color: var(--text); box-shadow: var(--shadow-sm); transition: border-color .15s, box-shadow .15s, transform .15s; }
.site-row:hover { border-color: var(--blue); color: var(--text); box-shadow: var(--shadow); transform: translateY(-2px); }
.site-row__main { display: grid; gap: 2px; min-width: 0; }
.site-row__main strong { font-size: 1.1rem; color: var(--ink); overflow-wrap: anywhere; }
.site-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.site-head h1 { font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing: -.035em; margin-bottom: 6px; overflow-wrap: anywhere; }
.breadcrumb { margin: 0 0 6px; font-size: .9rem; font-weight: 600; }
.breadcrumb a { text-decoration: none; }
.tabs { display: flex; gap: 6px; margin: 24px 0 28px; padding: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; width: fit-content; max-width: 100%; overflow-x: auto; }
.tabs a { padding: 9px 18px; text-decoration: none; color: var(--muted); font-weight: 700; border-radius: 999px; white-space: nowrap; transition: background .15s, color .15s; }
.tabs a:hover { color: var(--ink); background: var(--bg); }
.tabs a.is-active { color: #fff; background: var(--navy); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.card, .panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.panel { margin-bottom: 22px; }
.panel.narrow { max-width: 680px; }
.kv { display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; margin: 0 0 18px; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; overflow-wrap: anywhere; color: var(--ink); font-weight: 600; }
.error-list { padding-left: 18px; margin: 0; }
.danger-zone { border-color: #f3c9c5; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; display: grid; gap: 2px; box-shadow: var(--shadow-sm); }
.stat__value { font-size: 2.3rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.stat__label { color: var(--muted); font-size: .9rem; font-weight: 600; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: .93rem; }
.table th, .table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--muted); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.table tbody tr:hover { background: #fafbfe; }

/* ---------- Config editor ---------- */
.config-layout { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 28px; align-items: start; }
.config-form fieldset { margin: 0; }
.config-form legend { float: left; width: 100%; font-weight: 800; font-size: 1.2rem; color: var(--ink); padding: 0; margin: 0 0 2px; letter-spacing: -.02em; }
.config-form .panel { display: grid; gap: 16px; }
.category { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.category details { margin: 6px 0 0 32px; display: grid; gap: 10px; }
.category summary { cursor: pointer; color: var(--blue); font-size: .9rem; font-weight: 600; }
.subhead { margin-top: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px 18px; }
.sticky-actions { position: sticky; bottom: 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; padding: 14px 18px; background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); }
.preview-pane { position: sticky; top: 96px; display: grid; gap: 12px; }
.preview-pane__head { display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.preview-pane iframe { width: 100%; height: 580px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }

/* Preview iframe fake site */
.preview-body { background: #fff; margin: 0; }
.fake-site { padding: 20px; }
.fake-site__nav { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; color: var(--ink); }
.fake-site__nav span { width: 48px; height: 8px; border-radius: 4px; background: #edf1f8; }
.fake-site__hero { height: 130px; border-radius: 16px; background: linear-gradient(135deg, #e6efff, #f3f6fb); margin-bottom: 18px; }
.fake-site__line { height: 10px; border-radius: 5px; background: #edf1f8; margin-bottom: 10px; }
.fake-site__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.fake-site__grid div { height: 72px; border-radius: 12px; background: #f3f6fb; }

/* ---------- Instructions ---------- */
.instructions { display: grid; gap: 8px; }
.kv--wide { grid-template-columns: 140px 1fr; }
.step-block { padding: 24px 0; border-top: 1px solid var(--line); }
.steps { padding-left: 22px; display: grid; gap: 10px; }
.steps li::marker { color: var(--blue); font-weight: 800; }
.code { background: #0b1533; color: #dbe6ff; padding: 18px 20px; border-radius: var(--radius-sm); overflow-x: auto; font-size: .82rem; line-height: 1.6; white-space: pre-wrap; word-break: break-all; }
.code code { background: none; color: inherit; padding: 0; word-break: break-all; }
.copy { cursor: copy; }
.prose p, .prose li { color: var(--text); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer__inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 28px; padding-bottom: 28px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.footer__inner nav { display: flex; gap: 20px; }
.footer__inner a { color: var(--ink); font-weight: 600; text-decoration: none; }
.footer__inner a:hover { color: var(--blue); }

/* ---------- FAQ + opt-in stats ---------- */
.l-faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.l-faq__list { display: grid; gap: 12px; }
.l-faq__list details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.l-faq__list summary { cursor: pointer; font-weight: 800; color: var(--ink); font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.l-faq__list summary::-webkit-details-marker { display: none; }
.l-faq__list summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; line-height: 1; }
.l-faq__list details[open] summary::after { content: "–"; }
.l-faq__list p { margin: 12px 0 0; color: var(--muted); }
.optin { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.optin__item { background: var(--blue-soft); border-radius: 16px; padding: 14px 16px; display: grid; }
.optin__value { white-space: nowrap; font-size: 1.45rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1.1; }
.optin__label { color: var(--muted); font-size: .85rem; font-weight: 600; }
@media (max-width: 1024px) { .l-faq { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Dashboard imagery ---------- */
.auth-split { display: grid; grid-template-columns: minmax(0, 540px) minmax(0, 1fr); gap: 32px; align-items: stretch; max-width: 1120px; margin: 8px auto; }
.auth-split .auth-card { margin: 0; align-self: center; }
.auth-visual { position: relative; border-radius: 36px; overflow: hidden; min-height: 560px; box-shadow: var(--shadow-lg); background: #dfe7f5; }
.auth-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth-visual__card { position: absolute; left: 24px; right: 24px; bottom: 24px; background: rgba(255, 255, 255, .94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 22px; padding: 22px 24px; box-shadow: var(--shadow); color: var(--ink); }
.auth-visual__card strong { display: block; font-size: 1.15rem; margin-bottom: 10px; letter-spacing: -.01em; }
.auth-visual__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-weight: 600; }
.auth-visual__card li { display: flex; align-items: center; gap: 10px; }

.dash-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; margin-bottom: 36px; border-radius: 36px; overflow: hidden; background: linear-gradient(135deg, #f3f7ff, #e6efff); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.dash-hero__text { padding: 44px 48px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.dash-hero__text h1 { font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -.04em; margin: 0; }
.dash-hero__text .l-sub { margin: 4px 0 18px; font-size: 1.05rem; }
.dash-hero__stats { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.dash-hero__stats div { background: #fff; border-radius: 18px; padding: 12px 18px; display: grid; min-width: 104px; box-shadow: var(--shadow-sm); }
.dash-hero__stats strong { font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -.03em; }
.dash-hero__stats span { color: var(--muted); font-size: .85rem; font-weight: 600; }
.dash-hero__img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; object-position: 60% 50%; display: block; }
.page-head--sm { margin-bottom: 16px; }
.page-head--sm h2 { font-size: 1.5rem; margin: 0; letter-spacing: -.02em; }
.site-row { justify-content: flex-start; }
.site-row .badge { margin-left: auto; }
.site-row__favicon { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; font-weight: 800; font-size: 1.2rem; }
.empty--media { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: center; text-align: left; padding: 24px; border-style: solid; }
.empty--media img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; border-radius: 22px; }

.next-step { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: center; margin-bottom: 24px; padding: 18px; background: linear-gradient(135deg, #f3f7ff, #eaf1ff); border: 1px solid #d6e2ff; border-radius: var(--radius-lg); }
.next-step img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; border-radius: 20px; display: block; }
.next-step__body { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-right: 16px; }
.next-step__body h2 { font-size: 1.6rem; letter-spacing: -.03em; margin: 0; }
.next-step__body p { margin: 0 0 12px; }

.panel--media { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 32px; align-items: start; }
.panel__media { width: 100%; aspect-ratio: 4 / 5; height: auto; object-fit: cover; border-radius: 20px; display: block; }
.panel__content { min-width: 0; }
.fake-site__hero { background: url(/assets/media/preview-site.jpg) center / cover; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .l-hero__top, .l-split { grid-template-columns: 1fr; gap: 28px; }
  .l-hero__media { margin-top: 40px; }
  .l-float-banner { right: 16px; }
  .l-features, .l-audience { grid-template-columns: 1fr 1fr; }
  .l-split--reverse .l-split__media { order: 0; }
  .l-panel--float { left: 16px; bottom: 40px; }
  .l-stat-card { right: 16px; }
  .l-cta.l-cta--photo { grid-template-columns: 1fr; }
  .l-cta__img { min-height: 260px; max-height: 340px; }
  .config-layout { grid-template-columns: 1fr; }
  .auth-split { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .dash-hero { grid-template-columns: 1fr; }
  .dash-hero__img { min-height: 200px; max-height: 260px; order: -1; }
  .preview-pane { position: static; order: -1; }
  .preview-pane iframe { height: 440px; }
}
@media (max-width: 720px) {
  .hide-sm, .topbar__user { display: none; }
  .topbar__inner { min-height: 64px; }
  .topbar__nav { gap: 10px; }
  .l-hero { padding: 44px 0 64px; }
  .l-hero__media { margin-top: 32px; }
  .l-video-frame { border-radius: 26px; }
  .l-float-banner { right: 12px; width: calc(100% - 24px); padding: 16px; }
  .l-float-banner .b { font-size: .72rem; padding: 9px 10px; }
  .l-chip--video { top: 12px; left: 12px; padding: 7px 12px; font-size: .75rem; }
  .l-trust--center { justify-content: flex-start; }
  .l-banner__btns { flex-wrap: wrap; }
  .l-audience { grid-template-columns: 1fr; }
  .l-photo { border-radius: 26px; }
  .l-stat-card { width: 200px; padding: 18px; bottom: 20px; }
  .l-panel--float { position: relative; left: 0; bottom: 0; width: 100%; margin-top: -40px; }
  .l-cta__text { padding: 36px 28px; }
  .dash-hero__text { padding: 28px 24px; }
  .next-step, .panel--media, .empty--media { grid-template-columns: 1fr; }
  .next-step__body { padding: 0 6px 6px; }
  .panel__media { aspect-ratio: 16 / 9; }
  .site-row { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .l-section { padding: 72px 0; }
  .l-steps, .l-features, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .l-cta { padding: 36px 28px; border-radius: var(--radius-lg); }
  .auth-card { padding: 28px 22px; }
  .card, .panel { padding: 22px; }
  .site-row { flex-direction: column; align-items: flex-start; }
  .kv, .kv--wide { grid-template-columns: 1fr; }
  .kv dt { margin-top: 6px; }
  .sticky-actions { border-radius: var(--radius); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

@media print {
  .topbar, .footer, .no-print, .tabs { display: none !important; }
  body { background: #fff; }
  .panel { border: 0; padding: 0; box-shadow: none; }
  details { display: block; }
  details > summary { font-weight: 700; }
  .code { background: #f3f4f6; color: #111; border: 1px solid #ddd; }
  a { color: inherit; }
}

/* ---------- Accounts & team ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.otp-input { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.4rem; letter-spacing: .3em; text-align: center; max-width: 220px; }
.secret-code { display: block; margin: 8px 0 4px; padding: 12px 14px; border-radius: var(--radius-sm); background: #edf1f7; color: var(--ink); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.05rem; letter-spacing: .08em; word-spacing: .4em; overflow-wrap: anywhere; user-select: all; }
.account-steps { padding-left: 20px; display: grid; gap: 10px; margin: 0 0 18px; }
.invite-link { display: block; margin-top: 8px; font-size: .85rem; overflow-wrap: anywhere; user-select: all; }

/* ---------- Password tools (registration) ---------- */
.password-group { display: grid; gap: 14px; }
.password-input { position: relative; display: block; }
.password-input input { padding-right: 96px; }
.password-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: .9rem; }
.password-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Unverified e-mail banner */
.verify-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; }
.verify-banner .link-button { font-weight: 600; text-decoration: underline; }
