:root {
    --black: #0b0d10;
    --black-2: #15181d;
    --ink: #1d2026;
    --ink-soft: #4b4f57;
    --paper: #f2ede2;
    --paper-2: #fffaf0;
    --white: #ffffff;
    --yellow: #ffb800;
    --yellow-2: #ffd23f;
    --orange: #ff6a00;
    --blue: #229ed9;
    --blue-dark: #0c79ad;
    --red: #e33d32;
    --line: #cfc7b8;
    --muted: #777a80;
    --shell: 1180px;
    --header-h: 82px;
    --shadow-hard: 10px 10px 0 rgba(11, 13, 16, 0.16);
    --shadow-soft: 0 22px 60px rgba(11, 13, 16, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.age-bar {
    position: relative;
    z-index: 60;
    background: var(--yellow);
    color: var(--black);
    border-bottom: 2px solid var(--black);
}

.age-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.age-bar__inner strong {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-right: 7px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
}

.age-bar__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.age-bar__status i {
    width: 8px;
    height: 8px;
    background: #189b41;
    border: 2px solid rgba(11, 13, 16, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(24, 155, 65, 0.14);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(11, 13, 16, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header-grid {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 190px;
}

.brand img {
    width: 100%;
    height: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-menu a {
    position: relative;
    padding: 12px 0;
    color: #e9eaec;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.main-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 7px;
    height: 3px;
    background: var(--yellow);
    transition: right 0.2s ease;
}

.main-menu a:hover::before,
.main-menu a.is-active::before {
    right: 0;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-button:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 11px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.035) 47% 47.1%, transparent 47.1%),
        linear-gradient(0deg, transparent 0 80%, rgba(255, 255, 255, 0.035) 80% 80.2%, transparent 80.2%);
}

.hero-pattern {
    position: absolute;
    top: -180px;
    left: -210px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    opacity: 0.22;
    background: repeating-conic-gradient(from 0deg, var(--yellow) 0deg 8deg, transparent 8deg 16deg);
}

.hero-pattern::after {
    content: "";
    position: absolute;
    inset: 150px;
    background: var(--black);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
    align-items: center;
    gap: 72px;
    min-height: 690px;
    padding-block: 74px 108px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #d8d9dc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.hero-label span {
    padding: 5px 9px;
    background: var(--yellow);
    color: var(--black);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Arial Black", "Arial Narrow Bold", Arial, sans-serif;
    font-size: clamp(54px, 7.2vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}

.hero h1 mark {
    position: relative;
    display: inline;
    background: transparent;
    color: var(--yellow);
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-decoration-thickness: 8px;
    text-underline-offset: 9px;
}

.hero-lead {
    max-width: 730px;
    margin: 30px 0 0;
    color: #c8cbd0;
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
    border: 3px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
    transform: translate(-2px, -2px);
}

.btn--yellow {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    box-shadow: 7px 7px 0 var(--orange);
}

.btn--yellow:hover {
    box-shadow: 10px 10px 0 var(--orange);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.54);
}

.btn--outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.btn--white {
    margin-top: 26px;
    background: var(--white);
    color: var(--blue-dark);
    border-color: var(--white);
    box-shadow: 7px 7px 0 rgba(7, 75, 107, 0.46);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 36px;
    color: #aeb2b8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-meta b {
    color: var(--yellow);
    font-size: 10px;
}

.hero-visual {
    position: relative;
    max-width: 470px;
    justify-self: end;
}

.hero-ticket {
    position: relative;
    z-index: 2;
    background: var(--paper-2);
    color: var(--black);
    border: 4px solid var(--white);
    box-shadow: 14px 14px 0 var(--yellow);
    transform: rotate(1.2deg);
}

.hero-ticket::before,
.hero-ticket::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    background: var(--black);
    border-radius: 50%;
}

.hero-ticket::before {
    left: -18px;
}

.hero-ticket::after {
    right: -18px;
}

.hero-ticket__top,
.hero-ticket__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-ticket__top {
    border-bottom: 2px dashed var(--black);
}

.hero-ticket__bottom {
    align-items: flex-start;
    border-top: 2px dashed var(--black);
}

.hero-ticket__bottom strong,
.hero-ticket__bottom small {
    display: block;
}

.hero-ticket__bottom strong {
    max-width: 250px;
    font-size: 12px;
}

.hero-ticket__bottom small {
    color: var(--muted);
    font-size: 9px;
}

.hero-ticket picture,
.hero-ticket img {
    width: 100%;
}

.hero-ticket img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-stamp {
    position: absolute;
    z-index: 4;
    right: -44px;
    bottom: -42px;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border: 5px double var(--white);
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.08;
    text-align: center;
    transform: rotate(-10deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.address-dock {
    position: relative;
    z-index: 10;
    margin-top: -48px;
}

.address-dock__inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: 160px minmax(250px, 1fr) 210px auto;
    align-items: stretch;
    background: var(--white);
    border: 4px solid var(--black);
    box-shadow: var(--shadow-hard);
}

.address-dock__label,
.address-dock__url,
.address-dock__update,
.address-dock__button {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px;
}

.address-dock__label {
    background: var(--orange);
    color: var(--white);
    border-right: 4px solid var(--black);
    font-family: "Arial Black", Arial, sans-serif;
    line-height: 1;
}

.address-dock__label span {
    font-size: 12px;
    letter-spacing: 0.12em;
}

.address-dock__label strong {
    margin-top: 5px;
    font-size: 24px;
}

.address-dock__url,
.address-dock__update {
    border-right: 2px solid var(--line);
}

.address-dock small,
.quick-panel small {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.address-dock code {
    display: block;
    overflow: hidden;
    margin-top: 4px;
    color: var(--black);
    font-family: Consolas, Monaco, monospace;
    font-size: clamp(16px, 2.2vw, 23px);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.address-dock__update strong {
    margin-top: 4px;
    font-size: 16px;
}

.address-dock__button {
    min-width: 176px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    background: var(--black);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-align: center;
    transition: background 0.18s ease, color 0.18s ease;
}

.address-dock__button:hover {
    background: var(--yellow);
    color: var(--black);
}

.intro-section {
    padding: 120px 0 90px;
}

.intro-layout {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.section-index {
    color: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: clamp(76px, 10vw, 132px);
    line-height: 0.75;
    -webkit-text-stroke: 3px var(--black);
    text-shadow: 7px 7px 0 var(--black);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
}

.section-copy h2,
.long-article h2,
.telegram-copy h2,
.device-card h2,
.route-heading h2,
.editorial-title h2,
.faq-intro h2,
.final-cta h2 {
    margin: 0;
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.lead-text {
    max-width: 930px;
    margin: 26px 0 0;
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.72;
}

.copy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid var(--black);
}

.copy-columns p {
    margin: 0;
    color: var(--ink-soft);
}

.feature-band {
    background: var(--black);
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, var(--shell));
}

.feature-block {
    min-height: 280px;
    padding: 36px;
    background: var(--paper-2);
    border-left: 4px solid var(--black);
}

.feature-block:last-child {
    border-right: 4px solid var(--black);
}

.feature-block--yellow {
    background: var(--yellow);
}

.feature-block--blue {
    background: #92e0ef;
}

.feature-block__number {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 58px;
    background: var(--black);
    color: var(--white);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 18px;
}

.feature-block h3 {
    margin: 0 0 12px;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 26px;
    line-height: 1.1;
    text-transform: uppercase;
}

.feature-block p {
    max-width: 300px;
    margin: 0;
    color: #3f4249;
    font-size: 14px;
}

.article-section {
    padding: 108px 0;
    background: var(--paper-2);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 76px;
    align-items: start;
}

.long-article {
    min-width: 0;
}

.long-article h2 {
    max-width: 820px;
    margin-bottom: 30px;
}

.long-article h3 {
    margin: 54px 0 18px;
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3.2vw, 38px);
    line-height: 1.2;
}

.long-article > p {
    margin: 0 0 20px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.78;
}

.long-article blockquote {
    position: relative;
    margin: 44px 0;
    padding: 32px 36px 32px 112px;
    background: var(--yellow);
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0 var(--black);
}

.long-article blockquote::before {
    content: "!";
    position: absolute;
    top: 50%;
    left: 32px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 30px;
    transform: translateY(-50%);
}

.long-article blockquote strong,
.long-article blockquote span {
    display: block;
}

.long-article blockquote strong {
    margin-bottom: 4px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.long-article blockquote span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.45;
}

.check-list {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    border-top: 2px solid var(--black);
}

.check-list li {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.check-list > li > span {
    color: var(--orange);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 24px;
}

.check-list strong,
.check-list small {
    display: block;
}

.check-list strong {
    color: var(--black);
    font-size: 16px;
}

.check-list small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.quick-panel {
    position: sticky;
    top: 112px;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    border: 4px solid var(--black);
    box-shadow: 10px 10px 0 var(--yellow);
}

.quick-panel__head {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.quick-panel__head i {
    width: 10px;
    height: 10px;
    background: #199d44;
    border: 2px solid var(--black);
    border-radius: 50%;
}

.quick-panel > img {
    width: 210px;
    height: auto;
    margin: 28px auto 22px;
}

.quick-panel__row {
    padding: 18px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-panel__row strong {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: var(--white);
    font-family: Consolas, Monaco, monospace;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-panel__button,
.quick-panel__copy {
    width: calc(100% - 44px);
    min-height: 50px;
    margin: 20px 22px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quick-panel__button {
    background: var(--yellow);
    color: var(--black);
}

.quick-panel__copy {
    margin-top: 10px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.quick-panel__button:hover,
.quick-panel__copy:hover {
    filter: brightness(1.08);
}

.quick-panel p {
    margin: 18px 22px 24px;
    color: #aeb2b8;
    font-size: 11px;
    line-height: 1.55;
}

.telegram-section {
    position: relative;
    overflow: hidden;
    padding: 94px 0;
    background: var(--blue);
    color: var(--white);
    border-block: 4px solid var(--black);
}

.telegram-lines {
    position: absolute;
    right: -110px;
    top: -170px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    opacity: 0.15;
    background: repeating-conic-gradient(from -10deg, #fff 0deg 8deg, transparent 8deg 17deg);
}

.telegram-lines::after {
    content: "";
    position: absolute;
    inset: 170px;
    background: var(--blue);
    border-radius: 50%;
}

.telegram-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.telegram-icon {
    width: 190px;
    height: 190px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 5px solid var(--black);
    border-radius: 50%;
    box-shadow: 12px 12px 0 var(--blue-dark);
    transform: rotate(-4deg);
}

.telegram-icon svg {
    width: 105px;
    fill: var(--blue);
}

.telegram-copy h2 {
    max-width: 850px;
    color: var(--white);
}

.telegram-copy > p {
    max-width: 920px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
}

.telegram-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.telegram-notes span {
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.device-section {
    padding: 100px 0;
    background: var(--paper);
}

.device-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.device-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    padding: 48px;
    border: 4px solid var(--black);
}

.device-card--dark {
    background: var(--black);
    color: var(--white);
}

.device-card--paper {
    background: var(--yellow);
    color: var(--black);
}

.device-card__tag {
    display: inline-block;
    margin-bottom: 22px;
    padding: 6px 10px;
    background: var(--orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.device-card--paper .device-card__tag {
    background: var(--black);
}

.device-card h2 {
    max-width: 520px;
    color: inherit;
    font-size: clamp(34px, 4vw, 50px);
}

.device-card > p {
    max-width: 540px;
    margin: 22px 0 0;
    color: inherit;
    opacity: 0.82;
}

.browser-mock {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: -2px;
    min-height: 230px;
    background: var(--white);
    border: 4px solid var(--yellow);
    color: var(--black);
    box-shadow: 10px 0 0 rgba(255, 184, 0, 0.26);
}

.browser-mock__top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    background: #e7e8eb;
    border-bottom: 2px solid var(--black);
}

.browser-mock__top i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
}

.browser-mock__top i:nth-child(2) {
    background: var(--yellow);
}

.browser-mock__top i:nth-child(3) {
    background: #24a85a;
}

.browser-mock__address {
    margin: 14px;
    padding: 8px 12px;
    overflow: hidden;
    background: #f2f3f4;
    border: 1px solid #c9cbd0;
    font-family: Consolas, monospace;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-mock__screen {
    display: grid;
    place-items: center;
    height: 115px;
    margin: 14px;
    background: var(--black);
    color: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 28px;
    letter-spacing: -0.04em;
}

.phone-mock {
    position: absolute;
    right: 52px;
    bottom: -55px;
    width: 220px;
    height: 365px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 7px solid var(--white);
    border-radius: 36px;
    box-shadow: 14px 14px 0 var(--orange);
    transform: rotate(4deg);
}

.phone-mock__speaker {
    position: absolute;
    top: 15px;
    width: 66px;
    height: 7px;
    background: #3e4249;
    border-radius: 999px;
}

.phone-mock img {
    width: 150px;
    height: auto;
}

.phone-mock span {
    margin-top: 24px;
    padding: 10px 18px;
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.route-section {
    padding: 105px 0;
    background: var(--paper-2);
    border-top: 4px solid var(--black);
}

.route-heading {
    max-width: 850px;
}

.route-heading p {
    margin: 18px 0 0;
    color: var(--muted);
}

.route-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 54px 0 0;
    padding: 0;
    list-style: none;
    border: 4px solid var(--black);
}

.route-list li {
    position: relative;
    min-height: 240px;
    padding: 30px;
    background: var(--white);
    border-right: 3px solid var(--black);
}

.route-list li:last-child {
    border-right: 0;
}

.route-list li:nth-child(even) {
    background: var(--yellow);
}

.route-list span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 48px;
    background: var(--black);
    color: var(--white);
    font-family: "Arial Black", Arial, sans-serif;
}

.route-list strong,
.route-list small {
    display: block;
}

.route-list strong {
    font-size: 19px;
    line-height: 1.25;
}

.route-list small {
    margin-top: 9px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.editorial-section {
    padding: 105px 0;
    background: var(--orange);
    color: var(--white);
    border-block: 4px solid var(--black);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 82px;
    align-items: start;
}

.editorial-title > span {
    display: block;
    margin-bottom: 20px;
    color: var(--yellow);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: clamp(72px, 9vw, 122px);
    line-height: 0.8;
    letter-spacing: -0.08em;
    transform: rotate(-2deg);
}

.editorial-title h2 {
    color: var(--white);
    font-size: clamp(36px, 4.3vw, 52px);
}

.editorial-copy {
    padding-top: 8px;
    border-top: 4px solid var(--black);
}

.editorial-copy p {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.8;
}

.faq-section {
    padding: 110px 0;
    background: var(--paper);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 82px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 118px;
}

.faq-intro p {
    margin: 22px 0 0;
    color: var(--muted);
}

.faq-list {
    border-top: 4px solid var(--black);
}

.faq-list details {
    border-bottom: 2px solid var(--black);
}

.faq-list summary {
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 28px;
    gap: 16px;
    align-items: center;
    padding: 25px 0;
    list-style: none;
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary > span {
    color: var(--orange);
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 14px;
}

.faq-list summary::after {
    content: "+";
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    background: var(--black);
    color: var(--yellow);
    font-size: 19px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 44px 26px 66px;
}

.faq-answer p {
    margin: 0;
    color: var(--ink-soft);
}

.final-cta {
    background: var(--yellow);
    border-top: 4px solid var(--black);
}

.final-cta__inner {
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}

.final-cta__small {
    display: inline-block;
    margin-bottom: 12px;
    color: #644700;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.final-cta h2 {
    font-size: clamp(42px, 5vw, 66px);
}

.final-cta p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #5f4a0e;
}

.final-cta__button {
    flex: 0 0 auto;
    min-width: 250px;
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 28px;
    background: var(--black);
    color: var(--white);
    border: 4px solid var(--black);
    box-shadow: 10px 10px 0 var(--orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.final-cta__button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 13px 13px 0 var(--orange);
}

.site-footer {
    padding: 70px 0 28px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.7fr;
    gap: 70px;
    align-items: start;
}

.footer-brand img {
    width: 210px;
    height: auto;
}

.footer-brand p {
    max-width: 520px;
    margin: 22px 0 0;
    color: #aeb2b8;
    font-size: 14px;
}

.footer-nav,
.footer-info {
    display: grid;
    gap: 10px;
}

.footer-nav strong,
.footer-info strong {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-nav a,
.footer-info span,
.footer-info small {
    width: max-content;
    max-width: 100%;
    color: #c9ccd1;
    font-size: 13px;
}

.footer-nav a:hover {
    color: var(--yellow);
}

.footer-info small {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid #343840;
    color: #8e9299;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:first-child {
    max-width: 760px;
}

.mobile-action {
    display: none;
}

.toast {
    position: fixed;
    z-index: 200;
    right: 24px;
    bottom: 24px;
    max-width: calc(100% - 48px);
    padding: 13px 18px;
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--yellow);
    box-shadow: 6px 6px 0 var(--orange);
    font-size: 13px;
    font-weight: 800;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    :root {
        --header-h: 74px;
    }

    .header-grid {
        grid-template-columns: 180px 1fr auto;
        gap: 22px;
    }

    .brand {
        width: 170px;
    }

    .main-menu {
        gap: 19px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 44px;
    }

    .hero h1 {
        font-size: clamp(52px, 7vw, 78px);
    }

    .address-dock__inner {
        grid-template-columns: 140px minmax(220px, 1fr) 190px auto;
    }

    .address-dock__label,
    .address-dock__url,
    .address-dock__update,
    .address-dock__button {
        padding-inline: 18px;
    }

    .article-layout {
        gap: 46px;
    }

    .device-card {
        padding: 38px;
    }

    .browser-mock {
        left: 38px;
        right: 38px;
    }
}

@media (max-width: 920px) {
    html {
        scroll-padding-top: 88px;
    }

    .header-grid {
        grid-template-columns: 1fr auto auto;
    }

    .main-menu {
        position: fixed;
        z-index: 45;
        top: calc(36px + var(--header-h));
        right: 0;
        bottom: 0;
        width: min(360px, 88vw);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 28px;
        background: var(--black);
        border-left: 4px solid var(--yellow);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.38);
        transform: translateX(105%);
        transition: transform 0.24s ease;
    }

    .main-menu.is-open {
        transform: translateX(0);
    }

    .main-menu a {
        padding: 18px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 14px;
    }

    .main-menu a::before {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 64px;
        padding-block: 70px 112px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-visual {
        width: min(100%, 530px);
        max-width: none;
        justify-self: start;
        margin-left: 20px;
    }

    .address-dock__inner {
        grid-template-columns: 140px 1fr auto;
    }

    .address-dock__update {
        display: none;
    }

    .intro-layout {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 30px;
    }

    .section-index {
        font-size: 92px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-block,
    .feature-block:last-child {
        min-height: auto;
        border-right: 4px solid var(--black);
        border-bottom: 4px solid var(--black);
    }

    .feature-block:last-child {
        border-bottom: 0;
    }

    .feature-block__number {
        margin-bottom: 28px;
    }

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

    .quick-panel {
        position: static;
        max-width: 460px;
    }

    .telegram-layout {
        grid-template-columns: 160px minmax(0, 1fr);
        gap: 44px;
    }

    .telegram-icon {
        width: 150px;
        height: 150px;
    }

    .telegram-icon svg {
        width: 80px;
    }

    .device-grid {
        grid-template-columns: 1fr;
    }

    .device-card {
        min-height: 560px;
    }

    .route-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-list li:nth-child(2) {
        border-right: 0;
    }

    .route-list li:nth-child(-n + 2) {
        border-bottom: 3px solid var(--black);
    }

    .editorial-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-intro {
        position: static;
        max-width: 720px;
    }
}

@media (max-width: 700px) {
    :root {
        --header-h: 66px;
    }

    body {
        padding-bottom: 72px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .age-bar__inner {
        min-height: 32px;
        font-size: 10px;
    }

    .age-bar__inner > span:first-child {
        display: none;
    }

    .age-bar__inner {
        justify-content: flex-end;
    }

    .header-grid {
        grid-template-columns: 1fr auto;
        min-height: var(--header-h);
    }

    .brand {
        width: 148px;
    }

    .header-button {
        display: none;
    }

    .main-menu {
        top: calc(32px + var(--header-h));
    }

    .hero-grid {
        min-height: 0;
        padding-block: 52px 100px;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero h1 {
        font-size: clamp(43px, 15vw, 64px);
        line-height: 0.98;
    }

    .hero h1 mark {
        text-decoration-thickness: 6px;
        text-underline-offset: 7px;
    }

    .hero-lead {
        margin-top: 24px;
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-meta {
        gap: 9px 14px;
        margin-top: 28px;
        font-size: 10px;
    }

    .hero-visual {
        width: calc(100% - 18px);
        margin-left: 0;
    }

    .hero-ticket {
        box-shadow: 9px 9px 0 var(--yellow);
    }

    .hero-stamp {
        right: -18px;
        bottom: -34px;
        width: 92px;
        height: 92px;
        font-size: 14px;
    }

    .address-dock {
        margin-top: -42px;
    }

    .address-dock__inner {
        min-height: 0;
        grid-template-columns: 96px 1fr;
        box-shadow: 6px 6px 0 rgba(11, 13, 16, 0.16);
    }

    .address-dock__label,
    .address-dock__url,
    .address-dock__button {
        padding: 15px 14px;
    }

    .address-dock__label {
        grid-row: 1 / span 2;
    }

    .address-dock__label strong {
        font-size: 18px;
    }

    .address-dock__url {
        border-right: 0;
        border-bottom: 2px solid var(--line);
    }

    .address-dock code {
        font-size: 13px;
    }

    .address-dock__button {
        min-width: 0;
        min-height: 48px;
        font-size: 10px;
    }

    .intro-section,
    .article-section,
    .telegram-section,
    .device-section,
    .route-section,
    .editorial-section,
    .faq-section {
        padding-block: 74px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-index {
        font-size: 78px;
        line-height: 0.8;
    }

    .section-copy h2,
    .long-article h2,
    .telegram-copy h2,
    .device-card h2,
    .route-heading h2,
    .editorial-title h2,
    .faq-intro h2,
    .final-cta h2 {
        font-size: clamp(32px, 10vw, 46px);
    }

    .lead-text {
        font-size: 17px;
    }

    .copy-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-block {
        padding: 30px 26px;
    }

    .long-article > p {
        font-size: 16px;
    }

    .long-article blockquote {
        padding: 88px 24px 26px;
    }

    .long-article blockquote::before {
        top: 24px;
        left: 24px;
        transform: none;
    }

    .check-list li {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .telegram-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .telegram-icon {
        width: 120px;
        height: 120px;
    }

    .telegram-icon svg {
        width: 65px;
    }

    .device-card {
        min-height: 540px;
        padding: 30px 26px;
    }

    .browser-mock {
        left: 26px;
        right: 26px;
    }

    .phone-mock {
        right: 50%;
        width: 200px;
        height: 330px;
        transform: translateX(50%) rotate(3deg);
    }

    .route-list {
        grid-template-columns: 1fr;
    }

    .route-list li,
    .route-list li:nth-child(2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 3px solid var(--black);
    }

    .route-list li:last-child {
        border-bottom: 0;
    }

    .route-list span {
        margin-bottom: 28px;
    }

    .editorial-title > span {
        font-size: 74px;
    }

    .faq-list summary {
        grid-template-columns: 34px minmax(0, 1fr) 28px;
        gap: 10px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 0 24px 44px;
    }

    .final-cta__inner {
        min-height: 0;
        flex-direction: column;
        align-items: flex-start;
        padding-block: 62px 72px;
    }

    .final-cta__button {
        width: calc(100% - 10px);
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
    }

    .mobile-action {
        position: fixed;
        z-index: 120;
        right: 0;
        bottom: 0;
        left: 0;
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 10px 14px;
        background: var(--black);
        color: var(--white);
        border-top: 3px solid var(--yellow);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.28);
    }

    .mobile-action div {
        min-width: 0;
    }

    .mobile-action small,
    .mobile-action strong {
        display: block;
    }

    .mobile-action small {
        color: #9ea2a9;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mobile-action strong {
        overflow: hidden;
        max-width: 190px;
        color: var(--white);
        font-family: Consolas, monospace;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-action a {
        min-width: 100px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--yellow);
        color: var(--black);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .toast {
        right: 14px;
        bottom: 88px;
        max-width: calc(100% - 28px);
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero-ticket__top,
    .hero-ticket__bottom {
        padding-inline: 10px;
    }

    .hero-stamp {
        width: 82px;
        height: 82px;
        font-size: 12px;
    }

    .address-dock__inner {
        grid-template-columns: 84px 1fr;
    }

    .address-dock__label strong {
        font-size: 16px;
    }

    .device-card {
        min-height: 560px;
    }

    .editorial-title > span {
        font-size: 62px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .site-header {
        position: relative;
    }

    .mobile-action,
    .toast {
        display: none !important;
    }
}
