/**
 * frontend/index/index.css
 *
 * Canonical landing page (URL: /). Combines three previously-explored
 * variants into the single shipping layout:
 *
 *   - `index-ticker__tape*`      ticker-tape strip pinned to the top
 *   - `index-tcs__*`             header, hero, 3-column showcase grid,
 *                                left rail, right rail (watchlist +
 *                                trending), how-it-works, final CTA,
 *                                footer
 *   - `index-conv__hero-thread`  live conversation thread that now lives
 *                                in the center column where the preview
 *                                feed cards used to sit
 *
 * Theme tokens, the universal reset, the body baseline, and the button
 * system live in `shared/browser/`. This file ONLY consumes them; it
 * never redeclares :root tokens and never reaches into another
 * component's BEM namespace.
 *
 * Body is offset by the 38px ticker-tape strip height so the rest of the
 * page does not slide under the fixed tape.
 */

/* ---------- Page background canvas (so aurora has something to land on) ---------- */
.index-tcs__body {
    background: var(--canvas);
    color: var(--text);
    /* 38px reserve for the fixed ticker-tape strip at the top of the page */
    padding-top: 38px;
}

.index-tcs__aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* ============================================================
   TICKER TAPE STRIP (fixed, top of page)
   Pure CSS animation, content duplicated in markup for a
   seamless translateX(-50%) loop. Reduced motion stops the
   animation but keeps the tape readable.
   ============================================================ */

.index-ticker__tape {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    height: 38px;
    overflow: hidden;
    background: var(--surface);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    backdrop-filter: blur(8px);
}

.index-ticker__tape::before,
.index-ticker__tape::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}
.index-ticker__tape::before {
    left: 0;
    background: linear-gradient(to right, var(--surface), transparent);
}
.index-ticker__tape::after {
    right: 0;
    background: linear-gradient(to left, var(--surface), transparent);
}

.index-ticker__tape-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: indexTickerScroll 60s linear infinite;
    will-change: transform;
}

.index-ticker__tape-row {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.index-ticker__tape-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    border-right: 1px solid var(--hairline);
    height: 100%;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.index-ticker__tape-symbol {
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.005em;
}

.index-ticker__tape-logo {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    color: var(--text-2);
    font: 700 9px 'Inter Tight', 'Inter', sans-serif;
}
.index-ticker__tape-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--surface);
}
.index-ticker__tape-logo--fallback {
    background: var(--iris-tint);
    color: var(--iris);
}

.index-ticker__tape-change {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.index-ticker__tape-change--up   { color: var(--green); }
.index-ticker__tape-change--down { color: var(--red); }

@keyframes indexTickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   THREE-COLUMN SHOWCASE (page shell: header, hero, 3-column
   grid, how-it-works, final CTA, footer)
   ============================================================ */

/* ---------- Header ---------- */
.index-tcs__header {
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.index-tcs__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.index-tcs__brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}
.index-tcs__brand-mark-img {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.index-tcs__brand-name {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.index-tcs__header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.index-tcs__theme-toggle-slot {
    background: transparent;
    border: 0;
    padding: 0;
}

/* ---------- Main wrapper ---------- */
.index-tcs__main {
    max-width: 1480px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* ---------- Hero (compact ~30vh strip, no big stats panel) ---------- */
.index-tcs__hero {
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 0 8px;
    gap: 18px;
}

.index-tcs__hero-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0;
    font-weight: 800;
    max-width: 22ch;
}

.index-tcs__hero-accent {
    background: linear-gradient(135deg, var(--iris) 0%, var(--cyan) 50%, var(--violet) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.index-tcs__hero-lead {
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--text-2);
    max-width: 620px;
    margin: 0;
    line-height: 1.55;
}

.index-tcs__hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

/* ---------- Showcase grid - mirrors feed-page__main-grid exactly ---------- */
.index-tcs__showcase {
    width: 100%;
}

.index-tcs__main-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 700px) 340px;
    justify-content: center;
    gap: 32px;
}

/* ---------- Left rail preview, non-interactive ---------- */
.index-tcs__left-rail {
    min-width: 0;
}

.index-tcs__rail-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

.index-tcs__user-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.index-tcs__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.02em;
    user-select: none;
    background: linear-gradient(135deg, var(--iris) 0%, var(--violet) 100%);
    flex-shrink: 0;
}
.index-tcs__avatar--iris   { background: linear-gradient(135deg, var(--iris) 0%, var(--cyan) 100%); }
.index-tcs__avatar--green  { background: linear-gradient(135deg, var(--green) 0%, var(--cyan) 100%); }
.index-tcs__avatar--violet { background: linear-gradient(135deg, var(--violet) 0%, var(--iris) 100%); }

.index-tcs__user-meta {
    min-width: 0;
}

.index-tcs__user-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.index-tcs__user-handle {
    font-size: 12px;
    color: var(--text-2);
}

.index-tcs__user-stats {
    font-size: 11px;
    color: var(--text-3);
    font-feature-settings: "tnum";
    border-top: 1px solid var(--hairline);
    padding-top: 12px;
}
.index-tcs__user-stats strong {
    color: var(--text);
    font-weight: 600;
}

.index-tcs__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
}

