/* ===== SHOP ENGINE — LANDING DESIGN REFRESH ===== */
:root {
    --ink: #0e0b2a;
    --ink-2: #16133a;
    --ink-3: #1f1b4a;
    --indigo: #2c2689;
    --indigo-2: #3d36b8;
    --indigo-lite: #8b83ff;
    --paper: #f4f3fb;
    --paper-2: #eeecf8;
    --white: #fff;
    --muted: #6a6688;
    --line: rgba(14, 11, 42, 0.10);
    --line-light: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 1px 4px rgba(14,11,42,.06), 0 4px 18px rgba(14,11,42,.07);
    --shadow-md: 0 2px 8px rgba(14,11,42,.07), 0 12px 40px rgba(14,11,42,.10);
    --shadow-lg: 0 4px 20px rgba(14,11,42,.08), 0 32px 80px rgba(14,11,42,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
    font-family: Manrope, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
}
body.page-auth,
body.page-admin-auth { background: var(--ink); }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
section[id] { scroll-margin-top: 92px; }

.kicker {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--indigo);
    display: flex;
    align-items: center;
    gap: 10px;
}
.kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
    flex: none;
}
.hero .kicker,
.block--ink .kicker,
.closer .kicker,
.auth__art .kicker,
.kicker--light {
    color: rgba(255, 255, 255, .82);
}
h1, h2, h3, .logo { font-family: Unbounded, Manrope, sans-serif; }
h1, h2 { letter-spacing: -.04em; line-height: 1.05; }
h2 { font-size: clamp(28px, 4vw, 46px); margin: 0 0 14px; }
.muted { color: var(--muted); }

/* ===== HEADER ===== */
.head {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(14, 11, 42, .88);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: min-height .2s ease, box-shadow .2s ease;
}
.head.is-stuck { box-shadow: 0 16px 48px rgba(0,0,0,.40); }
.head__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 20px;
    transition: min-height .2s ease;
}
.head.is-stuck .head__row { min-height: 62px; }
.head__note {
    color: rgba(255,255,255,.45);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}
