/* ================================================================
   Tutors landing page (/tutors)
   Loaded alongside styles.v2.css (shared header/footer/reset/tokens).
   ================================================================ */

body.tutors-landing-page {
    background:
        radial-gradient(ellipse 68% 12% at 88% 2%, rgba(112, 92, 255, .09) 0%, rgba(82, 68, 176, .035) 43%, transparent 76%),
        radial-gradient(ellipse 72% 13% at 8% 18%, rgba(99, 102, 241, .105) 0%, rgba(67, 82, 178, .045) 46%, transparent 76%),
        radial-gradient(ellipse 60% 10% at 94% 23%, rgba(224, 83, 157, .075) 0%, transparent 74%),
        radial-gradient(ellipse 60% 15% at 4% 40%, rgba(41, 110, 164, .045) 0%, transparent 72%),
        radial-gradient(ellipse 68% 18% at 96% 67%, rgba(202, 76, 151, .055) 0%, transparent 74%),
        linear-gradient(180deg, #05070B 0%, #070A10 42%, #06080D 75%, #05070B 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    overflow-x: clip;
    /* Base type ramp for the whole page — header and footer sit outside
       .tl-page, so they need this on body to inherit the right size
       (matches how welcome.css sets it on body.welcome-page). */
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 19px;
    line-height: 1.5;
    color: #F8FAFC;
}

/* Header/footer normally sit on a light frosted-glass / legacy plum treatment;
   this page shares the same dark cosmic gradient as the main landing (welcome.css),
   so both chrome pieces get the same solid-dark treatment welcome-page uses. */
body.tutors-landing-page .site-header,
body.tutors-landing-page .site-header.header-scrolled {
    background: #06080c;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

body.tutors-landing-page .site-footer {
    background: #090C11;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

/* styles.v2.css leaves <html> without a background and makes the document
   scrollbar track transparent, which relies on the body background painting
   through to the canvas. That doesn't reliably happen with this page's
   multi-layer fixed gradient, leaving a light gap under the scrollbar — so,
   same as welcome.css does, give the root an explicit solid background and
   make the track opaque instead of transparent here. */
html.tutors-landing-page {
    background: #05070B;
}
html.tutors-landing-page::-webkit-scrollbar-track,
body.tutors-landing-page::-webkit-scrollbar-track {
    background: #05070B !important;
}

.tl-page {
    width: 100%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.tl-page::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 420px;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 260px at 72% 0%, rgba(99, 102, 241, .13), transparent 68%),
        radial-gradient(ellipse 80% 280px at 88% 18%, rgba(224, 83, 157, .08), transparent 70%),
        linear-gradient(180deg, rgba(5, 7, 11, .08), rgba(5, 7, 11, 0));
}
.tl-page > * {
    position: relative;
    z-index: 1;
}

/* styles.v2.css сбрасывает font-family универсальным `* {}`, поэтому
   наследование не доходит до вложенных <span>/<b>: выделенные слова внутри
   заголовков и абзацев уезжали на системный шрифт и выглядели крупнее
   и другого начертания, чем строка, к которой они относятся. Возвращаем
   наследование внутри лендинга — welcome.css делает то же самое для своих
   секций (`body.welcome-page .how *` и т. п.). Правило стоит в начале файла,
   поэтому все явные font-family ниже по файлу его перебивают. */
.tl-page,
.tl-page * {
    font-family: inherit;
}

.landing-switcher {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin: 32px auto 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* Раз в 5 секунд по вопросу медленно проходит волна фирменного градиента.
   Края градиента белые, поэтому в покое надпись остаётся просто белой. */
.landing-switcher__label {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    background-image: linear-gradient(100deg,
        #FFFFFF 0%, #FFFFFF 34%,
        #C4B5FD 42%, #F0ABFC 50%, #F472B6 58%,
        #FFFFFF 66%, #FFFFFF 100%);
    background-size: 300% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: landingSwitcherSheen 5s ease-in-out infinite;
}
@keyframes landingSwitcherSheen {
    0%, 40% { background-position: 0 0; }
    90%, 100% { background-position: 100% 0; }
}
@media (prefers-reduced-motion: reduce) {
    .landing-switcher__label {
        animation: none;
        -webkit-text-fill-color: #FFFFFF;
    }
}
.landing-switcher__control {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 100px;
    background: rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 24px rgba(0, 0, 0, .22);
}
.landing-switcher__item {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border: 1px solid transparent;
    border-radius: 100px;
    color: #A9B4C6;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.landing-switcher__item:not(.is-active):hover {
    color: #CBD5E1;
}
.landing-switcher__item.is-active {
    color: #FFFFFF;
    background: rgba(168, 85, 247, .28);
    border-color: rgba(192, 132, 252, .56);
    box-shadow: 0 0 0 1px rgba(168, 85, 247, .14), 0 0 18px rgba(168, 85, 247, .24);
}

.tl-page a { color: #B69CFF; text-decoration: none; }
.tl-page a:hover { color: #D8B4FE; }
.tl-page .landing-switcher__item { color: #A9B4C6; }
.tl-page .landing-switcher__item:not(.is-active):hover { color: #FFFFFF; }
.tl-page ::selection { background: rgba(168, 85, 247, .35); }

@keyframes tlRise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes tlBar {
    from { transform: scaleY(.15); }
    to { transform: scaleY(1); }
}

/* Вертикальный ритм секций взят с главного лендинга (welcome.css: .how —
   94px сверху / 96px снизу, .q — 94/100), чтобы отбивки между блоками
   на обеих страницах были одинаковыми. */
.tl-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 94px 40px 96px;
    box-sizing: border-box;
}

.tl-section--hero { padding-top: 56px; }
.tl-page > .landing-switcher + .tl-section--hero { padding-top: 42px; }
.tl-section--cta { max-width: 1100px; padding: 100px 40px 120px; }

/* Site header becomes a floating pill (position: fixed) below this width
   (see styles.v2.css), so it no longer pushes content down on its own —
   the hero needs its own clearance, same value welcome.css uses. */
@media (max-width: 1230px) {
    .tl-page { padding-top: 96px; }
    .landing-switcher { margin-top: 0; }
    .tl-section--hero { padding-top: 116px; }
}

@media (max-width: 640px) {
    .tl-page { padding-top: 92px; }
    .landing-switcher {
        width: min(100% - 40px, 260px);
        gap: 10px;
    }
    .landing-switcher__label {
        font-size: 18px;
    }
    .landing-switcher__control {
        width: 100%;
        padding: 3px;
    }
    .landing-switcher__item {
        flex: 1 1 0;
        min-height: 34px;
        padding: 9px 12px;
        font-size: 14px;
    }
    .tl-section { padding-left: 20px; padding-right: 20px; padding-top: 44px; padding-bottom: 48px; }
    .tl-section--cta { padding-bottom: 60px; }
    .tl-h2 { margin-bottom: 32px; }
    .tl-kicker { margin-bottom: 14px; }
    .tl-how-banner { margin-top: 34px; }
    /* .tl-section's own padding-top above would otherwise win the cascade
       tie (equal specificity, declared later) and undo the header
       clearance set at the 1230px breakpoint. */
    .tl-section--hero { padding-top: 116px; }
    .tl-page > .landing-switcher + .tl-section--hero { padding-top: 38px; }
}

/* ─── Kicker (eyebrow above section headings) ─── */
.tl-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 0 19px;
}
.tl-kicker-rule {
    width: min(140px, 15vw);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .2), transparent);
}
.tl-kicker-rule--right { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2)); }
.tl-kicker b {
    display: inline-flex;
    align-items: center;
    color: #94A3B8;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Ширина под Unbounded: у него широкие глифы, и на 22em выделенная
   строка ломалась на три. */
.tl-h2 {
    margin: 0 auto 54px;
    max-width: 27em;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    text-wrap: balance;
}
.tl-h2 .tl-highlight { color: #B69CFF; }

/* ─── Buttons ─── */
.tl-btn,
a.tl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    padding: 18px 24px;
    font-size: 1.125rem;
    min-height: 56px;
    letter-spacing: .5px;
    color: #fff;
    background: linear-gradient(135deg, #6366F1 0%, #A855F7 50%, #F472B6 100%);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .35), 0 0 24px 4px rgba(154, 131, 255, .45);
    transition: transform .25s ease, box-shadow .25s ease;
}
.tl-btn:hover,
a.tl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .3), 0 0 36px 8px rgba(154, 131, 255, .6);
    color: #fff;
}
.tl-btn:active { transform: translateY(0); }

/* ─── Hero ─── */
.tl-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    align-items: flex-start;
}
.tl-hero-text {
    flex: 1 1 420px;
    min-width: 0;
    animation: tlRise .5s cubic-bezier(.16, 1, .3, 1) both;
}
/* Тот же бейдж, что в hero основного лендинга (welcome.css): рамка —
   ровный фирменный сиреневый, без переливающегося градиента.
   Токены hero2-* на этой странице объявлены только внутри .tl-hero-solution,
   поэтому значения продублированы литералами. */
.hero2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 22px 10px 14px;
    border: 1.4px solid #B69CFF;
    border-radius: 100px;
    background: rgba(182, 156, 255, .06);
    box-shadow: 0 0 18px rgba(154, 131, 255, .16);
    font-size: 17px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 26px;
}
.hero2-eyebrow-icon {
    display: block;
    height: 32px;
    width: auto;
    flex-shrink: 0;
    /* 3D-ручка в мелком размере читается плоским фиолетовым пятном —
       мягкое свечение под ней возвращает объём. */
    filter:
        drop-shadow(0 0 8px rgba(124, 58, 237, .55))
        drop-shadow(0 2px 6px rgba(99, 102, 241, .45));
}
.hero2-eyebrow-label { color: #F5F5F7; }

/* Мобильный бейдж — заметно компактнее и строго в одну строку. */
@media (max-width: 640px) {
    .hero2-eyebrow {
        gap: 7px;
        padding: 5px 13px 5px 8px;
        border-width: 1px;
        font-size: 12.5px;
        margin-bottom: 18px;
        white-space: nowrap;
    }
    .hero2-eyebrow-icon {
        height: 19px;
    }
}

.tl-hero-title {
    margin: 0 0 20px;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -.02em;
    text-wrap: balance;
}
/* Фирменный сиреневый, как .hero2-hl в hero главного лендинга —
   без градиента. font/letter-spacing: inherit гарантируют, что выделенные
   слова идут тем же кеглем и начертанием, что и остальной заголовок. */
.tl-hero-gradient {
    font: inherit;
    letter-spacing: inherit;
    color: #B69CFF;
}
/* Один в один .hero2-sub из hero главного лендинга (welcome.css). */
.tl-hero-lead {
    margin: 0 0 18px;
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    line-height: 1.6;
    color: #D8DEEA;
    max-width: 560px;
    text-wrap: pretty;
}
.tl-hero-lead b {
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: -.01em;
    text-shadow: 0 0 14px rgba(255, 255, 255, .26);
}
.tl-hero-sub {
    margin: 0;
    font-size: clamp(15.5px, 1.3vw, 17.5px);
    line-height: 1.6;
    color: #8A93A5;
    max-width: 560px;
}
.tl-hero-visual {
    flex: 1 1 560px;
    min-width: min(100%, 470px);
    margin-top: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: tlRise .6s .1s cubic-bezier(.16, 1, .3, 1) both;
}
/* inline-flex so the column hugs the button — the micro line then centres
   under the button itself, not across the whole hero text column. */
.tl-hero-cabinet-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 44px;
}

