:root {
    --ink: #17110b;
    --ink-soft: #2a2118;
    --paper: #f2ede3;
    --paper-2: #e9e0d1;
    --paper-3: #fffaf0;
    --gold: #e7a818;
    --gold-dark: #a96f00;
    --gold-light: #ffd36a;
    --burgundy: #2c0e12;
    --burgundy-2: #4a171d;
    --muted: #6e6255;
    --line: rgba(23, 17, 11, 0.18);
    --line-light: rgba(255, 255, 255, 0.14);
    --white: #ffffff;
    --shadow-sm: 0 12px 30px rgba(23, 17, 11, 0.08);
    --shadow-lg: 0 32px 80px rgba(23, 17, 11, 0.18);
    --shell: 1180px;
    --serif: Georgia, "Times New Roman", Times, serif;
    --sans: Arial, Helvetica, sans-serif;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    background: var(--paper);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 15% 4%, rgba(231, 168, 24, 0.08), transparent 24rem),
        linear-gradient(180deg, var(--paper-3) 0%, var(--paper) 28%, var(--paper) 100%);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

img,
picture,
svg {
    display: block;
}

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

svg {
    width: 1.2em;
    height: 1.2em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

button {
    font: inherit;
}

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

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure,
blockquote {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

.section-pad {
    padding-block: clamp(76px, 9vw, 138px);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    transform: translateY(-180%);
    padding: 10px 16px;
    border: 2px solid var(--gold);
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    transition: transform .2s ease;
}

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

.reading-progress {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    box-shadow: 0 0 12px rgba(231, 168, 24, .5);
}

.age-strip {
    position: relative;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: #0e0b08;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    letter-spacing: .03em;
}

.age-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.age-strip p {
    line-height: 1.4;
}

.age-strip strong {
    margin-right: 6px;
    color: var(--gold-light);
}

.age-strip a {
    flex: 0 0 auto;
    color: var(--gold-light);
    font-weight: 700;
}

.age-strip a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-header {
    position: sticky;
    z-index: 70;
    top: 0;
    border-bottom: 1px solid rgba(231, 168, 24, .18);
    background: rgba(23, 17, 11, .96);
    color: var(--white);
    backdrop-filter: blur(16px);
}

.header-grid {
    min-height: 82px;
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 30px;
}

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

.brand img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
    position: relative;
    padding-block: 29px 27px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: color .2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--gold);
    transform-origin: right;
    transition: transform .25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: transform .2s var(--ease), background-color .2s ease, color .2s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--gold-light);
}

.header-cta svg {
    width: 18px;
    height: 18px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding-block: clamp(76px, 8vw, 126px) clamp(70px, 8vw, 116px);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 49.95%, rgba(23, 17, 11, .07) 50%, transparent 50.05%),
        linear-gradient(rgba(23, 17, 11, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 17, 11, .035) 1px, transparent 1px);
    background-size: 100% 100%, 42px 42px, 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 580px;
    height: 580px;
    top: -260px;
    right: -170px;
    border: 90px solid rgba(231, 168, 24, .1);
    border-radius: 50%;
}

.hero-watermark {
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: -78px;
    transform: translateX(-50%);
    color: rgba(23, 17, 11, .035);
    font-family: var(--serif);
    font-size: clamp(150px, 21vw, 330px);
    font-weight: 700;
    line-height: .78;
    letter-spacing: -.08em;
    white-space: nowrap;
    user-select: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    align-items: center;
    gap: clamp(54px, 7vw, 105px);
}