.logo__mark { width: 30px; height: 30px; display: block; flex: none; }
.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}
.menu__links { display: flex; align-items: center; gap: 20px; }
.menu a {
    position: relative;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .18s ease;
}
.menu__links a { padding: 6px 0; }
.menu__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--indigo-lite);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.menu__links a:hover::after { transform: scaleX(1); }
.menu a:hover { color: #fff; }
.menu__act { display: flex; align-items: center; gap: 10px; }
.menu__ghost {
    border: 1px solid rgba(255,255,255,.22);
    padding: 8px 16px;
    transition: border-color .18s ease, background .18s ease;
    font-size: 13px;
    font-weight: 700;
}
.menu__ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); }
.menu__fill {
    background: rgba(255,255,255,.1);
    color: #fff !important;
    padding: 8px 18px;
    font-weight: 800;
    font-size: 13px;
    transition: background .18s ease;
    border: 1px solid rgba(255,255,255,.2);
}
.menu__fill:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    background:
        linear-gradient(#fff,#fff) 11px 15px / 18px 2px no-repeat,
        linear-gradient(#fff,#fff) 11px 20px / 18px 2px no-repeat,
        linear-gradient(#fff,#fff) 11px 25px / 18px 2px no-repeat;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    font: 800 14px/1 Manrope, sans-serif;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
    letter-spacing: .01em;
}
.btn:active { transform: scale(.98) !important; }
.btn--light {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.btn--ink { background: var(--ink); color: #fff; width: 100%; }
.btn--ink:hover { background: var(--indigo-2); }
.btn--ghost {
    border: 1px solid rgba(255,255,255,.30);
    color: rgba(255,255,255,.88);
    background: transparent;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); color: #fff; }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: 88px 0 0;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(44,38,137,.35), transparent 70%),
        radial-gradient(ellipse 50% 60% at 5% 80%, rgba(44,38,137,.20), transparent 60%),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: auto, auto, 96px 100%;
    pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 52px;
    align-items: start;
}
.hero h1 { font-size: clamp(38px, 6vw, 72px); margin: 0 0 20px; font-weight: 700; }
.hero h1 em {
    font-style: normal;
    font-weight: 600;
    color: #fff;
    background-image: linear-gradient(rgba(139,131,255,.55), rgba(139,131,255,.55));
    background-size: 100% .08em;
    background-position: 0 92%;
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.lead { font-size: 17px; color: rgba(255,255,255,.75); max-width: 36em; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 22px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.14);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.04);
}
.pills li::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--indigo-lite);
    flex: none;
    border-radius: 50%;
}
.hero__note {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
    max-width: 46em;
    font-size: 13.5px;
    color: rgba(255,255,255,.48);
    line-height: 1.55;
}
.hero__strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border-top: 1px solid rgba(255,255,255,.10);
}
.hero__strip div {
    padding: 24px 26px 32px;
    border-left: 1px solid rgba(255,255,255,.10);
    transition: background .2s ease;
}
.hero__strip div:first-child { border-left: 0; padding-left: 0; }
.hero__strip div:hover { background: rgba(255,255,255,.03); }
.hero__strip b {
    display: block;
    font-family: Unbounded, sans-serif;
    font-size: clamp(22px, 2.4vw, 32px);
    letter-spacing: -.04em;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff, rgba(139,131,255,.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__strip span { color: rgba(255,255,255,.48); font-size: 13px; }

/* ===== PRICE SHEET ===== */
.sheet {
    position: relative;
    background: #fff;
    color: var(--ink);
    padding: 30px 30px 26px;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 48px 100px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.05);
}
.sheet::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--indigo), var(--indigo-lite));
}
.sheet__tag {
    position: absolute;
    top: -13px;
    right: 24px;
    background: var(--indigo);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 10px;
}
.sheet__head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 8px; }
.sheet__head span { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--indigo); font-weight: 800; }
.sheet__head b { display: block; font-family: Unbounded, sans-serif; font-size: 52px; letter-spacing: -.04em; line-height: 1.1; }
.sheet__head small { color: var(--muted); font-size: 13px; }
.sheet__list { list-style: none; padding: 0; margin: 0 0 20px; }
.sheet__list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.sheet__list span { color: var(--muted); }
.sheet__list strong { font-weight: 700; }
.sheet__btn { display: flex; }
.sheet__note { margin: 14px 0 0; font-size: 13px; line-height: 1.4; color: var(--muted); text-align: center; }

/* ===== SECTIONS ===== */
.block { padding: 100px 0; }
.block--ink { background: var(--ink); color: #fff; }
.block--wash { background: var(--paper); }
.block__head { max-width: 660px; margin-bottom: 48px; }
.block__head p:last-child { margin-bottom: 0; }
.block--ink .block__head .muted { color: rgba(255,255,255,.58); }

/* ===== CARDS ===== */
.cards { display: grid; gap: 16px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
    padding: 28px 24px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--indigo);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--indigo-2);
}
.card i {
    display: block;
    font-family: Unbounded, sans-serif;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.03em;
    color: rgba(44,38,137,.15);
    margin-bottom: 16px;
    transition: color .22s ease;
}
.card:hover i { color: rgba(44,38,137,.40); }
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.card .card__note {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    color: var(--indigo);
}

/* ===== VERSUS ===== */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.versus__col {
    padding: 32px 28px;
    border: 1px solid var(--line);
}
.versus__col--bad { background: var(--paper); }
.versus__col--good {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    position: relative;
    overflow: hidden;
}
.versus__col--good::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(44,38,137,.4), transparent 60%);
    pointer-events: none;
}
.versus__col--good > * { position: relative; }
.versus__col h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: 20px;
}
.versus__col h3::before { content: ""; width: 10px; height: 10px; flex: none; }
.versus__col--bad h3::before { background: #a61b3a; }
.versus__col--good h3::before { background: var(--indigo-lite); border-radius: 50%; }
.versus__list { list-style: none; margin: 0; padding: 0; }
.versus__list li {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--muted);
}
.versus__col--good .versus__list li { border-top-color: rgba(255,255,255,.10); color: rgba(255,255,255,.65); }
.versus__list b {
    display: block;
    margin-bottom: 5px;
    font-family: Unbounded, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}
