:root {
    --tone-bg: #0a0a0e;
    --tone-panel: #14141c;
    --tone-card: #1b1b24;
    --tone-line: #2a2a36;
    --tone-accent: #ff6a00;
    --tone-accent-soft: #ff8533;
    --tone-text: #f2f2f7;
    --tone-muted: #8b8b9a;
    --tone-success: #22c55e;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.35);
    --header-h: 56px;
    --nav-h: 48px;
    --page-pad: clamp(12px, 3vw, 24px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.55;
    color: var(--tone-text);
    background: var(--tone-bg);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

.site-frame {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--tone-bg);
    border-bottom: 1px solid var(--tone-line);
}

.masthead-panel {
    background: var(--tone-panel);
}

.masthead-panel__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--header-h);
    padding: 0 var(--page-pad);
    max-width: 1400px;
    margin: 0 auto;
}

.masthead-brand__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.masthead-brand__img {
    width: auto;
    max-height: 36px;
}

.masthead-brand__text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--tone-accent);
}

.masthead-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.masthead-tools__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.action-btn--ghost {
    color: var(--tone-text);
    background: transparent;
    border: 1px solid var(--tone-line);
}

.action-btn--ghost:hover {
    border-color: var(--tone-muted);
}

.action-btn--accent,
.hero-slide__action,
.tile-card__play,
.catalog-block__more,
.app-download-link {
    color: #fff;
    background: linear-gradient(180deg, var(--tone-accent-soft), var(--tone-accent));
    border: none;
}

.action-btn--accent:hover,
.hero-slide__action:hover,
.tile-card__play:hover,
.catalog-block__more:hover,
.app-download-link:hover {
    filter: brightness(1.08);
}

@keyframes masthead-btn-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.42);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 106, 0, 0);
        transform: scale(1.03);
    }
}

@keyframes masthead-btn-pulse-ghost {
    0%,
    100% {
        border-color: rgba(255, 106, 0, 0.35);
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.18);
    }

    50% {
        border-color: rgba(255, 133, 51, 0.85);
        box-shadow: 0 0 14px rgba(255, 106, 0, 0.28);
    }
}

.masthead-tools__actions .action-btn--accent {
    animation: masthead-btn-pulse 2.2s ease-in-out infinite;
}

.masthead-tools__actions .action-btn--ghost {
    animation: masthead-btn-pulse-ghost 2.2s ease-in-out infinite;
}

.masthead-tools__actions .action-btn:hover {
    animation: none;
    transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .masthead-tools__actions .action-btn {
        animation: none;
    }
}

.drawer-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-sm);
    background: var(--tone-card);
    cursor: pointer;
}

.drawer-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--tone-text);
    border-radius: 2px;
}

.nav-strip {
    background: var(--tone-bg);
    border-top: 1px solid var(--tone-line);
}

.nav-strip__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-strip__scroll::-webkit-scrollbar {
    display: none;
}

.nav-strip__list {
    display: flex;
    align-items: stretch;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0 var(--page-pad);
    min-height: var(--nav-h);
    max-width: 1400px;
}

.nav-strip__cell {
    flex: 0 0 auto;
}

.nav-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: var(--nav-h);
    padding: 0 14px;
    text-decoration: none;
    color: var(--tone-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-strip__link:hover,
.nav-strip__link.is-active {
    color: var(--tone-text);
    border-bottom-color: var(--tone-accent);
}

.nav-glyph {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--tone-accent);
}

.nav-strip__caption {
    white-space: nowrap;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 250;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--tone-panel);
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.nav-drawer.is-visible {
    transform: translateX(0);
}

.nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--page-pad);
    border-bottom: 1px solid var(--tone-line);
}

.nav-drawer__title {
    font-size: 0.9375rem;
    font-weight: 700;
}

.nav-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--tone-card);
    color: var(--tone-text);
    cursor: pointer;
}

.nav-drawer__close svg {
    width: 18px;
    height: 18px;
}

.nav-drawer__list {
    list-style: none;
    margin: 0;
    padding: 12px;
    overflow-y: auto;
}

.nav-drawer__cell {
    margin-bottom: 4px;
}

.nav-drawer__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--tone-muted);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-drawer__link:hover,
.nav-drawer__link.is-active {
    background: var(--tone-card);
    color: var(--tone-text);
}

body.drawer-open {
    overflow: hidden;
}

.page-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--page-pad);
}

.path-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 0.8125rem;
}

.path-trail__link {
    color: var(--tone-muted);
    text-decoration: none;
}