.issue-line {
    width: min(100%, 600px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-block: 9px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(54px, 6.8vw, 92px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.055em;
}

.hero h1::after {
    content: "";
    display: block;
    width: 88px;
    height: 8px;
    margin-top: 30px;
    background: var(--gold);
}

.hero-lead {
    max-width: 690px;
    margin-top: 30px;
    color: #554a3e;
    font-size: 18px;
    line-height: 1.75;
}

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

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .025em;
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button svg {
    width: 19px;
    height: 19px;
}

.button--ink {
    background: var(--ink);
    color: var(--white);
    box-shadow: 8px 8px 0 var(--gold);
}

.button--ink:hover {
    box-shadow: 4px 4px 0 var(--gold);
}

.button--paper {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.button--paper:hover {
    background: var(--paper-2);
}

.button--gold {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.button--gold:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(231, 168, 24, .2);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, .38);
    background: transparent;
    color: var(--white);
}

.button--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.hero-facts {
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-facts div {
    padding: 18px 16px 17px;
    border-right: 1px solid var(--line);
}

.hero-facts div:first-child {
    padding-left: 0;
}

.hero-facts div:last-child {
    border-right: 0;
}

.hero-facts dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-facts dd {
    font-size: 13px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    width: min(100%, 520px);
    justify-self: end;
}

.visual-frame {
    position: relative;
    padding: 16px;
    border: 1px solid var(--ink);
    background: var(--paper-3);
    box-shadow: 24px 24px 0 var(--gold), var(--shadow-lg);
}

.visual-frame::before,
.visual-frame::after {
    content: "";
    position: absolute;
    z-index: 3;
    width: 72px;
    height: 20px;
    background: rgba(242, 237, 227, .82);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.visual-frame::before {
    top: 8px;
    left: -22px;
    transform: rotate(-42deg);
}

.visual-frame::after {
    right: -23px;
    bottom: 8px;
    transform: rotate(-42deg);
}

.visual-frame picture {
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--ink);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease), filter .6s ease;
}

.visual-frame:hover img {
    transform: scale(1.025);
    filter: saturate(1.04) contrast(1.02);
}

.visual-label {
    position: absolute;
    z-index: 4;
    top: 42px;
    left: -36px;
    padding: 8px 12px;
    border: 1px solid var(--ink);
    background: var(--paper-3);
    color: var(--ink);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .2em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.visual-index {
    position: absolute;
    z-index: 4;
    right: 28px;
    bottom: 24px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    background: rgba(23, 17, 11, .85);
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-visual figcaption {
    max-width: 430px;
    margin: 30px 0 0 24px;
    padding-left: 18px;
    border-left: 3px solid var(--gold);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.keyword-ribbon {
    overflow: hidden;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--gold);
    color: var(--ink);
}

.keyword-ribbon__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-block: 15px;
    animation: ribbon 34s linear infinite;
}

.keyword-ribbon span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    white-space: nowrap;
}

.keyword-ribbon i {
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: var(--ink);
}

@keyframes ribbon {
    to {
        transform: translateX(-50%);
    }
}

.address-desk {
    position: relative;
    background: var(--paper-2);
}

.address-desk::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image:
        linear-gradient(90deg, transparent 49.8%, rgba(23, 17, 11, .04) 50%, transparent 50.2%);
    background-size: 64px 100%;
    pointer-events: none;
}

.address-ticket {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    border: 1px solid var(--ink);
    background: var(--paper-3);
    box-shadow: 18px 18px 0 rgba(23, 17, 11, .08);
}

.address-ticket::before,
.address-ticket::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 163px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--paper-2);
}

.address-ticket::before {
    top: -17px;
}

.address-ticket::after {
    bottom: -17px;
}

.ticket-stub {
    position: relative;
    min-height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    border-right: 1px dashed rgba(23, 17, 11, .5);
    background: var(--ink);
    color: var(--white);
    text-align: center;
}

.ticket-stub::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 50px solid rgba(231, 168, 24, .12);
    border-radius: 50%;
}

.ticket-stub > * {
    position: relative;
    z-index: 1;
}

.ticket-stub span,
.ticket-stub small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .19em;
}

.ticket-stub strong {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 66px;
    line-height: 1;
}

.ticket-body {
    padding: clamp(34px, 5vw, 64px);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.section-kicker span {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 9px;
}

.section-kicker--light {
    color: var(--gold-light);
}

.ticket-body h2,
.editorial-article h2,
.section-heading h2,
.article-header h2,
.faq-intro h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.ticket-body > p {
    max-width: 820px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
}

.ticket-body code {
    padding: 2px 6px;
    background: var(--paper-2);
    color: var(--ink);
    font-size: .88em;
}

.address-bar {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 0;
    margin-top: 30px;
    border: 1px solid var(--ink);
    background: var(--white);
}

.address-protocol {
    min-height: 78px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--ink);
    background: var(--gold);
}

.address-protocol svg {
    width: 23px;
    height: 23px;
}

.address-text {
    min-width: 0;
    padding: 12px 18px;
}

