/* ==========================================================================
   Buyesia Business — Portal design system
   Light / dark themes, components and landing.
   ========================================================================== */

:root {
    --b-canvas: #F7F8FB;
    --b-canvas-2: #EEF1F7;
    --b-surface: #FFFFFF;
    --b-surface-2: #F3F5FA;
    --b-ink: #0B1526;
    --b-ink-2: #33415C;
    --b-muted: #64748B;
    --b-line: #E5E8F0;
    --b-line-2: #D8DEEA;

    --b-brand: #E23A2E;
    --b-brand-2: #C22B22;
    --b-brand-soft: rgba(226, 58, 46, .10);
    --b-accent: #FFC400;
    --b-accent-2: #FFDA5C;
    --b-accent-soft: rgba(255, 196, 0, .16);

    --b-ok: #0E9F6E;
    --b-ok-soft: rgba(14, 159, 110, .12);
    --b-warn: #B45309;
    --b-warn-soft: rgba(180, 83, 9, .12);
    --b-danger: #DC2626;
    --b-danger-soft: rgba(220, 38, 38, .10);

    --b-radius-sm: 10px;
    --b-radius: 16px;
    --b-radius-lg: 24px;
    --b-radius-pill: 999px;

    --b-shadow-1: 0 1px 2px rgba(11, 21, 38, .05), 0 10px 30px rgba(11, 21, 38, .07);
    --b-shadow-2: 0 30px 70px rgba(11, 21, 38, .14);

    --b-header-bg: rgba(255, 255, 255, .82);
    --b-header-line: rgba(11, 21, 38, .08);

    --b-ease: cubic-bezier(.2, .7, .2, 1);
    color-scheme: light;
}

html[data-theme="dark"] {
    --b-canvas: #070C16;
    --b-canvas-2: #0A111F;
    --b-surface: #0E1626;
    --b-surface-2: #131E31;
    --b-ink: #F3F6FC;
    --b-ink-2: #C7D2E4;
    --b-muted: #93A1B8;
    --b-line: #1D2941;
    --b-line-2: #273751;

    --b-brand: #FF5040;
    --b-brand-2: #FF7A6E;
    --b-brand-soft: rgba(255, 80, 64, .14);
    --b-accent: #FFC400;
    --b-accent-soft: rgba(255, 196, 0, .14);

    --b-ok-soft: rgba(14, 159, 110, .18);
    --b-warn-soft: rgba(180, 83, 9, .20);
    --b-danger-soft: rgba(220, 38, 38, .18);

    --b-shadow-1: 0 1px 2px rgba(0, 0, 0, .45), 0 14px 34px rgba(0, 0, 0, .38);
    --b-shadow-2: 0 34px 80px rgba(0, 0, 0, .55);

    --b-header-bg: rgba(7, 12, 22, .78);
    --b-header-line: rgba(255, 255, 255, .08);
    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--b-canvas);
    color: var(--b-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background-color .35s var(--b-ease), color .35s var(--b-ease);
}

::selection { background: var(--b-accent); color: #0B1526; }

a { color: var(--b-brand); text-decoration: none; transition: color .18s var(--b-ease); }
a:hover { color: var(--b-brand-2); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { letter-spacing: -.02em; line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; }
h2 { font-size: 21px; font-weight: 750; }
p { margin: 0 0 14px; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 460px; }
.muted { color: var(--b-muted); }
.text-right { text-align: right; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 13px; word-break: break-all; }
.inline-form { display: inline; }
.actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 10px 0;
    background: transparent;
    transition: background-color .3s var(--b-ease), border-color .3s var(--b-ease), box-shadow .3s var(--b-ease);
}
.site-header.is-scrolled {
    background: var(--b-header-bg);
    border-bottom: 1px solid var(--b-header-line);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    box-shadow: 0 12px 34px rgba(11, 21, 38, .08);
}
html[data-theme="dark"] .site-header.is-scrolled { box-shadow: 0 16px 40px rgba(0, 0, 0, .5); }

.site-topbar { color: var(--b-muted); font-size: 12.5px; }
.site-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 26px; }
.site-topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 10.5px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--b-muted);
}
.site-topbar-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--b-brand); box-shadow: 0 0 0 4px var(--b-brand-soft); }
.site-topbar-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-topbar-nav a { color: var(--b-muted); font-weight: 600; transition: color .18s var(--b-ease); }
.site-topbar-nav a:hover { color: var(--b-ink); }
.site-topbar-nav a:last-child::after { content: "↗"; margin-left: 5px; font-size: 11px; }

.header-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 62px;
    padding: 8px 12px 8px 22px;
    border-radius: var(--b-radius-pill);
    background: var(--b-header-bg);
    border: 1px solid var(--b-header-line);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    box-shadow: 0 10px 30px rgba(11, 21, 38, .07);
    transition: background-color .3s var(--b-ease), border-color .3s var(--b-ease), box-shadow .3s var(--b-ease);
}
.site-header.is-scrolled .header-inner {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.brand { display: inline-flex; align-items: center; color: var(--b-ink); }
.brand:hover { color: var(--b-ink); }
.brand-logo { height: 34px; width: auto; }

.nav-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 18px 0 15px;
    border-radius: var(--b-radius-pill);
    border: 1px solid var(--b-line);
    background: var(--b-surface);
    color: var(--b-ink);
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    transition: border-color .2s var(--b-ease), background-color .2s var(--b-ease), color .2s var(--b-ease);
}
.nav-menu-toggle:hover { border-color: var(--b-line-2); }
.nav-menu-toggle[aria-expanded="true"] { background: var(--b-ink); border-color: var(--b-ink); color: var(--b-canvas); }
.nav-burger { display: inline-flex; flex-direction: column; gap: 4px; width: 16px; }
.nav-burger i { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform .25s var(--b-ease), opacity .2s var(--b-ease); }
.nav-menu-toggle[aria-expanded="true"] .nav-burger i:first-child { transform: translateY(6px) rotate(45deg); }
.nav-menu-toggle[aria-expanded="true"] .nav-burger i:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded="true"] .nav-burger i:last-child { transform: translateY(-6px) rotate(-45deg); }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav-link {
    position: relative;
    padding: 9px 16px;
    border-radius: var(--b-radius-pill);
    font-size: 14px;
    font-weight: 600;
    color: var(--b-muted);
    transition: color .2s var(--b-ease), background-color .2s var(--b-ease);
}
.header-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--b-brand);
    transform: translateX(-50%);
    transition: width .25s var(--b-ease);
}
.header-nav-link:hover { color: var(--b-ink); background: var(--b-surface-2); }
.header-nav-link.is-active { color: var(--b-ink); background: var(--b-surface-2); }
.header-nav-link.is-active::after { width: 18px; }

