@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/assets/fonts/ibm-plex-sans-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "IBM Plex Sans";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("/assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("/assets/fonts/unbounded-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url("/assets/fonts/unbounded-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #0c0f12;
    --surface: #111417;
    --surface-2: #171b20;
    --text: #f7f9fb;
    --muted: #a0a8b3;
    --soft: #727a85;
    --line: rgba(255, 255, 255, .14);
    --blue: #229ed9;
    --blue-bright: #39b9f3;
    --blue-soft: #bfeaff;
    --radius: 48px;
    --content: 1290px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.home-page {
    display: flex;
    height: 100svh;
    min-height: 100svh;
    flex-direction: column;
    overflow: hidden;
}

body.article-page {
    min-height: 100svh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: #06131a;
    background: var(--blue-bright);
    border-radius: 999px;
    font-weight: 700;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 32px), var(--content));
    margin-inline: auto;
}

#network-canvas {
    position: fixed;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .96;
}

.ambient-glow {
    position: fixed;
    z-index: -1;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(34, 158, 217, .12);
    filter: blur(120px);
    opacity: .55;
    transform: translate(-50%, -50%);
}

.custom-cursor {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(34, 158, 217, .85);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 24px rgba(34, 158, 217, .22);
    transition: width .2s ease, height .2s ease, opacity .2s ease, border-color .2s ease;
    transform: translate3d(-50%, -50%, 0);
}

.custom-cursor::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--blue-bright);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--blue);
    transform: translate(-50%, -50%);
}

.custom-cursor.is-visible {
    opacity: 1;
}

.custom-cursor.is-active {
    width: 56px;
    height: 56px;
    border-color: var(--blue-soft);
}

.site-header {
    position: relative;
    z-index: 20;
    flex: 0 0 auto;
}

.site-header__inner {
    position: relative;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.home-lang-switch,
.lang-switch {
    display: inline-flex;
    min-width: 34px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    color: #8f99a4;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.home-lang-switch {
    position: absolute;
    right: 0;
}

.home-lang-switch:hover,
.lang-switch:hover {
    color: #fff;
    background: rgba(34, 158, 217, .13);
    border-color: rgba(34, 158, 217, .5);
}

.site-logo {
    max-width: 100%;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(15px, 1.55vw, 22px);
    font-weight: 600;
    letter-spacing: -.8px;
    line-height: 1.25;
    text-align: center;
    text-wrap: balance;
}

.site-logo:hover {
    color: var(--blue-soft);
}

.home-main {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 0 clamp(20px, 2.8vh, 34px);
}

.home-main > .container {
    flex: 1 1 auto;
    min-height: 0;
}

.home-card {
    position: relative;
    height: 100%;
    min-height: 0;
    padding: clamp(26px, 4.4vh, 44px) 50px 0;
    overflow: hidden;
    background: rgba(17, 20, 23, .9);
    border: 4px solid #f7f7f7;
    border-radius: var(--radius);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .28);
    isolation: isolate;
}

.home-page.is-entering .home-card {
    opacity: 0;
    transform: translateY(16px) scale(.992);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.home-page.is-ready .home-card {
    opacity: 1;
    transform: none;
}

.home-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 44%, rgba(34, 158, 217, .09), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .015), transparent 30%);
}

.hero-intro {
    position: relative;
    z-index: 8;
    text-align: center;
}

.hero-kicker,
.hero-title,
.hero-actions,
.hero-side,
.seo-tail {
    opacity: 0;
    transform: translateY(16px);
}

.home-page.is-ready .hero-kicker,
.home-page.is-ready .hero-title,
.home-page.is-ready .hero-actions,
.home-page.is-ready .hero-side,
.home-page.is-ready .seo-tail {
    animation: content-arrival .62s cubic-bezier(.2, .7, .2, 1) forwards;
}

.home-page.is-ready .hero-title { animation-delay: .08s; }
.home-page.is-ready .hero-actions { animation-delay: .16s; }
.home-page.is-ready .hero-side { animation-delay: .28s; }
.home-page.is-ready .hero-side--right { animation-delay: .34s; }
.home-page.is-ready .seo-tail {
    animation-name: tail-arrival;
    animation-delay: .5s;
}

