/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
em { font-style: normal; font-weight: inherit; }

/* ====== TOKENS ====== */
:root {
    --bg: #FFFFFF;
    --bg-deep: #F8FAFC;
    --ink: #0F172A;
    --ink-2: #475569;
    --ink-3: #94A3B8;
    --line: #E2E8F0;
    --white: #FFFFFF;

    --c-vanilla: #F1F5F9;
    --c-cream: #F8FAFC;
    --c-blush: #DBEAFE;

    /* legacy aliases (mapped to new tints, used in HTML) */
    --c-peach: var(--c-vanilla);
    --c-coral: var(--c-blush);
    --c-mustard: var(--c-vanilla);
    --c-lavender: var(--white);
    --c-mint: var(--white);
    --c-sky: var(--c-vanilla);

    --accent: #2563EB;
    --accent-2: #1D4ED8;
    --accent-soft: #DBEAFE;
    --ok: #16A34A;
    --warn: #D97706;

    --r-card: 24px;
    --r-card-lg: 32px;
    --r-pill: 999px;
    --r-btn: 14px;

    --sh-card: 0 1px 2px rgba(15, 23, 42, 0.04);
    --sh-card-hover: 0 14px 32px -8px rgba(15, 23, 42, 0.14);
    --sh-ink: 0 18px 48px -12px rgba(15, 23, 42, 0.4);

    --container: 1240px;
}

/* ====== LAYOUT ====== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); }
.hero__title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 14ch;
}
.hero__title em,
.sec-title em,
.spot__title em,
.cta-card__title em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.005em;
    font-size: 1.12em;
    line-height: 0.92;
}

.sec-title {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}
.sec-lead {
    font-size: 1.1rem;
    color: var(--ink-2);
    max-width: 56ch;
}
.sec-head {
    margin-bottom: 32px;
    max-width: 820px;
}
.sec-num {
    display: block;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 12px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 28px;
}
.eyebrow__dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
}

.link-quiet { font-size: 0.95rem; color: var(--ink-2); font-weight: 500; transition: color 0.15s; }
.link-quiet:hover { color: var(--ink); }
.ulink { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.96rem;
    padding: 13px 22px;
    border-radius: var(--r-btn);
    transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
    line-height: 1;
}
.btn--accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--accent:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.5); }
.btn--ink {
    background: var(--ink);
    color: var(--white);
}
.btn--ink:hover { transform: translateY(-1px); background: #1E293B; }
.btn--ghost {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm { padding: 9px 16px; font-size: 0.88rem; border-radius: 12px; }
.btn--lg { padding: 16px 28px; font-size: 1rem; border-radius: 16px; }
.btn--block { display: flex; width: 100%; }
.btn__arrow { display: inline-block; transition: transform 0.15s; }
.btn:hover .btn__arrow { transform: translateX(2px); }

/* ====== HEADER ====== */
.hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    transition: background 0.2s, border-color 0.2s;
    border-bottom: 1px solid transparent;
}
.hdr.is-scrolled {
    background: rgba(248, 250, 252, 0.92);
    border-bottom-color: var(--line);
}
.hdr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}
.brand__dot {
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 7px;
    box-shadow: inset 0 -3px 0 var(--accent-2), 0 4px 10px -2px rgba(37, 99, 235, 0.4);
}
.hdr__nav {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.hdr__nav a {
    font-size: 0.95rem;
    color: var(--ink-2);
    font-weight: 500;
    transition: color 0.15s;
}
.hdr__nav a:hover { color: var(--ink); }
.hdr__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.burger {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.burger span {
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ====== HERO ====== */
.hero {
    padding: 64px 0 56px;
}
.hero__inner {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero__lead {
    font-size: 1.25rem;
    color: var(--ink-2);
    margin-bottom: 36px;
    max-width: 56ch;
}
.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.hero__perks {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-3);
    font-size: 0.92rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero__perks b { color: var(--ink); font-weight: 700; }
.dot-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--ink-3);
    opacity: 0.5;
}

/* hero bento */
.hero-bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 16px;
}
.card--hero-1, .card--hero-2, .card--hero-3 {
    padding: 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.card__deco {
    position: absolute;
    right: -20px; bottom: -20px;
    width: 160px; height: 160px;
    pointer-events: none;
}

/* ====== CARDS BASE ====== */
.card {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-card-hover);
}
.card--white { background: var(--white); }
.card--cream { background: var(--c-cream); }
.card--vanilla { background: var(--c-vanilla); }
.card--blush { background: var(--c-blush); }
/* legacy aliases — all map to current 3-tint palette via tokens */
.card--peach { background: var(--c-peach); }
.card--coral { background: var(--c-coral); }
.card--mustard { background: var(--c-mustard); }
.card--lavender { background: var(--c-lavender); }
.card--mint { background: var(--c-mint); }
.card--sky { background: var(--c-sky); }
.card--ink { background: var(--ink); color: var(--white); }
.card--ink:hover { box-shadow: var(--sh-ink); }

.card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 10px;
}
.card__pill {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    background: rgba(15, 23, 42, 0.08);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.card__pill--ghost {
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--ink-2);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}
.card__pill--light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}
.card__kicker {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.card__kicker--light { color: rgba(255, 255, 255, 0.7); }
.card__title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 8px;
}
.card__title--light { color: var(--white); }
.card__title-md { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.card__title-lg { font-size: 1.65rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 18px; }
.card__text {
    color: var(--ink-2);
    font-size: 0.96rem;
    line-height: 1.5;
}
.card__caption {
    color: var(--ink-2);
    font-size: 0.92rem;
    max-width: 22ch;
    line-height: 1.4;
}
.card__caption--light { color: rgba(255, 255, 255, 0.65); }
.card__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; }

