:root {
    color-scheme: dark;
    --bg: #060b08;
    --bg-2: #0b130e;
    --surface: rgba(16, 27, 21, 0.82);
    --surface-strong: rgba(20, 32, 25, 0.95);
    --line: rgba(229, 192, 123, 0.22);
    --line-soft: rgba(213, 226, 218, 0.13);
    --text: #f6f2e7;
    --muted: #c1c8b8;
    --soft: #8e9a8b;
    --gold: #e5c07b;
    --gold-2: #f7dda0;
    --green: #24d38d;
    --green-2: #0c7a55;
    --blue: #77c5ff;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 22% 12%, rgba(229, 192, 123, 0.12), transparent 30%),
        radial-gradient(circle at 82% 22%, rgba(36, 211, 141, 0.09), transparent 28%),
        linear-gradient(180deg, var(--bg), var(--bg-2) 48%, #050806);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(229, 192, 123, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 192, 123, 0.08) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(180deg, black, transparent 78%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.42));
}

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

a {
    color: inherit;
}

::selection {
    background: rgba(229, 192, 123, 0.28);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #07100b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--green-2));
    border-radius: 999px;
}

.site-shell {
    min-height: 100vh;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-nav.is-scrolled {
    background: rgba(6, 11, 8, 0.86);
    border-color: var(--line);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.nav-inner {
    width: min(var(--container), calc(100% - 48px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-weight: 800;
    font-size: clamp(1.28rem, 2vw, 1.9rem);
    text-decoration: none;
    letter-spacing: 0;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #151207;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(229, 192, 123, 0.24);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 48px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    color: rgba(246, 242, 231, 0.88);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
    transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--gold-2);
    transform: translateY(-1px);
}

.nav-button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn-primary,
.nav-button {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #181306;
    box-shadow: 0 14px 30px rgba(229, 192, 123, 0.2);
}

.btn-green {
    background: linear-gradient(135deg, #56efb0, var(--green));
    color: #04100d;
    box-shadow: 0 14px 32px rgba(36, 211, 141, 0.2);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--line);
    color: var(--text);
}

.btn:hover,
.nav-button:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 130px 24px 78px;
}

.hero.compact {
    min-height: 72svh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -5;
    background-position: center;
    background-size: cover;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
    transition: transform 80ms linear;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 11, 8, 0.58), rgba(6, 11, 8, 0.86)),
        linear-gradient(90deg, rgba(6, 11, 8, 0.78), transparent 48%, rgba(6, 11, 8, 0.62));
}

.hero-haze {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(circle at calc(50% + var(--mouse-x, 0px)) calc(45% + var(--mouse-y, 0px)), rgba(229, 192, 123, 0.16), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(36, 211, 141, 0.11), transparent 28%);
    mix-blend-mode: screen;
}

.parallax-float {
    position: absolute;
    z-index: -3;
    opacity: 0.42;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.38));
    transform: translate3d(calc(var(--mouse-x, 0px) * var(--mx, 0.04)), calc(var(--parallax-y, 0px) * var(--speed, 0.16) + var(--mouse-y, 0px) * var(--my, 0.04)), 0);
    transition: transform 80ms linear;
}

.float-cloud {
    width: 160px;
    height: 72px;
    border: 4px solid rgba(229, 192, 123, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
}

.float-cloud::before,
.float-cloud::after {
    content: "";
    position: absolute;
    border: inherit;
    background: inherit;
    border-radius: 50%;
}

.float-cloud::before {
    width: 70px;
    height: 70px;
    left: 28px;
    top: -34px;
}

.float-cloud::after {
    width: 88px;
    height: 88px;
    right: 22px;
    top: -46px;
}

.float-ring {
    width: 230px;
    height: 230px;
    border: 1px solid rgba(229, 192, 123, 0.2);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 211, 141, 0.14), transparent 58%);
    animation: slow-spin 20s linear infinite;
}

.hero-content {
    width: min(980px, 100%);
    text-align: center;
}