.hero-kicker {
    margin: 0 0 8px;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(15px, 1.45vw, 22px);
    font-weight: 500;
    line-height: 1.3;
}

.hero-title {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    color: transparent;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(32px, 3.2vw, 50px);
    font-weight: 600;
    line-height: 1.12;
    text-wrap: balance;
    background: linear-gradient(105deg, var(--blue) 0%, var(--blue) 39%, var(--blue-soft) 48%, var(--blue) 57%, var(--blue) 100%);
    background-size: 230% 100%;
    background-position: 110% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 9px 18px rgba(34, 158, 217, .2)) drop-shadow(0 0 12px rgba(34, 158, 217, .16));
    animation: title-shine 5.5s ease-in-out infinite;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 14px 0 2px;
}

.button {
    display: inline-flex;
    min-width: 205px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 31px;
    color: #fff;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgba(34, 158, 217, .2);
    outline: none;
    transform: translateY(-2px);
}

.button--primary {
    background: var(--blue);
    border-color: var(--blue);
    text-shadow: 0 2px 7px rgba(0, 45, 78, .4);
    box-shadow: 0 10px 28px rgba(34, 158, 217, .18);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--blue-bright);
    box-shadow: 0 13px 34px rgba(34, 158, 217, .3);
}

.button__icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    fill: currentColor;
    filter: drop-shadow(0 2px 4px rgba(0, 45, 78, .38));
}

.hero-grid {
    display: grid;
    height: clamp(320px, 45vh, 430px);
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.08fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    padding-bottom: 76px;
}

.hero-side {
    min-width: 0;
}

.hero-side--right {
    text-align: right;
}

.side-title {
    margin: 0;
    color: #83868b;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(13px, 1.05vw, 17px);
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
}

.topic-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.topic-labels--left {
    max-width: 355px;
}

.topic-labels--right {
    max-width: 330px;
    justify-content: flex-end;
    margin: 15px 0 10px auto;
}

.topic-labels span {
    padding: 7px 10px;
    color: #cfd3d8;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.topic-labels span:first-child {
    color: #07131a;
    background: var(--blue);
    border-color: var(--blue);
}

.price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.price strong {
    font-family: "Unbounded", sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
}

.free-caption {
    margin: 8px 0 56px;
    color: var(--blue-bright);
    font-family: "Unbounded", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .05em;
}

.community-scene {
    position: relative;
    width: min(100%, 520px);
    height: 100%;
    margin-inline: auto;
    isolation: isolate;
    transform: translateY(30px);
}

.community-scene::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 5% 5% 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 58%, rgba(33, 111, 255, .17), transparent 48%);
    filter: blur(18px);
}

.community-scene__photo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: translateX(-50%);
    animation: scene-reveal .8s .12s both;
}

.ai-orbit-icon {
    --icon-rotation: 0deg;
    --repel-x: 0px;
    --repel-y: 0px;
    --drift-x: 0px;
    --drift-y: 0px;
    --drift-rotation: 0deg;
    position: absolute;
    z-index: 4;
    width: 72px;
    height: 72px;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 15px 18px rgba(0, 0, 0, .46));
    transform: translate3d(calc(var(--drift-x) + var(--repel-x)), calc(var(--drift-y) + var(--repel-y)), 0) rotate(calc(var(--icon-rotation) + var(--drift-rotation)));
    will-change: transform;
    animation: icon-reveal .75s both;
}

.ai-orbit-icon--telegram {
    top: 40.5%;
    left: 50%;
    z-index: 6;
    width: 108px;
    height: 108px;
    margin: -54px 0 0 -54px;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .5)) drop-shadow(0 0 18px rgba(23, 159, 240, .3));
}