/* big numbers in cards */
.big-num {
    font-size: clamp(3.5rem, 7vw, 5.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 16px 0 12px;
    color: var(--ink);
}
.card--ink .big-num { color: var(--white); }
.big-num--neg { color: var(--accent); }
.card--ink .big-num--neg { color: var(--accent); }
.big-num__suffix {
    font-size: 0.4em;
    font-weight: 700;
    margin-left: 6px;
    letter-spacing: -0.02em;
    color: var(--ink-2);
}
.card--ink .big-num__suffix { color: rgba(255, 255, 255, 0.7); }
.big-inline {
    color: var(--accent);
    font-weight: 800;
}

/* ====== SECTIONS ====== */
section { padding: 56px 0; }

/* ====== PLATFORM BENTO ====== */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.card--b1 { grid-column: span 2; grid-row: span 2; padding: 28px; display: flex; flex-direction: column; }
.card--b2, .card--b6, .card--b8, .card--b9 { grid-column: span 1; grid-row: span 1; display: flex; flex-direction: column; }
.card--b4, .card--b7 { grid-column: span 2; grid-row: span 1; display: flex; flex-direction: column; }

/* unified meta / mock structure across bento cards */
.card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.card__live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ok);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.card__live i {
    width: 7px; height: 7px;
    background: var(--ok);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.card__delta {
    display: inline-block;
    background: rgba(37, 99, 235, 0.14);
    color: var(--accent-2);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.card__mock {
    margin-top: auto;
    padding-top: 18px;
}
.card__mock--center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card__mock--ints {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* seal-block (Безопасность) */
.seal-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--c-vanilla);
    border: 1.5px solid var(--accent);
    border-radius: 14px;
}
.seal-block__check {
    width: 36px; height: 36px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.seal-block__title { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
.seal-block__sub { font-size: 0.78rem; color: var(--ink-2); }

/* analytics x-axis labels (для светлой карточки) */
.analytics__x {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--ink-3);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ====== Screenshot chrome (ui-bar / ui-tabs) ====== */
.ui-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.ui-dots { display: inline-flex; gap: 5px; flex-shrink: 0; }
.ui-dots i {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: block;
}
.ui-dots i:nth-child(1) { background: #FF6B5C; }
.ui-dots i:nth-child(2) { background: #FFC447; }
.ui-dots i:nth-child(3) { background: #34D058; }
.ui-url {
    flex: 1;
    background: rgba(15, 23, 42, 0.06);
    color: var(--ink-2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    letter-spacing: -0.005em;
}
.ui-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ok);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.ui-live i {
    width: 7px; height: 7px;
    background: var(--ok);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ui-tabs {
    display: flex;
    gap: 6px;
    margin: 14px 0 12px;
    flex-wrap: wrap;
}
.ui-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--ink-2);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: default;
}
.ui-tab.is-active {
    background: var(--accent);
    color: var(--white);
}
.ui-tab em {
    font-style: normal;
    background: rgba(15, 23, 42, 0.08);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 999px;
    line-height: 1.5;
}
.ui-tab.is-active em {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Dashboard mock */
.dash { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.dash__head {
    display: grid;
    grid-template-columns: 32px 1fr 90px auto;
    gap: 12px;
    padding: 8px 0 8px;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.dash__head-col {
    font-size: 0.66rem;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.dash__head-col--name { grid-column: 2; }
.dash__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.dash__metric {
    background: var(--bg-deep);
    border-radius: 14px;
    padding: 14px 16px;
}
.dash__metric--accent { background: var(--accent-soft); }
.dash__metric--accent .dash__metric-val { color: var(--accent-2); }
.dash__metric-val { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.dash__metric-lbl { font-size: 0.78rem; color: var(--ink-2); margin-top: 2px; }
.dash__list { display: flex; flex-direction: column; gap: 4px; }
.dash__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid var(--line);
}
.dash__row:first-of-type { border-top: 0; }
.dash__row-name { flex: 1; font-weight: 600; font-size: 0.9rem; min-width: 0; }
.dash__row-name em { font-style: normal; font-weight: 500; color: var(--ink-3); font-size: 0.78rem; margin-left: 6px; }
.dash__bar {
    width: 90px;
    height: 4px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
}
.dash__bar span {
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: inherit;
}
.dash__row-val { font-size: 0.78rem; color: var(--ink-2); font-weight: 700; font-variant-numeric: tabular-nums; min-width: 30px; text-align: right; }

/* avatars */
.ava {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.ava--1 { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.ava--2 { background: linear-gradient(135deg, #38BDF8, #0369A1); }
.ava--3 { background: linear-gradient(135deg, #1E293B, #0F172A); }
.ava--4 { background: linear-gradient(135deg, #7DD3FC, #60A5FA); }
.ava--ink { background: var(--ink); color: var(--white); }

/* rating */
.rating { display: flex; gap: 6px; margin-top: auto; padding-top: 16px; }
.rating span {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--ink-2);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.rating .rating--on { background: var(--ink); color: var(--white); }

/* stack of templates */
.stack {
    margin-top: auto;
    padding-top: 14px;
    position: relative;
    height: 86px;
}
.stack__item {
    position: absolute;
    width: 84%;
    height: 36px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.stack__item:nth-child(1) { top: 0; left: 0; }
.stack__item:nth-child(2) { top: 18px; left: 8%; }
.stack__item:nth-child(3) { top: 36px; left: 16%; background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Гайд document mock */
.guide-doc {
    background: var(--bg-deep);
    border-radius: 12px;
    padding: 12px 14px;
}
.guide-doc__top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.guide-doc__file { font-size: 1rem; line-height: 1; }
.guide-doc__name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
}
.guide-doc__lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.g-line {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.13);
}
.g-line--90 { width: 90%; }
.g-line--100 { width: 100%; }
.g-line--70 { width: 70%; }
.g-line--80 { width: 80%; }
.g-line--60 { width: 60%; }

/* Survey question mock */
.survey-mock {
    background: var(--bg-deep);
    border-radius: 12px;
    padding: 12px 14px;
}
.survey-mock__q {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}
.survey-mock .rating { padding-top: 0; }

/* analytics chart */
.analytics { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 16px; }
.analytics svg { width: 100%; height: 110px; }
.analytics__legend {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}
.analytics__legend span { display: inline-flex; align-items: center; gap: 6px; }
.analytics__legend i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.analytics__delta { color: #2563EB; font-weight: 700; }

/* badges */
.badges {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}
.badge-chip {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}

/* seal */
.seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.08);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 600;
}
.seal__check {
    width: 18px; height: 18px;
    background: var(--ok);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* integrations */
.integrations {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    flex-wrap: wrap;
}
.int-badge {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--c-vanilla);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    border: 1px solid var(--line);
}

/* welcome-курс card */
.welcome-mock {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.course-thumb {
    position: relative;
    height: 76px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #60A5FA 0%, #2563EB 100%),
        radial-gradient(circle at 30% 40%, #BFDBFE, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.course-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3), transparent 50%);
}
.course-thumb__play {
    position: relative;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding-left: 3px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}
.course-thumb__time {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(15, 23, 42, 0.6);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}
.course-info {
    background: var(--bg-deep);
    border-radius: 12px;
    padding: 10px 12px;
}
.course-info__title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.dots { display: flex; gap: 4px; }
.dot {
    width: 22px; height: 4px;
    border-radius: 2px;
    background: rgba(15, 23, 42, 0.15);
}
.dot.is-on { background: var(--ink); }

/* Конструктор card */
.builder-mock {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.builder-block {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-deep);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
}
.builder-block > span:nth-child(2) { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.builder-block__handle {
    color: var(--ink-3);
    font-size: 0.9rem;
    line-height: 1;
    letter-spacing: -2px;
    cursor: grab;
}
.builder-block__day {
    font-size: 0.7rem;
    color: var(--ink-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.builder-block--ghost {
    background: transparent;
    border: 1.5px dashed rgba(15, 23, 42, 0.25);
    color: var(--ink-2);
    justify-content: center;
    box-shadow: none;
}

/* role-stack in hero card */
.role-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.role-stack__item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-deep);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
}

/* mini chart for hero card */
.mini-chart svg { width: 100%; height: 50px; margin-top: 12px; }

/* ====== ROLES ====== */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.role-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.role-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.role-emoji {
    font-size: 2.4rem;
    line-height: 1;
}

.checklist {
    margin-bottom: 24px;
}
.checklist li {
    position: relative;
    padding-left: 22px;
    padding-bottom: 10px;
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.4;
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 1px; top: 7px;
    width: 14px; height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F59E0B' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.role-mock {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.role-mock__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    padding: 0 4px;
}
.role-mock__head-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.role-mock__head-cnt {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--ink);
}
.prog-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    color: var(--ink-2);
    padding: 0 4px;
}
.prog-row strong { color: var(--ink); font-size: 1rem; font-weight: 800; }
.prog-bar {
    height: 6px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 6px;
}
.prog-bar span {
    display: block;
    height: 100%;
    background: var(--accent);
    border-radius: inherit;
}
.role-mock__alert--ok { background: rgba(22, 163, 74, 0.12); }
.role-mock__alert--ok .role-mock__alert-icon { color: var(--ok); font-weight: 800; }
.mgr-acts {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.mgr-acts .mini-btn { flex: 1; }
.mini-btn--ghost {
    background: var(--bg-deep);
    color: var(--ink);
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.role-mock__row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-deep);
    padding: 10px 14px;
    border-radius: 12px;
}
.role-mock__row > div { flex: 1; }
.role-mock__name { font-weight: 700; font-size: 0.9rem; }
.role-mock__sub { font-size: 0.78rem; color: var(--ink-2); }

.pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pill--ok { background: rgba(22, 163, 74, 0.15); color: #166534; }
.pill--warn { background: rgba(217, 119, 6, 0.15); color: #92400E; }

.emp-task {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-deep);
    padding: 10px 14px;
    border-radius: 12px;
}
.emp-task.is-done .role-mock__name { text-decoration: line-through; color: var(--ink-2); }
.check {
    width: 22px; height: 22px;
    border: 2px solid rgba(15, 23, 42, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--white);
    font-weight: 800;
}
.check--on { border: 0; background: var(--accent); }

.role-mock__alert {
    display: flex;
    gap: 10px;
    background: var(--bg-deep);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    align-items: center;
}
.role-mock__alert-icon { font-size: 1.2rem; }

.mini-btn {
    padding: 11px 14px;
    background: var(--accent);
    color: var(--white);
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ====== NUMBERS ====== */
.nums-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-rows: 180px;
}
.n-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.n-card__val {
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent);
}
.n-card__val span {
    font-size: 0.5em;
    color: var(--ink);
    margin-left: 4px;
}
.n-card__lbl {
    font-size: 1rem;
    color: var(--ink-2);
    max-width: 24ch;
    line-height: 1.4;
}
.n-quote {
    grid-column: span 2;
    grid-row: span 2;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: var(--c-coral);
}
.n-quote__mark {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    color: var(--ink);
}
.n-quote__text {
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.n-quote__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.n-quote__name { font-weight: 700; font-size: 0.95rem; }
.n-quote__role { font-size: 0.82rem; color: var(--ink-2); }

/* ====== HOW (steps) ====== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.step { padding: 28px; display: flex; flex-direction: column; }
.step__num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.step__day {
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.82rem;
    color: var(--ink-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ====== PRICING ====== */
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.plan {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}
.plan__head { margin-bottom: 24px; }
.plan__name { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 6px; }
.plan__name--light { color: var(--white); }
.plan__desc { font-size: 0.92rem; color: var(--ink-2); }
.plan__desc--light { color: rgba(255, 255, 255, 0.65); }
.plan__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}
.plan__amount {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
    line-height: 1;
}
.plan__amount--text { font-size: 1.9rem; }
.plan__amount--light { color: var(--white); }
.plan__unit { color: var(--ink-2); font-weight: 500; }
.plan__unit--light { color: rgba(255, 255, 255, 0.65); }
.plan__limit { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 24px; }
.plan__limit--light { color: rgba(255, 255, 255, 0.65); }
.plan .btn { margin-bottom: 24px; }
.plan__feat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.plan__feat--light { border-top-color: rgba(255, 255, 255, 0.12); }
.plan__feat li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.4;
}
.plan__feat--light li { color: rgba(255, 255, 255, 0.85); }
.plan__feat li::before {
    content: '';
    position: absolute;
    left: 0; top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.plan--featured {
    position: relative;
    border: 2px solid var(--accent);
    box-shadow: 0 14px 32px -8px rgba(37, 99, 235, 0.28);
    transform: translateY(-8px);
}
.plan__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--r-pill);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ====== FAQ ====== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.faq-item {
    padding: 4px 4px;
    transition: background 0.15s;
}
.faq-item[open] { box-shadow: var(--sh-card-hover); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--ink-2);
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item p {
    padding: 0 22px 18px;
    color: var(--ink-2);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ====== FINAL CTA ====== */
.cta { padding-bottom: 110px; }
.cta-card {
    padding: 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.cta-card__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 16px 0 16px;
    font-weight: 800;
}
/* .cta-card__title em handled by unified .title em rule */
.cta-card__lead {
    color: var(--ink-2);
    font-size: 1.05rem;
    margin-bottom: 24px;
}
.cta-card__perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cta-card__perks li {
    color: var(--ink);
    font-size: 0.95rem;
    padding-left: 24px;
    position: relative;
}
.cta-card__perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

.lead-form {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.field { display: block; }
.field__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink-2);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.field input, .field select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-size: 0.96rem;
    background: var(--white);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.lead-form .btn { margin-top: 6px; }
.lead-form__note {
    font-size: 0.78rem;
    color: var(--ink-3);
    text-align: center;
}
.lead-form__note a { color: var(--accent); text-decoration: underline; }
.lead-form__success { text-align: center; padding: 24px 0; }
.lead-form__success-icon { font-size: 3rem; margin-bottom: 12px; }
.lead-form__success h3 { font-size: 1.4rem; margin-bottom: 6px; }
.lead-form__success p { color: var(--ink-2); }

/* ====== FOOTER ====== */
.ftr {
    background: var(--bg-deep);
    padding: 64px 0 0;
    border-top: 1px solid var(--line);
}
.ftr__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.ftr__about {
    color: var(--ink-2);
    max-width: 360px;
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.55;
}
.ftr__col h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ftr__col a {
    display: block;
    color: var(--ink-2);
    font-size: 0.92rem;
    padding: 4px 0;
    transition: color 0.15s;
}
.ftr__col a:hover { color: var(--ink); }
.ftr__bot { border-top: 1px solid var(--line); padding: 20px 0; }
.ftr__bot-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-3);
    font-size: 0.85rem;
}
.ftr__legal { display: flex; gap: 20px; }
.ftr__legal a { color: var(--ink-2); }

/* ====== SPOTLIGHT (детальные экраны) ====== */
.spotlight {
    background: var(--bg);
}
.spot {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 64px;
}
.spot:last-child { margin-bottom: 0; }
.spot--reverse .spot__visual { grid-column: 2; grid-row: 1; }
.spot--reverse .spot__text { grid-column: 1; grid-row: 1; }

.spot__visual {
    position: relative;
}
.spot__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
}
.spot__text .card__pill { align-self: flex-start; }
.spot__title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 4px 0 4px;
    font-weight: 800;
}
/* .spot__title em handled by unified .title em rule */
.spot__lead {
    color: var(--ink-2);
    font-size: 1.02rem;
    line-height: 1.5;
    margin-bottom: 8px;
}
.spot-card {
    padding: 24px;
    box-shadow: var(--sh-card-hover);
}
.spot-card:hover { transform: none; }

/* avatar size variants */
.ava--lg { width: 56px; height: 56px; font-size: 1rem; border-radius: 16px; }
.ava--sm { width: 26px; height: 26px; font-size: 0.6rem; }

/* ui pill (e.g. "черновик") */
.ui-pill {
    background: rgba(37, 99, 235, 0.14);
    color: #1D4ED8;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.ui-pill--warn { background: rgba(217, 119, 6, 0.18); color: #92400E; }

/* compact ui-bar inside small role mocks */
.ui-bar--mock {
    padding-bottom: 10px;
    margin-bottom: 12px;
    gap: 10px;
}
.ui-bar--mock .ui-url { font-size: 0.72rem; padding: 5px 10px; }
.ui-bar--mock .ui-dots i { width: 8px; height: 8px; }

/* ====== ASSIGNMENT mock ====== */
.assign-mock {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.assign-mock__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.assign-mock__title {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.assign-mock__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.assign-mock__due { font-size: 0.82rem; color: var(--ink-2); }
.chip {
    display: inline-flex;
    align-items: center;
    background: var(--c-cream);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}
.assign-mock__block {
    background: var(--c-cream);
    border-radius: 14px;
    padding: 14px 16px;
}
.assign-mock__block-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.assign-mock__text {
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.45;
    margin: 0;
}
.assign-mock__attach {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.assign-mock__file {
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--ink-2);
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 600;
}
.assign-mock__sent {
    margin-top: 10px;
    font-size: 0.76rem;
    color: var(--ink-3);
}
.assign-mock__review {
    background: var(--c-vanilla);
    border-radius: 14px;
    padding: 14px 16px;
}
.assign-mock__review-input {
    background: var(--white);
    border: 1px dashed rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.88rem;
    color: var(--ink-3);
    margin-bottom: 12px;
}
.assign-mock__actions {
    display: flex;
    gap: 8px;
}
.assign-mock__actions .mini-btn { flex: 1; }
.assign-mock__flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.flow-step {
    background: var(--bg-deep);
    color: var(--ink-2);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
}
.flow-step.is-done {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}
.flow-step.is-active {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.55);
}
.flow-arrow { color: var(--ink-3); font-weight: 700; }

/* ====== PROFILE mock ====== */
.spot-profile {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.spot-profile__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.spot-profile__info { flex: 1; min-width: 0; }
.spot-profile__name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.spot-profile__role { font-size: 0.85rem; color: var(--ink-2); margin-top: 2px; }

.spot-profile__progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spot-feed { display: flex; flex-direction: column; gap: 8px; }
.spot-feed__title {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}
.spot-feed__item {
    display: flex;
    gap: 12px;
    background: var(--c-cream);
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    align-items: flex-start;
}
.spot-feed__item b { font-weight: 700; }
.spot-feed__dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}
.spot-feed__dot--n { background: rgba(15, 23, 42, 0.25); }

/* ====== CHAT mock ====== */
.chat-mock { display: flex; flex-direction: column; gap: 14px; }
.chat-mock__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.chat-mock__head-info { flex: 1; min-width: 0; }
.chat-mock__name { font-weight: 700; font-size: 0.98rem; }
.chat-mock__status {
    font-size: 0.78rem;
    color: var(--ok);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}
.chat-mock__status i {
    width: 7px; height: 7px;
    background: var(--ok);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-thread {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chat-bubble {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 88%;
}
.chat-bubble--in { align-self: flex-start; }
.chat-bubble--out { align-self: flex-end; flex-direction: row-reverse; }
.chat-bubble__body {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.4;
}
.chat-bubble--in .chat-bubble__body {
    background: var(--white);
    color: var(--ink);
    border-bottom-left-radius: 4px;
}
.chat-bubble--out .chat-bubble__body {
    background: var(--accent);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    background: var(--white);
    padding: 12px 14px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.chat-typing span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ink-3);
    animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* ====== BUILDER FULL mock ====== */
.builder-full {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.builder-full__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.builder-full__title {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}
.builder-full__btn {
    padding: 8px 14px;
    font-size: 0.82rem;
}
.builder-full__stage {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.builder-full__stage-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.builder-full .builder-block {
    background: var(--c-cream);
    box-shadow: none;
}

/* ====== REVEAL ====== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1080px) {
    .spot {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px;
    }
    .spot--reverse .spot__visual,
    .spot--reverse .spot__text { grid-column: 1; grid-row: auto; }
    .spot__text { max-width: 100%; }

    .hero-bento { grid-template-columns: 1fr 1fr; }
    .card--hero-3 { grid-column: span 2; }
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .card--b1 { grid-column: span 2; grid-row: span 2; }
    .card--b4, .card--b7 { grid-column: span 2; }
    .roles-grid { grid-template-columns: 1fr; }
    .nums-bento { grid-template-columns: repeat(2, 1fr); }
    .n-quote { grid-column: span 2; grid-row: span 1; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .plan--featured { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-card { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
    .logos__row { grid-template-columns: repeat(3, 1fr); gap: 24px 12px; }
    .ftr__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    section { padding: 64px 0; }
}
@media (max-width: 720px) {
    .hdr__nav {
        display: none;
        position: fixed;
        top: 62px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg);
        padding: 16px 24px;
        border-bottom: 1px solid var(--line);
    }
    .hdr__nav.is-open { display: flex; }
    .hdr__nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .hdr__nav a:last-child { border: 0; }
    .hdr__cta .link-quiet { display: none; }
    .burger { display: flex; }
    .hero-bento { grid-template-columns: 1fr; }
    .card--hero-3 { grid-column: span 1; }
    .bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .card--b1, .card--b4, .card--b7 { grid-column: span 1; grid-row: span 1; min-height: 320px; }
    .nums-bento { grid-template-columns: 1fr; }
    .n-quote { grid-column: span 1; }
    .steps { grid-template-columns: 1fr; }
    .logos__row { grid-template-columns: repeat(2, 1fr); }
    .ftr__inner { grid-template-columns: 1fr; }
    .ftr__bot-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
    .hero { padding: 48px 0 60px; }
    .cta-card { padding: 32px 24px; }
    .lead-form { padding: 20px; }
}