.path-trail__link:hover {
    color: var(--tone-accent);
}

.path-trail__sep {
    color: var(--tone-line);
}

.hero-slides {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--tone-card);
    border: 1px solid var(--tone-line);
}

.hero-slide picture,
.hero-slide__visual {
    width: 100%;
    display: block;
}

.hero-slide__visual {
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.hero-slide__copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: clamp(16px, 4vw, 32px);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.hero-slide__headline {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-slide__subline {
    margin: 0 0 14px;
    color: var(--tone-muted);
    font-size: 0.9375rem;
}

.hero-slide__action {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.catalog-block {
    margin-bottom: 28px;
}

.catalog-block__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.catalog-block__label {
    font-size: 1.125rem;
    font-weight: 700;
}

.catalog-block__more {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
}

.catalog-block__track-wrap {
    overflow: hidden;
}

.catalog-block__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 160px);
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.tile-card {
    background: var(--tone-card);
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tile-card__media {
    position: relative;
}

.tile-card__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.tile-card__play {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
}

.tile-card__name {
    padding: 10px;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tone-muted);
}

.offers-block {
    margin-bottom: 28px;
}

.offers-block__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.offer-card {
    background: var(--tone-card);
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.offer-card__visual-wrap {
    width: 100%;
}

.offer-card__visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.offer-card__body {
    padding: 16px;
}

.offer-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-card__desc {
    margin: 0 0 10px;
    color: var(--tone-muted);
    font-size: 0.875rem;
}

.offer-card__value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tone-accent);
    margin-bottom: 8px;
}

.offer-card__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--tone-accent-soft);
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-card__terms {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--tone-line);
    color: var(--tone-muted);
    font-size: 0.75rem;
}

.page-bonuses .offers-block {
    margin-bottom: 32px;
}

.page-bonuses .catalog-block__label {
    margin: 0 0 18px;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #ffd099 0%, var(--tone-accent-soft) 55%, var(--tone-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-bonuses .catalog-block__label::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tone-accent), transparent);
}

.page-bonuses .offers-block__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.page-bonuses .offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 106, 0, 0.22);
    border-radius: calc(var(--radius-md) + 2px);
    background:
        linear-gradient(180deg, rgba(255, 106, 0, 0.06), rgba(255, 106, 0, 0)),
        var(--tone-card);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-bonuses .offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tone-accent-soft), transparent);
    opacity: 0.7;
    z-index: 1;
}

.page-bonuses .offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.45);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(255, 106, 0, 0.12);
}

.page-bonuses .offer-card__visual-wrap {
    position: relative;
    overflow: hidden;
}

.page-bonuses .offer-card__visual-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.page-bonuses .offer-card__visual {
    transition: transform 0.35s ease;
}

.page-bonuses .offer-card:hover .offer-card__visual {
    transform: scale(1.04);
}

.page-bonuses .offer-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px;
    padding: 18px 18px 16px;
}

.page-bonuses .offer-card__title {
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    color: var(--tone-text);
}

.page-bonuses .offer-card__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
}

.page-bonuses .offer-card__value {
    margin: 4px 0 0;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 106, 0, 0.28);
    background: rgba(255, 106, 0, 0.1);
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.35;
    color: #ffd099;
    text-align: center;
}

.page-bonuses .offer-card__tag {
    align-self: flex-start;
    margin-top: 2px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 106, 0, 0.25);
    background: rgba(255, 106, 0, 0.12);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-bonuses .offer-card__terms {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 106, 0, 0.22);
    font-size: 0.6875rem;
    line-height: 1.5;
}

.seo-block {
    max-width: 920px;
    margin: 28px auto 0;
    padding: 24px;
    background: var(--tone-panel);
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-lg);
}

.seo-block h1 {
    font-size: clamp(1.375rem, 3vw, 1.875rem);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 18px;
}

.seo-block h2 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin: 28px 0 12px;
}

.seo-block h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.seo-block p {
    margin: 0 0 14px;
    color: var(--tone-muted);
}

.seo-block a {
    color: var(--tone-accent-soft);
}

.seo-block img {
    margin: 16px 0;
    border-radius: var(--radius-md);
}

.seo-block blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 3px solid var(--tone-accent);
    background: var(--tone-card);
    color: var(--tone-muted);
}

.data-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-md);
}

.data-scroll table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}

.data-scroll th,
.data-scroll td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--tone-line);
    text-align: left;
    font-size: 0.875rem;
}