.address-text span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.address-text strong {
    display: block;
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.address-copy {
    min-height: 78px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    border: 0;
    border-left: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.address-copy:hover {
    background: var(--gold);
    color: var(--ink);
}

.address-copy svg {
    width: 18px;
    height: 18px;
}

.ticket-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
    transition: color .2s ease, gap .2s ease;
}

.text-link:hover {
    gap: 13px;
    color: var(--gold-dark);
}

.editorial {
    position: relative;
    background: var(--paper-3);
}

.editorial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(23, 17, 11, .055);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: clamp(52px, 8vw, 120px);
}

.editorial-aside {
    align-self: start;
    padding-top: 10px;
}

.aside-number {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 112px;
    font-weight: 700;
    line-height: .8;
    letter-spacing: -.08em;
}

.editorial-aside > p {
    margin-top: 30px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: .12em;
}

.aside-rule {
    width: 100%;
    height: 1px;
    margin-block: 24px;
    background: var(--ink);
}

.editorial-aside small {
    display: block;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    line-height: 1.7;
}

.editorial-article {
    max-width: 860px;
}

.editorial-article h2 {
    max-width: 760px;
}

.dropcap {
    margin-top: 34px;
    color: #3e342a;
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.75;
}

.dropcap::first-letter {
    float: left;
    margin: 8px 10px 0 0;
    color: var(--ink);
    font-size: 76px;
    font-weight: 700;
    line-height: .65;
}

.article-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 36px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.article-columns p {
    color: var(--muted);
}

.control-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(60px, 8vw, 100px);
}

.control-card {
    position: relative;
    min-height: 310px;
    padding: 38px 26px 28px;
    border: 1px solid var(--ink);
    background: var(--paper);
    transition: transform .25s var(--ease), background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.control-card:hover {
    z-index: 2;
    transform: translateY(-8px) rotate(-.4deg);
    background: var(--ink);
    color: var(--white);
    box-shadow: 10px 10px 0 var(--gold);
}

.control-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(.4deg);
}

.control-tab {
    position: absolute;
    top: -1px;
    right: 20px;
    display: grid;
    width: 38px;
    height: 30px;
    place-items: center;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
}

.control-card > svg {
    width: 39px;
    height: 39px;
    margin-bottom: 36px;
    color: var(--gold-dark);
    stroke-width: 1.45;
}

.control-card:hover > svg {
    color: var(--gold-light);
}

.control-card h3 {
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.15;
}

.control-card p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.control-card:hover p {
    color: rgba(255, 255, 255, .68);
}

.telegram-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(231, 168, 24, .18), transparent 22rem),
        linear-gradient(135deg, var(--burgundy) 0%, #1b0b0d 62%, #100909 100%);
    color: var(--white);
    isolation: isolate;
}

.telegram-section::before {
    content: "TELEGRAM";
    position: absolute;
    z-index: -1;
    left: -30px;
    bottom: -42px;
    color: rgba(255, 255, 255, .025);
    font-family: var(--serif);
    font-size: clamp(120px, 20vw, 300px);
    font-weight: 700;
    line-height: .75;
    letter-spacing: -.08em;
}

.telegram-lines {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        repeating-linear-gradient(120deg, transparent 0 42px, rgba(255, 255, 255, .12) 43px, transparent 44px);
    mask-image: linear-gradient(90deg, transparent, black 45%, transparent);
}

.telegram-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .74fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.telegram-copy h2 {
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(42px, 5.3vw, 70px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.telegram-copy > p:not(.section-kicker) {
    max-width: 760px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .66);
    font-size: 17px;
}

.telegram-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-block: 34px;
    border: 1px solid var(--line-light);
    background: var(--line-light);
}

.telegram-checks li {
    min-height: 82px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    line-height: 1.55;
}

.telegram-checks span {
    flex: 0 0 auto;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.2;
}

.telegram-card {
    position: relative;
    border: 1px solid rgba(255, 211, 106, .55);
    background: rgba(10, 7, 7, .72);
    box-shadow: 20px 20px 0 rgba(231, 168, 24, .12);
    backdrop-filter: blur(10px);
}

.telegram-card::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(255, 255, 255, .07);
    pointer-events: none;
}

.telegram-card__top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    border-bottom: 1px solid rgba(255, 211, 106, .3);
}

.telegram-plane {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
}

.telegram-plane svg {
    width: 27px;
    height: 27px;
}

.telegram-card__top small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .46);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.telegram-card__top strong {
    font-family: var(--serif);
    font-size: 24px;
}

.telegram-card__body {
    position: relative;
    padding: 32px 28px 34px;
}

.telegram-card__body > span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .2em;
}