.versus__col--good .versus__list b { color: rgba(255,255,255,.95); }
.versus__sum {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 2px solid var(--indigo);
    font-size: 14.5px;
    font-weight: 700;
}
.versus__col--good .versus__sum { border-top-color: var(--indigo-lite); }

/* ===== MODULES — replaced by .module-grid ===== */

/* ===== VIDEO SECTION ===== */
.cinema { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.cinema__meta .lead { max-width: 30em; }
.cinema__stage {
    position: relative;
    min-height: 360px;
    border: 1px solid rgba(255,255,255,.14);
    cursor: pointer;
    color: #fff;
    text-align: left;
    display: flex;
    align-items: end;
    gap: 18px;
    padding: 28px;
    background: var(--ink-2);
    transition: border-color .2s ease, transform .2s ease;
}
.cinema__stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}
.cinema__stage:hover { border-color: rgba(255,255,255,.35); transform: scale(1.01); }
.cinema__play {
    position: relative;
    width: 62px;
    height: 62px;
    flex: none;
    background: #fff;
    clip-path: polygon(38% 28%, 78% 50%, 38% 72%);
    transition: transform .2s ease;
}
.cinema__stage:hover .cinema__play { transform: scale(1.1); }
.cinema__label { position: relative; }
.cinema__stage b { display: block; font-family: Unbounded, sans-serif; font-size: 17px; }
.cinema__stage small { opacity: .65; }
.chapters { list-style: none; margin: 26px 0 0; padding: 0; }
.chapters li {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    font-size: 14px;
    color: rgba(255,255,255,.65);
}
.chapters span {
    flex: none;
    min-width: 46px;
    font-family: Unbounded, sans-serif;
    font-size: 12px;
    color: var(--indigo-lite);
}

.overlay {
    position: fixed; inset: 0; z-index: 40;
    background: rgba(8,6,24,.88);
    display: grid; place-items: center; padding: 24px;
}
.overlay[hidden] { display: none; }
.overlay__box { width: min(820px, 100%); background: #fff; padding: 24px; min-height: 240px; }
.overlay__x { float: right; background: var(--ink); color: #fff; border: 0; padding: 8px 12px; cursor: pointer; }

/* ===== BENTO ===== */
.bento {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 14px;
}
.bento article {
    background: var(--paper);
    padding: 26px 24px;
    border: 1px solid transparent;
    transition: background .2s ease, border-color .2s ease, transform .22s ease, box-shadow .22s ease;
}
.bento article:hover {
    background: #fff;
    border-color: var(--line);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.bento__lg {
    grid-row: span 2;
    background: var(--ink) !important;
    color: #fff;
    padding: 32px 30px !important;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.bento__lg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 0% 100%, rgba(44,38,137,.4), transparent 55%);
    pointer-events: none;
}
.bento__lg > * { position: relative; }
.bento__lg:hover { border-color: rgba(255,255,255,.18) !important; }
.bento__lg p { color: rgba(255,255,255,.68); }
.bento__link {
    margin-top: auto;
    padding-top: 22px;
    color: rgba(255,255,255,.88);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}
.bento__link::after { content: " →"; }
.bento__link:hover { color: var(--indigo-lite); }
.bento__wide { grid-column: span 2; }
.bento h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 19px;
}
.bento h3::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--indigo);
    flex: none;
}
.bento__lg h3::before { background: var(--indigo-lite); border-radius: 50%; }
.bento p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ===== STATS (landing) ===== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stats article {
    border: 1px solid rgba(255,255,255,.10);
    padding: 30px 26px;
    transition: border-color .2s ease, background .2s ease;
    position: relative;
    overflow: hidden;
}
.stats article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 60% at 0% 0%, rgba(44,38,137,.25), transparent 55%);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}
.stats article:hover { border-color: rgba(255,255,255,.25); }
.stats article:hover::before { opacity: 1; }
.stats b {
    font-family: Unbounded, sans-serif;
    font-size: clamp(38px, 4.6vw, 54px);
    letter-spacing: -.04em;
    color: #fff;
    display: block;
    margin-bottom: 12px;
    position: relative;
}
.stats h3 { margin: 0 0 8px; font-size: 17px; position: relative; }
.stats p { margin: 0; color: rgba(255,255,255,.58); font-size: 14.5px; position: relative; }
.stats__note {
    margin: 30px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.10);
    max-width: 80ch;
    font-size: 14.5px;
    color: rgba(255,255,255,.58);
}