.ai-orbit-icon--kling { --icon-rotation: -8deg; top: 14%; left: -12%; animation-delay: .15s; }
.ai-orbit-icon--gemini { --icon-rotation: 7deg; top: 12%; right: -12%; animation-delay: .25s; }
.ai-orbit-icon--claude { --icon-rotation: -6deg; top: 54%; left: -16%; animation-delay: .35s; }
.ai-orbit-icon--higgsfield { --icon-rotation: 8deg; top: 50%; right: -18%; animation-delay: .45s; }
.ai-orbit-icon--chatgpt { --icon-rotation: 12deg; right: -5%; bottom: 3%; width: 66px; height: 66px; animation-delay: .55s; }

.seo-tail {
    position: absolute;
    z-index: 7;
    left: 50%;
    bottom: 8px;
    width: calc(100% - 46px);
    height: clamp(104px, 14vh, 162px);
    padding: 15px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    color: #9aa1aa;
    font-size: 12px;
    line-height: 1.58;
    scrollbar-color: rgba(34, 158, 217, .5) transparent;
    scrollbar-width: thin;
    transform: translateX(-50%);
    -webkit-mask-image: radial-gradient(ellipse 92% 82% at center, #000 52%, rgba(0, 0, 0, .92) 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 92% 82% at center, #000 52%, rgba(0, 0, 0, .92) 70%, transparent 100%);
}

.seo-tail::-webkit-scrollbar {
    width: 4px;
}

.seo-tail::-webkit-scrollbar-thumb {
    background: rgba(34, 158, 217, .5);
    border-radius: 999px;
}

.seo-tail h2 {
    margin: 0 0 8px;
    color: #c4c9cf;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.seo-tail h3 {
    margin: 12px 0 6px;
    color: #b9c1c9;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

.seo-tail p {
    max-width: 1120px;
    margin: 0 0 10px;
}

.seo-tail a {
    color: #9fdfff;
    text-decoration: underline;
    text-decoration-color: rgba(34, 158, 217, .45);
    text-underline-offset: 2px;
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 10px 0 4px;
}

.seo-links a {
    padding: 6px 9px;
    color: #c9d8e1;
    background: rgba(34, 158, 217, .08);
    border: 1px solid rgba(34, 158, 217, .22);
    border-radius: 999px;
    font-size: 11px;
    text-decoration: none;
}

/* Scrollable knowledge pages */
.article-header {
    position: sticky;
    z-index: 40;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(12, 15, 18, .82);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.article-header__inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.brand span {
    color: var(--blue-bright);
}

.article-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #c8cdd3;
    font-size: 14px;
    font-weight: 600;
}

.article-nav a:hover {
    color: var(--blue-soft);
}

.article-nav__cta {
    padding: 10px 15px;
    color: #fff !important;
    background: var(--blue);
    border-radius: 999px;
}

.article-main {
    position: relative;
    z-index: 2;
    padding: 46px 0 72px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #7f8791;
    font-size: 13px;
}

.breadcrumbs a:hover {
    color: var(--blue-soft);
}

.article-hero {
    position: relative;
    padding: clamp(32px, 6vw, 74px);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 28%, rgba(34, 158, 217, .18), transparent 30%),
        rgba(17, 20, 23, .93);
    border: 2px solid rgba(255, 255, 255, .88);
    border-radius: 42px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.article-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(34, 158, 217, .16);
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(34, 158, 217, .08);
}

.article-eyebrow {
    margin: 0 0 14px;
    color: var(--blue-bright);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 920px;
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(31px, 5.2vw, 66px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.08;
    text-wrap: balance;
}

.article-lead {
    max-width: 820px;
    margin: 24px 0 0;
    color: #b5bcc5;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 18px 0 0;
    color: #8f98a3;
    font-size: 13px;
}

.article-meta a {
    color: var(--blue-soft);
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.article-actions .button {
    min-width: 0;
    min-height: 50px;
    padding-inline: 22px;
    font-size: 14px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 30px;
    margin-top: 32px;
}

.article-content,
.article-aside__card,
.trust-card,
.related-section {
    background: rgba(17, 20, 23, .92);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
}

.article-content {
    padding: clamp(26px, 4.5vw, 54px);
}

.article-content section + section {
    margin-top: 42px;
    padding-top: 38px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.article-content h2,
.article-content h3 {
    font-family: "Unbounded", sans-serif;
    letter-spacing: -.03em;
    text-wrap: balance;
}

.article-content h2 {
    margin: 0 0 18px;
    font-size: clamp(23px, 3vw, 36px);
    line-height: 1.25;
}

.article-content h3 {
    margin: 28px 0 12px;
    color: #dce5eb;
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.35;
}

.article-content p,
.article-content li {
    color: #aeb5be;
    font-size: 16px;
    line-height: 1.78;
}

.article-content p {
    margin: 0 0 16px;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-left: 22px;
}

.article-content li + li {
    margin-top: 8px;
}

.article-content strong {
    color: #edf2f5;
}

.article-content a {
    color: var(--blue-soft);
    text-decoration: underline;
    text-decoration-color: rgba(34, 158, 217, .5);
    text-underline-offset: 3px;
}

.callout {
    margin: 26px 0;
    padding: 20px 22px;
    color: #cbd7de;
    background: rgba(34, 158, 217, .09);
    border: 1px solid rgba(34, 158, 217, .22);
    border-radius: 20px;
}

.answer-card {
    padding: 20px 0;
}

.answer-card + .answer-card {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.answer-card h3 {
    margin-top: 0;
}

.tool-grid,
.related-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tool-card,
.related-card,
.trust-card {
    padding: 20px;
}

.tool-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
}

.tool-card h3 {
    margin-top: 0;
}

.tool-card p {
    margin-bottom: 0;
    font-size: 14px;
}

.article-aside {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 18px;
}

.article-aside__card {
    padding: 24px;
}

.article-aside h2 {
    margin: 0 0 14px;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.toc {
    display: grid;
    gap: 10px;
    color: #939ba5;
    font-size: 14px;
}

.toc a:hover {
    color: var(--blue-soft);
}

.aside-cta {
    background: linear-gradient(145deg, rgba(34, 158, 217, .2), rgba(17, 20, 23, .95));
}

.aside-cta p {
    margin: 0 0 16px;
    color: #abb3bc;
    font-size: 14px;
    line-height: 1.6;
}

.aside-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 13px;
}

.related-section {
    margin-top: 32px;
    padding: clamp(26px, 4vw, 44px);
}

.related-section > h2 {
    margin: 0 0 20px;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(22px, 3vw, 32px);
}

.related-card {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    transition: border-color .2s ease, transform .2s ease;
}

.related-card:hover {
    border-color: rgba(34, 158, 217, .48);
    transform: translateY(-3px);
}

.related-card strong {
    display: block;
    margin-bottom: 7px;
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.related-card span {
    color: #8d959f;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer {
    position: relative;
    z-index: 2;
    padding: 0 0 36px;
}

.site-footer__inner {
    display: flex;
    padding-top: 26px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #7f8790;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.footer-links a:hover {
    color: var(--blue-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes title-shine {
    0%, 24% { background-position: 110% 50%; }
    58%, 100% { background-position: -115% 50%; }
}

@keyframes scene-reveal {
    from { transform: translate3d(-50%, -22px, 0) scale(.98); }
    to { transform: translate3d(-50%, 0, 0) scale(1); }
}

@keyframes icon-reveal {
    from { opacity: 0; filter: blur(7px) drop-shadow(0 15px 18px rgba(0, 0, 0, .46)); }
    to { opacity: 1; }
}

@keyframes content-arrival {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes tail-arrival {
    from { opacity: 0; transform: translate(-50%, 16px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 1120px) and (min-width: 993px) {
    .home-card {
        padding-inline: 38px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr) minmax(0, .9fr);
        gap: 18px;
    }

    .topic-labels span {
        padding: 6px 8px;
        font-size: 10px;
    }
}

@media (min-width: 993px) and (max-height: 800px) {
    .home-card {
        padding-top: 25px;
    }

    .hero-kicker {
        font-size: 16px;
    }

    .hero-title {
        font-size: clamp(31px, 3.1vw, 44px);
    }

    .button {
        min-width: 198px;
        min-height: 50px;
        padding-inline: 25px;
        font-size: 15px;
    }

    .hero-grid {
        height: clamp(310px, 44vh, 350px);
    }

    .topic-labels {
        gap: 5px;
    }

    .topic-labels span {
        padding: 6px 8px;
        font-size: 10px;
    }

    .seo-tail {
        height: 96px;
        padding-block: 11px;
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .custom-cursor,
    .ambient-glow {
        display: none;
    }

    .home-card {
        padding-inline: 28px;
    }

    .hero-grid {
        height: 360px;
        grid-template-columns: 1fr;
        padding-bottom: 82px;
    }

    .hero-side {
        display: none;
    }

    .community-scene {
        width: min(100%, 500px);
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-lang-switch {
        right: 4px;
        min-width: 30px;
        min-height: 27px;
        padding: 4px 7px;
        font-size: 10px;
    }

    .container {
        width: min(calc(100% - 20px), var(--content));
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-logo {
        max-width: 310px;
        font-size: clamp(13px, 4vw, 17px);
    }

    .home-main {
        padding-bottom: 18px;
    }

    .home-card {
        padding: 22px 18px 0;
        border-width: 3px;
        border-radius: 32px;
    }

    .hero-kicker {
        font-size: clamp(13px, 4vw, 16px);
    }

    .hero-title {
        font-size: clamp(25px, 7.2vw, 31px);
        overflow-wrap: anywhere;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 14px;
    }

    .button {
        width: min(100%, 265px);
        min-width: 0;
        min-height: 46px;
        padding-inline: 16px;
        font-size: 13px;
    }

    .button__icon {
        width: 21px;
        height: 21px;
    }

    .hero-grid {
        height: 430px;
        padding-bottom: 130px;
    }

    .community-scene {
        transform: translateY(30px);
    }

    .ai-orbit-icon {
        width: 58px;
        height: 58px;
    }

    .ai-orbit-icon--telegram {
        width: 90px;
        height: 90px;
        margin: -45px 0 0 -45px;
    }

    .ai-orbit-icon--kling { left: -5%; }
    .ai-orbit-icon--gemini { right: -5%; }
    .ai-orbit-icon--claude { left: -6%; }
    .ai-orbit-icon--higgsfield { right: -6%; }
    .ai-orbit-icon--chatgpt { right: 2%; width: 57px; height: 57px; }

    .seo-tail {
        width: calc(100% - 16px);
        height: 150px;
        bottom: 6px;
        padding: 10px 12px;
        font-size: 10px;
        line-height: 1.55;
    }

    .seo-tail h2 {
        font-size: 12px;
    }

    .seo-links {
        gap: 5px;
    }

    .seo-links a {
        padding: 5px 7px;
        font-size: 9px;
    }

    .article-header__inner {
        min-height: 64px;
    }

    .article-nav a:not(.article-nav__cta) {
        display: none;
    }

    .article-nav a.lang-switch {
        display: inline-flex;
        padding: 7px 9px;
        font-size: 10px;
    }

    .brand {
        font-size: 15px;
    }

    .article-nav__cta {
        padding: 9px 12px;
        font-size: 12px;
    }

    .article-main {
        padding: 24px 0 52px;
    }

    .article-hero {
        padding: 30px 22px;
        border-radius: 28px;
    }

    .article-hero h1 {
        font-size: clamp(28px, 9vw, 44px);
    }

    .article-lead {
        font-size: 16px;
    }

    .article-layout {
        margin-top: 18px;
    }

    .article-content {
        padding: 26px 20px;
        border-radius: 24px;
    }

    .article-content p,
    .article-content li {
        font-size: 15px;
    }

    .article-aside {
        grid-template-columns: 1fr;
    }

    .tool-grid,
    .related-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body:not(.home-page) *,
    body:not(.home-page) *::before,
    body:not(.home-page) *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