.header-actions { display: flex; align-items: center; gap: 12px; font-size: 14px; margin-left: auto; }
.header-actions a.nav-link { color: var(--b-muted); font-weight: 550; }
.header-actions a.nav-link:hover { color: var(--b-ink); }
.header-logout { display: inline-flex; }

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--b-radius-pill);
    border: 1px solid var(--b-line);
    background: var(--b-surface);
    color: var(--b-ink-2);
    cursor: pointer;
    transition: transform .2s var(--b-ease), border-color .2s var(--b-ease), color .2s var(--b-ease), background-color .2s var(--b-ease);
}
.header-icon-btn:hover { transform: translateY(-1px); border-color: var(--b-line-2); color: var(--b-ink); }
.header-icon-btn svg { width: 18px; height: 18px; }

.header-cta { min-height: 42px; border-radius: var(--b-radius-pill); padding: 0 20px; }

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--b-radius-pill);
    border: 1px solid var(--b-line);
    background: var(--b-surface);
    color: var(--b-ink-2);
    cursor: pointer;
    transition: transform .2s var(--b-ease), border-color .2s var(--b-ease), color .2s var(--b-ease), background-color .3s var(--b-ease);
}
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--b-line-2); color: var(--b-ink); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mega menú de funciones */
.header-mega {
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .28s var(--b-ease), transform .28s var(--b-ease), visibility .28s;
}
.site-header.nav-open .header-mega { pointer-events: auto; opacity: 1; visibility: visible; transform: none; }
.header-mega-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 18px;
    padding: 20px;
    border-radius: var(--b-radius-lg);
    background: var(--b-surface);
    border: 1px solid var(--b-line);
    box-shadow: var(--b-shadow-2);
}
.header-mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.header-mega-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    color: var(--b-ink);
    transition: background-color .2s var(--b-ease), border-color .2s var(--b-ease), transform .2s var(--b-ease);
}
.header-mega-item:hover { background: var(--b-surface-2); border-color: var(--b-line); transform: translateY(-2px); color: var(--b-ink); }
.header-mega-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--b-brand-soft); color: var(--b-brand); }
.header-mega-item:nth-child(3n+1) .header-mega-icon { background: rgba(108, 75, 244, .14); color: #6C4BF4; }
.header-mega-item:nth-child(3n) .header-mega-icon { background: var(--b-accent-soft); color: #A16207; }
.header-mega-icon svg { width: 19px; height: 19px; }
.header-mega-copy { flex: 1; min-width: 0; }
.header-mega-copy b { display: block; font-size: 14px; }
.header-mega-copy small { display: block; color: var(--b-muted); font-size: 12.5px; line-height: 1.45; }
.header-mega-arrow { width: 16px; height: 16px; color: var(--b-muted); opacity: 0; transform: translateX(-4px); transition: opacity .2s var(--b-ease), transform .2s var(--b-ease); flex: none; }
.header-mega-item:hover .header-mega-arrow { opacity: 1; transform: none; }
.header-mega-aside {
    border-radius: 18px;
    padding: 24px 22px;
    background: linear-gradient(160deg, #0B1526, #1B2A44);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.header-mega-aside-kicker { font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--b-accent); }
.header-mega-aside b { font-size: 19px; margin: 10px 0 8px; }
.header-mega-aside p { color: rgba(255, 255, 255, .72); font-size: 13.5px; margin-bottom: 18px; }
.header-mega-aside .btn-primary { background: var(--b-accent); color: #0B1526; box-shadow: 0 10px 24px rgba(255, 196, 0, .3); }
.header-mega-aside .btn-primary:hover { background: var(--b-accent-2); color: #0B1526; }

/* Buscador */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    padding: 96px 24px 40px;
    background: rgba(8, 13, 24, .62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--b-ease), visibility .25s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
body.has-overlay { overflow: hidden; }
.search-overlay-inner { width: 100%; max-width: 640px; margin: 0 auto; }
.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px 6px 18px;
    border-radius: var(--b-radius-pill);
    background: var(--b-surface);
    border: 1px solid var(--b-line);
    box-shadow: var(--b-shadow-2);
    transform: translateY(-10px);
    transition: transform .3s var(--b-ease);
}
.search-overlay.is-open .search-bar { transform: none; }
.search-bar svg { width: 20px; height: 20px; color: var(--b-muted); flex: none; }
.search-input { flex: 1; min-width: 0; height: 44px; border: 0; outline: 0; background: transparent; font: inherit; font-size: 16px; color: var(--b-ink); }
.search-close { border: 1px solid var(--b-line); background: var(--b-surface-2); color: var(--b-muted); border-radius: 9px; padding: 6px 10px; font: inherit; font-size: 12px; font-weight: 650; cursor: pointer; }
.search-results { margin-top: 18px; }
.search-results-label { display: block; color: rgba(255, 255, 255, .6); font-size: 11.5px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.search-chips { display: grid; gap: 8px; }
.search-chip {
    display: block;
    padding: 13px 16px;
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: background-color .2s var(--b-ease), border-color .2s var(--b-ease), transform .2s var(--b-ease);
}
.search-chip:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); transform: translateX(4px); color: #fff; }
.search-chip b { display: block; font-size: 14px; }
.search-chip small { color: rgba(255, 255, 255, .6); font-size: 12.5px; }
.search-chip.is-hidden { display: none; }
.search-empty { color: rgba(255, 255, 255, .6); font-size: 13.5px; text-align: center; margin-top: 14px; }

/* Isla flotante sobre el hero oscuro de la landing */
body.has-dark-hero .site-header { margin-bottom: -112px; }
body.has-dark-hero main { padding-top: 0; }
body.has-dark-hero .site-header:not(.is-scrolled) .header-inner { background: rgba(10, 16, 30, .62); border-color: rgba(255, 255, 255, .12); }
body.has-dark-hero .site-header:not(.is-scrolled) .site-topbar-nav a,
body.has-dark-hero .site-header:not(.is-scrolled) .header-nav-link,
body.has-dark-hero .site-header:not(.is-scrolled) .header-actions a.nav-link,
body.has-dark-hero .site-header:not(.is-scrolled) .link-button { color: rgba(255, 255, 255, .8); }
body.has-dark-hero .site-header:not(.is-scrolled) .site-topbar-nav a:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .header-nav-link:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .header-actions a.nav-link:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .link-button:hover { color: #fff; }
body.has-dark-hero .site-header:not(.is-scrolled) .header-nav-link:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .header-nav-link.is-active { background: rgba(255, 255, 255, .08); }
body.has-dark-hero .site-header:not(.is-scrolled) .nav-menu-toggle,
body.has-dark-hero .site-header:not(.is-scrolled) .header-icon-btn,
body.has-dark-hero .site-header:not(.is-scrolled) .theme-toggle {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
}
body.has-dark-hero .site-header:not(.is-scrolled) .nav-menu-toggle:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .header-icon-btn:hover,
body.has-dark-hero .site-header:not(.is-scrolled) .theme-toggle:hover { background: rgba(255, 255, 255, .16); }

main { padding: 48px 0 72px; }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--b-radius-sm);
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 650;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s var(--b-ease), background-color .18s var(--b-ease), border-color .18s var(--b-ease), color .18s var(--b-ease), box-shadow .18s var(--b-ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--b-brand); color: #fff; box-shadow: 0 10px 24px rgba(226, 58, 46, .28); }
.btn-primary:hover { background: var(--b-brand-2); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(226, 58, 46, .34); }

.btn-ghost { background: var(--b-surface); border-color: var(--b-line); color: var(--b-ink); }
.btn-ghost:hover { border-color: var(--b-line-2); color: var(--b-ink); transform: translateY(-1px); }

.btn-danger { background: transparent; border-color: rgba(220, 38, 38, .35); color: var(--b-danger); }
.btn-danger:hover { background: var(--b-danger-soft); color: var(--b-danger); }

.btn-sm { min-height: 38px; padding: 0 15px; font-size: 13px; border-radius: 9px; }
.btn-block { width: 100%; }

.link-button {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: var(--b-muted);
    font-weight: 550;
    cursor: pointer;
    transition: color .18s var(--b-ease);
}
.link-button:hover { color: var(--b-ink); }

/* ---------- Cards, grids and headings ---------- */

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; margin-top: 40px; }
.grid-tight { margin-top: 0; }

.card {
    background: var(--b-surface);
    border: 1px solid var(--b-line);
    border-radius: var(--b-radius);
    padding: 24px;
    box-shadow: var(--b-shadow-1);
    transition: transform .25s var(--b-ease), box-shadow .25s var(--b-ease), border-color .25s var(--b-ease), background-color .35s var(--b-ease);
}
.card + .card { margin-top: 18px; }
.grid .card + .card { margin-top: 0; }
.card p { color: var(--b-muted); font-size: 14px; margin: 0; }
.card-link { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 650; }

.section-title { font-size: 12.5px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--b-muted); margin: 0 0 14px; }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--b-brand);
    margin-bottom: 14px;
}

.lead { font-size: 17px; color: var(--b-muted); margin: 0 0 26px; }

.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.page-head h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px; }