.data-scroll th {
    background: var(--tone-card);
    color: var(--tone-text);
    font-weight: 700;
    white-space: nowrap;
}

.data-scroll td {
    color: var(--tone-muted);
}

.data-scroll caption {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: var(--tone-text);
}

.seo-block ul,
.seo-block ol,
.list-stack ul,
.list-stack ol {
    margin: 14px 0;
    padding-left: 22px;
    color: var(--tone-muted);
}

.seo-block li,
.list-stack li {
    margin-bottom: 6px;
}

.faq-stack {
    margin: 18px 0;
}

.faq-stack__item {
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--tone-card);
}

.faq-stack__question {
    padding: 14px 16px;
    background: rgba(255, 106, 0, 0.08);
    font-weight: 700;
}

.faq-stack__answer {
    padding: 14px 16px;
    color: var(--tone-muted);
}

.guide-stack {
    margin: 18px 0;
    padding: 16px;
    background: var(--tone-card);
    border: 1px solid var(--tone-line);
    border-radius: var(--radius-md);
}

.guide-stack__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: guide-step;
}

.guide-stack__step {
    counter-increment: guide-step;
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid var(--tone-line);
}

.guide-stack__step:last-child {
    border-bottom: none;
}

.guide-stack__step::before {
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--tone-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-stack__step strong {
    display: block;
    margin-bottom: 6px;
}

.guide-stack__step p {
    margin: 0;
    color: var(--tone-muted);
    font-size: 0.875rem;
}

.page-app .app-spec-wrap {
    max-width: 760px;
    margin: clamp(16px, 4vw, 28px) auto clamp(24px, 5vw, 36px);
}

.page-app .app-spec-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 106, 0, 0.34);
    border-radius: calc(var(--radius-lg) + 6px);
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 106, 0, 0.2), transparent 52%),
        radial-gradient(circle at 100% 100%, rgba(255, 106, 0, 0.12), transparent 45%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
        var(--tone-card);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 24px 56px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 106, 0, 0.12);
}

.page-app .app-spec-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tone-accent), var(--tone-accent-soft), transparent);
}

.page-app .app-spec-panel.data-scroll {
    overflow: hidden;
}

.page-app .app-spec-panel.data-scroll table,
.page-app .app-spec-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
}

.page-app .app-spec-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.page-app .app-spec-row:hover {
    background: rgba(255, 106, 0, 0.04);
}

.page-app .app-spec-row:last-child {
    border-bottom: none;
    background: rgba(255, 106, 0, 0.07);
}

.page-app .app-spec-row:first-child {
    background: rgba(255, 106, 0, 0.06);
}

.page-app .app-spec-row:first-child:hover {
    background: rgba(255, 106, 0, 0.09);
}

.page-app .app-spec-icon-cell {
    width: 68px;
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
    background: transparent;
}

.page-app .app-spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    color: var(--tone-accent-soft);
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.24);
    box-sizing: border-box;
    flex-shrink: 0;
}

.page-app .app-spec-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.page-app .app-spec-value-cell {
    padding: 16px 18px 16px 4px;
    color: var(--tone-muted);
    vertical-align: middle;
    line-height: 1.6;
    min-width: 0;
    overflow-wrap: break-word;
}

.page-app .app-spec-row:first-child .app-spec-value-cell {
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-app .app-brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.page-app .app-brand-logo {
    width: 56px;
    height: 56px;
    padding: 8px;
    border-radius: 16px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 106, 0, 0.28);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.18);
}

.page-app .app-brand-name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(180deg, #ffd099 0%, var(--tone-accent-soft) 55%, var(--tone-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-app .app-spec-row:nth-child(2) .app-spec-value-cell {
    font-size: 0.9375rem;
    color: var(--tone-text);
}

.page-app .app-spec-row:nth-child(n + 3):nth-child(-n + 6) .app-spec-value-cell {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--tone-text);
}

.page-app .app-spec-row:nth-child(n + 3):nth-child(-n + 6) .app-spec-value-cell::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--tone-accent);
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
    vertical-align: middle;
}

.page-app .app-spec-row:last-child .app-spec-icon-cell {
    vertical-align: middle;
}

.page-app .app-spec-row:last-child .app-spec-value-cell {
    padding-top: 18px;
    padding-bottom: 18px;
}

.page-app .app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, var(--tone-accent-soft), var(--tone-accent));
    box-shadow: 0 10px 28px rgba(255, 106, 0, 0.38);
    animation: app-download-pulse 2.2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.page-app .app-download-link:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 106, 0, 0.48);
    filter: brightness(1.06);
}