.hero-grid {
    width: min(var(--container), 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
}

.hero-grid .hero-content {
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 16px;
    margin-bottom: 26px;
    border: 1px solid rgba(229, 192, 123, 0.5);
    border-radius: 999px;
    background: rgba(229, 192, 123, 0.12);
    color: var(--gold-2);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 8vw, 7.2rem);
    line-height: 1;
    letter-spacing: 0;
    font-weight: 800;
    background: linear-gradient(180deg, #fff3c9 4%, var(--gold) 52%, #a57e2d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
}

.hero .subtitle {
    max-width: 760px;
    margin: 0 auto 30px;
    color: rgba(246, 242, 231, 0.78);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    letter-spacing: 0.12em;
}

.hero-grid .subtitle {
    margin-left: 0;
    letter-spacing: 0;
    color: #dce5dc;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-content .actions {
    justify-content: center;
}

.hero-grid .actions {
    justify-content: flex-start;
}

.lottie-panel {
    position: relative;
    min-height: 470px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(12, 20, 16, 0.74);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.lottie-panel::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(229, 192, 123, 0.14);
    border-radius: var(--radius);
}

.lottie-panel lottie-player {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.lottie-fallback {
    position: relative;
    width: min(300px, 68vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.lottie-fallback::before,
.lottie-fallback::after {
    content: "";
    position: absolute;
    inset: 18%;
    border: 2px solid rgba(229, 192, 123, 0.52);
    border-radius: 50%;
    animation: slow-spin 16s linear infinite;
}

.lottie-fallback::after {
    inset: 7%;
    border-color: rgba(36, 211, 141, 0.28);
    animation-direction: reverse;
    animation-duration: 22s;
}

.shield-shape {
    position: relative;
    z-index: 1;
    width: 148px;
    height: 172px;
    border-radius: 52px 52px 64px 64px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    clip-path: polygon(50% 0, 94% 17%, 84% 75%, 50% 100%, 16% 75%, 6% 17%);
    box-shadow: 0 30px 70px rgba(36, 211, 141, 0.28);
    animation: shield-pulse 2.8s ease-in-out infinite;
}

.shield-shape::before {
    content: "\f023";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.84);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3rem;
}

.section {
    position: relative;
    padding: 88px 24px;
}

.section.band {
    border-block: 1px solid var(--line-soft);
    background: rgba(8, 15, 11, 0.68);
}

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

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin-bottom: 14px;
    color: var(--gold-2);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: 0;
}

.section-head p,
.muted {
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

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

.card {
    position: relative;
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        var(--surface);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 192, 123, 0.48), transparent);
}

.card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: var(--radius);
    background: rgba(229, 192, 123, 0.13);
    color: var(--gold-2);
}

.card h3 {
    margin-bottom: 8px;
    font-size: 1.22rem;
}

.card p {
    margin-bottom: 0;
    color: var(--muted);
}

.app-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    min-height: 300px;
}

.app-mark {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(229, 192, 123, 0.34);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(229, 192, 123, 0.12), rgba(36, 211, 141, 0.08));
    color: var(--gold-2);
    font-size: 2.1rem;
}

.app-card .actions {
    margin-top: 18px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.stat strong {
    display: block;
    color: var(--gold-2);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    margin-bottom: 16px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(229, 192, 123, 0.1);
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.platform-badge.live {
    border-color: rgba(36, 211, 141, 0.34);
    background: rgba(36, 211, 141, 0.11);
    color: #9ff3c5;
}

.platform-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(229, 192, 123, 0.13), rgba(36, 211, 141, 0.08));
    color: var(--gold-2);
    font-size: 1.55rem;
}

.split {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
    align-items: start;
}

.list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
}

.check {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 211, 141, 0.12);
    color: var(--green);
    font-weight: 900;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

details + details {
    margin-top: 12px;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 800;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.article-hero {
    padding: 142px 24px 88px;
}

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

.article-body,
.article-sidebar,
.article-callout {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
        var(--surface);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.article-body {
    padding: clamp(26px, 5vw, 52px);
}

.article-body h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 5vw, 4.9rem);
    line-height: 1.03;
    letter-spacing: 0;
    color: var(--gold-2);
}

.article-body h2 {
    margin: 34px 0 10px;
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
    line-height: 1.12;
}

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

.article-lead {
    font-size: 1.16rem;
    color: #dce5dc;
}

.article-callout {
    margin-top: 36px;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(229, 192, 123, 0.12), rgba(36, 211, 141, 0.08)),
        rgba(10, 18, 14, 0.9);
}