.index-tcs__nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: default;
}
.index-tcs__nav-item svg {
    color: var(--text-3);
    flex-shrink: 0;
}

.index-tcs__nav-item--active {
    background: linear-gradient(135deg, var(--iris-tint) 0%, color-mix(in srgb, var(--cyan) 8%, transparent) 100%);
    color: var(--text);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--iris) 18%, transparent),
        0 4px 16px color-mix(in srgb, var(--iris) 12%, transparent);
}
.index-tcs__nav-item--active svg { color: var(--iris); }

.index-tcs__compose-btn {
    width: 100%;
    margin-top: 14px;
}

/* ---------- Center column (now hosts the live conversation thread) ---------- */
.index-tcs__feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

/* ---------- Right rail ---------- */
.index-tcs__right-rail {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.index-tcs__widget {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
}

.index-tcs__widget-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.index-tcs__widget-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.index-tcs__widget-title i {
    color: var(--iris);
}

.index-tcs__widget-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--iris);
    cursor: default;
}

/* Watchlist rows */
.index-tcs__watchlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.index-tcs__watch-row {
    display: grid;
    grid-template-columns: 28px 52px minmax(0, 1fr) 58px 88px;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.index-tcs__watch-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--iris-tint);
    color: var(--iris);
    border: 1px solid color-mix(in srgb, var(--iris) 18%, transparent);
    font: 700 10px 'Inter Tight', sans-serif;
    letter-spacing: 0;
    overflow: hidden;
}

.index-tcs__watch-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-tcs__watch-symbol {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.01em;
}

.index-tcs__watch-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    color: var(--text-3);
}

.index-tcs__watch-spark {
    width: 58px;
    height: 24px;
    display: block;
}

.index-tcs__watch-spark path {
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.index-tcs__watch-spark--up path {
    stroke: var(--green-2);
}

.index-tcs__watch-spark--down path {
    stroke: var(--red);
}

.index-tcs__watch-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.index-tcs__watch-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-feature-settings: "tnum";
    color: var(--text);
}

.index-tcs__watch-change {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-feature-settings: "tnum";
}
.index-tcs__watch-change--up   { color: var(--green-2); }
.index-tcs__watch-change--down { color: var(--red); }

/* JS-driven flash on the row */
.index-tcs__watch-row--flash-up {
    background: var(--green-tint);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--green) 25%, transparent);
    transition: background 0.4s, box-shadow 0.4s;
}
.index-tcs__watch-row--flash-down {
    background: var(--red-tint);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--red) 25%, transparent);
    transition: background 0.4s, box-shadow 0.4s;
}

/* ---------- How it works (3-step strip) ---------- */
.index-tcs__how {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.index-tcs__how-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.index-tcs__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1100px;
}

.index-tcs__step {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.index-tcs__step-num {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--iris) 0%, var(--cyan) 50%, var(--violet) 100%);
    box-shadow: 0 6px 18px rgba(99,102,241,0.28);
}

.index-tcs__step-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 4px 0 0;
    letter-spacing: -0.01em;
}

.index-tcs__step-body {
    margin: 0;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
}

/* ---------- Final CTA card ---------- */
.index-tcs__cta {
    display: grid;
    place-items: center;
}

.index-tcs__cta-card {
    width: 100%;
    max-width: 880px;
    padding: 40px 28px;
    text-align: center;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--iris) 14%, transparent) 0%, color-mix(in srgb, var(--violet) 12%, transparent) 100%),
        var(--surface);
    border: 1px solid color-mix(in srgb, var(--iris) 24%, var(--hairline));
    border-radius: 24px;
    box-shadow: var(--shadow-pop);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.index-tcs__cta-title {
    margin: 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.index-tcs__cta-lead {
    margin: 0;
    color: var(--text-2);
    font-size: 15px;
    max-width: 520px;
}

.index-tcs__cta-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ---------- Footer ---------- */
.index-tcs__footer {
    max-width: 1480px;
    margin: 64px auto 0;
    padding: 32px 24px 48px;
    border-top: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-3);
    font-size: 13px;
}

.index-tcs__brand--footer .index-tcs__footer-copy {
    color: var(--text-3);
    font-size: 13px;
}