@keyframes app-download-pulse {
    0%,
    100% {
        box-shadow: 0 10px 28px rgba(255, 106, 0, 0.38), 0 0 0 0 rgba(255, 106, 0, 0.4);
    }

    50% {
        box-shadow: 0 10px 28px rgba(255, 106, 0, 0.38), 0 0 0 12px rgba(255, 106, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-app .app-download-link {
        animation: none;
    }
}

@media (max-width: 640px) {
    .page-app .app-spec-wrap {
        margin-inline: 0;
    }

    .page-app .app-spec-panel {
        border-radius: var(--radius-lg);
    }

    .page-app .app-spec-table,
    .page-app .app-spec-table tbody {
        display: block;
        width: 100%;
    }

    .page-app .app-spec-row {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        box-sizing: border-box;
    }

    .page-app .app-spec-icon-cell {
        flex: 0 0 40px;
        width: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-app .app-spec-value-cell {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        max-width: calc(100% - 52px);
        padding: 0;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .page-app .app-spec-row:first-child {
        padding: 16px;
    }

    .page-app .app-spec-row:first-child .app-spec-icon-cell {
        display: none;
    }

    .page-app .app-spec-row:first-child .app-spec-value-cell {
        max-width: 100%;
        padding: 0;
    }

    .page-app .app-brand-logo {
        width: 44px;
        height: 44px;
        padding: 6px;
    }

    .page-app .app-brand-name {
        font-size: 1.125rem;
    }

    .page-app .app-spec-row:nth-child(2) {
        align-items: flex-start;
    }

    .page-app .app-spec-row:nth-child(2) .app-spec-icon-cell {
        margin-top: 2px;
    }

    .page-app .app-spec-row:nth-child(2) .app-spec-value-cell {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .page-app .app-spec-row:nth-child(n + 3):nth-child(-n + 6) .app-spec-value-cell::before {
        margin-right: 6px;
        vertical-align: 0.15em;
    }

    .page-app .app-spec-row:last-child {
        padding: 16px;
    }

    .page-app .app-spec-row:last-child .app-spec-icon-cell {
        display: none;
    }

    .page-app .app-spec-row:last-child .app-spec-value-cell {
        flex: 1 1 100%;
        max-width: 100%;
        display: block;
        text-align: center;
        padding: 0;
    }

    .page-app .app-download-link {
        width: 100%;
        max-width: 100%;
        min-height: 44px;
        padding-inline: 16px;
        font-size: 0.8125rem;
        box-sizing: border-box;
    }
}

.error-panel {
    position: relative;
    isolation: isolate;
    max-width: 620px;
    margin: clamp(24px, 6vw, 48px) auto clamp(32px, 8vw, 56px);
    padding: clamp(36px, 8vw, 56px) clamp(20px, 5vw, 36px);
    text-align: center;
    border-radius: calc(var(--radius-lg) + 4px);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
        var(--tone-card);
    border: 1px solid rgba(255, 106, 0, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 106, 0, 0.12);
    overflow: hidden;
}

.error-panel::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    width: min(420px, 90vw);
    height: min(420px, 90vw);
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.28) 0%, rgba(255, 106, 0, 0.08) 42%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.error-panel::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tone-accent), var(--tone-accent-soft), transparent);
    opacity: 0.9;
}

.error-panel__code {
    display: block;
    font-size: clamp(4.5rem, 20vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin: 0 0 12px;
    letter-spacing: -0.05em;
    background: linear-gradient(180deg, #ffd099 0%, var(--tone-accent-soft) 45%, var(--tone-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.45));
}

.error-panel__title {
    font-size: clamp(1.125rem, 3.2vw, 1.625rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 14px;
    color: var(--tone-text);
}

.error-panel__text {
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: 1.65;
    color: var(--tone-muted);
}

.error-panel .action-btn {
    min-height: 44px;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.error-panel .action-btn:hover {
    box-shadow: 0 10px 28px rgba(255, 106, 0, 0.45);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .error-panel {
        margin-inline: 0;
    }

    .error-panel__code {
        font-size: clamp(3.75rem, 24vw, 5.5rem);
    }
}

.page-doc .path-trail {
    margin-bottom: 20px;
}

.page-doc .seo-block {
    position: relative;
    isolation: isolate;
    max-width: 820px;
    margin: clamp(20px, 5vw, 36px) auto 0;
    padding: clamp(28px, 6vw, 40px);
    border-radius: calc(var(--radius-lg) + 4px);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.16), transparent 45%),
        radial-gradient(circle at 0% 100%, rgba(255, 106, 0, 0.1), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        var(--tone-card);
    border: 1px solid rgba(255, 106, 0, 0.32);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 22px 48px rgba(0, 0, 0, 0.4),
        0 0 36px rgba(255, 106, 0, 0.1);
    overflow: hidden;
}

.page-doc .seo-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tone-accent), var(--tone-accent-soft), transparent);
}

.page-doc .seo-block h1 {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #ffd099 0%, var(--tone-accent-soft) 50%, var(--tone-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-doc .seo-block h1 + p {
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    line-height: 1.65;
    color: var(--tone-text);
}

.page-doc .seo-block h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 14px;
    font-size: clamp(1.0625rem, 2.8vw, 1.25rem);
    font-weight: 800;
    color: var(--tone-text);
}