/* ===== SPEC ===== */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.split__aside { position: sticky; top: 116px; }
.split__btn { width: auto; margin-top: 24px; }
.spec-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.spec-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .2s ease, background .15s ease;
}
.spec-list li:hover { padding-left: 10px; }
.spec-list span { color: var(--muted); font-size: 14px; }
.spec-list strong { font-size: 15px; text-align: right; font-weight: 700; }

.chips__title {
    margin: 30px 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chips li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    padding: 7px 12px;
    font-size: 13px;
    color: var(--ink);
    transition: border-color .15s ease, background .15s ease;
}
.chips li:hover { border-color: var(--indigo); background: var(--paper); }
.chips li::before { content: ""; width: 10px; height: 2px; background: var(--indigo); flex: none; }

/* ===== PRICING ARITHMETIC ===== */
.money { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.money li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.money li span { color: var(--muted); font-size: 15px; }
.money li b { font-weight: 700; white-space: nowrap; }
.money__total,
.money__ours {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-top: 14px;
    padding: 18px 22px;
}
.money__total { background: var(--paper); border: 1px solid var(--line); }
.money__total b {
    font-family: Unbounded, sans-serif;
    font-size: 24px;
    letter-spacing: -.03em;
    color: #a61b3a;
    white-space: nowrap;
}
.money__ours { background: var(--ink); color: #fff; }
.money__ours span { color: rgba(255,255,255,.65); }
.money__ours b {
    font-family: Unbounded, sans-serif;
    font-size: 28px;
    letter-spacing: -.03em;
    white-space: nowrap;
}
.money__note { margin: 18px 0 0; font-size: 14px; color: var(--muted); }

/* ===== PROCESS STEPS ===== */
.lane {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.lane li {
    position: relative;
    padding: 52px 0 0;
}
.lane li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 44px;
    right: -28px;
    height: 1px;
    background: rgba(14, 11, 42, .15);
}
.lane li:last-child::before { display: none; }
.lane span {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-family: Unbounded, sans-serif;
    font-size: 12px;
}
.lane time {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--indigo);
}
.lane h3 { margin: 0 0 8px; font-size: 18px; }
.lane p { margin: 0; color: var(--muted); font-size: 14.5px; }

.flow {
    margin-top: 56px;
    padding: 34px 32px 36px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.flow__title { margin: 0 0 24px; font-size: 20px; }
.flow__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: flow;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 28px;
}
.flow__list li {
    counter-increment: flow;
    position: relative;
    padding-top: 34px;
    font-size: 14px;
    color: var(--muted);
}
.flow__list li::before {
    content: counter(flow);
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: var(--indigo);
    color: #fff;
    font-family: Unbounded, sans-serif;
    font-size: 11px;
}
.flow__list b {
    display: block;
    margin-bottom: 5px;
    font-family: Unbounded, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

/* ===== WHO IS IT FOR ===== */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit__col {
    padding: 30px;
    border: 1px solid var(--line);
    transition: box-shadow .2s ease;
}
.fit__col:hover { box-shadow: var(--shadow-sm); }
.fit__col--yes { border-top: 4px solid var(--indigo); }
.fit__col--no { border-top: 4px solid #a61b3a; background: var(--paper); }
.fit__col h3 { margin: 0 0 16px; font-size: 20px; }
.fit__col ul { list-style: none; margin: 0; padding: 0; }
.fit__col li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-top: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--muted);
}
.fit__col li:first-child { border-top: 0; }
.fit__col li::before { position: absolute; left: 0; top: 11px; font-weight: 800; }
.fit__col--yes li::before { content: "+"; font-size: 17px; color: var(--indigo); }
.fit__col--no li::before { content: "—"; color: #a61b3a; }

/* ===== FAQ ===== */
.faq { max-width: 900px; }
.faq details { border-top: 1px solid rgba(255,255,255,.10); }
.faq details:last-child { border-bottom: 1px solid rgba(255,255,255,.10); }
.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 21px 0;
    cursor: pointer;
    list-style: none;
    font-family: Unbounded, sans-serif;
    font-size: 17px;
    color: rgba(255,255,255,.88);
    transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--indigo-lite); }