/* ---------- Badges, chips, pills ---------- */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: var(--b-radius-pill);
    background: var(--b-ok-soft);
    color: var(--b-ok);
}
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-neutral { background: var(--b-surface-2); color: var(--b-muted); }
.badge-warning { background: var(--b-warn-soft); color: var(--b-warn); }

.chip {
    display: inline-block;
    font-size: 12px;
    font-weight: 650;
    padding: 4px 10px;
    border-radius: 7px;
    background: var(--b-surface-2);
    color: var(--b-ink-2);
    margin: 0 6px 6px 0;
}

/* ---------- Meta lists ---------- */

.meta-list { list-style: none; margin: 0; padding: 0; }
.meta-list li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--b-line); font-size: 14px; }
.meta-list li:last-child { border-bottom: 0; }
.meta-list .label { color: var(--b-muted); }
.meta-list .value { font-weight: 650; color: var(--b-ink); text-align: right; }

/* ---------- Forms ---------- */

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 650; margin-bottom: 7px; color: var(--b-ink-2); }
.field input[type="email"],
.field input[type="password"],
.field input[type="text"],
.field input[type="search"],
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid var(--b-line);
    border-radius: var(--b-radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--b-ink);
    background: var(--b-surface);
    outline: none;
    transition: border-color .18s var(--b-ease), box-shadow .18s var(--b-ease), background-color .35s var(--b-ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--b-brand);
    box-shadow: 0 0 0 4px var(--b-brand-soft);
}
.field-hint { font-size: 12.5px; color: var(--b-muted); margin-top: 6px; }
.field-error { color: var(--b-danger); font-size: 13px; margin-top: 6px; }

.checkbox { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--b-ink-2); margin-bottom: 12px; }
.checkbox input { width: 16px; height: 16px; accent-color: var(--b-brand); }

/* ---------- Alerts ---------- */

.alert { border-radius: var(--b-radius-sm); padding: 13px 15px; font-size: 14px; margin-bottom: 20px; border: 1px solid transparent; }
.alert-error { background: var(--b-danger-soft); border-color: rgba(220, 38, 38, .25); color: var(--b-danger); }
.alert-success { background: var(--b-ok-soft); border-color: rgba(14, 159, 110, .28); color: var(--b-ok); }

/* ---------- Tables ---------- */