.telegram-card__body code {
    display: block;
    overflow-x: auto;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: #f4d889;
    font-size: 12px;
    white-space: nowrap;
}

.telegram-card__body p {
    margin-top: 20px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.telegram-card__footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 211, 106, .3);
    background: rgba(231, 168, 24, .09);
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
}

.route-section {
    position: relative;
    background: var(--paper-2);
}

.route-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(231, 168, 24, .08) 50%);
    pointer-events: none;
}

.section-heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.section-heading > p:last-child {
    max-width: 690px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 17px;
}

.route-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 72px;
    border-top: 1px solid var(--ink);
}

.route-item {
    position: relative;
    min-height: 340px;
    padding: 48px 26px 30px 0;
    border-right: 1px solid var(--line);
}

.route-item + .route-item {
    padding-left: 26px;
}

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

.route-no {
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}

.route-line {
    position: relative;
    height: 1px;
    margin-block: 26px 30px;
    background: var(--line);
}

.route-line::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid var(--paper-2);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 1px var(--ink);
}

.route-content small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
}

.route-content h3 {
    margin-top: 8px;
    font-family: var(--serif);
    font-size: 25px;
    line-height: 1.17;
}

.route-content p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 14px;
}

.guide-section {
    background: var(--paper-3);
}

.guide-layout {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    align-items: start;
    gap: clamp(50px, 8vw, 120px);
}

.guide-toc {
    position: sticky;
    top: 118px;
    border-top: 5px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}

.toc-label {
    padding-block: 16px 13px;
    border-bottom: 1px solid var(--ink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .17em;
}

.guide-toc a {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    transition: color .2s ease, padding-left .2s ease;
}

.guide-toc a:hover {
    padding-left: 7px;
    color: var(--gold-dark);
}

.guide-toc a span {
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 15px;
}

.toc-stamp {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin: 26px auto;
    transform: rotate(-8deg);
    border: 2px solid rgba(169, 111, 0, .65);
    border-radius: 50%;
    color: rgba(169, 111, 0, .7);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .12em;
    text-align: center;
}

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

.article-header {
    padding-bottom: 46px;
    border-bottom: 1px solid var(--ink);
}

.article-deck {
    max-width: 850px;
    margin-top: 28px;
    color: #504438;
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.75;
}

.prose-block {
    max-width: 860px;
    padding-block: 48px;
    border-bottom: 1px solid var(--line);
}

.prose-block h3,
.security-note h3 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.prose-block p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.guide-article blockquote {
    position: relative;
    max-width: 900px;
    margin-block: 54px;
    padding: 42px 48px 42px 100px;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper-2);
}

.guide-article blockquote > span {
    position: absolute;
    top: 22px;
    left: 28px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 94px;
    line-height: 1;
}

.guide-article blockquote p {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 31px);
    font-style: italic;
    line-height: 1.5;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 860px;
    margin-block: 14px 12px;
}

.device-grid article {
    min-height: 220px;
    padding: 30px;
    border: 1px solid var(--ink);
    background: var(--paper);
}

.device-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 24px;
    background: var(--gold);
}

.device-icon svg {
    width: 26px;
    height: 26px;
}

.device-grid h4 {
    font-family: var(--serif);
    font-size: 25px;
}

.device-grid p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}

.security-note {
    max-width: 900px;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 28px;
    margin-top: 48px;
    padding: 36px;
    border: 1px solid var(--gold-dark);
    background: #fff5da;
}

.security-note__icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 1px solid var(--ink);
    background: var(--gold);
}

.security-note__icon svg {
    width: 34px;
    height: 34px;
}

.security-note p {
    margin-top: 15px;
    color: var(--muted);
}

.faq-section {
    position: relative;
    background: var(--paper-2);
}

.faq-section::before {
    content: "?";
    position: absolute;
    top: -40px;
    right: 3vw;
    color: rgba(23, 17, 11, .035);
    font-family: var(--serif);
    font-size: 420px;
    font-weight: 700;
    line-height: 1;
}

.faq-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

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

.faq-intro > p:not(.section-kicker) {
    margin-top: 24px;
    color: var(--muted);
    font-size: 16px;
}

.faq-intro .text-link {
    margin-top: 32px;
}

.faq-list {
    border-top: 1px solid var(--ink);
}

.faq-item {
    border-bottom: 1px solid var(--ink);
}