.faq summary::after {
    content: "";
    flex: none;
    width: 14px;
    height: 14px;
    background:
        linear-gradient(var(--indigo-lite), var(--indigo-lite)) 0 6px / 14px 2px no-repeat,
        linear-gradient(var(--indigo-lite), var(--indigo-lite)) 6px 0 / 2px 14px no-repeat;
    transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
    margin: 0 0 24px;
    max-width: 70ch;
    font-size: 15px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}

/* ===== CLOSER / CTA — see new styles at end ===== */

/* ===== FOOTER ===== */
.base { background: #090720; color: rgba(183,179,214,.75); padding: 52px 0 36px; font-size: 14px; border-top: 1px solid rgba(255,255,255,.06); }
.base__row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 28px 40px;
    align-items: start;
}
.base a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .15s ease; }
.base a:hover { color: var(--indigo-lite); }
.base .logo { color: #fff; margin: 0 0 10px; }
.base p { margin: 0 0 10px; max-width: 40em; line-height: 1.55; }
.base__meta { font-size: 13px; opacity: .55; }
.base__col { display: grid; gap: 9px; justify-items: start; }
.base__title {
    margin: 0 0 2px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .45;
}
.base__links { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.base__copy {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.07);
    opacity: .5;
    margin: 0;
    font-size: 13px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal-on [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-on [data-reveal].is-in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal-on [data-reveal] { opacity: 1; transform: none; transition: none; }
    * { transition: none !important; }
}

/* ===== AUTH PAGES ===== */
.auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
    background: var(--white);
}
.auth__art {
    background: var(--ink);
    color: #fff;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.auth__art::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 0% 100%, rgba(44,38,137,.5), transparent 60%);
    pointer-events: none;
}
.auth__art > * { position: relative; }
.auth__art h1 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 20px; }
.auth__points { padding: 0; list-style: none; color: rgba(255,255,255,.68); }
.auth__points li { padding: 8px 0 8px 18px; position: relative; font-size: 14.5px; }
.auth__points li::before { content: ""; position: absolute; left: 0; top: 17px; width: 7px; height: 7px; background: var(--indigo-lite); border-radius: 50%; }
.auth--solo { min-height: calc(100vh - 76px); }
.auth__panel h2 { margin: 0 0 8px; font-size: 32px; }