.table-responsive { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
    text-align: left;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--b-muted);
    padding: 11px 12px;
    border-bottom: 1px solid var(--b-line);
    white-space: nowrap;
}
.table td { padding: 13px 12px; border-bottom: 1px solid var(--b-line); vertical-align: middle; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr { transition: background-color .16s var(--b-ease); }
.table tbody tr:hover { background: var(--b-surface-2); }
.table form { display: inline; }
.table select {
    min-height: 38px;
    padding: 6px 10px;
    border: 1px solid var(--b-line);
    border-radius: 9px;
    font-size: 13px;
    background: var(--b-surface);
    color: var(--b-ink);
}

.card-footer { padding-top: 16px; border-top: 1px solid var(--b-line); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ---------- Auth screens ---------- */

.auth-wrap { display: flex; justify-content: center; padding-top: 12px; }
.auth-card { width: 100%; max-width: 440px; }
.auth-card h1 { font-size: 25px; }
.auth-alt { margin-top: 20px; font-size: 14px; color: var(--b-muted); text-align: center; }

/* ---------- Auth screen (login con Buyesia ID) ---------- */

body.auth-screen {
    min-height: 100vh;
    background:
        radial-gradient(48% 42% at 12% 18%, rgba(226, 58, 46, .42), transparent 62%),
        radial-gradient(42% 40% at 88% 12%, rgba(255, 196, 0, .26), transparent 60%),
        radial-gradient(52% 48% at 78% 96%, rgba(108, 75, 244, .38), transparent 64%),
        linear-gradient(160deg, #080D18 0%, #0B1526 45%, #060A13 100%);
    background-attachment: fixed;
}
body.auth-screen .site-header,
body.auth-screen .site-footer { display: none; }
body.auth-screen main { padding: 0; }
body.auth-screen .container { max-width: 100%; padding: 0; }
body.auth-screen .container > .alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    width: min(440px, calc(100% - 40px));
    margin: 0;
}
body.auth-screen .alert { box-shadow: var(--b-shadow-2); }

.auth-shell {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 48px 24px;
}
.auth-split {
    width: 100%;
    max-width: 940px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
    background: var(--b-surface);
    border: 1px solid var(--b-line);
    border-radius: var(--b-radius-lg);
    box-shadow: var(--b-shadow-2);
    overflow: hidden;
}
.auth-form-panel { padding: 46px 44px; }
.auth-brand { display: inline-flex; margin-bottom: 26px; }
.auth-brand img { height: 36px; width: auto; }
.auth-title { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.auth-lead { color: var(--b-muted); font-size: 14.5px; margin-bottom: 24px; }
.auth-form .field { margin-bottom: 16px; }

.auth-password { position: relative; }
.auth-password input { padding-right: 46px; }
.auth-eye {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--b-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: color .18s var(--b-ease), background-color .18s var(--b-ease);
}
.auth-eye:hover { color: var(--b-ink); background: var(--b-surface-2); }
.auth-eye svg { width: 18px; height: 18px; }
.auth-eye .icon-eye-off { display: none; }
.auth-eye.is-revealed .icon-eye { display: none; }
.auth-eye.is-revealed .icon-eye-off { display: block; }

.auth-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 4px 0 18px; }
.auth-row .checkbox { margin-bottom: 0; }
.auth-link { font-size: 13.5px; font-weight: 600; }
.auth-register { margin: 20px 0 0; font-size: 14px; color: var(--b-muted); text-align: center; }
.auth-back { margin: 0; font-size: 13.5px; }
.auth-back a { color: rgba(255, 255, 255, .72); }
.auth-back a:hover { color: #fff; }

.auth-qr-panel {
    position: relative;
    padding: 46px 40px;
    background: var(--b-surface-2);
    border-left: 1px solid var(--b-line);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.auth-qr-kicker { font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--b-brand); margin-bottom: 10px; }
.auth-qr-title { font-size: 21px; font-weight: 780; margin-bottom: 8px; }
.auth-qr-text { color: var(--b-muted); font-size: 13.5px; max-width: 300px; margin: 0 auto 22px; }

.auth-qr-frame {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--b-line);
    display: grid;
    place-items: center;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(11, 21, 38, .12);
}
.auth-qr-frame img { width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity .3s var(--b-ease); }
.auth-qr-frame.is-ready img { opacity: 1; }
.auth-qr-spinner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid var(--b-line);
    border-top-color: var(--b-brand);
    animation: b-spin .9s linear infinite;
}

.auth-qr-status { margin: 18px 0 0; font-size: 13.5px; font-weight: 650; color: var(--b-ink-2); }
.auth-qr-timer { margin: 6px 0 0; font-size: 12.5px; color: var(--b-muted); }
.auth-qr-timer b { color: var(--b-brand); font-variant-numeric: tabular-nums; }
.auth-qr-refresh { margin-top: 14px; }

.auth-qr-apps { margin-top: auto; padding-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--b-muted); }
.auth-qr-apps span { width: 100%; margin-bottom: 2px; }
.auth-qr-apps a { display: inline-flex; align-items: center; gap: 7px; font-weight: 650; color: var(--b-ink-2); }
.auth-qr-apps a:hover { color: var(--b-brand); }
.auth-qr-apps svg { width: 16px; height: 16px; }

/* ---------- Special blocks ---------- */

.secret-box { background: #0B1526; color: #E2E8F0; border-radius: var(--b-radius-sm); padding: 13px 15px; margin-top: 8px; border: 1px solid rgba(255, 255, 255, .08); }
html[data-theme="dark"] .secret-box { background: #060B14; }

.kyb-lock { background: var(--b-warn-soft); border: 1px solid rgba(180, 83, 9, .25); color: var(--b-warn); border-radius: var(--b-radius-sm); padding: 14px 16px; font-size: 14px; }

.hero { max-width: 720px; }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--b-line); padding: 30px 0 44px; color: var(--b-muted); font-size: 13.5px; background: var(--b-canvas); }
.footer-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--b-muted); }
.footer-links a:hover { color: var(--b-ink); }

/* ==========================================================================
   Motion
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--b-ease), transform .8s var(--b-ease); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes b-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes b-float-soft {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-9px) rotate(1.2deg); }
}
@keyframes b-mesh {
    0% { transform: translate3d(-3%, -2%, 0) scale(1); }
    100% { transform: translate3d(3%, 2%, 0) scale(1.12); }
}
@keyframes b-beam {
    0% { transform: translate3d(-6%, 0, 0) rotate(-14deg); opacity: .7; }
    100% { transform: translate3d(6%, -4%, 0) rotate(-9deg); opacity: 1; }
}
@keyframes b-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes b-shimmer {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}
@keyframes b-bar {
    0%, 100% { transform: scaleY(.55); }
    50% { transform: scaleY(1); }
}
@keyframes b-dash {
    to { stroke-dashoffset: 0; }
}
@keyframes b-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Landing
   ========================================================================== */

.lp { position: relative; }

.lp-stage {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #080D18;
    color: #fff;
    overflow: hidden;
    padding: 172px 0 0;
    isolation: isolate;
}
.lp-stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, rgba(8, 13, 24, .9));
    pointer-events: none;
    z-index: 1;
}
.lp-mesh {
    position: absolute;
    inset: -35%;
    z-index: 0;
    background:
        radial-gradient(38% 38% at 18% 22%, rgba(226, 58, 46, .38), transparent 62%),
        radial-gradient(34% 34% at 82% 14%, rgba(255, 196, 0, .30), transparent 60%),
        radial-gradient(44% 44% at 62% 92%, rgba(108, 75, 244, .34), transparent 66%);
    filter: blur(56px);
    animation: b-mesh 24s ease-in-out infinite alternate;
}
.lp-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(circle at 50% 26%, #000 0%, transparent 74%);
    mask-image: radial-gradient(circle at 50% 26%, #000 0%, transparent 74%);
}
.lp-beam {
    position: absolute;
    z-index: 0;
    width: 150%;
    height: 320px;
    left: -25%;
    top: 34%;
    background: linear-gradient(90deg, transparent, rgba(226, 58, 46, .22), rgba(255, 196, 0, .20), transparent);
    filter: blur(44px);
    animation: b-beam 18s ease-in-out infinite alternate;
}
.lp-stage-inner { position: relative; z-index: 2; }

.lp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 54px; align-items: center; }