.page-doc .seo-block h2::before {
    content: "";
    width: 4px;
    height: 1.1em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--tone-accent-soft), var(--tone-accent));
    flex-shrink: 0;
}

.page-doc .seo-block h3 {
    margin: 22px 0 10px;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--tone-accent-soft);
}

.page-doc .seo-block p {
    margin: 0 0 14px;
    line-height: 1.7;
    color: var(--tone-muted);
}

.page-doc .seo-block a {
    color: var(--tone-accent-soft);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.page-doc .seo-block a:hover {
    color: #ffd099;
}

.page-doc .seo-block ul,
.page-doc .list-stack ul,
.page-doc .seo-block ol,
.page-doc .list-stack ol {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.page-doc .seo-block ul li,
.page-doc .list-stack ul li {
    position: relative;
    margin-bottom: 8px;
    padding: 11px 14px 11px 30px;
    border-radius: var(--radius-sm);
    background: rgba(255, 106, 0, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.14);
    color: var(--tone-text);
    line-height: 1.55;
}

.page-doc .seo-block ul li::before,
.page-doc .list-stack ul li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 1.05em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tone-accent);
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.45);
}

.page-doc .seo-block ol li,
.page-doc .list-stack ol li {
    margin-bottom: 8px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 106, 0, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.14);
    color: var(--tone-text);
    line-height: 1.55;
}

.page-doc .seo-block blockquote {
    margin: 18px 0;
    padding: 16px 18px;
    border-left: 3px solid var(--tone-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(255, 106, 0, 0.07);
    color: var(--tone-text);
}

.page-doc .data-scroll {
    border-color: rgba(255, 106, 0, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.page-doc .data-scroll th {
    background: rgba(255, 106, 0, 0.12);
}

.page-doc.page-contact .seo-block h3 {
    margin: 0 0 8px;
    padding: 14px 16px 0;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-doc.page-contact .seo-block h3 + p {
    margin: 0 0 16px;
    padding: 0 16px 16px;
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(255, 106, 0, 0.06);
    color: var(--tone-text);
}

.page-doc.page-contact .seo-block h3:has(+ p) {
    padding-top: 14px;
    border: 1px solid rgba(255, 106, 0, 0.18);
    border-bottom: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: rgba(255, 106, 0, 0.08);
}

.page-doc.page-contact .seo-block a[href^="mailto:"] {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(180deg, var(--tone-accent-soft), var(--tone-accent));
    box-shadow: 0 8px 22px rgba(255, 106, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.page-doc.page-contact .seo-block a[href^="mailto:"]:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(255, 106, 0, 0.45);
    filter: brightness(1.06);
}

.page-doc.page-contact .seo-block h2:last-of-type + p {
    margin-bottom: 0;
    padding: 16px 18px;
    border: 1px dashed rgba(255, 106, 0, 0.28);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.18);
    color: var(--tone-muted);
}

.page-footer {
    position: relative;
    margin-top: 48px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 106, 0, 0.12), transparent 65%),
        linear-gradient(180deg, #101018 0%, var(--tone-bg) 100%);
    border-top: 1px solid var(--tone-line);
    overflow: hidden;
}

.page-footer__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tone-accent), var(--tone-accent-soft), transparent);
    opacity: 0.85;
}

.page-footer__shell {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

.page-footer__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-footer__brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.page-footer__brand-img {
    width: auto;
    max-height: 38px;
    filter: drop-shadow(0 4px 12px rgba(255, 106, 0, 0.18));
}

.page-footer__brand-text {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--tone-accent);
}