.form { display: grid; gap: 12px; margin-top: 20px; }
.form label { display: grid; gap: 6px; font-size: 11px; font-weight: 800; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.form input:not([type=checkbox]) {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 0 12px;
    font: 500 15px/1 Manrope, sans-serif;
    color: var(--ink);
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.form input:focus {
    outline: none;
    border-color: var(--indigo);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44,38,137,.12);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.captcha { display: grid; grid-template-columns: 180px 1fr; gap: 12px; align-items: end; }
.captcha img {
    height: 56px;
    width: 180px;
    object-fit: cover;
    background: var(--paper);
    border: 1px solid var(--line);
    cursor: pointer;
    user-select: none;
    transition: border-color .15s ease;
}
.captcha img:hover { border-color: var(--indigo); }
.check { display: flex !important; flex-direction: row; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.form__alt { font-size: 14px; color: var(--muted); }
.form__alt a { color: var(--indigo); font-weight: 800; }
.text-danger { color: #a61b3a; font-size: 13px; }
.text-danger ul { margin: 0; padding-left: 18px; }

/* ===== ADMIN AUTH GATE ===== */
body.page-admin-auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background: var(--ink);
}
.gate { width: min(400px, 100%); }
.gate__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-family: Unbounded, Manrope, sans-serif;
    font-weight: 700;
    font-size: 18px;
}
.gate__brand img { width: 32px; height: 32px; display: block; }
.gate__cap {
    margin: 10px 0 24px;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: rgba(255,255,255,.40);
}
.gate__card {
    background: #fff;
    padding: 36px 32px 32px;
    box-shadow: 0 3px 0 var(--indigo) inset, 0 32px 80px rgba(0,0,0,.42);
}
.gate__card h1 { margin: 0 0 8px; font-size: 28px; }
.gate__lead {
    margin: 0 0 8px;
    font-size: 14px;
    color: #4e4a6a;
    line-height: 1.5;
}
.gate__flash {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(44, 38, 137, .08);
    color: var(--indigo);
    font-size: 14px;
    font-weight: 600;
}
.gate__flash--err {
    background: rgba(180, 40, 40, .08);
    color: #a11;
}
.gate .btn--ghost-ink {
    min-height: 44px;
    background: transparent;
    color: var(--indigo);
    border: 1px solid rgba(44, 38, 137, .25);
}
.gate .btn--ghost-ink:hover {
    background: rgba(44, 38, 137, .06);
}
.gate .form { margin-top: 24px; gap: 16px; }
.gate .form input:not([type=checkbox]) {
    background: var(--paper);
    border-color: rgba(14,11,42,.15);
}
.gate .captcha { grid-template-columns: 1fr; gap: 10px; justify-items: center; }
.gate .captcha img { width: 180px; height: 56px; justify-self: center; }
.gate .captcha label { width: 180px; }
.gate .check { color: var(--ink); font-size: 14px; }
.gate .btn--ink {
    min-height: 48px;
    background: var(--indigo);
}
.gate .btn--ink:hover { background: var(--indigo-2); }
.gate .form__alt { margin: 2px 0 0; text-align: center; }
.gate--wide { width: min(640px, 100%); }
.gate--wide .captcha { grid-template-columns: 180px 1fr; align-items: end; justify-items: stretch; }
.gate--wide .captcha label { width: auto; }

body.page-auth { background: var(--ink); min-height: 100vh; }
body.page-auth .base { display: none; }
body.page-auth .gate-wrap {
    min-height: calc(100vh - 76px);
    display: grid;
    place-items: center;
    padding: 32px 20px 48px;
}

/* ===== AUTH PANEL SECTION ===== */
.auth__panel {
    padding: 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
    .menu__links { gap: 16px; }
    .menu a { font-size: 13px; }
}
@media (max-width: 1080px) {
    .cards--4 { grid-template-columns: repeat(2, 1fr); }
    .hero__strip { grid-template-columns: repeat(2, 1fr); }
    .hero__strip div:nth-child(odd) { border-left: 0; padding-left: 0; }
    .hero__strip div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.10); }
    .flow__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
    .hero__grid, .cards--4, .cinema, .bento, .stats, .split, .lane, .auth { grid-template-columns: 1fr 1fr; }
    .versus, .fit { grid-template-columns: 1fr; }
    .menu a { font-size: 14px; }
    .bento__lg { grid-row: auto; }
    .split__aside { position: static; }
    .lane { gap: 24px 28px; }
    .lane li::before { display: none; }
    .burger { display: block; }
    .menu {
        display: none;
        position: absolute;
        top: 76px; right: 20px; left: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        background: var(--ink-2);
        padding: 16px;
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: 0 20px 60px rgba(0,0,0,.4);
    }
    .menu.is-open { display: flex; }
    .menu__links, .menu__act { flex-direction: column; align-items: stretch; gap: 4px; }
    .menu__ghost, .menu__fill { text-align: center; }
    .sheet { transform: none; }
    .block { padding: 72px 0; }
    .closer__box { padding: 32px 28px; }}