.lp-title { font-size: clamp(40px, 5.6vw, 68px); font-weight: 850; letter-spacing: -.038em; line-height: 1.03; margin: 8px 0 22px; color: #fff; }
.lp-title .grad {
    background: linear-gradient(100deg, #FFC400 0%, #FF8A3D 35%, #E23A2E 68%, #FFC400 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: b-shimmer 7s linear infinite;
}
.lp-stage .eyebrow { color: #FF8A6E; }
.lp-sub { font-size: 18px; color: rgba(255, 255, 255, .74); max-width: 560px; margin-bottom: 32px; }
.lp-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.lp-stage .btn-ghost { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .22); color: #fff; }
.lp-stage .btn-ghost:hover { background: rgba(255, 255, 255, .15); color: #fff; border-color: rgba(255, 255, 255, .34); }
.lp-stage .btn-primary { background: #E23A2E; box-shadow: 0 14px 34px rgba(226, 58, 46, .38); }
.lp-stage .btn-primary:hover { background: #F04A3C; }

.lp-micro { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255, 255, 255, .7); }
.lp-micro span { display: inline-flex; align-items: center; gap: 7px; }
.lp-micro svg { width: 15px; height: 15px; color: #34D399; flex: none; }

/* Product mockup */

.lp-visual { position: relative; min-height: 430px; }
.lp-mock-wrap { position: relative; will-change: transform; transition: transform .35s var(--b-ease); }
.lp-mock {
    position: relative;
    background: rgba(14, 22, 38, .92);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--b-radius-lg);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .55);
    padding: 18px;
    backdrop-filter: blur(6px);
    transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
    transition: transform .6s var(--b-ease);
}
.lp-visual:hover .lp-mock { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-4px); }

.lp-mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lp-mock-dots { display: flex; gap: 6px; }
.lp-mock-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.lp-mock-dots i:first-child { background: #E23A2E; }
.lp-mock-dots i:nth-child(2) { background: #FFC400; }
.lp-mock-title { font-size: 11.5px; font-weight: 700; color: rgba(255, 255, 255, .55); letter-spacing: .08em; text-transform: uppercase; }

.lp-mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-panel { background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .09); border-radius: 14px; padding: 14px; }
.lp-panel-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255, 255, 255, .5); margin-bottom: 10px; }
.lp-skel { height: 10px; border-radius: 6px; background: linear-gradient(90deg, rgba(255, 255, 255, .09) 25%, rgba(255, 255, 255, .18) 50%, rgba(255, 255, 255, .09) 75%); background-size: 200% 100%; animation: b-shimmer 1.8s linear infinite; }
.lp-skel + .lp-skel { margin-top: 9px; }
.lp-skel.w-70 { width: 70%; }
.lp-skel.w-45 { width: 45%; }
.lp-skel.w-90 { width: 90%; }

.lp-bars { display: flex; align-items: flex-end; gap: 7px; height: 74px; margin-top: 6px; }
.lp-bars i { flex: 1; border-radius: 5px 5px 3px 3px; background: linear-gradient(180deg, #E23A2E, #FFC400); transform-origin: bottom; animation: b-bar 2.6s ease-in-out infinite; }
.lp-bars i:nth-child(2n) { animation-delay: .35s; }
.lp-bars i:nth-child(3n) { animation-delay: .7s; }
.lp-bars i:nth-child(4n) { animation-delay: 1.05s; }

.lp-spark { margin-top: 4px; }
.lp-spark path { stroke-dasharray: 320; stroke-dashoffset: 320; animation: b-dash 2.4s var(--b-ease) forwards .4s; }
.lp-spark path.brand { stroke: #FF6A4D; }
.lp-spark path.ghost { stroke: rgba(255, 255, 255, .18); }

.lp-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; }
.lp-row + .lp-row { border-top: 1px dashed rgba(255, 255, 255, .09); }
.lp-media-card .lp-row + .lp-row { border-top-color: var(--b-line); }
.lp-row-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #E23A2E, #FFC400); flex: none; }
.lp-row-avatar.v2 { background: linear-gradient(135deg, #6C4BF4, #38BDF8); }
.lp-row-avatar.v3 { background: linear-gradient(135deg, #0E9F6E, #34D399); }

.lp-float {
    position: absolute;
    background: rgba(15, 23, 38, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
    padding: 12px 14px;
    font-size: 12.5px;
    font-weight: 650;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    animation: b-float 6s ease-in-out infinite;
    backdrop-filter: blur(6px);
}
.lp-float small { display: block; font-weight: 550; color: rgba(255, 255, 255, .58); font-size: 11px; }
.lp-float-1 { top: -18px; left: -26px; animation-delay: .2s; }
.lp-float-2 { bottom: 64px; right: -30px; animation: b-float-soft 7s ease-in-out infinite; }
.lp-float-3 { bottom: -16px; left: 26px; animation-delay: 1.1s; }
.lp-float-icon { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.lp-float-icon.ok { background: rgba(52, 211, 153, .16); color: #34D399; }
.lp-float-icon.brand { background: rgba(226, 58, 46, .18); color: #FF7A6E; }
.lp-float-icon.accent { background: rgba(255, 196, 0, .16); color: #FFC400; }
.lp-float-icon svg { width: 16px; height: 16px; }

/* Value cards row (Sberbank style) */

.lp-value-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 64px;
    transform: translateY(46px);
}
.lp-value {
    background: rgba(13, 20, 34, .88);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 20px 18px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: transform .28s var(--b-ease), border-color .28s var(--b-ease), background-color .28s var(--b-ease);
}
.lp-value:hover { transform: translateY(-7px); border-color: rgba(255, 196, 0, .45); background: rgba(17, 26, 43, .95); }
.lp-value-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 14px; background: rgba(255, 255, 255, .07); color: #FFC400; }
.lp-value:nth-child(2n) .lp-value-icon { color: #FF7A6E; }
.lp-value:nth-child(3n) .lp-value-icon { color: #7C93FF; }
.lp-value-icon svg { width: 18px; height: 18px; }
.lp-value b { display: block; font-size: 14.5px; font-weight: 750; margin-bottom: 5px; letter-spacing: -.01em; }
.lp-value span { font-size: 12.5px; color: rgba(255, 255, 255, .6); line-height: 1.5; }

/* Network marquee */

.lp-marquee {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 88px auto 0;
    padding: 15px 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    background: rgba(13, 20, 34, .6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}
.lp-marquee:hover .lp-marquee-track { animation-play-state: paused; }
.lp-marquee::before, .lp-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.lp-marquee::before { left: 0; background: linear-gradient(90deg, rgba(11, 18, 32, .96) 25%, transparent); }
.lp-marquee::after { right: 0; background: linear-gradient(270deg, rgba(11, 18, 32, .96) 25%, transparent); }
.lp-marquee-track { display: flex; align-items: center; gap: 46px; width: max-content; animation: b-marquee 30s linear infinite; }
.lp-network { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 750; color: rgba(255, 255, 255, .8); letter-spacing: .07em; white-space: nowrap; }
.lp-network img { width: 24px; height: 24px; object-fit: contain; flex: none; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35)); }

/* Sections */

.lp-sections { padding-top: 120px; }
.lp-section { padding: 76px 0 0; position: relative; scroll-margin-top: 120px; }
.lp-section-head { max-width: 660px; margin-bottom: 42px; }
.lp-kicker { font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--b-brand); margin-bottom: 12px; }
.lp-h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 820; letter-spacing: -.03em; margin-bottom: 14px; }
.lp-section-head p { color: var(--b-muted); font-size: 16.5px; }

.lp-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.lp-feature {
    position: relative;
    background: var(--b-surface);
    border: 1px solid var(--b-line);
    border-radius: var(--b-radius-lg);
    padding: 30px 26px;
    box-shadow: var(--b-shadow-1);
    overflow: hidden;
    transition: transform .3s var(--b-ease), box-shadow .3s var(--b-ease), border-color .3s var(--b-ease);
}
.lp-feature::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--b-brand), var(--b-accent));
    opacity: 0;
    transition: opacity .3s var(--b-ease);
}
.lp-feature:hover { transform: translateY(-7px); box-shadow: var(--b-shadow-2); border-color: var(--b-line-2); }
.lp-feature:hover::after { opacity: 1; }
.lp-feature h3 { font-size: 17px; margin-bottom: 8px; }
.lp-feature p { color: var(--b-muted); font-size: 14px; margin: 0; }
.lp-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: var(--b-brand-soft);
    color: var(--b-brand);
}
.lp-icon.accent { background: var(--b-accent-soft); color: #A16207; }
.lp-icon.violet { background: rgba(108, 75, 244, .14); color: #6C4BF4; }
.lp-icon.ok { background: var(--b-ok-soft); color: var(--b-ok); }
.lp-icon svg { width: 22px; height: 22px; }

/* Stats */

.lp-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.lp-stat { background: var(--b-surface); border: 1px solid var(--b-line); border-radius: var(--b-radius-lg); padding: 28px 22px; text-align: center; box-shadow: var(--b-shadow-1); transition: transform .3s var(--b-ease), border-color .3s var(--b-ease); }
.lp-stat:hover { transform: translateY(-5px); border-color: var(--b-line-2); }
.lp-stat b { display: block; font-size: clamp(32px, 4vw, 46px); font-weight: 850; letter-spacing: -.03em; background: linear-gradient(120deg, var(--b-brand), var(--b-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-stat span { color: var(--b-muted); font-size: 13.5px; font-weight: 600; }

/* Steps */

.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; counter-reset: step; }
.lp-step { position: relative; background: var(--b-surface); border: 1px solid var(--b-line); border-radius: var(--b-radius-lg); padding: 32px 26px 26px; box-shadow: var(--b-shadow-1); transition: transform .3s var(--b-ease), border-color .3s var(--b-ease); }
.lp-step:hover { transform: translateY(-6px); border-color: var(--b-line-2); }
.lp-step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: -18px;
    left: 26px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    color: #0B1526;
    background: var(--b-accent);
    border-radius: var(--b-radius-pill);
    padding: 6px 13px;
    box-shadow: 0 8px 18px rgba(255, 196, 0, .35);
}
.lp-step h3 { font-size: 17px; margin: 6px 0 8px; }
.lp-step p { color: var(--b-muted); font-size: 14px; margin: 0; }

/* Split */

.lp-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.lp-split.reverse .lp-split-media { order: -1; }
.lp-list { list-style: none; margin: 0; padding: 0; }
.lp-list li { display: flex; gap: 12px; padding: 12px 0; font-size: 15px; color: var(--b-ink-2); }
.lp-list svg { width: 19px; height: 19px; color: var(--b-ok); flex: none; margin-top: 3px; }
.lp-list b { color: var(--b-ink); }

.lp-media-card {
    background: var(--b-surface);
    border: 1px solid var(--b-line);
    border-radius: var(--b-radius-lg);
    box-shadow: var(--b-shadow-2);
    padding: 20px;
}
.lp-media-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.lp-media-head span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--b-muted); }

/* Console (webhook payload) */

.lp-console {
    background: #0A0F1C;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--b-radius-lg);
    overflow: hidden;
    box-shadow: var(--b-shadow-2);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.lp-console-head { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .03); }
.lp-console-dots { display: flex; gap: 6px; flex: none; }
.lp-console-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.lp-console-dots i:first-child { background: #E23A2E; }
.lp-console-dots i:nth-child(2) { background: #FFC400; }
.lp-console-url { flex: 1; min-width: 0; font-size: 11.5px; color: rgba(255, 255, 255, .58); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-console-body { margin: 0; padding: 16px 18px; font-size: 12.5px; line-height: 1.8; color: #C7D2E4; white-space: pre; overflow-x: auto; }
.lp-console-body .tok-key { color: #7DD3FC; }
.lp-console-body .tok-str { color: #FCD34D; }
.lp-console-body .tok-num { color: #FCA5A5; }
.lp-console-body .tok-ok { color: #34D399; }
.lp-console-body .tok-muted { color: #64748B; }
.lp-console-foot { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 11.5px; color: rgba(255, 255, 255, .45); }
.lp-console-foot svg { width: 14px; height: 14px; color: #34D399; flex: none; }

/* Team members */

.lp-members { display: grid; gap: 10px; }
.lp-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--b-surface-2);
    border: 1px solid var(--b-line);
    transition: transform .22s var(--b-ease), border-color .22s var(--b-ease);
}
.lp-member:hover { transform: translateX(5px); border-color: var(--b-line-2); }
.lp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(135deg, #E23A2E, #FFC400);
    flex: none;
}
.lp-avatar.v2 { background: linear-gradient(135deg, #6C4BF4, #38BDF8); }
.lp-avatar.v3 { background: linear-gradient(135deg, #0E9F6E, #34D399); }
.lp-avatar.v4 { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.lp-member-info { flex: 1; min-width: 0; }
.lp-member-info b { display: block; font-size: 13.5px; }
.lp-member-info span { font-size: 12px; color: var(--b-muted); }
.lp-member-flag { font-size: 10.5px; font-weight: 750; padding: 3px 9px; border-radius: var(--b-radius-pill); background: var(--b-ok-soft); color: var(--b-ok); flex: none; }

/* CTA band */

.lp-band {
    margin-top: 96px;
    border-radius: var(--b-radius-lg);
    padding: 58px 48px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .16), transparent 55%),
        linear-gradient(120deg, #0B1526 0%, #1B2A44 55%, #0B1526 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.lp-band::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, .35), transparent 65%);
    animation: b-float 10s ease-in-out infinite;
}
.lp-band h2 { font-size: clamp(24px, 3vw, 34px); color: #fff; margin-bottom: 8px; letter-spacing: -.02em; }
.lp-band p { color: rgba(255, 255, 255, .72); margin: 0; max-width: 520px; }
.lp-band .btn-primary { background: var(--b-accent); color: #0B1526; box-shadow: 0 12px 28px rgba(255, 196, 0, .3); }
.lp-band .btn-primary:hover { background: var(--b-accent-2); color: #0B1526; }
.lp-band .btn-ghost { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .22); color: #fff; }
.lp-band .btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.lp-band-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

.lp + .site-footer { margin-top: 96px; }

/* ---------- Pagination (Bootstrap 5 view inside portal) ---------- */

.pagination { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 9px;
    border: 1px solid var(--b-line);
    background: var(--b-surface);
    color: var(--b-ink-2);
    font-size: 13px;
    font-weight: 600;
}
.pagination .page-item.active .page-link { background: var(--b-brand); border-color: var(--b-brand); color: #fff; }
.pagination .page-item.disabled .page-link { opacity: .45; pointer-events: none; }

/* ==========================================================================
   Developer documentation
   ========================================================================== */

body.docs-screen .container { max-width: 1280px; }
body.docs-screen main { padding: 28px 0 76px; }

.docs-shell { display: flex; flex-direction: column; gap: 28px; }

.docs-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--b-radius-lg);
    padding: 40px;
    background: linear-gradient(150deg, #0B1526, #16233B 55%, #0B1526);
    color: #fff;
}
.docs-hero::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -130px;
    top: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 0, .32), transparent 65%);
}
.docs-hero .docs-kicker { color: var(--b-accent); }
.docs-hero h1 { font-size: clamp(28px, 3.6vw, 40px); color: #fff; margin: 8px 0 12px; letter-spacing: -.02em; }
.docs-lead { color: rgba(255, 255, 255, .74); font-size: 16px; max-width: 720px; margin: 0; }
.docs-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 24px; position: relative; z-index: 1; }
.docs-meta-item { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: rgba(255, 255, 255, .6); }
.docs-meta-item b { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.docs-meta-item code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12.5px; color: #fff; }
.docs-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; position: relative; z-index: 1; }
.docs-chip { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; padding: 4px 11px; border-radius: var(--b-radius-pill); background: rgba(255, 255, 255, .1); color: #fff; }
.docs-chip.is-network { background: rgba(255, 196, 0, .16); color: var(--b-accent); }

.docs-layout { display: grid; grid-template-columns: 264px minmax(0, 1fr); gap: 36px; align-items: start; }

.docs-sidebar {
    position: sticky;
    top: 124px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-height: calc(100vh - 150px);
    overflow: auto;
    padding-right: 4px;
}
.docs-nav-group.is-hidden { display: none; }
.docs-nav-heading { font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--b-muted); margin-bottom: 10px; }
.docs-nav { display: flex; flex-direction: column; gap: 2px; }
.docs-nav-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 10px; color: var(--b-ink-2); font-size: 13.5px; font-weight: 550; transition: background-color .18s var(--b-ease), color .18s var(--b-ease); }
.docs-nav-link:hover { background: var(--b-surface-2); color: var(--b-ink); }
.docs-nav-link.is-active { background: var(--b-brand-soft); color: var(--b-brand); font-weight: 700; }
.docs-nav-link.is-hidden { display: none; }
.docs-nav-link .docs-method { padding: 3px 7px; font-size: 9.5px; }
.docs-sidebar-foot { margin-top: auto; }
.docs-sidebar-cta { display: block; text-align: center; padding: 12px; border-radius: 12px; background: var(--b-brand); color: #fff; font-weight: 650; font-size: 13.5px; }
.docs-sidebar-cta:hover { background: var(--b-brand-2); color: #fff; }

.docs-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.docs-crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--b-muted); }
.docs-crumbs a { color: var(--b-muted); }
.docs-crumbs a:hover { color: var(--b-ink); }
.docs-search { display: flex; align-items: center; gap: 10px; min-width: 270px; height: 42px; padding: 0 14px; border-radius: var(--b-radius-pill); border: 1px solid var(--b-line); background: var(--b-surface); }
.docs-search svg { width: 17px; height: 17px; color: var(--b-muted); flex: none; }
.docs-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font: inherit; font-size: 14px; color: var(--b-ink); }

.docs-main { min-width: 0; }
.docs-section { padding: 6px 0 48px; scroll-margin-top: 126px; }
.docs-section + .docs-section { border-top: 1px solid var(--b-line); padding-top: 48px; }
.docs-kicker { display: inline-block; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--b-brand); margin-bottom: 10px; }
.docs-section-head h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 12px; }
.docs-section-head p { color: var(--b-muted); font-size: 15px; max-width: 720px; }
.docs-muted { color: var(--b-muted); font-size: 14px; }

.docs-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 22px 0; }
.docs-card { position: relative; background: var(--b-surface); border: 1px solid var(--b-line); border-radius: 16px; padding: 22px; box-shadow: var(--b-shadow-1); }
.docs-card h3 { font-size: 15.5px; margin-bottom: 8px; }
.docs-card p { color: var(--b-muted); font-size: 13.5px; margin-bottom: 12px; }
.docs-card code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; color: var(--b-ink-2); }
.docs-card-step { position: absolute; top: -12px; left: 22px; width: 26px; height: 26px; border-radius: 50%; background: var(--b-accent); color: #0B1526; display: grid; place-items: center; font-size: 12px; font-weight: 800; box-shadow: 0 8px 18px rgba(255, 196, 0, .35); }

.docs-steps { list-style: none; margin: 20px 0; padding: 0; counter-reset: docs-step; display: grid; gap: 12px; }
.docs-steps li { position: relative; padding: 14px 18px 14px 54px; background: var(--b-surface); border: 1px solid var(--b-line); border-radius: 14px; }
.docs-steps li::before { counter-increment: docs-step; content: counter(docs-step); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; background: var(--b-brand-soft); color: var(--b-brand); display: grid; place-items: center; font-size: 12.5px; font-weight: 800; }
.docs-steps b { display: block; font-size: 14px; }
.docs-steps span { color: var(--b-muted); font-size: 13.5px; }

.docs-note { display: flex; flex-direction: column; gap: 3px; border-radius: 14px; padding: 14px 16px; margin-top: 16px; font-size: 13.5px; border: 1px solid transparent; }
.docs-note b { font-size: 13px; }
.docs-note.is-info { background: rgba(108, 75, 244, .08); border-color: rgba(108, 75, 244, .22); color: #4C31C4; }

.docs-endpoint-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 26px; margin-top: 22px; align-items: start; }
.docs-endpoint-info { min-width: 0; }
.docs-endpoint-code { min-width: 0; position: sticky; top: 124px; }

.docs-endpoint-bar { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--b-surface-2); border: 1px solid var(--b-line); margin-bottom: 16px; }
.docs-endpoint-bar code { flex: 1; min-width: 0; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12.5px; color: var(--b-ink-2); overflow-x: auto; white-space: nowrap; }

.docs-method { display: inline-flex; align-items: center; justify-content: center; flex: none; font-size: 10.5px; font-weight: 800; letter-spacing: .05em; padding: 4px 9px; border-radius: 7px; }
.docs-method.is-post { background: rgba(14, 159, 110, .14); color: #0E9F6E; }
.docs-method.is-get { background: rgba(59, 130, 246, .14); color: #2563EB; }

.docs-copy { flex: none; border: 1px solid var(--b-line); background: var(--b-surface); color: var(--b-ink-2); border-radius: 8px; padding: 6px 11px; font: inherit; font-size: 12px; font-weight: 650; cursor: pointer; transition: border-color .18s var(--b-ease), color .18s var(--b-ease), background-color .18s var(--b-ease); }
.docs-copy:hover { border-color: var(--b-line-2); color: var(--b-ink); }
.docs-copy.is-copied { background: var(--b-ok-soft); border-color: transparent; color: var(--b-ok); }
.docs-copy-sm { padding: 5px 9px; font-size: 11px; }

.docs-table { overflow-x: auto; border: 1px solid var(--b-line); border-radius: 14px; background: var(--b-surface); margin: 16px 0; }
.docs-table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.docs-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--b-muted); padding: 11px 14px; border-bottom: 1px solid var(--b-line); white-space: nowrap; }
.docs-table td { padding: 12px 14px; border-bottom: 1px solid var(--b-line); vertical-align: top; }
.docs-table tr:last-child td { border-bottom: 0; }
.docs-table code { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12.5px; color: var(--b-ink); }

.docs-flag { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: var(--b-radius-pill); }
.docs-flag.is-required { background: var(--b-brand-soft); color: var(--b-brand); }
.docs-flag.is-optional { background: var(--b-surface-2); color: var(--b-muted); }

.docs-code { border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; overflow: hidden; background: #0A0F1C; box-shadow: var(--b-shadow-2); }
.docs-code-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-bottom: 1px solid rgba(255, 255, 255, .08); background: rgba(255, 255, 255, .03); }
.docs-tabs { display: flex; gap: 4px; }
.docs-tab { border: 0; background: transparent; color: rgba(255, 255, 255, .5); font: inherit; font-size: 12px; font-weight: 650; padding: 6px 11px; border-radius: 8px; cursor: pointer; transition: color .18s var(--b-ease), background-color .18s var(--b-ease); }
.docs-tab:hover { color: #fff; }
.docs-tab.is-active { background: rgba(255, 255, 255, .1); color: #fff; }
.docs-code .docs-copy { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .75); }
.docs-code .docs-copy:hover { color: #fff; }
.docs-code .docs-copy.is-copied { background: rgba(52, 211, 153, .16); color: #34D399; }
.docs-code-body { position: relative; }
.docs-pre { display: none; margin: 0; padding: 16px 18px; max-height: 420px; overflow: auto; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12.5px; line-height: 1.75; color: #C7D2E4; white-space: pre; }
.docs-pre.is-active { display: block; }
.docs-response { border-top: 1px solid rgba(255, 255, 255, .08); }
.docs-response-head { display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.docs-response-title { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.docs-status { font-size: 11px; font-weight: 750; padding: 3px 9px; border-radius: var(--b-radius-pill); background: rgba(52, 211, 153, .16); color: #34D399; }
.docs-status.is-error { background: rgba(220, 38, 38, .14); color: #F87171; }
.docs-response-head .docs-copy { margin-left: auto; }

.docs-code-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; margin-top: 20px; }
.docs-limits { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 20px; }
.docs-limit { background: var(--b-surface-2); border: 1px solid var(--b-line); border-radius: 14px; padding: 16px; }
.docs-limit b { display: block; font-size: 13px; margin-bottom: 4px; }
.docs-limit span { color: var(--b-muted); font-size: 13px; }

.docs-try { margin-top: 18px; border: 1px solid var(--b-line); border-radius: 14px; padding: 16px; background: var(--b-surface); }
.docs-try-head { font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: var(--b-muted); margin-bottom: 12px; }
.docs-try-fields { display: flex; gap: 10px; flex-wrap: wrap; }
.docs-try-fields input { flex: 1; min-width: 150px; min-height: 42px; padding: 8px 12px; border: 1px solid var(--b-line); border-radius: 10px; font: inherit; font-size: 14px; background: var(--b-surface); color: var(--b-ink); outline: none; }
.docs-try-fields input:focus { border-color: var(--b-brand); box-shadow: 0 0 0 4px var(--b-brand-soft); }
.docs-try-result { margin: 14px 0 0; padding: 14px; border-radius: 10px; background: #0A0F1C; color: #C7D2E4; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 12px; line-height: 1.7; overflow: auto; max-height: 260px; white-space: pre-wrap; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
    .header-nav { display: none; }
    .header-mega-inner { grid-template-columns: 1fr; }
    .header-mega-aside { display: none; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 64px; }
    .lp-visual { min-height: 0; }
    .lp-mock { transform: none; }
    .lp-value-row { grid-template-columns: repeat(2, minmax(0, 1fr)); transform: translateY(36px); }
    .lp-split { grid-template-columns: 1fr; gap: 36px; }
    .lp-split.reverse .lp-split-media { order: 0; }
    .lp-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .docs-layout { grid-template-columns: 1fr; gap: 24px; }
    .docs-sidebar { position: static; max-height: none; overflow: visible; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
    .docs-sidebar-foot { grid-column: 1 / -1; }
    .docs-endpoint-grid { grid-template-columns: 1fr; }
    .docs-endpoint-code { position: static; }
    .docs-code-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-form-panel { padding: 36px 28px; }
    .auth-qr-panel { padding: 34px 28px; border-left: 0; border-top: 1px solid var(--b-line); }
    .auth-qr-apps { padding-top: 20px; }
}

@media (max-width: 720px) {
    main { padding: 32px 0 56px; }
    body.auth-screen main { padding: 0; }
    body.docs-screen .container { padding: 0 16px; }
    body.docs-screen main { padding: 20px 0 56px; }
    .docs-hero { padding: 28px 22px; }
    .docs-meta { gap: 18px; }
    .docs-search { min-width: 0; width: 100%; }
    .docs-endpoint-bar { flex-wrap: wrap; }
    body.has-dark-hero .site-header { margin-bottom: -96px; }
    .site-topbar-nav { display: none; }
    .header-inner { min-height: 54px; padding: 6px 8px 6px 16px; gap: 8px; }
    .brand-logo { height: 30px; }
    .nav-menu-toggle { padding: 0 14px; height: 40px; }
    .nav-menu-text { display: none; }
    .header-icon-btn { width: 38px; height: 38px; }
    .header-cta { min-height: 38px; padding: 0 14px; font-size: 13px; }
    .header-mega-grid { grid-template-columns: 1fr; }
    .lp-stage { padding-top: 150px; }
    .lp-section { padding-top: 58px; }
    .lp-sections { padding-top: 92px; }
    .lp-float-1, .lp-float-2 { display: none; }
    .lp-value-row { grid-template-columns: 1fr; transform: translateY(30px); margin-top: 46px; }
    .lp-marquee { margin-top: 70px; max-width: calc(100% - 48px); }
    .lp-marquee::before, .lp-marquee::after { width: 60px; }
    .lp-band { padding: 40px 26px; margin-top: 70px; }
    .lp + .site-footer { margin-top: 70px; }
    .page-head h1 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .lp-mesh, .lp-beam, .lp-float, .lp-bars i, .lp-marquee-track, .lp-title .grad, .lp-skel, .lp-spark path, .lp-band::after { animation: none !important; }
    .lp-spark path { stroke-dashoffset: 0; }
    .card, .btn, .lp-feature, .lp-value, .lp-step, .lp-stat { transition: none; }
    .lp-mock-wrap { transform: none !important; }
}