.index-tcs__footer-nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.index-tcs__footer-nav a {
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s;
}
.index-tcs__footer-nav a:hover {
    color: var(--text);
}

/* ============================================================
   CONVERSATIONAL HERO THREAD (lives inside `.index-tcs__feed`)
   Only the rules that the chat thread actually uses are kept;
   the conversational variant's hero-copy/voices/authors/final
   layout is intentionally dropped because the canonical landing
   takes its hero, voices and CTA from the three-column variant.
   ============================================================ */

.index-conv__hero-thread {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 460px;
}

.index-conv__thread-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px 2px;
}

.index-conv__thread-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--hairline);
    background: var(--surface);
    color: var(--text-2);
    font: 800 11px/1 'Inter Tight', 'Inter', sans-serif;
}
.index-conv__thread-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--iris);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--iris) 22%, transparent);
    animation: indexConvPulse 1.6s ease-in-out infinite;
}
@keyframes indexConvPulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--iris) 50%, transparent); }
    50%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--iris) 0%, transparent); }
}
.index-conv__thread-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.index-conv__thread-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

/* ---------- Single message bubble ---------- */
.index-conv__msg {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.index-conv__msg[data-visible="true"] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.index-conv__msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    letter-spacing: 0;
    user-select: none;
}

.index-conv__msg-bubble {
    padding: 18px 20px 14px;
    min-width: 0;
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.index-conv__msg-bubble:hover {
    transform: translateY(-1px);
}

.index-conv__msg-head {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.index-conv__msg-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.index-conv__msg-handle {
    font-size: 13px;
    color: var(--text-2);
}

/* Ticker pill (matches post-card ticker chip language) */
.index-conv__msg-ticker {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.index-conv__msg-body .post-card__ticker {
    vertical-align: baseline;
}

.index-conv__msg-body {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}

.index-conv__msg-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-3);
}
.index-conv__msg-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-feature-settings: "tnum";
}
.index-conv__msg-stat svg { stroke: currentColor; }

/* Typing indicator (shown while next message is being prepared) */
.index-conv__typing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 46px;
    padding: 8px 14px;
    border-radius: 18px 18px 18px 4px;
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    font-size: 12px;
    color: var(--text-3);
    width: fit-content;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.index-conv__typing[data-visible="true"] { opacity: 1; }
.index-conv__typing-dots {
    display: inline-flex;
    gap: 3px;
}
.index-conv__typing-dots i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--iris);
    animation: indexConvTypingDot 1.2s ease-in-out infinite;
}
.index-conv__typing-dots i:nth-child(2) { animation-delay: 0.15s; }
.index-conv__typing-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes indexConvTypingDot {
    0%, 60%, 100% { transform: scale(0.6); opacity: 0.4; }
    30%           { transform: scale(1); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1280px) {
    .index-tcs__main-grid {
        grid-template-columns: 240px minmax(0, 660px) 320px;
        gap: 24px;
    }
}

@media (max-width: 1100px) {
    .index-tcs__main-grid {
        grid-template-columns: 240px minmax(0, 1fr);
    }
    .index-tcs__right-rail {
        display: none;
    }
}

@media (max-width: 900px) {
    .index-tcs__steps {
        grid-template-columns: 1fr;
    }
    .index-tcs__main {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .index-tcs__main {
        padding: 16px 16px 0;
    }
    .index-tcs__header {
        padding: 16px 16px 0;
    }
    .index-tcs__main-grid {
        grid-template-columns: 1fr;
    }
    .index-tcs__left-rail {
        display: none;
    }
    .index-tcs__brand-name {
        display: none;
    }
    .index-tcs__cta-card {
        padding: 28px 18px;
    }
    .index-tcs__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin: 48px auto 0;
    }
    .index-conv__hero-thread {
        padding: 14px 14px 12px;
        min-height: auto;
    }
}

@media (max-width: 420px) {
    .index-tcs__watch-row {
        grid-template-columns: 28px 48px minmax(0, 1fr) 74px;
    }

    .index-tcs__watch-spark {
        display: none;
    }
}

@media (max-width: 600px) {
    .index-ticker__tape-item {
        padding: 0 16px;
    }
}

/* ============================================================
   REDUCED MOTION - cover every animated rule introduced above
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .index-ticker__tape-track { animation: none !important; }

    .index-tcs__watch-price { animation: none !important; }
    .index-tcs__post-card:hover { transform: none; }

    .index-conv__thread-pill-dot,
    .index-conv__typing-dots i {
        animation: none !important;
    }
    .index-conv__msg {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .index-conv__typing {
        display: none !important;
    }
}