@media (max-width: 720px) {
    .hero__grid, .cards--4, .cinema, .bento, .stats, .split, .lane, .auth, .form__row, .captcha, .hero__strip, .base__row { grid-template-columns: 1fr; }
    .bento__wide { grid-column: auto; }
    .closer__box { align-items: stretch; flex-direction: column; }
    .closer__action { align-items: flex-start; }
    .hero__strip div,
    .hero__strip div:nth-child(3) { border-left: 0; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.10); }
    .hero__strip div:first-child { border-top: 0; }
    .auth__art { min-height: 220px; padding: 36px 24px; }
    .auth__panel { padding: 28px 20px 48px; }
    .hero { padding-top: 44px; }
    .hero__strip { margin-top: 52px; }
    .cinema__stage { min-height: 260px; }
    .flow__list { grid-template-columns: 1fr; }
    .flow { padding: 26px 20px 28px; }
    .versus__col, .fit__col { padding: 24px 20px; }
    .money__total, .money__ours { flex-direction: column; gap: 6px; padding: 16px 18px; }
    .faq summary { font-size: 15px; }
    .gate--wide .captcha { grid-template-columns: 1fr; }
    .module-grid { grid-template-columns: 1fr; }
    .trust-bar { gap: 10px; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}
.trust-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .025em;
    color: rgba(255,255,255,.42);
    padding: 11px 20px 11px 0;
    white-space: nowrap;
    flex: none;
    margin-right: 28px;
    transition: color .15s;
}
.trust-bar span:last-child { margin-right: 0; }
.trust-bar span:hover { color: rgba(255,255,255,.65); }
.trust-bar span i {
    font-style: normal;
    font-size: 12px;
    opacity: .6;
    flex: none;
}

/* ===== MODULE GRID ===== */
.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.module-card {
    background: var(--white);
    padding: 28px 26px 30px;
    position: relative;
    transition: background .18s, transform .18s;
}
.module-card:hover {
    background: var(--paper);
    transform: translateY(-2px);
    z-index: 1;
}
.module-card__num {
    display: block;
    font-family: Unbounded, Manrope, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--indigo-lite);
    margin-bottom: 14px;
}
.module-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -.02em;
    line-height: 1.25;
}
.module-card p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* ===== CLOSER (redesigned) ===== */
.closer {
    background: var(--ink);
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}
.closer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(44,38,137,.45) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 10% 80%, rgba(139,131,255,.12) 0%, transparent 60%);
    pointer-events: none;
}
.closer__box {
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
}
.closer__text {
    flex: 1;
}
.closer__text h2 {
    color: var(--white);
    margin-bottom: 16px;
}
.closer__text > p {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 28px;
}
.closer__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.closer__checks li {
    font-size: 14.5px;
    color: rgba(255,255,255,.72);
    display: flex;
    align-items: center;
    gap: 10px;
}
.closer__checks li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(139,131,255,.25);
    color: var(--indigo-lite);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    flex: none;
}
.closer__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: none;
}
.closer__price {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 24px 36px;
    text-align: center;
}
.closer__price span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 8px;
}
.closer__price b {
    display: block;
    font-family: Unbounded, Manrope, sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1;
}
.closer__price small {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin-top: 4px;
}
.closer__action .btn--light {
    width: 100%;
    text-align: center;
    min-height: 52px;
    font-size: 15px;
}
.closer__fine {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    text-align: center;
    margin: 0;
    max-width: 220px;
}

/* ===== HERO STRIP — 5th item ===== */
@media (max-width: 1080px) {
    .hero__strip { grid-template-columns: repeat(4, 1fr); }
    .trust-bar { gap: 0 0; }}
@media (min-width: 721px) and (max-width: 1080px) {
    .module-grid { grid-template-columns: repeat(2, 1fr); }
}