.tl-micro {
    font-size: 16px;
    color: #64748B;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    text-align: center;
}
.tl-micro-check {
    flex: none;
    color: #9A83FF;
}
.tl-hero-solution {
    --wp-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --wp-font-hand: 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
    --hero2-bg-base: #05070B;
    --hero2-bg-surface: #161B22;
    --hero2-ink: #F8FAFC;
    --hero2-muted: #94A3B8;
    --hero2-muted-2: #64748B;
    --hero2-brand-a: #6366F1;
    --hero2-brand-b: #F472B6;
    --hero2-border: rgba(255, 255, 255, .1);
    --hero2-live: #9A83FF;
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    font-family: var(--wp-font);
}
.tl-hero-solution .hero2-board {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--hero2-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent), var(--hero2-bg-surface);
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(124, 92, 255, .08);
}
.tl-hero-solution .hero2-paper {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(88px, 1fr) 50px 92px;
    row-gap: 10px;
    padding: 12px 24px 0;
    height: 510px;
}
.tl-hero-solution .hero2-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(500px 240px at 74% 6%, rgba(124, 92, 255, .13), transparent 60%);
}
.tl-hero-solution .hero2-task-card {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    width: min(470px, 76%);
    padding: 12px 15px 7px;
    border-radius: 12px;
    border: 1px solid var(--hero2-border);
    background: var(--hero2-bg-base);
    box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .7);
}
.tl-hero-solution .hero2-tc-title {
    margin-bottom: 7px;
    color: var(--hero2-ink);
    font-size: 13px;
    font-weight: 700;
}
.tl-hero-solution .hero2-tc-text {
    margin-bottom: 3px;
    color: var(--hero2-muted);
    font-size: 11.5px;
    line-height: 1.45;
}
.tl-hero-solution .hero2-tc-fig {
    display: block;
    width: min(100%, 320px);
    margin: -2px auto -5px;
    overflow: visible;
}
.tl-hero-solution .hero2-tc-circle {
    fill: none;
    stroke: rgba(225, 230, 245, .74);
    stroke-width: 1.7;
}
.tl-hero-solution .hero2-tc-tangent {
    fill: none;
    stroke: rgba(225, 230, 245, .62);
    stroke-width: 1.7;
}
.tl-hero-solution .hero2-tc-chord {
    fill: none;
    stroke: #F3F5FF;
    stroke-width: 2.25;
    stroke-linecap: round;
}
.tl-hero-solution .hero2-tc-radii {
    fill: none;
    stroke: rgba(173, 182, 210, .48);
    stroke-width: 1.8;
    stroke-linecap: round;
    transition: stroke .32s ease, stroke-width .32s ease, filter .32s ease;
}
.tl-hero-solution .hero2-tc-right {
    fill: none;
    stroke: rgba(225, 230, 245, .52);
    stroke-width: 1.45;
    stroke-linejoin: round;
}
.tl-hero-solution .hero2-tc-angle-given {
    fill: none;
    stroke: var(--hero2-brand-b);
    stroke-width: 2.2;
    stroke-linecap: round;
}
.tl-hero-solution .hero2-tc-angle-answer {
    fill: none;
    stroke: var(--hero2-live);
    stroke-width: 2.2;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity .28s ease;
}
.tl-hero-solution .hero2-tc-degree,
.tl-hero-solution .hero2-tc-answer,
.tl-hero-solution .hero2-tc-labels text {
    font-family: var(--wp-font);
    font-weight: 600;
}
.tl-hero-solution .hero2-tc-degree {
    fill: var(--hero2-brand-b);
    font-size: 11px;
}
.tl-hero-solution .hero2-tc-answer {
    fill: var(--hero2-live);
    font-size: 10.5px;
    opacity: 0;
    transition: opacity .28s ease;
}
.tl-hero-solution .hero2-tc-points circle {
    fill: #F3F5FF;
    transition: fill .28s ease, filter .28s ease;
}
.tl-hero-solution .hero2-tc-labels text {
    fill: #E9ECF8;
    font-size: 13px;
    font-style: italic;
}
.tl-hero-solution .hero2-tc-labels .hero2-tc-tangent-label {
    fill: rgba(225, 230, 245, .62);
}
.tl-hero-solution .hero2-tc-fig.is-reading .hero2-tc-radii,
.tl-hero-solution .hero2-tc-fig.is-solved .hero2-tc-radii {
    stroke: var(--hero2-live);
    stroke-width: 2.8;
    filter: drop-shadow(0 0 5px rgba(154, 131, 255, .55));
}
.tl-hero-solution .hero2-tc-fig.is-reading .hero2-tc-points circle:first-child,
.tl-hero-solution .hero2-tc-fig.is-solved .hero2-tc-points circle:first-child {
    fill: var(--hero2-live);
    filter: drop-shadow(0 0 4px rgba(154, 131, 255, .65));
}
.tl-hero-solution .hero2-tc-fig.is-reading .hero2-tc-radii {
    animation: hero2RadiiRead .72s ease-in-out 1;
}
.tl-hero-solution .hero2-tc-fig.is-solved .hero2-tc-angle-answer,
.tl-hero-solution .hero2-tc-fig.is-solved .hero2-tc-answer {
    opacity: 1;
}
.tl-hero-solution .hero2-tc-src {
    margin-top: 4px;
    color: var(--hero2-muted-2);
    font-size: 9.5px;
    text-align: right;
}
.tl-hero-solution .hero2-hand,
.tl-hero-solution .hero2-hand * {
    font-family: var(--wp-font-hand);
    font-weight: 600;
}
.tl-hero-solution .hero2-hand {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 1.35em 1.35em;
    align-content: center;
    row-gap: 2px;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    align-self: stretch;
    color: #DDE2F7;
    font-size: 32px;
    line-height: 1.38;
}
.tl-hero-solution .hero2-hand-line {
    display: block;
    min-height: 0;
    margin: 0;
    transition: opacity .45s ease;
}
.tl-hero-solution .hero2-hand-q {
    color: var(--hero2-brand-b);
}
.tl-hero-solution .hero2-ch {
    opacity: 0;
    animation: hero2Ink .14s ease forwards;
}
.tl-hero-solution .hero2-pen {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hero2-brand-a);
    filter: drop-shadow(0 0 6px rgba(99, 102, 241, .7));
    opacity: 0;
    pointer-events: none;
    transition: transform .08s linear, opacity .25s ease;
    will-change: transform;
}
.tl-hero-solution .hero2-pen.is-writing {
    opacity: 1;
    animation: hero2PenPulse 1s ease-in-out infinite;
}
.tl-hero-solution .hero2-pen.no-anim {
    transition: opacity .25s ease;
}
.tl-hero-solution .hero2-student {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: flex-end;
    padding-inline: 14px;
    pointer-events: none;
}
.tl-hero-solution .hero2-student-bubble {
    display: flex;
    gap: 8px;
    align-items: center;
    width: max-content;
    max-width: 310px;
    min-height: 44px;
    padding: 8px 12px;
    box-sizing: border-box;
    border-radius: 14px 14px 4px 14px;
    background: rgba(255, 255, 255, .095);
    border: 1px solid rgba(255, 255, 255, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
}
.tl-hero-solution .hero2-student-bubble.is-shown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .30);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}
.tl-hero-solution .hero2-student-mic {
    flex: none;
    width: 14px;
    height: 14px;
    color: #D8DDEA;
    opacity: .82;
}
.tl-hero-solution .hero2-student-bubble.is-speaking .hero2-student-mic {
    animation: hero2StudentMic .7s ease-in-out infinite alternate;
}
.tl-hero-solution .hero2-student-body {
    min-width: 0;
}
.tl-hero-solution .hero2-student-label {
    margin-bottom: 1px;
    color: #E4E8F2;
    font-size: 11px;
    font-weight: 700;
}
.tl-hero-solution .hero2-student-msg {
    color: #FFFFFF;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
}
.tl-hero-solution .hero2-student-cursor {
    display: inline-block;
    width: 1.5px;
    height: 1em;
    margin-left: 1px;
    vertical-align: -2px;
    background: rgba(232, 234, 245, .75);
    animation: hero2Blink .8s steps(1) infinite;
}
.tl-hero-solution .hero2-voice {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    width: calc(100% + 48px);
    height: 92px;
    min-height: 92px;
    margin-inline: -24px;
    padding: 10px 24px;
    box-sizing: border-box;
    background:
        linear-gradient(90deg, rgba(99, 102, 241, .035), rgba(242, 104, 166, .025)),
        linear-gradient(180deg, rgba(20, 24, 35, .88), rgba(12, 15, 23, .97));
    border-top: 1px solid rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(99, 102, 241, .035);
}
.tl-hero-solution .hero2-voice-icon {
    position: relative;
    flex: none;
    width: 24px;
    height: 24px;
    transition: opacity .28s ease;
}
.tl-hero-solution .hero2-wave {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.tl-hero-solution .hero2-wave span {
    width: 3.5px;
    height: 7px;
    border-radius: 3px;
    background: var(--hero2-live);
    animation: none;
}
.tl-hero-solution .hero2-voice-body {
    flex: 1;
    min-width: 0;
}
.tl-hero-solution .hero2-voice-label {
    margin-bottom: 3px;
    color: #FFFFFF;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .01em;
}
.tl-hero-solution .hero2-voice-msg {
    height: 50px;
    overflow: hidden;
    color: #FAF9FF;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    white-space: pre-line;
    transition: opacity .18s ease;
}
.tl-hero-solution .hero2-voice-msg.is-switching {
    opacity: .35;
}
.tl-hero-solution .hero2-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 1px;
    vertical-align: -2px;
    background: var(--hero2-live);
    animation: hero2Blink .8s steps(1) infinite;
}
.tl-hero-solution .hero2-voice-mic-big {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.tl-hero-solution .hero2-voice-icon .hero2-wave {
    display: none;
}
.tl-hero-solution .hero2-voice.is-speaking .hero2-voice-icon .hero2-wave {
    display: flex;
}
.tl-hero-solution .hero2-voice.is-speaking .hero2-wave span {
    animation-name: hero2Eq;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.tl-hero-solution .hero2-voice.is-speaking .hero2-wave span:nth-child(2) { animation-delay: .15s; }
.tl-hero-solution .hero2-voice.is-speaking .hero2-wave span:nth-child(3) { animation-delay: .30s; }
.tl-hero-solution .hero2-voice.is-speaking .hero2-wave span:nth-child(4) { animation-delay: .45s; }
.tl-hero-solution .hero2-voice.is-speaking .hero2-wave span:nth-child(5) { animation-delay: .20s; }
.tl-hero-solution .hero2-voice.is-listening .hero2-voice-icon .hero2-voice-mic-big {
    display: flex;
    color: var(--hero2-live);
    opacity: .58;
}
.tl-hero-solution .hero2-voice.is-analyzing .hero2-voice-icon .hero2-voice-mic-big {
    display: flex;
    color: var(--hero2-live);
    animation: hero2MicPulse .45s ease-in-out 1;
}
.tl-hero-solution .hero2-board.is-resetting .hero2-hand-line,
.tl-hero-solution .hero2-board.is-resetting .hero2-student-bubble {
    opacity: 0;
    transition-duration: .28s;
}
.tl-hero-solution .hero2-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.tl-hero-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, .28), rgba(99, 102, 241, .12) 45%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.tl-hero-card {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .12);
    border-top-color: rgba(255, 255, 255, .2);
    border-radius: 20px;
    background: #0D1117;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255, 255, 255, .06);
    overflow: hidden;
    transform: rotate(-.65deg);
}
.tl-hero-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.tl-hero-card-title { font-family: 'Unbounded', sans-serif; font-size: 19px; font-weight: 700; }
.tl-add-student-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #E2E8F0;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 100px;
    padding: 8px 14px;
    white-space: nowrap;
}