.page-footer__brand-note {
    margin: 8px 0 0;
    font-size: 0.8125rem;
    color: var(--tone-muted);
    max-width: 320px;
    line-height: 1.5;
}

.page-footer__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.page-footer__cta-btn {
    min-height: 40px;
    padding-inline: 18px;
    border-radius: 999px;
    font-size: 0.8125rem;
}

.page-footer__payments {
    padding: 22px 0 8px;
}

.page-footer__payments-label {
    margin: 0 0 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tone-muted);
}

.page-footer__payments-track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-footer__pay-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 48px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-footer__pay-chip:hover {
    border-color: rgba(255, 106, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.12);
    transform: translateY(-1px);
}

.page-footer__pay-chip-img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.1) brightness(1.05);
}

.page-footer__pay-chip-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--tone-text);
}

.page-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 28px 0 24px;
}

.page-footer__col {
    padding: 18px 18px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-footer__heading {
    margin: 0 0 14px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tone-text);
}

.page-footer__heading::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tone-accent), transparent);
}

.page-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-footer__menu-item + .page-footer__menu-item {
    margin-top: 4px;
}

.page-footer__menu-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: var(--tone-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.page-footer__menu-link:hover,
.page-footer__menu-link.is-active {
    color: var(--tone-text);
    transform: translateX(3px);
}

.page-footer__menu-link.is-active .page-footer__menu-dot {
    background: var(--tone-accent);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.45);
}

.page-footer__menu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.35);
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.page-footer__menu-link:hover .page-footer__menu-dot {
    background: var(--tone-accent-soft);
}

.page-footer__social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-footer__social-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--tone-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-footer__social-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 0, 0.45);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.page-footer__social-chip-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.page-footer__social-chip-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--tone-text);
    padding: 0 6px;
}

.page-footer__trust {
    padding: 8px 0 22px;
}

.page-footer__trust-list {
    list-style: none;
    margin: 0;
    padding: 16px 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.22);
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

.page-footer__trust-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-footer__trust-link:hover {
    opacity: 0.92;
    transform: scale(1.03);
}

.page-footer__trust-img {
    max-width: 96px;
    height: auto;
    display: block;
}

.page-footer__legalbar {
    padding: 18px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.page-footer__legal {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--tone-text);
}

.page-footer__disclaimer {
    margin: 0 auto;
    max-width: 760px;
    font-size: 0.75rem;
    line-height: 1.65;
    color: var(--tone-muted);
}

@media (max-width: 900px) {
    .nav-strip {
        display: none;
    }

    .drawer-toggle {
        display: inline-flex;
    }

    .hero-slide__visual {
        aspect-ratio: 16 / 10;
    }

    .catalog-block__track {
        grid-auto-columns: minmax(120px, 140px);
    }

    .page-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-footer__col--social {
        grid-column: 1 / -1;
    }

    .page-footer__intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-footer__cta-row {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .masthead-panel__inner {
        gap: 8px;
    }

    .masthead-brand__img {
        max-height: 30px;
    }

    .masthead-tools {
        gap: 6px;
    }

    .masthead-tools__actions {
        gap: 4px;
    }

    .action-btn {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.6875rem;
    }

    .drawer-toggle {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .hero-slide__copy {
        position: static;
        background: var(--tone-card);
    }

    .hero-slide__visual {
        aspect-ratio: 16 / 11;
    }

    .seo-block {
        padding: 16px;
    }

    .page-doc .seo-block {
        padding: 20px 16px;
    }

    .page-doc.page-contact .seo-block h3 + p,
    .page-doc.page-contact .seo-block h3:has(+ p) {
        padding-inline: 14px;
    }

    .page-doc .seo-block ul li,
    .page-doc .list-stack ul li {
        padding-left: 28px;
    }

    .offers-block__grid,
    .page-bonuses .offers-block__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-bonuses .offer-card:hover {
        transform: none;
    }

    .page-bonuses .offer-card:hover .offer-card__visual {
        transform: none;
    }

    .page-footer__grid {
        grid-template-columns: 1fr;
    }

    .page-footer__payments-track {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .page-footer__pay-chip {
        flex: 0 0 auto;
    }

    .page-footer__cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .page-footer__cta-btn {
        width: 100%;
        justify-content: center;
    }

    .page-footer__trust-list {
        gap: 10px;
        padding: 14px 12px;
    }
}

@media (min-width: 901px) {
    .nav-drawer,
    .drawer-backdrop,
    .drawer-toggle {
        display: none;
    }
}