.article-callout h2 {
    margin-top: 0;
}

.article-sidebar {
    position: sticky;
    top: 104px;
    padding: 22px;
}

.article-sidebar h2 {
    margin-bottom: 14px;
    font-size: 1.12rem;
    color: var(--gold-2);
}

.article-sidebar a,
.text-link {
    color: var(--gold-2);
    font-weight: 800;
    text-decoration: none;
}

.article-sidebar a {
    display: block;
    padding: 12px 0;
    border-top: 1px solid var(--line-soft);
}

.article-sidebar a:hover,
.text-link:hover {
    color: var(--green);
}

.rank-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: vpn-rank;
}

.rank-list li {
    position: relative;
    padding: 22px 22px 22px 76px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    counter-increment: vpn-rank;
}

.rank-list li::before {
    content: counter(vpn-rank);
    position: absolute;
    left: 20px;
    top: 22px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #181306;
    font-weight: 800;
}

.rank-list h2 {
    margin-top: 0;
    font-size: 1.34rem;
}

.policy-shell {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
    padding: 130px 0 54px;
}

.policy-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(10, 18, 14, 0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.policy-header {
    position: relative;
    min-height: 260px;
    padding: 42px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(6, 11, 8, 0.62), rgba(6, 11, 8, 0.9)),
        url("../ima.png") center / cover;
}

.policy-header h1 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.05;
    color: var(--gold-2);
}

.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(229, 192, 123, 0.1);
    color: var(--gold-2);
    font-weight: 800;
    font-size: 0.88rem;
}

.policy-content {
    padding: 36px 42px 44px;
}

.policy-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--line-soft);
}

.policy-section:last-child {
    border-bottom: 0;
}

.policy-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.num {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(229, 192, 123, 0.15);
    color: var(--gold-2);
    font-size: 1rem;
}

.policy-content p,
.policy-content li {
    color: var(--muted);
}

.policy-content a {
    color: var(--gold-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(229, 192, 123, 0.45);
}

.policy-content ul {
    margin: 12px 0 0 20px;
}

.contact-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(229, 192, 123, 0.08);
}

.site-footer {
    border-top: 1px solid var(--line-soft);
    padding: 30px 24px;
    background: rgba(3, 7, 5, 0.8);
    color: var(--soft);
}

.footer-inner {
    width: min(var(--container), 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

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

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

@keyframes slow-spin {
    to {
        rotate: 360deg;
    }
}

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(0.96);
        filter: drop-shadow(0 14px 36px rgba(36, 211, 141, 0.2));
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 22px 54px rgba(36, 211, 141, 0.36));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .hero-bg,
    .parallax-float {
        transform: none !important;
    }
}

@media (max-width: 940px) {
    .nav-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav-button {
        display: none;
    }

    .hero,
    .hero.compact {
        padding-top: 156px;
    }

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

    .hero-grid .hero-content {
        text-align: center;
    }

    .hero-grid .subtitle {
        margin-left: auto;
    }

    .hero-grid .actions {
        justify-content: center;
    }

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

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 620px) {
    .nav-inner {
        width: min(100% - 32px, var(--container));
        min-height: 72px;
    }

    .brand {
        font-size: 1.24rem;
    }

    .brand-icon {
        width: 36px;
        height: 36px;
    }

    .hero,
    .hero.compact {
        min-height: 88svh;
        padding: 150px 18px 58px;
    }

    .hero .subtitle {
        letter-spacing: 0.04em;
    }

    .eyebrow {
        font-size: 0.74rem;
    }

    .section {
        padding: 64px 18px;
    }

    .article-hero {
        padding: 120px 18px 64px;
    }

    .article-body {
        padding: 24px 18px;
    }

    .grid,
    .grid.two,
    .stats,
    .app-card {
        grid-template-columns: 1fr;
    }

    .app-mark {
        width: 68px;
        height: 68px;
    }

    .rank-list li {
        padding: 70px 18px 18px;
    }

    .lottie-panel {
        min-height: 340px;
    }

    .policy-shell {
        width: min(100% - 28px, 1040px);
        padding-top: 150px;
    }

    .policy-header,
    .policy-content {
        padding: 26px 20px;
    }

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