.tl-students-head,
.tl-students-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 74px 106px 284px;
    align-items: center;
    gap: 12px;
}
.tl-students-head {
    padding: 14px 18px 10px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #64748B;
}
.tl-students-row { padding: 16px 18px; border-top: 1px solid rgba(255, 255, 255, .07); }
.tl-s-name { font-size: 16px; font-weight: 700; }
.tl-s-name.is-muted { color: #64748B; font-weight: 700; }
.tl-s-week { font-size: 19px; font-weight: 700; }
.tl-s-week.is-muted { color: #64748B; }
.tl-s-hw { font-size: 17px; font-weight: 700; }
.tl-s-hw.is-good { color: #86EFAC; }
.tl-s-hw.is-bad { color: #FCA5A5; }
.tl-s-hw.is-empty { color: #64748B; font-size: 14.5px; font-weight: 400; }
.tl-students-actions { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.tl-students-actions span {
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 100px;
    padding: 7px 13px;
    white-space: nowrap;
    color: #C9D1D9;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(148, 163, 184, .2);
}
.tl-students-actions span.tl-accent {
    color: #fff;
    background: rgba(168, 85, 247, .2);
    border-color: rgba(168, 85, 247, .5);
}
.tl-hero-card-foot {
    padding: 14px 18px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    font-size: 14px;
    color: #64748B;
}

/* Mobile student list — mirrors the real tutor dashboard's card layout
   (name + menu, two stats, two full-width action buttons), swapped in for
   the desktop table below 900px. */
.tl-students-mobile { display: none; }
.tl-student-card {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tl-student-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tl-student-card-head b { font-size: 17px; }
.tl-student-menu {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    color: #94A3B8;
    font-size: 18px;
    line-height: 1;
}
.tl-student-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tl-student-stat-label {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 8px;
}
.tl-student-stat-value { font-size: 19px; font-weight: 700; color: #F8FAFC; }
.tl-student-stat-value.is-good { color: #86EFAC; }
.tl-student-stat-value.is-bad { color: #FCA5A5; }
.tl-student-card-btn {
    display: block;
    text-align: center;
    padding: 11px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #C9D1D9;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(148, 163, 184, .2);
}
.tl-student-card-btn.tl-accent {
    color: #C9A6FF;
    background: rgba(168, 85, 247, .12);
    border-color: rgba(168, 85, 247, .4);
}

@media screen and (max-width: 600px) {
    .tl-hero-solution .hero2-paper {
        height: 510px;
        padding: 16px 16px 0;
    }
    .tl-hero-solution .hero2-task-card {
        width: 100%;
    }
    .tl-hero-solution .hero2-hand {
        font-size: 22px;
    }
    .tl-hero-solution .hero2-voice {
        width: calc(100% + 32px);
        margin-inline: -16px;
        padding: 8px 12px;
        gap: 8px;
    }
    .tl-hero-solution .hero2-voice-msg {
        height: 50px;
        font-size: 12.8px;
        line-height: 1.3;
    }
    .tl-hero-solution .hero2-student {
        padding-inline: 0;
    }
    .tl-hero-solution .hero2-student-bubble {
        max-width: 92%;
        min-height: 44px;
        padding: 8px 11px;
        gap: 10px;
    }
    .tl-hero-solution .hero2-student-msg {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tl-hero-solution *,
    .tl-hero-solution *::before,
    .tl-hero-solution *::after {
        animation-duration: .001s;
        animation-iteration-count: 1;
        transition: none;
    }
    .tl-hero-solution .hero2-ch {
        opacity: 1;
    }
    .tl-hero-solution .hero2-pen {
        display: none;
    }
}

@media (max-width: 900px) {
    .tl-students-table { display: none; }
    .tl-students-mobile {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 14px 18px;
        border-top: 1px solid rgba(255, 255, 255, .07);
    }

    /* Hero stacks into one column below this width. The 56px row-gap from
       .tl-hero and the card's own top margin are meant for the desktop
       side-by-side layout and just add dead space here. */
    .tl-hero { gap: 0; }
    .tl-hero-visual { margin-top: 40px; }
}

/* ─── How it works ─── */
.tl-how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.tl-how-banner { margin-top: 56px; }
.tl-how-item { display: flex; flex-direction: column; align-items: flex-start; }
.tl-step-num {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 0 1px 5px;
    gap: 2px;
    border-bottom: 1px solid rgba(154, 131, 255, .34);
    color: #9A83FF;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 24px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .04em;
    line-height: 1;
    text-shadow: 0 0 17px rgba(154, 131, 255, .46);
}
.tl-how-item h3 {
    margin: 0 0 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -.01em;
}
.tl-how-item p { margin: 0; font-size: 17.5px; line-height: 1.58; color: #94A3B8; }

/* ─── Tutor cabinet section ─── */
.tl-cabinet { display: block; }

/* Мокап стоит по центру, а подсказки разложены вокруг него и связаны с нужными
   местами карточки плавными линиями. Точная геометрия возможна только при
   фиксированной ширине сцены, поэтому аннотированная раскладка включается
   с 1250px, а ниже подсказки становятся обычной строкой под мокапом. */
.tl-cabinet-stage {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
}
.tl-cabinet-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    width: 620px;
    height: 620px;
    max-width: 130%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, .24), transparent 68%);
    filter: blur(60px);
    z-index: 0;
}
.tl-cabinet-card {
    position: relative;
    z-index: 2;
    flex: 1 1 100%;
    margin-bottom: 14px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: #0D1117;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .6);
    overflow: hidden;
    transform: rotate(.55deg);
}
.tl-cabinet-card-head { padding: 18px 22px 16px; }
.tl-cabinet-back {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #C9D1D9;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 14px;
}
.tl-cabinet-card-head h3 {
    margin: 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -.02em;
}
.tl-cabinet-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.tl-cabinet-stat { padding: 16px 20px; border-left: 1px solid rgba(255, 255, 255, .08); }
.tl-cabinet-stat:first-child { border-left: none; }
.tl-cabinet-stat-label {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 10px;
}
.tl-cabinet-stat-value { font-family: 'Unbounded', sans-serif; font-size: 26px; }
.tl-cabinet-days { display: flex; gap: 6px; margin-top: 10px; }
.tl-cabinet-day {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, .4);
}
.tl-cabinet-day.is-active {
    border: none;
    background: #A855F7;
    box-shadow: 0 0 8px rgba(168, 85, 247, .7);
}
.tl-cabinet-weekly {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 56px;
}
.tl-cabinet-weekly-col { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.tl-cabinet-weekly-bar { width: 6px; border-radius: 3px; background: rgba(148, 163, 184, .45); }
.tl-cabinet-weekly-bar.is-current {
    background: linear-gradient(180deg, #A855F7, #6366F1);
    box-shadow: 0 0 12px rgba(168, 85, 247, .6);
    transform-origin: bottom;
    animation: tlBar .7s .3s cubic-bezier(.16, 1, .3, 1) both;
}
.tl-cabinet-weekly-val { font-family: ui-monospace, monospace; font-size: 11px; color: #64748B; }
.tl-cabinet-weekly-val.is-current { color: #C084FC; }

.tl-cabinet-hw {
    padding: 20px 22px 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tl-cabinet-hw-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tl-cabinet-hw-head b { font-family: 'Unbounded', sans-serif; font-size: 18px; }
.tl-cabinet-hw-deadline { font-size: 13.5px; font-weight: 700; color: #C084FC; }
.tl-cabinet-task {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.tl-cabinet-task.is-solved { border-color: rgba(34, 197, 94, .45); }
.tl-cabinet-task.is-hinted {
    border-color: rgba(168, 85, 247, .4);
    background: rgba(168, 85, 247, .06);
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}
.tl-cabinet-task.is-hinted .tl-cabinet-task-top { display: flex; align-items: center; gap: 12px; width: 100%; flex-wrap: wrap; }
.tl-task-num { font-family: ui-monospace, monospace; font-size: 11px; color: #64748B; }
.tl-task-text { font-size: 15px; color: #E6EDF3; }
.tl-cabinet-task.is-unsolved .tl-task-text { color: #8B949E; }
.tl-task-status { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.tl-cabinet-task.is-solved .tl-task-status,
.tl-cabinet-task.is-unsolved .tl-task-status,
.tl-cabinet-task.is-hinted .tl-cabinet-task-top .tl-task-status { margin-left: auto; }
.tl-task-status.is-good { color: #86EFAC; }
.tl-task-status.is-hint { color: #C084FC; }
.tl-task-status.is-bad { color: #FCA5A5; }
.tl-cabinet-task-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    align-self: flex-end;
    flex-shrink: 0;
}
.tl-cabinet-task-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #C9D1D9;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 8px;
    padding: 6px 12px;
    white-space: nowrap;
}
/* Разбор — то, ради чего репетитор и приходит, поэтому в мокапе одна карточка
   показана уже раскрытой: кнопка «Подробнее» в нажатом состоянии, под ней —
   сам текст, крупнее условия задачи. */
.tl-cabinet-task-link.is-open {
    color: #E6EDF3;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(148, 163, 184, .36);
}
.tl-cabinet-task.is-open { padding-bottom: 15px; }
.tl-cabinet-task-detail {
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(168, 85, 247, .26);
}
.tl-cabinet-task-detail-label {
    display: block;
    margin-bottom: 10px;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #7C6BA8;
}
.tl-cabinet-task-note {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: #D7DEE8;
}
.tl-cabinet-task-note .tl-note-mark { font-weight: 700; color: #C9A6FF; }

/* ─── Подсказки вокруг мокапа ─── */
.tl-anno-label {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #A3AEBF;
}
.tl-anno-label::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(168, 85, 247, .75);
    vertical-align: middle;
}
/* Разбор и доска — то, ради чего репетитор приходит: крупнее, ярче, жирнее.
   Без смены цвета, чтобы не спорить с акцентами внутри мокапа. */
.tl-anno-label.is-key {
    font-size: 18.5px;
    font-weight: 800;
    color: #F1F5F9;
}
.tl-anno { display: none; }

@media (min-width: 1250px) {
    .tl-cabinet-stage {
        display: block;
        max-width: 1160px;
        min-height: 640px;
    }
    .tl-cabinet-card { width: 580px; margin: 0 auto; }
    .tl-anno {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        overflow: visible;
    }
    .tl-anno-path {
        fill: none;
        stroke-width: 1.6;
        stroke-linecap: round;
        vector-effect: non-scaling-stroke;
    }
    .tl-anno-from-left .tl-anno-path { stroke: url(#tlAnnoL); }
    .tl-anno-from-right .tl-anno-path { stroke: url(#tlAnnoR); }
    .tl-anno-head {
        fill: none;
        stroke: #C4B5FD;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: .85;
        vector-effect: non-scaling-stroke;
    }

    .tl-anno-label {
        position: absolute;
        max-width: 175px;
        transform: translateY(-50%);
    }
    .tl-anno-label::before { display: none; }
    .tl-anno-label--stats,
    .tl-anno-label--hw,
    .tl-anno-label--review { right: 1000px; text-align: right; }
    .tl-anno-label--quality,
    .tl-anno-label--board { left: 1000px; text-align: left; }
    /* Проценты, а не пиксели: если карточка станет выше (другой шрифт,
       перенос строки), подсказки и линии сместятся вместе с ней. */
    .tl-anno-label--stats { top: 12%; }
    .tl-anno-label--quality { top: 34%; }
    .tl-anno-label--hw { top: 51.3%; }
    .tl-anno-label--board { top: 79.4%; }
    .tl-anno-label--review { top: 93.6%; }
}

/* ─── Why / benefits section ─── */
.tl-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.tl-feature-card {
    position: relative;
    border-radius: 24px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    background: rgba(220, 226, 240, .055);
    border: 1px solid rgba(255, 255, 255, .12);
    border-top-color: rgba(255, 255, 255, .2);
    border-left-color: rgba(255, 255, 255, .16);
    transition: transform .3s ease, box-shadow .3s ease;
}
.tl-feature-card-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
}
.tl-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, .12);
    border: 1px solid rgba(168, 85, 247, .3);
    color: #C084FC;
}
.tl-feature-card h3 { margin: 0; font-size: 18px; font-weight: 700; line-height: 1.3; color: #F8FAFC; }
.tl-feature-card p { margin: 0; font-size: 1rem; line-height: 1.55; color: #94A3B8; }

/* Без подложки: блок стоит прямо на фоне страницы. */
.tl-why-banner {
    grid-column: 1 / -1;
    border: 0;
    padding: 6px 0;
    background: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.tl-why-banner img { display: block; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(124, 58, 237, .5)); }
@media (max-width: 640px) {
    .tl-why-banner img { display: none; }
    .tl-why-banner { gap: 0; }
}
.tl-why-banner h3 {
    margin: 0 0 8px;
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.01em;
}
.tl-why-banner p { margin: 0; font-size: 17px; line-height: 1.55; color: #94A3B8; max-width: 44em; }

/* ─── Trust block (закрывает возражение «а ИИ не ошибётся?») ───
   Без карточки: вопрос подан репликой в чат-пузыре, ответ — обычным
   текстом под ним, дальше много воздуха и отдельно стоящий CTA. */
.tl-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 96px;
}
/* Пузырь центрируется как отдельная реплика, абзац под ним остаётся слева. */
.tl-trust-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 44em;
}
.tl-trust-q {
    position: relative;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    /* Хвостик пузыря продолжает левый край — поэтому нижний левый угол прямой. */
    border-radius: 26px 26px 26px 0;
    padding: 18px 26px;
    background: rgba(255, 255, 255, .075);
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.3;
    color: #fff;
    text-wrap: balance;
}
/* Треугольник примыкает к нижней грани встык, без наложения — иначе
   полупрозрачные фоны сложились бы и на стыке проступил бы шов. */
.tl-trust-q::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 17px;
    height: 14px;
    background: rgba(255, 255, 255, .075);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
/* +14px компенсируют хвостик пузыря, свисающий ниже его нижней грани. */
.tl-trust-a {
    margin: 42px 0 0;
    width: 100%;
    font-size: 18.5px;
    line-height: 1.7;
    color: #94A3B8;
    text-align: left;
    text-wrap: pretty;
}
.tl-trust-a b { color: #E2E8F0; font-weight: 700; }

.tl-trust-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-top: 72px;
}
.tl-trust-cta-line {
    /* Строка отбивается от кнопки сильнее, чем микрокопия под ней. */
    margin-bottom: 64px;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.35;
    color: #F8FAFC;
}
/* font: inherit — чтобы выделенное слово гарантированно шло тем же
   кеглем и начертанием, что и остальная строка. */
.tl-trust-cta-line .tl-highlight {
    font: inherit;
    letter-spacing: inherit;
    color: #B69CFF;
}

@media (max-width: 760px) {
    .tl-trust { margin-top: 48px; }
    .tl-trust-q { padding: 16px 20px; }
    .tl-trust-a { margin-top: 34px; font-size: 17px; }
    .tl-trust-cta { margin-top: 44px; }
    .tl-trust-cta-line { margin-bottom: 48px; }
}

/* ─── Board demo section ─── */
.tl-board { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.tl-board-copy { flex: 1 1 380px; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.tl-board-copy p { margin: 0; font-size: 18px; line-height: 1.58; color: #94A3B8; }
.tl-board-copy p b { color: #E2E8F0; }
.tl-board-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.tl-board-demo-btn,
a.tl-board-demo-btn {
    min-height: 64px;
    padding: 18px 24px;
    font-size: 18px;
}
.tl-board-cta-note {
    margin: 0;
    color: #64748B;
    font-size: 16px;
    line-height: 1.45;
}

/* Сцена «ход решения» — тот же компонент, что в блоке .p3 основного
   лендинга (welcome.css). Отличие одно: реплики стоят под рукописью,
   а не сбоку, потому что здесь сцена живёт в колонке рядом с текстом.
   Токены --wp-* объявлены в welcome.css, который сюда не подключён,
   поэтому значения продублированы литералами. */
.tl-board-visual {
    flex: 1 1 460px;
    min-width: 0;
}
.p3-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.p3-glow {
    position: absolute;
    top: 46%;
    left: 42%;
    width: 640px;
    height: 340px;
    background: radial-gradient(closest-side, rgba(124, 92, 255, .16), transparent 74%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.p3-scene {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.tl-board-visual .p3-hand,
.tl-board-visual .p3-hand * {
    font-family: 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
}
.p3-hand {
    flex: none;
    color: #E4E9FB;
    font-weight: 600;
    white-space: nowrap;
}
.p3-hand i {
    display: inline-block;
    font-style: normal;
}
.p3-l1 {
    font-size: 36px;
    line-height: 1.24;
    opacity: .42;
    filter: blur(.5px);
    transform: rotate(-1.1deg);
}
.p3-l2 {
    margin-top: 8px;
    font-size: 38px;
    line-height: 1.24;
    opacity: .9;
    transform: rotate(-1.5deg);
}
.p3-l3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    font-size: 40px;
    line-height: 1.24;
    transform: rotate(-1.2deg);
}
.p3-mark {
    display: inline-block;
    padding: 2px 11px;
    border-radius: 10px;
    background: rgba(245, 165, 36, .16);
    box-shadow: inset 0 -4px 0 0 rgba(245, 165, 36, .85);
}
.p3-pen {
    flex: none;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #6366F1;
    box-shadow: 0 0 20px 5px rgba(124, 92, 255, .55);
}

.p3-voice {
    display: grid;
    flex: none;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px 16px;
    width: 100%;
}
.p3-student {
    display: flex;
    grid-column: 1 / -1;
    justify-self: end;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px 15px 5px 15px;
    background: rgba(255, 255, 255, .10);
    box-shadow: 0 12px 26px -16px rgba(0, 0, 0, .9);
}
.p3-student > .student-mic-icon {
    flex: none;
    width: 13px;
    height: 13px;
    color: #D8DDEA;
}
.p3-student-name {
    margin-bottom: 1px;
    color: #D8DDEA;
    font-size: 10.5px;
    font-weight: 700;
}
.p3-student-msg {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}
.p3-orb {
    position: relative;
    display: grid;
    flex: none;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(154, 131, 255, .42);
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(77, 224, 192, .20), rgba(77, 224, 192, .05));
    box-shadow: 0 0 38px 8px rgba(154, 131, 255, .12);
}
.p3-wf {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 26px;
}
.p3-wf i {
    width: 3px;
    border-radius: 3px;
    background: #9A83FF;
}
.p3-wf i:nth-child(1) { height: 9px; }
.p3-wf i:nth-child(2) { height: 17px; }
.p3-wf i:nth-child(3) { height: 25px; }
.p3-wf i:nth-child(4) { height: 14px; }
.p3-wf i:nth-child(5) { height: 20px; }
.p3-bubble {
    min-width: 0;
    padding: 15px 19px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px 18px 18px 6px;
    background: linear-gradient(135deg, rgba(124, 92, 255, .25), rgba(242, 104, 166, .16));
    box-shadow: 0 28px 52px -22px rgba(0, 0, 0, .92);
}
.p3-name {
    margin-bottom: 6px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .01em;
}
.p3-msg {
    color: #F5F6FF;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Микроповороты отдельных символов — рукопись не должна стоять по линейке. */
.j1 { transform: rotate(1.6deg) translateY(-1.1px); }
.j2 { transform: rotate(-1.3deg) translateY(1.2px); }
.j3 { transform: rotate(.7deg) translateY(.6px); }
.j4 { transform: rotate(-1.9deg) translateY(-.5px); }
.j5 { transform: rotate(1.1deg) translateY(1.4px); }
.j6 { transform: rotate(-.6deg) translateY(-1.3px); }
.j7 { transform: rotate(2deg) translateY(.4px); }
.j8 { transform: rotate(-1deg) translateY(-.8px); }

@media (max-width: 1100px) {
    .p3-l1 { font-size: 30px; }
    .p3-l2 { font-size: 32px; }
    .p3-l3 { font-size: 34px; }
    .p3-msg { font-size: 15px; }
}
@media (max-width: 600px) {
    .p3-l1 { font-size: 25px; }
    .p3-l2 { font-size: 27px; }
    .p3-l3 { font-size: 29px; }
    .p3-msg { font-size: 14.5px; }
    .p3-orb { width: 48px; height: 48px; }
    .p3-voice { grid-template-columns: 48px minmax(0, 1fr); }
}

/* ─── Final CTA ─── */
.tl-final { position: relative; text-align: center; }
.tl-final-glow {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 700px;
    height: 700px;
    max-width: 100%;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(168, 85, 247, .22), rgba(99, 102, 241, .1) 45%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.tl-final-card {
    position: relative;
    z-index: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.tl-final-card h2 {
    margin: 0;
    max-width: 22em;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -.02em;
    text-wrap: balance;
}
.tl-final-card p { margin: 0; max-width: 34em; font-size: 18px; line-height: 1.55; color: #94A3B8; }
.tl-final-card .tl-btn { margin-top: 48px; }

@media (max-width: 640px) {
    .tl-final-card { padding: 16px 4px; }
}

/* ─── FAQ (same accordion as the main landing, welcome.css .q-* block;
       heading uses this page's own .tl-kicker / .tl-h2) ─── */
.q-list {
    max-width: 840px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.q-item {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.q-item summary {
    position: relative;
    padding: 24px 46px 24px 2px;
    color: #F8FAFC;
    font-size: 18.5px;
    font-weight: 600;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
    transition: color .18s ease;
}

.q-item summary::-webkit-details-marker {
    display: none;
}

.q-item summary:hover {
    color: #fff;
}

.q-item summary:focus-visible {
    outline: 2px solid #9A83FF;
    outline-offset: 4px;
}

.q-item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 11px;
    height: 11px;
    border-right: 2px solid #94A3B8;
    border-bottom: 2px solid #94A3B8;
    transform: translateY(-70%) rotate(45deg);
    transition: transform .22s ease, border-color .18s ease;
}

.q-item[open] summary::after {
    border-color: #9A83FF;
    transform: translateY(-30%) rotate(225deg);
}

.q-a {
    margin: 0;
    padding: 0 60px 26px 2px;
    color: #94A3B8;
    font-size: 16.5px;
    line-height: 1.62;
}

.q-a b {
    color: #F8FAFC;
    font-weight: 600;
}

.q-a + .q-a {
    margin-top: 12px;
    padding-top: 0;
}

@media (max-width: 600px) {
    .q-item summary {
        padding: 21px 38px 21px 0;
        font-size: 17px;
    }

    .q-a {
        padding: 0 30px 22px 0;
        font-size: 16px;
    }
}

@keyframes hero2RadiiRead {
    0%, 100% { opacity: 1; }
    50% { opacity: .58; }
}

@keyframes hero2Ink {
    to { opacity: 1; }
}

@keyframes hero2PenPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .75; }
}

@keyframes hero2StudentMic {
    to {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(216, 221, 234, .45));
    }
}

@keyframes hero2Eq {
    0%, 100% { height: 6px; }
    50% { height: 26px; }
}

@keyframes hero2Blink {
    50% { opacity: 0; }
}

@keyframes hero2MicPulse {
    0%, 100% { opacity: .58; }
    50% { opacity: .95; }
}
