/* =====================================================================
   SalesHack Ecosystem — premium presentation design system
   Apple × McKinsey × SAP · dark premium · accent driven by --accent
   ===================================================================== */

:root {
    --bg:        #06070A;
    --bg-2:      #0B0D12;
    --surface:   #11141B;
    --surface-2: #161A23;
    --line:      rgba(255, 255, 255, 0.08);
    --line-2:    rgba(255, 255, 255, 0.14);
    --text:      #F4F6FB;
    --muted:     #9AA3B2;
    --muted-2:   #6B7180;
    --accent:    #2E5BFF;
    --accent-2:  #36C6FF;
    --ok:        #2FD27A;
    --warn:      #FFB020;
    --grad-top:  #FFFFFF;                 /* top stop for gradient headline numerals */
    --header-bg: rgba(6, 7, 10, 0.72);    /* translucent sticky header */
    --shadow:    0 24px 60px rgba(0, 0, 0, 0.45);
    --radius:    18px;
    --maxw:      1180px;
    --ease:      cubic-bezier(.22, 1, .36, 1);
    --font:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- light theme ---------- */
[data-theme="light"] {
    --bg:        #FFFFFF;
    --bg-2:      #F3F5F9;
    --surface:   #FFFFFF;
    --surface-2: #EEF1F7;
    --line:      rgba(12, 16, 26, 0.10);
    --line-2:    rgba(12, 16, 26, 0.16);
    --text:      #0B0D12;
    --muted:     #525C72;
    --muted-2:   #7C859A;
    --grad-top:  #0B0D12;
    --header-bg: rgba(255, 255, 255, 0.78);
    --shadow:    0 24px 60px rgba(20, 28, 48, 0.12);
    --ok:        #15A34A;   /* darker for readable text on white */
    --warn:      #B45309;
}
[data-theme="light"] .card,
[data-theme="light"] .roi-card,
[data-theme="light"] .module:hover { box-shadow: 0 8px 24px rgba(20, 28, 48, 0.06); }

html { color-scheme: dark; }
[data-theme="light"] html, html[data-theme="light"] { color-scheme: light; }

* { box-sizing: border-box; margin: 0; padding: 0; }

/* smooth cross-fade when toggling theme */
body, .header, .card, .module, .step, .metric, .scenario, .compare, .stats, .ftable, .reco-item, .errflow__step, .result, .callout { transition: background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #fff; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 84px 0; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: var(--accent-2); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block; }
.h1 { font-size: clamp(34px, 5.4vw, 66px); line-height: 1.04; letter-spacing: -.03em; font-weight: 700; overflow-wrap: break-word; }
.h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -.025em; font-weight: 700; overflow-wrap: break-word; }
/* Hyphenate only German — its long compound words (e.g. "Technologieunternehmen")
   overflow narrow screens. Other locales wrap fine at spaces, so no hyphens there. */
:lang(de) .h1, :lang(de) .h2 { hyphens: auto; }
.h3 { font-size: 20px; font-weight: 650; letter-spacing: -.01em; }
.lead { font-size: clamp(16px, 1.5vw, 20px); color: var(--muted); max-width: 64ch; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.muted { color: var(--muted); }
.accent { color: var(--accent-2); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- header ---------- */
.header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(18px) saturate(140%);
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; font-size: 18px; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.brand small { color: var(--muted-2); font-weight: 500; font-size: 12px; letter-spacing: .02em; }
.nav { display: flex; gap: 26px; margin-left: 12px; }
.nav a { font-size: 14px; color: var(--muted); transition: color .2s var(--ease); }
.nav a:hover { color: var(--text); }
.header__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }

/* segmented switchers */
.seg { display: inline-flex; padding: 3px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; gap: 2px; }
.seg a {
    font-size: 13px; font-weight: 600; padding: 6px 13px; border-radius: 999px; color: var(--muted);
    transition: all .2s var(--ease); white-space: nowrap;
}
.seg a:hover { color: var(--text); }
.seg a.is-active { background: var(--accent); color: #fff; box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 40%, transparent); }
.seg--lang a.is-active { background: var(--surface-2); color: var(--text); box-shadow: none; border: 1px solid var(--line-2); padding: 5px 12px; }

/* theme toggle */
.theme-toggle {
    flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center; cursor: pointer;
    background: var(--surface); border: 1px solid var(--line); color: var(--text);
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { border-color: var(--line-2); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .i-sun { display: none; }
.theme-toggle .i-moon { display: block; }
[data-theme="light"] .theme-toggle .i-sun { display: block; }
[data-theme="light"] .theme-toggle .i-moon { display: none; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 15px; font-weight: 600; padding: 13px 24px; border-radius: 999px;
    transition: all .25s var(--ease); cursor: pointer; border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 30px color-mix(in srgb, var(--accent) 38%, transparent); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 48%, transparent); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--surface); border-color: var(--muted-2); }
.btn svg { width: 16px; height: 16px; }
.btn:disabled, .btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 120px 0 110px; overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: -30% -10% auto -10%; height: 760px; z-index: -1;
    background:
        radial-gradient(60% 60% at 22% 8%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 70%),
        radial-gradient(50% 50% at 88% 0%, color-mix(in srgb, var(--accent-2) 16%, transparent), transparent 70%);
    filter: blur(20px);
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 80%);
}
.badge {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--line-2); color: var(--text); margin-bottom: 30px;
}
.badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 var(--accent-2); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-2) 60%, transparent); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.hero h1 { max-width: 16ch; margin-bottom: 26px; }
.hero .lead { max-width: 60ch; margin-bottom: 38px; font-size: clamp(17px, 1.7vw, 21px); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 26px; font-size: 14px; color: var(--muted-2); letter-spacing: .02em; }
.hero-note strong { color: var(--accent-2); font-weight: 600; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: linear-gradient(180deg, var(--surface), var(--bg-2));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card .ico {
    width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
    color: var(--accent-2); font-weight: 700; font-size: 15px;
}

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.stat { padding: 34px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .v { font-size: clamp(30px, 3.4vw, 44px); font-weight: 750; letter-spacing: -.03em; background: linear-gradient(180deg, var(--grad-top), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .l { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- problem ---------- */
.problem { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.tools { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tool-chip { font-size: 13px; color: var(--muted); padding: 7px 15px; border: 1px dashed var(--line-2); border-radius: 999px; text-decoration: line-through; text-decoration-color: var(--accent); }
.pain { display: flex; gap: 16px; }
.pain .x { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent-2); font-weight: 700; }

/* ---------- modules ---------- */
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: border-color .2s var(--ease), background .2s var(--ease); }
.module:hover { border-color: var(--line-2); background: var(--surface-2); }
.module .tag { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 13px; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.module h3 { font-size: 16px; margin-bottom: 3px; }
.module p { font-size: 13.5px; color: var(--muted); }

/* ---------- video ---------- */
.video-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.video-frame {
    position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line-2);
    background:
        radial-gradient(80% 80% at 50% 40%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
        linear-gradient(180deg, var(--surface-2), var(--bg));
    display: grid; place-items: center;
}
.video-frame .play { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; box-shadow: 0 14px 40px color-mix(in srgb, var(--accent) 50%, transparent); transition: transform .25s var(--ease); }
.video-frame:hover .play { transform: scale(1.07); }
.video-frame .play svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.video-frame .cap { position: absolute; bottom: 16px; left: 18px; right: 18px; font-size: 12.5px; color: var(--muted); }
.flow { list-style: none; counter-reset: f; display: grid; gap: 14px; }
.flow li { display: flex; gap: 14px; align-items: flex-start; counter-increment: f; }
.flow li::before { content: counter(f, decimal-leading-zero); flex: 0 0 auto; font-variant-numeric: tabular-nums; font-weight: 700; color: var(--accent-2); width: 34px; }

/* ---------- designer / factory table ---------- */
.compare { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.compare .row { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.compare .row:last-child { border-bottom: none; }
.compare .row:hover { background: var(--surface-2); }
.compare .row .f { font-weight: 600; display: flex; align-items: center; gap: 12px; }
.compare .row .p { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 18px; filter: blur(6px); -webkit-user-select: none; user-select: none; cursor: default; transition: filter .25s var(--ease); }
.compare .row.best .p { filter: blur(5px); }
.compare .row.best { background: color-mix(in srgb, var(--accent) 10%, transparent); }
.compare .row.best .p { color: var(--accent-2); }
.bar { height: 6px; border-radius: 999px; background: var(--surface-2); overflow: hidden; flex: 1; max-width: 160px; }
.bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.best-pill { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-2); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); padding: 2px 8px; border-radius: 999px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); position: relative; }
.step .n { font-size: 13px; font-weight: 700; color: var(--accent-2); letter-spacing: .1em; }
.step h3 { font-size: 17px; margin: 12px 0 6px; }
.step p { font-size: 13.5px; color: var(--muted); }

/* metrics */
.metric { padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.metric h3 { font-size: 15px; margin-bottom: 4px; }
.metric p { font-size: 13px; color: var(--muted); }

/* AI recommendations */
.reco { display: grid; gap: 14px; }
.reco-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; background: var(--surface); }
.reco-item .tag { flex: 0 0 auto; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-2); padding: 5px 11px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 14%, transparent); min-width: 96px; text-align: center; }
.reco-item p { font-size: 14.5px; color: var(--text); }

/* growth callout */
.callout { border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px; background: linear-gradient(135deg, var(--surface), var(--bg-2)); }
.callout .points { list-style: none; display: grid; gap: 12px; margin: 20px 0; }
.callout .points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.callout .points li::before { content: "→"; color: var(--accent-2); font-weight: 700; }
.network-big { font-size: clamp(26px, 3vw, 40px); font-weight: 750; letter-spacing: -.02em; line-height: 1.15; }
.network-big b { color: var(--accent-2); }

/* financial table */
.ftable { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ftable th, .ftable td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: 15px; }
.ftable thead th { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); background: var(--surface); font-weight: 600; }
.ftable tbody tr:last-child td { border-bottom: none; }
.ftable tbody tr { background: var(--bg-2); transition: background .2s var(--ease); }
.ftable tbody tr:hover { background: var(--surface); }
.ftable tbody tr.hl { background: color-mix(in srgb, var(--accent) 9%, transparent); }
.ftable .scn { font-weight: 650; }
.ftable .rev { color: var(--accent-2); font-weight: 700; font-variant-numeric: tabular-nums; }
.ftable .pay { font-weight: 650; }

/* ROI cards */
.roi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.roi-card { text-align: center; padding: 40px 24px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.roi-card .v { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.03em; color: var(--accent-2); }
.roi-card .l { color: var(--muted); margin-top: 8px; font-size: 14.5px; }

/* benefits */
.benefit { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.benefit .chk { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent-2); margin-bottom: 14px; }
.benefit h3 { font-size: 16px; margin-bottom: 6px; }
.benefit p { font-size: 14px; color: var(--muted); }

/* transfer */
.transfer-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.transfer-list { list-style: none; display: grid; gap: 2px; }
.transfer-list li { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.transfer-list li:last-child { border-bottom: none; }
.transfer-list li .c { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 13px; }
.slogan { font-size: clamp(24px, 3vw, 38px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.slogan b { color: var(--accent-2); }

/* CTA */
.cta { position: relative; overflow: hidden; border-radius: 26px; padding: 80px 48px; text-align: center; border: 1px solid var(--line-2); background: linear-gradient(135deg, var(--surface-2), var(--bg)); }
.cta::before { content: ""; position: absolute; inset: -50% 0 auto 0; height: 400px; z-index: 0; background: radial-gradient(50% 60% at 50% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { max-width: 18ch; margin: 0 auto 18px; }
.cta .lead { margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 48px 0; color: var(--muted-2); }
.footer__inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; font-size: 13.5px; }
.footer .brand { font-size: 16px; }

/* ---------- precision / error minimization ---------- */
.errflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.errflow__step { position: relative; padding: 28px 22px; border: 1px solid var(--line); border-right: none; background: var(--surface); }
.errflow__step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.errflow__step:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.errflow__step::after {
    content: ""; position: absolute; top: 50%; right: -11px; z-index: 3;
    width: 22px; height: 22px; transform: translateY(-50%) rotate(45deg);
    background: var(--surface); border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}
.errflow__step:last-child::after { display: none; }
.errflow__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
    background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent); color: var(--accent-2); }
.errflow__icon svg { width: 24px; height: 24px; }
.errflow__n { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--muted-2); }
.errflow__step h3 { font-size: 16px; margin: 6px 0 7px; }
.errflow__step p { font-size: 13.5px; color: var(--muted); }

.scenario { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); position: relative; overflow: hidden; }
.scenario::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.scenario--ok::before { background: var(--ok); }
.scenario--warn::before { background: var(--warn); }
.scenario--ok { background: linear-gradient(135deg, color-mix(in srgb, var(--ok) 8%, var(--surface)), var(--bg-2)); }
.scenario--warn { background: linear-gradient(135deg, color-mix(in srgb, var(--warn) 9%, var(--surface)), var(--bg-2)); }
.scenario__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.scenario__dot { width: 9px; height: 9px; border-radius: 50%; }
.scenario--ok .scenario__dot { background: var(--ok); box-shadow: 0 0 0 4px color-mix(in srgb, var(--ok) 22%, transparent); }
.scenario--warn .scenario__dot { background: var(--warn); box-shadow: 0 0 0 4px color-mix(in srgb, var(--warn) 22%, transparent); }
.scenario__tag { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.scenario--ok .scenario__tag { color: var(--ok); }
.scenario--warn .scenario__tag { color: var(--warn); }
.scenario h3 { margin-bottom: 8px; }
.scenario p { color: var(--muted); font-size: 14.5px; }

.result { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 38px; background: linear-gradient(135deg, var(--surface), var(--bg-2)); }
.dotmatrix { display: grid; grid-template-columns: repeat(20, 1fr); gap: 6px; }
.dot { aspect-ratio: 1; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); }
.dot--bad { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 28%, transparent), 0 0 14px color-mix(in srgb, var(--accent) 70%, transparent); transform: scale(1.35); position: relative; z-index: 2; }
.result__caption { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.result__caption::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.result__value { font-size: clamp(56px, 9vw, 104px); font-weight: 800; line-height: 1; letter-spacing: -.04em; background: linear-gradient(180deg, var(--grad-top), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.result__label { font-size: 17px; color: var(--text); margin-top: 8px; max-width: 34ch; }

@media (max-width: 980px) {
    .errflow { grid-template-columns: repeat(2, 1fr); }
    .errflow__step:nth-child(2) { border-right: 1px solid var(--line); border-radius: 0 var(--radius) 0 0; }
    .errflow__step:nth-child(2)::after { display: none; }
    .errflow__step:first-child { border-radius: var(--radius) 0 0 0; }
    .errflow__step:nth-child(3) { border-radius: 0 0 0 var(--radius); border-top: none; }
    .errflow__step:last-child { border-radius: 0 0 var(--radius) 0; border-top: none; }
    .result { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
    .errflow { grid-template-columns: 1fr; }
    .errflow__step, .errflow__step:first-child, .errflow__step:nth-child(2), .errflow__step:nth-child(3), .errflow__step:last-child { border-radius: 0; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
    .errflow__step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
    .errflow__step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
    .errflow__step::after { display: none; }
    .dotmatrix { grid-template-columns: repeat(20, 1fr); gap: 4px; }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .g-3, .g-4, .modules, .steps, .roi-cards, .stats { grid-template-columns: repeat(2, 1fr); }
    .video-wrap, .transfer-wrap { grid-template-columns: 1fr; gap: 28px; }
    .nav { display: none; }
    .stat { border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
    /* header collapses to two rows: brand + toggle, then the switchers */
    .header__inner { flex-wrap: wrap; height: auto; padding: 10px 0; gap: 10px 12px; }
    .brand { order: 1; }
    .theme-toggle { order: 2; margin-left: auto; }
    .header__right { order: 3; width: 100%; margin-left: 0; justify-content: space-between; gap: 8px; }
    .header__right .seg { flex: 1 1 auto; justify-content: center; }
    html { scroll-padding-top: 124px; }
}
@media (max-width: 620px) {
    .section { padding: 80px 0; }
    .g-2, .g-3, .g-4, .modules, .steps, .roi-cards, .stats { grid-template-columns: 1fr; }
    .seg a { padding: 6px 10px; font-size: 12px; }
    .brand { font-size: 16px; }
    .brand small { display: none; }
    .cta { padding: 56px 22px; }
    .ftable th, .ftable td { padding: 13px 12px; font-size: 13px; }
    .hero { padding: 84px 0 72px; }
    .video-frame .play { width: 60px; height: 60px; }
    .result { padding: 26px; }
    .scenario { padding: 24px; }
}
@media (max-width: 380px) {
    .wrap { padding: 0 16px; }
    .seg a { padding: 6px 8px; font-size: 11px; }
    .btn { padding: 12px 18px; font-size: 14px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
}

/* =====================================================================
   PLAN IN 10 — components
   ===================================================================== */

/* ---- header (two-tier) ---- */
.header__bar { display: flex; align-items: center; gap: 18px; height: 64px; }
.header__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.admin-gear { width: 34px; height: 34px; display: grid; place-items: center; color: var(--muted-2); border-radius: 9px; transition: color .2s var(--ease), background .2s var(--ease); }
.admin-gear:hover { color: var(--text); background: var(--surface); }
.admin-gear svg { width: 18px; height: 18px; }

/* mobile menu — on desktop the groups dissolve so the bar is unchanged */
.header__menu, .header__tools { display: contents; }
.nav-burger, .nav-toggle { display: none; }
.admin-gear__txt { display: none; }
/* restore the original desktop control order after the actions/tools regroup */
.header__demo { order: 1; }
.header__quiz { order: 2; }
.header__right .langdd { order: 3; }
.theme-toggle { order: 4; }
.header__cta { order: 5; }
.admin-gear { order: 6; }

/* language dropdown */
.langdd { position: relative; }
.langdd > summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
    padding: 7px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--text); transition: border-color .2s var(--ease); }
.langdd > summary::-webkit-details-marker, .langdd > summary::marker { display: none; content: ''; }
.langdd > summary:hover { border-color: var(--line-2); }
.langdd > summary > svg:first-of-type { width: 15px; height: 15px; color: var(--muted-2); }
.langdd__chev { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.langdd[open] .langdd__chev { transform: rotate(180deg); }
.langdd__menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 170px; background: var(--surface); border: 1px solid var(--line-2);
    border-radius: 12px; padding: 6px; box-shadow: var(--shadow); z-index: 70; display: grid; gap: 2px; }
.langdd__menu a { display: flex; gap: 10px; align-items: baseline; font-size: 13.5px; padding: 9px 12px; border-radius: 8px; color: var(--muted); }
.langdd__menu a b { color: var(--text); font-weight: 700; min-width: 22px; }
.langdd__menu a:hover { background: var(--surface-2); color: var(--text); }
.langdd__menu a.is-active { background: color-mix(in srgb, var(--accent) 12%, transparent); }
.langdd__menu a.is-active b { color: var(--accent-2); }

/* ---- logo ---- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 40%, transparent); }
.logo__mark svg { width: 19px; height: 19px; }
.logo__mark b { font-size: 14px; font-weight: 800; }
.logo__text { font-weight: 800; letter-spacing: -.02em; font-size: 18px; color: var(--text); display: inline-flex; align-items: baseline; gap: 5px; }
.logo__text i { font-style: normal; font-weight: 600; color: var(--muted); font-size: 13px; }
.logo__text b { font-weight: 800; color: var(--accent-2); }

/* ---- stage rail ---- */
.stages { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 70%, transparent); }
.stages__inner { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; padding: 8px 24px; }
.stages__inner::-webkit-scrollbar { display: none; }
.stage { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; white-space: nowrap; flex: 0 0 auto; transition: background .2s var(--ease); }
.stage__n { font-size: 11px; font-weight: 700; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.stage__l { font-size: 13px; font-weight: 600; color: var(--muted); }
.stage:hover { background: var(--surface); }
.stage.is-active { background: color-mix(in srgb, var(--accent) 14%, transparent); }
.stage.is-active .stage__l { color: var(--accent-2); }
.stage.is-active .stage__n { color: var(--accent-2); }
html { scroll-padding-top: 124px; }

/* ---- hero ---- */
.hero__title { max-width: 18ch; margin-bottom: 22px; }
.hero__lead { max-width: 62ch; margin-bottom: 28px; }
.flowline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.flowline__node { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-2); }
.flowline__arr { color: var(--accent-2); font-weight: 700; }
.flowline__time { margin-left: 6px; display: inline-flex; align-items: baseline; gap: 3px; font-weight: 600; font-size: 14px; color: var(--muted); }
.flowline__time b { font-size: 26px; font-weight: 800; letter-spacing: -.03em; background: linear-gradient(180deg, var(--grad-top), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- problem ---- */
.blind-grid { gap: 14px; }
.blind { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-size: 14.5px; position: relative; }
.blind__t { flex: 1; }
.info { flex: 0 0 auto; position: relative; width: 22px; height: 22px; border: none; border-radius: 50%; cursor: help; padding: 0;
    background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent-2); display: grid; place-items: center; }
.info__q { font-size: 13px; font-weight: 800; line-height: 1; animation: infopulse 2s infinite; border-radius: 50%; width: 100%; height: 100%; display: grid; place-items: center; }
@keyframes infopulse {
    0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
    70%  { box-shadow: 0 0 0 9px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}
.info__pop { position: absolute; bottom: calc(100% + 12px); right: -8px; width: 320px; max-width: 80vw; padding: 14px 16px; border-radius: 13px;
    background: var(--surface); border: 1px solid var(--line-2); box-shadow: var(--shadow); font-size: 13px; line-height: 1.55; font-weight: 400;
    color: var(--text); text-align: left; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease); z-index: 80; pointer-events: none; }
.info__pop::after { content: ""; position: absolute; top: 100%; right: 14px; border: 7px solid transparent; border-top-color: var(--surface); filter: drop-shadow(0 1px 0 var(--line-2)); }
.info:hover .info__pop, .info:focus .info__pop, .info:focus-visible .info__pop { opacity: 1; visibility: visible; transform: none; }
.blind__x { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent-2); font-size: 12px; font-weight: 700; }

/* ---- experience / storefront ---- */
.storefront { margin-bottom: 44px; }
.storefront__scene { position: relative; max-width: 100%; aspect-ratio: 16 / 7; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2);
    background: linear-gradient(180deg, #0a1330 0%, #1b2452 38%, #5a3b6e 70%, #c97b5a 100%); }
.skyline { position: absolute; left: 0; right: 0; bottom: 28%; width: 100%; height: 62%; }
.skyline .bldg rect { fill: #0a0f24; opacity: .82; }
.skyline .tv-tower rect, .skyline .tv-tower circle { fill: #0b1026; }
.skyline .tv-tower circle { fill: #141b3a; }
.skyline .tv-tower path { stroke: #1a2348; stroke-width: 4; }
.storefront__inside { position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
    background: linear-gradient(180deg, rgba(255,225,180,.06), rgba(255,205,150,.22)); border-top: 1px solid rgba(255,220,180,.25); display: flex; align-items: flex-end; gap: 3%; padding: 0 6% 5%; }
.kx { width: 13%; height: 52%; background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)); border-radius: 4px 4px 0 0; }
.kx--2 { height: 70%; width: 16%; }
.kx--3 { height: 44%; width: 11%; }
.ppl { width: 22px; height: 40%; background: rgba(10,12,28,.55); border-radius: 11px 11px 3px 3px; align-self: flex-end; }
.ppl::before { content: ""; position: absolute; }
.ppl--2 { width: 18px; height: 32%; opacity: .8; }
.storefront__glass { position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 28%, rgba(255,255,255,.04) 55%, rgba(255,255,255,0) 75%); }
.storefront__glass::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 10px rgba(255,255,255,.04); border-radius: var(--radius); }
.storefront__cap { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 14px; }
.storefront__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 5; }
.decal { z-index: 6; }
.storefront__scene.has-photo .decal,
.storefront__scene.has-photo .skyline,
.storefront__scene.has-photo .storefront__inside,
.storefront__scene.has-photo .storefront__glass { display: none; }
.storefront__scene.has-photo { aspect-ratio: 16 / 9; }

/* sticker decal */
.decal { position: absolute; top: 12%; left: 6%; width: min(330px, 40%); padding: 20px; border-radius: 14px;
    background: rgba(8, 12, 26, .72); backdrop-filter: blur(6px); border: 1px solid color-mix(in srgb, var(--accent-2) 50%, transparent);
    box-shadow: 0 20px 50px rgba(0,0,0,.4); color: #fff; }
.decal__brand { display: flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: .02em; font-size: 15px; }
.decal__brand sup { font-size: 9px; }
.decal__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.decal__l1 { font-size: clamp(16px, 2vw, 22px); font-weight: 800; line-height: 1.1; margin: 12px 0 12px; letter-spacing: -.01em; }
.decal__rows { display: grid; gap: 5px; font-size: 12.5px; color: rgba(255,255,255,.86); }
.decal__cta { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.decal__scan { font-size: 12px; font-weight: 600; color: var(--accent-2); }
.qr { position: relative; width: 66px; height: 66px; display: grid; grid-template-columns: repeat(11, 1fr); grid-template-rows: repeat(11, 1fr); gap: 1px; background: #fff; padding: 4px; border-radius: 8px; }
.qr span { background: transparent; }
.qr span.on { background: #06070A; border-radius: 1px; }
.qr__eye { position: absolute; width: 17px; height: 17px; border: 3px solid #06070A; border-radius: 4px; }
.qr__eye--tl { top: 4px; left: 4px; }
.qr__eye--tr { top: 4px; right: 4px; }
.qr__eye--bl { bottom: 4px; left: 4px; }

/* 5 steps */
.steps5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 44px; }
.step5 { padding: 22px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.step5__n { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--accent-2); }
.step5 h3 { font-size: 15.5px; margin: 10px 0 6px; }
.step5 p { font-size: 13px; color: var(--muted); }
.shift__title { font-size: 22px; margin-bottom: 18px; }

/* ---- revenue funnel ---- */
.funnel { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.funnel--after { border-color: color-mix(in srgb, var(--accent) 40%, transparent); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), var(--bg-2)); }
.funnel__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 16px; }
.funnel__bar { display: flex; height: 54px; border-radius: 12px; overflow: hidden; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.funnel__leads { background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; min-width: 30px; }
.funnel__lost { background: var(--surface-2); color: var(--muted-2); display: grid; place-items: center; min-width: 24px; }
.funnel__legend { display: flex; gap: 20px; margin-top: 14px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.funnel__legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 7px; }
.dot-leads { background: var(--accent-2); }
.dot-lost { background: var(--surface-2); border: 1px solid var(--line-2); }

/* uplift */
.uplift { text-align: center; padding: 34px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(135deg, var(--surface), var(--bg-2)); margin: 28px 0; }
.uplift__label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.uplift__vals { display: flex; justify-content: center; gap: clamp(20px, 5vw, 60px); margin: 16px 0 10px; flex-wrap: wrap; }
.uplift__v { font-size: clamp(34px, 6vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: 1;
    background: linear-gradient(180deg, var(--grad-top), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.uplift__disc { font-size: 13px; margin-top: 6px; }
.uplift--co .uplift__v { background: linear-gradient(180deg, var(--grad-top), var(--co-accent, var(--accent-2))); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- agents ---- */
.atl { display: grid; gap: 14px; }
.atl__item { padding: 18px 20px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 12px; background: var(--surface); }
.atl__when { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-2); }
.atl__item p { margin-top: 6px; font-size: 15px; }
.seg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seg-card { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); display: grid; gap: 4px; }
.seg-card b { font-size: 15px; }
.seg-card span { font-size: 13px; color: var(--muted); }
.pipe { display: grid; gap: 10px; }
.pipe__row { display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.pipe__row:last-child { border-bottom: none; }
.pipe__v { font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: var(--accent-2); font-variant-numeric: tabular-nums; min-width: 110px; }
.pipe__l { font-size: 14.5px; color: var(--muted); }

/* ---- showroom map ---- */
.eu-map { position: relative; height: 320px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 22px; overflow: hidden;
    background: radial-gradient(60% 80% at 50% 40%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 70%), var(--surface); }
.eu-map__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--muted-2); transform: translate(-50%, -50%); }
.pin--hot { width: 14px; height: 14px; background: var(--accent-2); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 24%, transparent), 0 0 16px var(--accent-2); animation: pulse 2.6s infinite; }

/* ---- talent vs ---- */
.vs { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.vs--ord { background: linear-gradient(135deg, color-mix(in srgb, var(--warn) 8%, var(--surface)), var(--bg-2)); }
.vs--p10 { background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface)), var(--bg-2)); border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.vs__head { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.vs--ord .vs__head { color: var(--warn); }
.vs--p10 .vs__head { color: var(--accent-2); }
.vs ul { list-style: none; display: grid; gap: 12px; }
.vs li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.vs__x { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; background: color-mix(in srgb, var(--warn) 18%, transparent); color: var(--warn); font-size: 11px; }
.vs__c { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent-2); font-size: 11px; }

/* ---- network ---- */
.cert { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 14px;
    background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); color: var(--accent-2); }
.cert__tick { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 12px; }
.windows { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.win { display: flex; align-items: center; gap: 8px; padding: 14px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); font-size: 12px; color: var(--muted); }
.win b { color: var(--text); font-weight: 800; letter-spacing: -.01em; }
.win__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); flex: 0 0 auto; }
.win--photo { padding: 0; aspect-ratio: 1 / 1; overflow: hidden; position: relative; }
.win__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.win--photo:hover .win__img { transform: scale(1.06); }

/* auto-scrolling network ticker */
.ticker { position: relative; overflow: hidden; cursor: grab; touch-action: pan-y;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.ticker:active { cursor: grabbing; }
.ticker__track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.tcard { flex: 0 0 auto; width: 232px; aspect-ratio: 16 / 11; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; position: relative; background: var(--surface); }
.tcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-select: none; user-select: none; }
.tcard__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--muted); }
@media (max-width: 620px) { .tcard { width: 168px; } }

/* ---- analytics ---- */
.logo-switch { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.mfr { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-width: 120px; height: 70px; padding: 10px 18px;
    background: #fff; border: 1px solid var(--line-2); border-radius: 14px; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.mfr:hover { transform: translateY(-2px); }
.mfr.is-active { border-color: var(--co); box-shadow: 0 0 0 2px var(--co), 0 10px 26px color-mix(in srgb, var(--co) 30%, transparent); }
.mfr__logo { max-height: 30px; max-width: 96px; object-fit: contain; }
.mfr__logo.is-failed { display: none; }
.mfr__name { display: none; font-weight: 800; font-size: 15px; color: #11141B; letter-spacing: -.01em; }
.mfr__logo.is-failed + .mfr__name { display: block; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.kpi__l { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.kpi__v { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.kpi__v--co { color: var(--co-accent, var(--accent-2)); }
.kpi__sub { font-size: 12px; color: var(--muted-2); margin-top: 8px; }
.losses { gap: 14px; }
.loss { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; border: 1px solid var(--line); border-left: 3px solid var(--warn); border-radius: 12px; background: var(--surface); }
.loss__l { font-size: 14.5px; color: var(--muted); }
.loss__v { font-size: 19px; font-weight: 800; color: var(--warn); font-variant-numeric: tabular-nums; }

/* ---- acquisition ---- */
.acq { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.tranches { display: flex; gap: 14px; flex-wrap: wrap; }
.tranche { flex: 1 1 120px; padding: 22px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--surface); text-align: center; }
.tranche__v { display: block; font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: var(--accent-2); }
.tranche__l { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ---- admin ---- */
.admin-wrap { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: var(--bg); }
.admin-card { width: 100%; max-width: 420px; padding: 36px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, var(--surface), var(--bg-2)); }
.admin-input { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--text); font-size: 15px; font-family: inherit; }
.admin-input:focus { outline: none; border-color: var(--accent); }
.admin-langs { display: grid; gap: 10px; }
.admin-lang { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; }
.admin-lang input { width: 18px; height: 18px; accent-color: var(--accent); }
.admin-lang.is-locked { opacity: .7; cursor: default; }
.admin-lang__code { font-weight: 800; font-size: 14px; min-width: 28px; }
.admin-lang__name { color: var(--muted); font-size: 14px; }
.admin-lang__tag { margin-left: auto; font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }

/* ---- scroll progress + prepared ribbon ---- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .1s linear; }
.prepared { text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; padding: 7px 12px; color: var(--accent-2);
    background: color-mix(in srgb, var(--accent) 12%, transparent); border-bottom: 1px solid var(--line); }

/* ---- live demo ---- */
.demo { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.demo__form { display: grid; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.demo__qlabel { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 9px; }
.demo__opts { display: flex; flex-wrap: wrap; gap: 8px; }
.demo__opt { font-size: 13.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--muted); cursor: pointer; transition: all .15s var(--ease); }
.demo__opt:hover { color: var(--text); }
.demo__opt.is-sel { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 36%, transparent); }
.demo__go { justify-content: center; margin-top: 4px; }
.demo__stage { display: flex; flex-direction: column; gap: 16px; }
.demo__render { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2);
    background: linear-gradient(180deg, #aeb6c4 0%, #c9cfda 55%, #d7dbe2 100%); }
[data-theme="light"] .demo__render { background: linear-gradient(180deg, #c2c9d6, #e8ebf0); }
.kitchen { --front: #2b2f36; --edge: rgba(0,0,0,.25); position: absolute; inset: 0; }
.k-wall { position: absolute; inset: 0 0 38% 0; background: linear-gradient(180deg, #e9ecf1, #dfe3ea); }
.k-window { position: absolute; top: 12%; right: 12%; width: 26%; height: 30%; background: linear-gradient(150deg, #bfe0ff, #8ec5f0); border: 5px solid #f4f6fa; border-radius: 3px; box-shadow: inset 0 0 0 2px #cfd6df; }
.k-uppers { position: absolute; top: 14%; left: 8%; width: 42%; height: 22%; background: var(--front); border-radius: 4px;
    background-image: linear-gradient(90deg, var(--edge) 0 2px, transparent 2px); background-size: 25% 100%; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.k-counter { position: absolute; bottom: 33%; left: 6%; right: 6%; height: 5%; background: #20242c; border-radius: 3px; }
.k-lowers { position: absolute; bottom: 6%; left: 6%; right: 6%; height: 27%; background: var(--front); border-radius: 4px;
    background-image: linear-gradient(90deg, var(--edge) 0 2px, transparent 2px); background-size: 16.66% 100%; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.k-island { position: absolute; bottom: 8%; left: 30%; width: 40%; height: 14%; background: var(--front); border-radius: 4px; opacity: 0; transform: translateY(10px); transition: all .4s var(--ease); box-shadow: 0 10px 22px rgba(0,0,0,.3); }
.kitchen.has-island .k-island { opacity: 1; transform: none; }
.kitchen.is-classic .k-uppers, .kitchen.is-classic .k-lowers { background-size: 12.5% 100%, 33% 100%; border-radius: 6px; }
.kitchen.is-handleless .k-uppers, .kitchen.is-handleless .k-lowers { background-image: none; }
.demo__scan { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--accent-2), transparent); opacity: 0; }
.demo__render.gen .demo__scan { animation: scan 1s ease-in-out; }
@keyframes scan { 0% { top: 0; opacity: 1; } 100% { top: 100%; opacity: 0; } }
.demo__out { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.demo__price-l { display: block; font-size: 12px; color: var(--muted); }
.demo__price-v { font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: var(--accent-2); }
.demo__time { font-size: 13px; color: var(--muted); }
.demo__time b { color: var(--text); font-variant-numeric: tabular-nums; }
.demo__note { font-size: 13px; }

/* ---- storefront gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shop { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.shop__win { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 13px 13px 0 0; background: linear-gradient(180deg, #10183a, #2a2350 60%, #b9714f); }
.shop--1 .shop__win { background: linear-gradient(180deg, #0e1f33, #234b55 60%, #c98a4f); }
.shop--2 .shop__win { background: linear-gradient(180deg, #1a1230, #3a2350 60%, #b5527a); }
.shop__sky { position: absolute; left: 0; right: 0; bottom: 30%; height: 46%;
    background:
        linear-gradient(90deg, transparent 8%, #0a0f24 8% 14%, transparent 14% 22%, #0a0f24 22% 30%, transparent 30% 44%, #0a0f24 44% 52%, transparent 52% 66%, #0a0f24 66% 74%, transparent 74% 88%, #0a0f24 88% 94%, transparent 94%);
    opacity: .8; }
.shop__floor { position: absolute; left: 0; right: 0; bottom: 0; height: 30%; background: linear-gradient(180deg, rgba(255,225,180,.1), rgba(255,210,160,.28)); }
.shop__decal { position: absolute; top: 12%; left: 10%; padding: 8px 11px; border-radius: 9px; background: rgba(8,12,26,.7); backdrop-filter: blur(4px);
    border: 1px solid color-mix(in srgb, var(--accent-2) 50%, transparent); color: #fff; display: flex; align-items: center; gap: 10px; }
.shop__brand { font-size: 11px; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; letter-spacing: .02em; }
.shop__tag { font-size: 13px; font-weight: 800; color: var(--accent-2); }
.shop__tag small { font-size: 9px; }
.shop__city { display: flex; align-items: center; gap: 8px; padding: 13px 16px; font-size: 13.5px; font-weight: 600; }
.shop__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.shop__win.has-photo .shop__sky, .shop__win.has-photo .shop__decal, .shop__win.has-photo .shop__floor { display: none; }

/* ---- comparison table ---- */
.cmp { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp th, .cmp td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); font-size: 14px; }
.cmp thead th { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--surface); font-weight: 700; }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp__f { text-align: left !important; font-weight: 600; color: var(--text); }
.cmp__own { background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cmp thead .cmp__own { color: var(--accent-2); }
.mark { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; font-size: 13px; font-weight: 800; }
.mark--yes { background: color-mix(in srgb, var(--accent) 20%, transparent); color: var(--accent-2); }
.mark--no { background: var(--surface-2); color: var(--muted-2); }
.mark--part { background: color-mix(in srgb, var(--warn) 20%, transparent); color: var(--warn); }

/* ---- roadmap ---- */
.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.phase { position: relative; padding: 0 22px; }
.phase::before { content: ""; position: absolute; top: 16px; left: 0; right: 0; height: 2px; background: var(--line-2); }
.phase:first-child::before { left: 22px; }
.phase:last-child::before { right: 22px; }
.phase__dot { position: relative; z-index: 1; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 5px var(--bg); }
.phase__when { font-size: 12px; font-weight: 700; color: var(--accent-2); margin: 16px 0 4px; }
.phase__title { font-size: 17px; margin-bottom: 6px; }
.phase__desc { font-size: 13.5px; color: var(--muted); }
.rollout-note { margin-top: 24px; display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ok);
    padding: 11px 17px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--ok) 34%, transparent); background: color-mix(in srgb, var(--ok) 8%, transparent); }
.rollout-note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex: 0 0 auto; box-shadow: 0 0 7px var(--ok); }

/* experience: two entry funnels */
.funnels { margin-bottom: 44px; }
.funnels__title { text-align: center; font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 26px; }
.funnels__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.ftrack { padding: 24px; border: 1px solid var(--line); border-radius: 16px; }
.ftrack--a { background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--surface)), var(--bg-2)); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.ftrack--b { background: linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 9%, var(--surface)), var(--bg-2)); border-color: color-mix(in srgb, var(--accent-2) 22%, transparent); }
.ftrack__head { display: flex; align-items: center; gap: 11px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 18px; }
.ftrack__tag { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 13px; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.ftrack__steps { list-style: none; display: grid; gap: 13px; }
.ftrack__steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; }
.ftrack__n { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--accent-2); background: color-mix(in srgb, var(--accent) 14%, transparent); margin-top: 1px; }
.funnels__merge { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; margin-top: 20px; padding: 18px 24px; border-radius: 14px; font-size: 15px; font-weight: 600;
    background: color-mix(in srgb, var(--accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); color: var(--text); }
.funnels__arrows { flex: 0 0 auto; color: var(--accent-2); font-weight: 700; font-size: 18px; }
@media (max-width: 760px) { .funnels__grid { grid-template-columns: 1fr; } .funnels__merge { flex-direction: column; gap: 8px; } }

/* ---- ROI calculator ---- */
.calc { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.calc__inputs { display: grid; gap: 22px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.calc__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-size: 14px; color: var(--muted); }
.calc__row b { color: var(--text); font-size: 17px; font-variant-numeric: tabular-nums; }
.calc input[type="range"] { width: 100%; accent-color: var(--accent); height: 6px; }
.calc__outputs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc__kpi { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.calc__kpi--hl { border-color: color-mix(in srgb, var(--accent) 40%, transparent); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface)), var(--bg-2)); }
.calc__l { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.calc__v { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.calc__kpi--hl .calc__v { color: var(--accent-2); }

/* ---- exclusive ---- */
.excl { display: grid; gap: 18px; }
.excl__pt { display: flex; gap: 16px; }
.excl__n { flex: 0 0 auto; font-size: 13px; font-weight: 800; color: var(--accent-2); width: 28px; }
.excl__pt h3 { font-size: 16px; margin-bottom: 4px; }
.excl__pt p { font-size: 14px; color: var(--muted); }
.exmap { text-align: center; }
.exmap svg { width: 100%; max-width: 340px; }
.exmap__ring { fill: none; stroke: var(--line-2); stroke-width: 1.5; }
.exmap__ring--2 { stroke-dasharray: 3 5; }
.exmap__spokes line { stroke: color-mix(in srgb, var(--accent) 40%, transparent); }
.exmap__core { fill: var(--accent); filter: drop-shadow(0 0 12px var(--accent)); }
.exmap__cap { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ---- lead form ---- */
.leadbox { max-width: 620px; margin: 30px auto 0; text-align: left; }
.leadbox__head { text-align: center; margin-bottom: 20px; }
.leadform { display: grid; gap: 12px; }
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.leadform input, .leadform textarea { width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); font-size: 15px; font-family: inherit; }
.leadform input:focus, .leadform textarea:focus { outline: none; border-color: var(--accent); }
.leadform button { justify-content: center; margin-top: 4px; }
.leadform__privacy { font-size: 12px; text-align: center; }
.leadform__ok { display: none; text-align: center; color: var(--ok); font-weight: 600; }
.leadform__ok.is-on { display: block; }

/* ---- admin extras ---- */
.admin-shell { width: 100%; max-width: 760px; margin: 0 auto; }
.admin-hub { display: grid; gap: 10px; }
.admin-hub__item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); transition: border-color .2s var(--ease), background .2s var(--ease); }
.admin-hub__item:hover { border-color: var(--line-2); background: var(--surface-2); }
.admin-hub__ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; font-weight: 800; color: var(--accent-2); background: color-mix(in srgb, var(--accent) 14%, transparent); flex: 0 0 auto; }
.admin-hub__item b { display: block; font-size: 14.5px; }
.admin-hub__item span span { display: block; }
.admin-hub__item .muted { font-size: 12.5px; }
.admin-top { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.admin-block { margin-bottom: 20px; }
.admin-ok { color: var(--ok); font-size: 14px; margin-bottom: 12px; }
.admin-input--sm { width: 100%; padding: 9px 12px; font-size: 14px; }
.admin-scn { width: 100%; border-collapse: collapse; }
.admin-scn th, .admin-scn td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line); font-size: 13px; }
.admin-scn th { color: var(--muted); font-weight: 600; }
.admin-scn td:first-child { font-weight: 600; }
.admin-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.admin-mini { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
.admin-leads { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-leads th, .admin-leads td { padding: 9px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.admin-leads th { color: var(--muted); font-weight: 600; white-space: nowrap; }

/* ---- growth roadmap (red-framed) ---- */
.growth { position: relative; border-radius: 24px; padding: 40px;
    background: linear-gradient(180deg, var(--surface), var(--bg-2)) padding-box, linear-gradient(120deg, #E2001A, #FF6A00 55%, var(--accent-2)) border-box;
    border: 2px solid transparent; box-shadow: 0 0 0 1px rgba(226,0,26,.08), 0 26px 70px rgba(226,0,26,.16); }
.growth__flow { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: 8px 6px; }
.gstep { flex: 1 1 120px; max-width: 150px; text-align: center; padding: 8px 6px; }
.gstep__n { width: 38px; height: 38px; margin: 0 auto 12px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 15px; color: #fff;
    background: linear-gradient(135deg, #E2001A, #FF6A00); box-shadow: 0 8px 20px rgba(226,0,26,.4); }
.gstep__t { font-size: 13.5px; font-weight: 650; line-height: 1.25; }
.gstep__m { font-size: 12px; font-weight: 600; color: #FF6A00; margin-top: 6px; }
.garrow { align-self: flex-start; margin-top: 16px; color: #FF6A00; font-weight: 700; font-size: 18px; opacity: .7; }
.growth__stats { margin-top: 32px; padding-top: 28px; border-top: 1px dashed color-mix(in srgb, #E2001A 40%, transparent); }
.growth__stats-title { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; text-align: center; }
.gstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gstat { text-align: center; }
.gstat__v { display: block; font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.05;
    background: linear-gradient(180deg, var(--grad-top), #E2001A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gstat__l { display: block; font-size: 13px; color: var(--muted); margin-top: 6px; }
.growth__outcome { text-align: center; margin-top: 26px; font-size: clamp(16px, 1.9vw, 21px); font-weight: 650; letter-spacing: -.01em; }

/* ---- version switcher + board accordion ---- */
.seg--ver button { font-size: 13px; font-weight: 600; padding: 6px 13px; border-radius: 999px; color: var(--muted); background: transparent; border: none; cursor: pointer; transition: all .2s var(--ease); }
.seg--ver button:hover { color: var(--text); }
.seg--ver button.is-active { background: var(--accent); color: #fff; box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 40%, transparent); }
.acc-bar { display: none; }
.acc-ch { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-2); color: var(--muted); font-size: 18px; flex: 0 0 auto; transition: transform .2s var(--ease); }
[data-mode="board"] section[data-tier="deep"] { padding: 0; border-top: 1px solid var(--line); }
[data-mode="board"] section[data-tier="deep"]:last-of-type { border-bottom: 1px solid var(--line); }
[data-mode="board"] section[data-tier="deep"] .acc-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 24px 0;
    background: transparent; border: none; cursor: pointer; color: var(--text); font-size: 19px; font-weight: 650; letter-spacing: -.01em; text-align: left; }
[data-mode="board"] section[data-tier="deep"] .acc-bar:hover { color: var(--accent-2); }
[data-mode="board"] section[data-tier="deep"] .acc-bar:hover .acc-ch { border-color: var(--accent); color: var(--accent-2); }
[data-mode="board"] section[data-tier="deep"] .acc-body { display: none; }
[data-mode="board"] section[data-tier="deep"].is-open .acc-body { display: block; padding-bottom: 56px; }
[data-mode="board"] section[data-tier="deep"].is-open .acc-ch { transform: rotate(45deg); color: var(--accent-2); border-color: var(--accent); }
[data-mode="board"] .stage[data-stage] { opacity: .9; }

/* ---- SalesHack setup quiz (modal) ---- */
.header__quiz, .header__demo, .header__cta { gap: 7px; }
.header__btxt { white-space: nowrap; }
.quizm { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; }
.quizm.is-open { display: flex; }
.quizm__backdrop { position: absolute; inset: 0; background: rgba(4, 6, 12, .72); backdrop-filter: blur(8px); animation: qfade .25s var(--ease); }
@keyframes qfade { from { opacity: 0; } to { opacity: 1; } }
.quizm__card { position: relative; width: 100%; max-width: 660px; max-height: 90vh; display: flex; flex-direction: column;
    background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-2); border-radius: 22px;
    box-shadow: var(--shadow); overflow: hidden; animation: qpop .3s var(--ease); }
@keyframes qpop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.quizm__head { display: flex; align-items: center; gap: 14px; padding: 20px 22px 16px; border-bottom: 1px solid var(--line); }
.quizm__head .logo__text { font-size: 15px; }
.quizm__head .logo__mark { width: 28px; height: 28px; border-radius: 8px; }
.quizm__titles { margin-left: 6px; }
.quizm__t { font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.quizm__s { font-size: 12px; color: var(--muted); }
.quizm__close { margin-left: auto; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); background: var(--bg-2); color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; transition: all .2s var(--ease); }
.quizm__close:hover { color: var(--text); border-color: var(--line-2); }
.quizm__progress { height: 3px; background: var(--surface-2); }
.quizm__progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .35s var(--ease); }
.quizm__body { padding: 26px 24px; overflow-y: auto; }
.qslide { display: none; animation: qslidein .3s var(--ease); }
.qslide.is-active { display: block; }
@keyframes qslidein { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.qh { font-size: 22px; letter-spacing: -.02em; margin: 8px 0 6px; }
.qq { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.qhint { margin-top: 16px; font-size: 13px; color: var(--accent-2); }
.qintro { text-align: center; padding: 14px 6px; }
.qbadge { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
    background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent); color: var(--accent-2); }
.qintro .qh { font-size: 26px; }

/* inputs */
.quizm input[type="text"], .quizm input[type="number"], .quizm input[type="time"], .quizm textarea {
    width: 100%; padding: 12px 14px; border-radius: 11px; border: 1px solid var(--line-2); background: var(--surface); color: var(--text); font-size: 14.5px; font-family: inherit; }
.quizm input:focus, .quizm textarea:focus { outline: none; border-color: var(--accent); }
.qfield { display: block; margin-top: 14px; font-size: 13px; color: var(--muted); }
.qfield label, .qfield > span { display: block; margin-bottom: 7px; }
.qfield input { margin-top: 0; }

/* toggle (yes/no) */
.qtoggle { display: inline-flex; padding: 4px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; gap: 3px; }
.qopt { font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 999px; border: none; background: transparent; color: var(--muted); cursor: pointer; transition: all .2s var(--ease); }
.qopt.is-sel { background: var(--accent); color: #fff; }

/* logo upload */
.qlogo { margin-top: 16px; }
.qlogo__drop { width: 100%; padding: 28px; border: 1px dashed var(--line-2); border-radius: 14px; background: var(--surface); color: var(--muted); font-size: 14px; cursor: pointer; transition: all .2s var(--ease); }
.qlogo__drop:hover { border-color: var(--accent); color: var(--text); }
.qlogo__prev { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--surface); }
.qlogo__prev img { max-height: 40px; max-width: 120px; object-fit: contain; }
.qlogo__prev span { color: var(--ok); font-weight: 600; font-size: 14px; }

/* time range */
.qtimes { display: flex; align-items: flex-end; gap: 14px; margin-top: 16px; }
.qtimes label { flex: 1; font-size: 13px; color: var(--muted); }
.qtimes label input { margin-top: 7px; }
.qtimes__dash { padding-bottom: 12px; color: var(--muted-2); }

/* agent */
.qtext { margin-top: 16px; resize: vertical; }
.qagent { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.qagent .btn svg { margin-right: 2px; }
.qagent__status { font-size: 13px; color: var(--muted); }
.qagent__status.is-load { color: var(--accent-2); }
.qagent__status.is-listen { color: var(--accent-2); display: inline-flex; align-items: center; gap: 8px; }
.qagent__status.is-listen::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); animation: pulse 1.1s infinite; }
.qbubble { margin-top: 16px; padding: 16px 18px; border-radius: 14px 14px 14px 4px; background: color-mix(in srgb, var(--accent) 10%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); }
.qbubble__who { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-2); }
.qbubble p { margin-top: 5px; font-size: 14.5px; }

/* checks */
.qcheck { display: flex; align-items: center; gap: 11px; padding: 13px 0; font-size: 14.5px; cursor: pointer; }
.qcheck input { width: 18px; height: 18px; accent-color: var(--accent); flex: 0 0 auto; }
.qtrigs { margin-top: 8px; display: grid; gap: 2px; }
.qapprove { margin-top: 14px; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--surface); }

/* sliders / rows */
.qrow { margin-top: 18px; }
.qrow > label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.qslider { display: flex; align-items: center; gap: 14px; }
.qslider input[type="range"] { flex: 1; accent-color: var(--accent); height: 6px; }
.qval { font-size: 18px; font-weight: 800; color: var(--accent-2); font-variant-numeric: tabular-nums; min-width: 48px; text-align: right; }
.qgrid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.qgrid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }

/* gift / director */
.qgift { margin-top: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); }
.qgift .qgrid2 { margin-top: 0; }
.qmod { margin-top: 10px; font-size: 12.5px; color: var(--warn); }
.qdir { margin-top: 18px; padding: 18px; border: 1px solid var(--line-2); border-radius: 14px; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 7%, var(--surface)), var(--bg-2)); }
.qdir__head { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-2); margin-bottom: 6px; }
.qquote { margin: 12px 0; padding: 12px 16px; border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 10px 10px 0; font-size: 14px; font-style: italic; color: var(--text); }
.qtotal { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line-2); font-size: 14px; color: var(--muted); }
.qtotal b { color: var(--text); font-size: 18px; font-variant-numeric: tabular-nums; }
.qtotal #qSave { color: var(--ok); }

/* sms */
.qsms { margin-top: 18px; }
.qsms__label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.qsms__bubble { padding: 15px 18px; border-radius: 14px 14px 4px 14px; background: color-mix(in srgb, var(--accent) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent); font-size: 14px; line-height: 1.5; }

/* done */
.qdone { text-align: center; padding: 18px 6px; }
.qdone__check { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 30px; color: #fff;
    background: linear-gradient(135deg, var(--ok), #1fae62); box-shadow: 0 12px 30px color-mix(in srgb, var(--ok) 40%, transparent); }
.qdone .qh { font-size: 24px; }
.qdone__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* footer */
.quizm__foot { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-top: 1px solid var(--line); }
.quizm__ind { margin: 0 auto; font-size: 12.5px; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.quizm__foot .btn { min-width: 110px; justify-content: center; }
.quizm__foot.is-done { display: none; }

/* simulated SalesHack CRM landing */
.qcrm__top { display: flex; align-items: center; gap: 18px; padding: 12px 16px; border-radius: 12px; background: linear-gradient(135deg, #0b0d12, #11151c); margin-bottom: 18px; flex-wrap: wrap; }
.qcrm__brand { font-weight: 800; font-size: 16px; color: #fff; }
.qcrm__brand b { color: var(--accent-2); }
.qcrm__nav { display: flex; gap: 16px; font-size: 12.5px; color: rgba(255,255,255,.55); flex-wrap: wrap; }
.qcrm__nav .is-active { color: #fff; font-weight: 600; }
.qcrm__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--ok); padding: 6px 12px; border-radius: 999px; background: color-mix(in srgb, var(--ok) 12%, transparent); border: 1px solid color-mix(in srgb, var(--ok) 30%, transparent); }
.qcrm__tt { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 20px 0 12px; }
.qcrm__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qcrm__card { position: relative; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.qcrm__num { position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; background: var(--accent); }
.qcrm__card h4 { font-size: 15px; margin: 0 0 6px; }
.qcrm__card p { font-size: 13px; color: var(--muted); margin: 0 0 12px; }
.qcrm__code { display: block; font-family: ui-monospace, monospace; font-size: 11px; color: var(--accent-2); background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; margin-bottom: 12px; overflow-x: auto; white-space: nowrap; }
.qcrm__deal { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12.5px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; }
.qcrm__auto { color: var(--accent-2); font-weight: 600; white-space: nowrap; }
.qcrm__foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }

/* demo (auto-design) layout picker */
.dforms { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 16px; }
.dform { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 16px 8px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--surface); color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s var(--ease); }
.dform:hover { color: var(--text); border-color: var(--muted-2); }
.dform.is-sel { border-color: var(--accent); color: var(--text); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); box-shadow: 0 0 0 1px var(--accent); }
.dform__ico { width: 48px; height: 36px; color: var(--accent-2); }
@media (max-width: 620px) { .dforms { grid-template-columns: repeat(2, 1fr); } .qcrm__cards { grid-template-columns: 1fr; } }

@media (max-width: 620px) {
    .header__demo svg, .header__quiz svg, .header__cta svg { width: 17px !important; height: 17px !important; }
    .quizm { padding: 0; }
    .quizm__card { max-width: 100%; max-height: 100vh; height: 100%; border-radius: 0; border: none; }
    .qgrid3 { grid-template-columns: 1fr; }
    .quizm__foot .btn { min-width: 88px; }
}

/* =====================================================================
   BRAND KIT
   ===================================================================== */
/* logo size + colour variants */
.logo--xl .logo__mark { width: 44px; height: 44px; border-radius: 13px; }
.logo--xl .logo__mark svg { width: 24px; height: 24px; }
.logo--xl .logo__text { font-size: 26px; }
.logo--xl .logo__text i { font-size: 18px; }
.logo--sm .logo__mark { width: 26px; height: 26px; border-radius: 8px; }
.logo--sm .logo__text { font-size: 15px; }
.logo--sm .logo__text i { font-size: 11px; }
.logo--xs .logo__mark { width: 22px; height: 22px; border-radius: 7px; }
.logo--xs .logo__mark svg { width: 13px; height: 13px; }
.logo--xs .logo__text { font-size: 13px; }
.logo--xs .logo__text i { font-size: 10px; }
.cert .logo { margin: 0 1px; }
.cert__desc { font-weight: 700; }
.lany__strap svg { width: 19px; height: 19px; opacity: .92; }
.logo__mark--xl { width: 66px; height: 66px; border-radius: 19px; }
.logo__mark--xl svg { width: 34px; height: 34px; }
.logo--white .logo__text, .logo--white .logo__text b { color: #fff; }
.logo--white .logo__text i { color: rgba(255,255,255,.65); }
.logo--ink .logo__text { color: #0b0d12; }
.logo--ink .logo__text i { color: #6b7180; }
.logo--ink .logo__text b { color: #2E5BFF; }
.logo--mono .logo__mark { background: none; border: 1.5px solid #fff; color: #fff; box-shadow: none; }
.logo--mono .logo__text, .logo--mono .logo__text b { color: #fff; }
.logo--mono .logo__text i { color: rgba(255,255,255,.6); }

/* layout */
.bk-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.bk-h { font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 22px; }
.bk-grid { display: grid; gap: 20px; }
.bk-grid--4 { grid-template-columns: repeat(4, 1fr); }
.bk-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bk-two { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.mock { display: flex; flex-direction: column; gap: 10px; }
.mock__art { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 22px; background: var(--surface); position: relative; }
.mock--wide { grid-column: span 2; }
.mock__label { font-size: 13px; color: var(--muted); text-align: center; }
.bk-logo--dark { background: #06070A; }
.bk-logo--light { background: #F4F6FB; }

/* swatches + type */
.bk-swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sw { display: flex; flex-direction: column; gap: 6px; }
.sw__chip { height: 66px; border-radius: 12px; background: var(--c); display: block; }
.sw b { font-size: 13px; }
.sw code { font-size: 12px; color: var(--muted); font-family: ui-monospace, monospace; }
.bk-type { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: var(--surface); }
.bk-type__face { font-size: 14px; color: var(--muted); }
.bk-type__aa { font-size: 84px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.bk-type__weights { font-size: 14px; color: var(--muted); margin: 4px 0 18px; }
.bk-type__spec { border-top: 1px solid var(--line); padding-top: 18px; }

/* stages */
.bk-glass { background: linear-gradient(135deg, #16203c, #2a3a5e 58%, #8a604c); }
.bk-stage { background: radial-gradient(60% 70% at 50% 35%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%), var(--surface-2); }
.bk-stickers { grid-template-columns: repeat(4, 1fr); }
.bk-stickers .mock__art { aspect-ratio: auto; min-height: 300px; }

/* QR scalable eyes (overrides fixed px so all sizes work) */
.qr__eye { width: 24%; height: 24%; border-width: 2.5px; }
.qr__eye--tl { top: 6%; left: 6%; }
.qr__eye--tr { top: 6%; right: 6%; }
.qr__eye--bl { bottom: 6%; left: 6%; }
.qr--md { width: 84px; height: 84px; }
.qr--xs { width: 46px; height: 46px; padding: 3px; }
.qr--xs .qr__eye { display: none; }

/* decals */
.dk { color: #fff; }
.dk-long, .dk-square, .dk-vert, .dk-small { background: rgba(8,12,26,.66); backdrop-filter: blur(6px); border: 1px solid color-mix(in srgb, var(--accent-2) 50%, transparent); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.dk__big { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.dk__big--sm { font-size: 17px; line-height: 1.12; }
.dk__scan { font-size: 11px; font-weight: 700; color: var(--accent-2); }
.dk-long { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; max-width: 520px; padding: 22px 28px; border-radius: 16px; }
.dk-long__l { display: flex; flex-direction: column; gap: 14px; }
.dk-long__r { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dk-square { width: 200px; height: 200px; padding: 18px; border-radius: 16px; display: flex; flex-direction: column; justify-content: space-between; }
.dk-square__foot { display: flex; align-items: center; gap: 12px; }
.dk-round { position: relative; width: 200px; height: 200px; border-radius: 50%; background: rgba(8,12,26,.72); border: 1px solid color-mix(in srgb, var(--accent-2) 50%, transparent); display: grid; place-items: center; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.dk-round__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dk-round__txt { fill: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: 2px; }
.dk-round__mark { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.dk-round__mark svg { width: 30px; height: 30px; }
.dk-vert { width: 130px; height: 280px; padding: 20px 14px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.dk-vert__big { font-size: 15px; font-weight: 800; line-height: 1.18; }
.dk-small { width: 150px; padding: 14px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.dk-small__pw { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* stationery */
.card-f, .card-b { position: absolute; top: 50%; left: 50%; width: 240px; height: 140px; border-radius: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.32); padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.card-f { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; transform: translate(-50%,-50%) translate(-22px,-10px) rotate(-5deg); z-index: 2; }
.card-f__who b { display: block; font-size: 15px; }
.card-f__who span { font-size: 12px; opacity: .85; }
.card-b { background: #06070A; color: #fff; transform: translate(-50%,-50%) translate(22px,12px) rotate(4deg); align-items: flex-start; }
.card-b__mark { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.card-b__tag { font-size: 12px; color: var(--accent-2); }
.card-b .qr { position: absolute; right: 14px; bottom: 14px; }
.env { position: relative; width: 270px; height: 156px; background: #fff; border: 1px solid #d8dce4; border-radius: 8px; box-shadow: 0 18px 40px rgba(0,0,0,.25); overflow: hidden; }
.env__flap { position: absolute; top: 0; left: 0; right: 0; height: 58%; background: linear-gradient(135deg, #eef1f7, #e1e6ef); clip-path: polygon(0 0, 100% 0, 50% 100%); border-bottom: 1px solid #d8dce4; }
.env__logo { position: absolute; top: 16px; left: 18px; z-index: 2; }
.env__line { position: absolute; left: 18px; height: 6px; background: #e6e9f0; border-radius: 3px; }
.env__line { bottom: 34px; width: 130px; }
.env__line--2 { bottom: 20px; width: 96px; }
.letter { width: 196px; height: 264px; background: #fff; border-radius: 8px; box-shadow: 0 18px 40px rgba(0,0,0,.25); padding: 18px; display: flex; flex-direction: column; }
.letter__top { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--accent); padding-bottom: 10px; }
.letter__url { font-size: 9px; color: #6b7180; }
.letter__body { display: grid; gap: 7px; margin-top: 16px; flex: 1; align-content: start; }
.letter__body span { height: 6px; background: #eceef3; border-radius: 3px; }
.letter__body .sh { width: 58%; }
.letter__foot { height: 8px; background: var(--accent); border-radius: 3px; opacity: .3; }

/* merch */
.pen { position: relative; width: 300px; height: 30px; display: flex; align-items: center; transform: rotate(-8deg); filter: drop-shadow(0 12px 20px rgba(0,0,0,.3)); }
.pen__tip { width: 26px; height: 10px; background: linear-gradient(#c9ccd2, #9aa0aa); clip-path: polygon(0 50%, 100% 0, 100% 100%); }
.pen__barrel { flex: 1; height: 26px; background: linear-gradient(180deg, var(--accent-2), var(--accent)); display: flex; align-items: center; padding-left: 20px; }
.pen__logo { color: #fff; font-weight: 800; font-size: 13px; }
.pen__logo i { font-weight: 600; opacity: .7; font-style: normal; }
.pen__clip { width: 5px; height: 20px; background: #fff; opacity: .5; border-radius: 3px; margin-left: 6px; }
.pen__btn { width: 16px; height: 26px; background: var(--accent); border-radius: 0 7px 7px 0; }
.tote { position: relative; }
.tote__h { position: absolute; top: -24px; width: 38px; height: 56px; border: 6px solid #d6dae2; border-bottom: none; border-radius: 38px 38px 0 0; }
.tote__h { left: 36px; }
.tote__h--2 { left: auto; right: 36px; }
.tote__body { width: 196px; height: 206px; background: #eceef3; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.tote__tag { font-size: 12px; color: #6b7180; }
.lany { position: relative; display: flex; flex-direction: column; align-items: center; }
.lany__strap { width: 46px; height: 116px; background: linear-gradient(180deg, var(--accent), var(--accent-2)); display: flex; flex-direction: column; align-items: center; justify-content: space-around; overflow: hidden; }
.lany__strap i { font-size: 8px; font-weight: 800; color: rgba(255,255,255,.92); transform: rotate(-90deg); white-space: nowrap; font-style: normal; letter-spacing: 1px; }
.lany__clip { width: 20px; height: 10px; background: #9aa0aa; }
.lany__badge { width: 156px; height: 98px; background: #06070A; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 12px; box-shadow: 0 18px 40px rgba(0,0,0,.32); }

@media (max-width: 900px) {
    .bk-grid--4, .bk-grid--3, .bk-stickers { grid-template-columns: repeat(2, 1fr); }
    .bk-two { grid-template-columns: 1fr; gap: 28px; }
    .mock--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
    .bk-grid--4, .bk-grid--3, .bk-stickers { grid-template-columns: 1fr; }
    .mock--wide { grid-column: span 1; }
    .bk-swatches { grid-template-columns: 1fr 1fr; }
    .dk-long { flex-direction: column; gap: 16px; text-align: center; }
}

/* =====================================================================
   LEGAL DOCUMENTS (admin, password-gated)
   ===================================================================== */
.legal-body { background: #e9ecf1; margin: 0; color: #1a1d24; font-family: var(--font); }
.legal-bar { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 14px; justify-content: center; padding: 12px 16px; background: #0b0d12; border-bottom: 1px solid rgba(255,255,255,.1); }
.legal-bar .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.legal-tabs { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.legal-tabs a { color: rgba(255,255,255,.7); }
.legal-tabs a.is-active { background: var(--accent); color: #fff; box-shadow: none; }
.legal-docs { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.legal-docs a { color: rgba(255,255,255,.7); font-weight: 600; padding: 6px 13px; border-radius: 999px; font-size: 13px; white-space: nowrap; }
.legal-docs a.is-active { background: #fff; color: #0b0d12; }
.legal-fillbar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 10px 16px; background: #11151c; border-bottom: 1px solid rgba(255,255,255,.08); justify-content: center; }
.legal-fillbar__t { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-right: 4px; }
.legal-fillbar input[type="text"] { padding: 8px 11px; border-radius: 8px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font-size: 13px; font-family: inherit; width: 148px; }
.legal-fillbar input::placeholder { color: rgba(255,255,255,.4); }
.legal-fillbar input:focus { outline: none; border-color: var(--accent); }
.legal-upload { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 8px; border: 1px dashed rgba(255,255,255,.28); color: rgba(255,255,255,.8); font-size: 13px; cursor: pointer; }
.legal-upload:hover { border-color: var(--accent-2); color: #fff; }
.legal-clear { padding: 8px 13px; border-radius: 8px; border: 1px solid rgba(255,255,255,.16); background: transparent; color: rgba(255,255,255,.7); font-size: 13px; cursor: pointer; }
.legal-clear:hover { color: #fff; }
.fill { border-bottom: 1px dotted #c2c8d2; }
.fill--set { font-weight: 600; color: #0b0d12; border-bottom: 1px solid var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); padding: 0 3px; border-radius: 3px; }
.lh__cp-box.has-logo { border: none; padding: 0; }
.lh__cp-box img { max-height: 64px; max-width: 152px; object-fit: contain; display: block; }
.legal-sheet { max-width: 840px; margin: 28px auto; background: #fff; padding: 56px 64px; box-shadow: 0 20px 60px rgba(20,28,48,.18); border-radius: 4px; }

.lh { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 2px solid var(--accent); margin-bottom: 28px; }
.lh__brand { display: flex; flex-direction: column; gap: 9px; }
.lh__meta { font-size: 12px; color: #6b7180; line-height: 1.5; }
.lh__cp { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.lh__cp-box { width: 152px; height: 64px; border: 1.5px dashed #c2c8d2; border-radius: 8px; display: grid; place-items: center; color: #aab0bd; font-weight: 800; font-size: 13px; letter-spacing: .12em; }
.lh__cp-cap { font-size: 10.5px; color: #9aa0ad; }

.legal { color: #1a1d24; font-size: 14px; line-height: 1.62; }
.legal h1 { font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 4px; color: #0b0d12; }
.legal__sub { color: #6b7180; font-size: 13px; margin-bottom: 22px; }
.legal h2 { font-size: 16px; font-weight: 700; margin: 26px 0 10px; color: #0b0d12; padding-top: 14px; border-top: 1px solid #eceef3; }
.legal h3 { font-size: 14px; font-weight: 700; margin: 16px 0 6px; }
.legal p { margin: 0 0 10px; }
.legal ol, .legal ul { margin: 0 0 12px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal__parties { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0 8px; }
.legal__party { border: 1px solid #eceef3; border-radius: 10px; padding: 14px 16px; font-size: 13px; }
.legal__party b { display: block; margin-bottom: 4px; color: #0b0d12; }
.legal__muted { color: #6b7180; }

.legal-rec { border: 1px solid color-mix(in srgb, #E2001A 35%, #fff); background: color-mix(in srgb, #E2001A 5%, #fff); border-left: 3px solid #E2001A; border-radius: 0 10px 10px 0; padding: 12px 16px; margin: 12px 0; }
.legal-rec__tag { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #E2001A; margin-bottom: 5px; }
.legal-rec p:last-child { margin-bottom: 0; }

.legal-note { font-size: 12px; color: #76808f; border: 1px solid #e3e7ee; border-radius: 10px; padding: 13px 16px; margin: 22px 0; background: #f7f8fb; }

.legal-sign { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 42px; }
.legal-sign__b { font-size: 13px; }
.legal-sign__line { margin-top: 40px; border-top: 1px solid #1a1d24; padding-top: 6px; }
.legal-sign__role { color: #6b7180; font-size: 12px; }

@media (max-width: 720px) {
    .legal-sheet { padding: 32px 22px; margin: 14px; }
    .legal__parties, .legal-sign { grid-template-columns: 1fr; gap: 18px; }
    .lh { flex-direction: column; }
    .lh__cp { align-items: flex-start; }
}
@media print {
    .legal-body { background: #fff; }
    .legal-bar, .legal-fillbar { display: none; }
    .legal-sheet { max-width: none; margin: 0; padding: 16mm 18mm; box-shadow: none; border-radius: 0; }
    .legal h2 { break-after: avoid; }
    .legal-rec, .legal-sign, .legal__party, .legal-note { break-inside: avoid; }
    .fill--set { background: transparent; padding: 0; border-bottom: none; }
}

/* ---- print ---- */
@media print {
    .header, .stages, .progress, .prepared, .theme-toggle, .admin-gear, .header__cta, .demo__form, .leadform, .calc__inputs { display: none !important; }
    :root { --bg: #fff; --bg-2: #fff; --surface: #fff; --surface-2: #f3f4f7; --text: #0b0d12; --muted: #444; --line: rgba(0,0,0,.12); --line-2: rgba(0,0,0,.2); --grad-top: #0b0d12; }
    body { background: #fff; color: #000; }
    .section { padding: 22px 0; break-inside: avoid; }
    .h1 { font-size: 34px; } .h2 { font-size: 24px; }
    .hero::before, .hero::after { display: none; }
    .card, .module, .kpi, .stat, .calc__kpi, .benefit { break-inside: avoid; }
    a { text-decoration: none; color: inherit; }
}

/* ---- PLAN IN 10 responsive ---- */
@media (max-width: 980px) {
    .steps5 { grid-template-columns: repeat(2, 1fr); }
    .kpis { grid-template-columns: repeat(2, 1fr); }
    .seg-grid { grid-template-columns: 1fr 1fr; }
    .decal { width: min(300px, 52%); }
    .demo, .calc { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .roadmap { grid-template-columns: 1fr 1fr; gap: 24px 0; }
    .calc__outputs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
    .header__demo .header__btxt, .header__quiz .header__btxt, .header__cta .header__btxt { display: none; }
    .header__demo, .header__quiz, .header__cta { padding: 9px 11px; gap: 0; }
}
@media (max-width: 860px) {
    /* compact single-row bar: logo · language · theme · burger */
    /* padding-block only — keep .wrap's horizontal padding so logo/burger aren't flush to the edges */
    .header__bar { position: relative; flex-wrap: nowrap; height: auto; min-height: 60px; padding-block: 10px; gap: 12px; }
    /* order:0 resets a legacy ≤760 rule (.header__right{order:3}) that placed the
       controls before the burger. */
    .header__right { width: auto; margin-left: auto; gap: 8px; order: 0; }
    .header__tools { display: flex; align-items: center; gap: 8px; }
    /* legacy rule from the old header pushed the toggle to the far right — reset it */
    .header__tools .theme-toggle { order: 0; margin-left: 0; }

    .nav-burger { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; cursor: pointer;
        background: var(--surface); border: 1px solid var(--line); color: var(--text); transition: border-color .2s var(--ease), background .2s var(--ease); }
    .nav-burger:hover { border-color: var(--line-2); }
    .nav-burger svg { width: 21px; height: 21px; }
    .nav-burger__close { display: none; }
    .nav-toggle:checked ~ .nav-burger { background: var(--surface-2); border-color: var(--line-2); }
    .nav-toggle:checked ~ .nav-burger .nav-burger__open { display: none; }
    .nav-toggle:checked ~ .nav-burger .nav-burger__close { display: block; }

    /* actions collapse into a dropdown card under the bar */
    .header__menu { display: none; position: absolute; top: calc(100% + 10px); left: 24px; right: 24px;
        flex-direction: column; align-items: stretch; gap: 6px; padding: 10px;
        background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px; box-shadow: var(--shadow); z-index: 70; }
    .nav-toggle:checked ~ .header__right .header__menu { display: flex; animation: qpop .22s var(--ease); }
    .header__menu .btn, .header__menu .admin-gear { width: 100%; height: auto; justify-content: flex-start; gap: 12px; padding: 13px 16px !important; border-radius: 12px; font-size: 14.5px; }
    .header__menu .header__btxt { display: inline !important; }
    .header__menu .admin-gear { display: flex; align-items: center; color: var(--text); border: 1px solid var(--line); background: var(--surface); }
    .header__menu .admin-gear:hover { border-color: var(--line-2); background: var(--surface-2); }
    .header__menu .admin-gear svg { width: 18px; height: 18px; flex: 0 0 auto; }
    .header__menu .header__demo svg, .header__menu .header__quiz svg, .header__menu .header__cta svg { width: 17px !important; height: 17px !important; }

    .logo__text { font-size: 16px; }
    html { scroll-padding-top: 130px; }
}
/* match the dropdown inset to .wrap's tighter padding on small phones */
@media (max-width: 380px) {
    .header__menu { left: 16px; right: 16px; }
}
@media (max-width: 620px) {
    .steps5, .kpis, .blind-grid, .losses { grid-template-columns: 1fr; }
    .funnel__bar { height: 46px; }
    .decal { position: static; width: auto; margin: 14px; }
    .storefront__scene { aspect-ratio: auto; min-height: 360px; }
    /* has-photo keeps a 16/9 aspect-ratio whose specificity beats the rule above;
       combined with min-height it inflated width to 360*16/9=640px and overflowed
       the viewport. Reset min-height and use a mobile-friendly ratio. */
    .storefront__scene.has-photo { aspect-ratio: 4 / 3; min-height: 0; }
    .pipe__v { min-width: 86px; font-size: 24px; }
    .gallery, .roadmap, .calc__outputs, .leadform__row, .admin-grid2 { grid-template-columns: 1fr; }
    .gstats { grid-template-columns: 1fr 1fr; }
    .growth { padding: 24px; }
    .garrow { display: none; }
    .gstep { max-width: none; flex-basis: 44%; }
    .tranche { flex-basis: 100%; }
    .tranche__v { font-size: 24px; }
    .roadmap { gap: 20px; }
    .phase::before { display: none; }
    .demo__out { flex-direction: column; align-items: flex-start; gap: 8px; }
}