.faq-question {
    width: 100%;
    min-height: 88px;
    display: grid;
    grid-template-columns: 40px 1fr 28px;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.faq-question > span:nth-child(2) {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
}

.faq-index {
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 15px;
}

.faq-plus {
    position: relative;
    width: 24px;
    height: 24px;
    justify-self: end;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .25s var(--ease);
}

.faq-plus::before {
    transform: translate(-50%, -50%);
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    padding: 0 50px 26px 58px;
}

.faq-answer p {
    max-width: 720px;
    color: var(--muted);
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(80px, 10vw, 150px);
    background:
        radial-gradient(circle at 85% 15%, rgba(231, 168, 24, .22), transparent 24rem),
        var(--ink);
    color: var(--white);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 45px 45px;
}

.final-cta__mark {
    position: absolute;
    right: -35px;
    bottom: -110px;
    color: rgba(255, 255, 255, .025);
    font-family: var(--serif);
    font-size: clamp(240px, 35vw, 540px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.1em;
}

.final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 950px;
    text-align: center;
}

.final-cta__inner > p {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.final-cta h2 {
    margin-top: 20px;
    font-family: var(--serif);
    font-size: clamp(46px, 7vw, 88px);
    line-height: .98;
    letter-spacing: -.05em;
}

.final-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.site-footer {
    padding-top: 70px;
    background: #0d0a07;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr .75fr .9fr;
    gap: 55px;
    padding-bottom: 58px;
}

.footer-brand img {
    width: 175px;
}

.footer-brand p {
    max-width: 340px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

.footer-links h3 {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-links a {
    display: table;
    margin-top: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    transform: translateX(4px);
    color: var(--white);
}

.footer-status {
    padding: 24px;
    border: 1px solid rgba(255, 211, 106, .28);
    background: rgba(231, 168, 24, .06);
}

.footer-status span {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 17px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
}

.footer-status p {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .34);
    font-size: 10px;
    letter-spacing: .02em;
}

.footer-bottom p:last-child {
    max-width: 580px;
    text-align: right;
}

.back-to-top {
    position: fixed;
    z-index: 60;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translateY(20px);
    border: 1px solid var(--gold);
    background: var(--ink);
    color: var(--gold-light);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .2s ease;
}

.back-to-top.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--ink);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

.copy-toast {
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 24px;
    min-width: 280px;
    max-width: calc(100% - 30px);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translate(-50%, 25px);
    padding: 14px 18px;
    border: 1px solid var(--gold);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .25);
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .25s var(--ease), visibility .2s ease;
}

.copy-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.copy-toast__icon {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
}

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

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

.reveal--delay,
.reveal--delay-1 {
    transition-delay: .1s;
}

.reveal--delay-2 {
    transition-delay: .18s;
}

.reveal--delay-3 {
    transition-delay: .26s;
}

.no-js .reveal {
    transform: none;
    opacity: 1;
}

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

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

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

@media (max-width: 1080px) {
    .header-grid {
        grid-template-columns: 160px 1fr auto;
        gap: 18px;
    }

    .brand {
        width: 152px;
    }

    .site-nav {
        gap: 17px;
    }

    .site-nav a {
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
        gap: 56px;
    }

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

    .control-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .telegram-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
        gap: 60px;
    }

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

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

    .route-item:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .footer-grid {
        grid-template-columns: 1.3fr .8fr .8fr;
    }

    .footer-status {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 56px 1fr;
        align-items: center;
        gap: 18px;
    }

    .footer-status span {
        margin-bottom: 0;
    }
}

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

    .age-strip__inner {
        min-height: 34px;
    }

    .age-strip a {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .header-grid {
        min-height: 72px;
        grid-template-columns: 1fr auto;
    }

    .brand {
        width: 150px;
    }

    .nav-toggle {
        display: flex;
        grid-column: 2;
        grid-row: 1;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: absolute;
        z-index: 90;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        min-height: calc(100vh - 72px);
        max-height: calc(100vh - 72px);
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        transform: none;
        padding: 28px 20px;
        background: var(--ink);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        clip-path: inset(0 0 0 100%);
        transition: opacity .25s ease, visibility .25s ease, clip-path .35s var(--ease);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        clip-path: inset(0);
    }

    .site-nav a {
        padding: 18px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        color: var(--white);
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 700;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 0;
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

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

    .hero-visual {
        width: min(100%, 560px);
        justify-self: center;
    }

    .visual-frame {
        box-shadow: 18px 18px 0 var(--gold), var(--shadow-lg);
    }

    .address-ticket {
        grid-template-columns: 130px 1fr;
    }

    .address-ticket::before,
    .address-ticket::after {
        left: 113px;
    }

    .ticket-stub {
        min-height: 410px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .editorial-aside {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: end;
        gap: 28px;
    }

    .aside-number {
        font-size: 90px;
    }

    .editorial-aside > p {
        margin-top: 0;
    }

    .aside-rule,
    .editorial-aside small {
        grid-column: 1 / -1;
    }

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

    .telegram-card {
        width: min(100%, 600px);
    }

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

    .guide-toc {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 28px;
        border-top-width: 3px;
    }

    .toc-label {
        grid-column: 1 / -1;
    }

    .toc-stamp {
        display: none;
    }

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

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

@media (max-width: 700px) {
    .site-shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section-pad {
        padding-block: 72px;
    }

    .age-strip p {
        font-size: 10px;
    }

    .hero {
        padding-top: 54px;
    }

    .issue-line {
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: clamp(46px, 14.5vw, 68px);
    }

    .hero h1::after {
        width: 68px;
        height: 6px;
        margin-top: 24px;
    }

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

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-facts div,
    .hero-facts div:first-child {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-facts div:last-child {
        border-bottom: 0;
    }

    .visual-frame {
        padding: 10px;
        box-shadow: 12px 12px 0 var(--gold), var(--shadow-lg);
    }

    .visual-label {
        left: -27px;
    }

    .hero-visual figcaption {
        margin-left: 0;
    }

    .keyword-ribbon__track {
        padding-block: 12px;
    }

    .address-ticket {
        display: block;
    }

    .address-ticket::before,
    .address-ticket::after {
        display: none;
    }

    .ticket-stub {
        min-height: 110px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: 18px;
        border-right: 0;
        border-bottom: 1px dashed rgba(255, 255, 255, .35);
    }

    .ticket-stub span {
        justify-self: start;
    }

    .ticket-stub small {
        justify-self: end;
    }

    .ticket-stub strong {
        font-size: 48px;
    }

    .ticket-body {
        padding: 30px 20px 34px;
    }

    .ticket-body h2,
    .editorial-article h2,
    .section-heading h2,
    .article-header h2,
    .faq-intro h2 {
        font-size: clamp(36px, 11.5vw, 52px);
    }

    .ticket-body > p {
        font-size: 15px;
    }

    .address-bar {
        grid-template-columns: 50px 1fr;
    }

    .address-protocol {
        min-height: 67px;
    }

    .address-copy {
        grid-column: 1 / -1;
        min-height: 52px;
        justify-content: center;
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .ticket-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .editorial-aside {
        display: block;
    }

    .editorial-aside > p {
        margin-top: 24px;
    }

    .article-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .control-card {
        min-height: 260px;
    }

    .telegram-copy h2 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .telegram-checks {
        grid-template-columns: 1fr;
    }

    .telegram-card__top,
    .telegram-card__body {
        padding-inline: 20px;
    }

    .telegram-card__footer {
        flex-direction: column;
        gap: 5px;
        padding-inline: 20px;
    }

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

    .route-item,
    .route-item + .route-item {
        min-height: 0;
        padding: 34px 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .route-item:first-child {
        border-top: 0;
    }

    .guide-toc {
        grid-template-columns: 1fr;
    }

    .guide-article blockquote {
        padding: 78px 24px 30px;
    }

    .guide-article blockquote > span {
        top: 12px;
        left: 20px;
    }

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

    .security-note {
        grid-template-columns: 1fr;
        padding: 26px 20px;
    }

    .faq-question {
        min-height: 78px;
        grid-template-columns: 30px 1fr 22px;
        gap: 12px;
    }

    .faq-question > span:nth-child(2) {
        font-size: 18px;
    }

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

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

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

    .footer-brand,
    .footer-status {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 430px) {
    .brand {
        width: 132px;
    }

    .nav-toggle {
        width: 44px;
        height: 40px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .issue-line {
        font-size: 8px;
    }

    .eyebrow {
        font-size: 10px;
    }

    .visual-label {
        display: none;
    }

    .address-text strong {
        font-size: 14px;
    }

    .telegram-card__top strong {
        font-size: 20px;
    }

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

    .footer-links,
    .footer-brand,
    .footer-status {
        grid-column: 1;
    }
}
