:root {
    --bg: #040915;
    --bg-soft: #0a1430;
    --panel: rgba(9, 22, 46, 0.68);
    --text: #f3f9ff;
    --muted: #abc3f5;
    --accent: #3cf5d0;
    --accent-2: #48a3ff;
    --ring: rgba(72, 163, 255, 0.42);
    --border: rgba(130, 180, 255, 0.34);
    --shadow: 0 26px 54px rgba(2, 8, 24, 0.66);
    --glow: 0 0 0.75rem rgba(60, 245, 208, 0.52), 0 0 1.6rem rgba(72, 163, 255, 0.44);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Trebuchet MS", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 12% 15%, #10234b 0%, #0a1230 28%, #061725 52%, #03110f 76%);
    color: var(--text);
    line-height: 1.55;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(68, 116, 194, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 116, 194, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.bg-orb {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.44;
    pointer-events: none;
}

.bg-orb-one {
    width: 20rem;
    height: 20rem;
    top: -5rem;
    right: -5rem;
    background: radial-gradient(circle, #3cf5d0 0%, rgba(60, 245, 208, 0) 68%);
}

.bg-orb-two {
    width: 24rem;
    height: 24rem;
    left: -9rem;
    bottom: 5rem;
    background: radial-gradient(circle, #48a3ff 0%, rgba(72, 163, 255, 0) 74%);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    background: rgba(6, 12, 31, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(145, 195, 255, 0.35);
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    width: 2.9rem;
    height: 2.9rem;
    object-fit: contain;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(171, 195, 255, 0.48);
    box-shadow: var(--glow);
    padding: 0.2rem;
}

.brand-text {
    font-size: 1.06rem;
}

.menu-toggle {
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    padding: 0.45rem 0.8rem;
    background: rgba(22, 34, 68, 0.86);
    color: var(--text);
    font-weight: 600;
}

.nav-links {
    display: none;
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    top: calc(100% + 0.5rem);
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: rgba(10, 20, 43, 0.96);
    box-shadow: var(--shadow);
}

.nav-links a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 0.65rem 0.55rem;
    border-radius: 0.65rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: rgba(79, 141, 255, 0.18);
    outline: none;
}

.topbar.nav-open .nav-links {
    display: block;
}

.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;
}

.global-search-wrap {
    width: min(760px, 92vw);
    margin: 0.62rem auto 0;
}

.global-search-panel {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 0.86rem;
    padding: 0.52rem;
    background: rgba(8, 20, 44, 0.8);
    box-shadow: 0 12px 22px rgba(2, 8, 24, 0.38);
}

.global-search-label {
    display: block;
    font-weight: 700;
    font-size: 0.93rem;
    margin-bottom: 0.45rem;
}

.global-search-input-wrap {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.global-search-input {
    width: 100%;
    border: 1px solid rgba(162, 201, 255, 0.4);
    border-radius: 0.65rem;
    background: rgba(8, 20, 44, 0.84);
    color: var(--text);
    font-size: 0.9rem;
    padding: 0.56rem 0.68rem;
    outline: none;
}

.global-search-input::placeholder {
    color: rgba(171, 195, 245, 0.72);
}

.global-search-input:focus {
    border-color: rgba(72, 163, 255, 0.85);
    box-shadow: 0 0 0 0.16rem rgba(72, 163, 255, 0.2);
}

.global-search-clear {
    border: 1px solid rgba(162, 201, 255, 0.4);
    background: rgba(13, 29, 58, 0.9);
    color: var(--text);
    border-radius: 0.62rem;
    padding: 0.48rem 0.58rem;
    font-size: 0.78rem;
    cursor: pointer;
    flex: 0 0 auto;
}

.global-search-clear:hover {
    background: rgba(22, 44, 78, 0.9);
}

.global-search-hint {
    margin: 0.48rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.global-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.32rem);
    margin-top: 0;
    border: 1px solid rgba(156, 193, 255, 0.35);
    border-radius: 0.78rem;
    background: rgba(8, 20, 44, 0.95);
    overflow: hidden;
    z-index: 40;
    box-shadow: 0 18px 28px rgba(2, 8, 24, 0.5);
}

.global-search-status {
    margin: 0;
    padding: 0.68rem 0.78rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.global-search-item {
    display: block;
    text-decoration: none;
    color: var(--text);
    border-top: 1px solid rgba(156, 193, 255, 0.2);
    padding: 0.62rem 0.78rem;
}

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

.global-search-item:hover,
.global-search-item:focus-visible {
    background: rgba(59, 114, 197, 0.2);
    outline: none;
}

.global-search-item strong {
    display: block;
    font-size: 0.9rem;
}

.global-search-meta {
    display: block;
    color: #9acfff;
    font-size: 0.78rem;
    margin-top: 0.12rem;
}

.global-search-snippet {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

main {
    width: min(1100px, 92vw);
    margin: 0 auto;
    padding: 1.4rem 0 3.2rem;
}

.hero,
.guide-hero {
    background: linear-gradient(145deg, rgba(8, 28, 56, 0.86) 0%, rgba(10, 42, 74, 0.78) 58%, rgba(9, 24, 56, 0.86) 100%);
    border: 1px solid var(--border);
    border-radius: 1.35rem;
    padding: 1.4rem 1.1rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before,
.guide-hero::before {
    content: "";
    position: absolute;
    top: -65%;
    left: -24%;
    width: 64%;
    height: 170%;
    transform: rotate(18deg);
    background: linear-gradient(120deg, rgba(60, 245, 208, 0.24), rgba(72, 163, 255, 0));
    pointer-events: none;
}

.hero {
    text-align: center;
}

.hero-logo-center {
    position: relative;
    width: max-content;
    margin: 0 auto 1.1rem;
}

.logo-glow-ring {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 12.8rem;
    height: 12.8rem;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(143, 220, 255, 0.55);
    box-shadow: var(--glow);
    animation: pulseRing 3.1s ease-in-out infinite;
}

.hero-logo-main {
    position: relative;
    width: clamp(7.2rem, 34vw, 11rem);
    height: clamp(7.2rem, 34vw, 11rem);
    object-fit: contain;
    border-radius: 1.35rem;
    padding: 0.5rem;
    border: 1px solid rgba(152, 211, 255, 0.58);
    background: linear-gradient(145deg, rgba(13, 43, 82, 0.82), rgba(12, 22, 48, 0.88));
    box-shadow: var(--glow);
}

.eyebrow {
    margin: 0;
    color: #9fd5ff;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

.hero h1,
.guide-hero h1 {
    margin: 0.7rem 0 0.55rem;
    font-size: clamp(1.6rem, 6.2vw, 2.7rem);
}

.headline-allcaps {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(1.35rem, 5.5vw, 2.35rem);
}

.hero p,
.guide-hero p {
    margin: 0;
    color: var(--muted);
}

.tagline-list {
    margin: 0.8rem auto 0;
    padding: 0;
    list-style: none;
    width: min(680px, 100%);
    display: grid;
    gap: 0.45rem;
}

.tagline-list li {
    border: 1px solid rgba(127, 199, 255, 0.35);
    border-radius: 0.75rem;
    padding: 0.48rem 0.7rem;
    background: rgba(7, 24, 50, 0.66);
    color: #d8e9ff;
    font-size: 0.9rem;
}

.hero-cta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.btn {
    border-radius: 0.85rem;
    padding: 0.72rem 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #18aef0 100%);
    color: #041225;
    box-shadow: 0 0 1rem rgba(60, 245, 208, 0.45), 0 0 1.8rem rgba(72, 163, 255, 0.32);
}

.btn-primary:hover {
    filter: saturate(1.1) brightness(1.04);
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(191, 209, 255, 0.34);
    background: rgba(18, 31, 63, 0.6);
}

.stats {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.stats .section-head {
    grid-column: 1 / -1;
}

.stat-card {
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    padding: 1rem;
    background: linear-gradient(155deg, rgba(10, 27, 56, 0.9), rgba(8, 20, 44, 0.86));
    box-shadow: var(--shadow);
}

.stat-card h2 {
    margin: 0;
    font-size: 1.3rem;
}

.stat-card p {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.section {
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: 1.1rem;
    padding: 1rem;
    background: linear-gradient(150deg, rgba(8, 25, 52, 0.85), rgba(9, 17, 36, 0.88));
    box-shadow: var(--shadow);
}

.feature-table-wrap {
    margin-top: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(147, 205, 255, 0.32);
    border-radius: 0.9rem;
    background: rgba(8, 23, 46, 0.86);
}

.feature-compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.feature-compare-table thead th {
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b8dcff;
    background: rgba(10, 32, 64, 0.92);
    padding: 0.58rem 0.7rem;
    border-bottom: 1px solid rgba(145, 196, 252, 0.24);
}

.feature-compare-table thead th:first-child {
    width: 35%;
}

.feature-compare-table tbody th,
.feature-compare-table tbody td {
    border-bottom: 1px solid rgba(145, 196, 252, 0.16);
    padding: 0.62rem 0.7rem;
    vertical-align: top;
}

.feature-compare-table tbody th {
    font-size: 0.9rem;
    color: #def0ff;
    background: rgba(10, 32, 64, 0.54);
}

.feature-compare-table tbody tr:last-child th,
.feature-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.compare-stack {
    display: grid;
    gap: 0.42rem;
}

.compare-line {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.52rem;
    padding: 0.44rem 0.5rem;
    border-radius: 0.62rem;
    border: 1px solid rgba(145, 196, 252, 0.18);
    background: rgba(10, 31, 60, 0.46);
}

.line-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.16rem 0.48rem;
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.04rem;
}

.line-standard {
    background: rgba(136, 179, 238, 0.24);
    border: 1px solid rgba(136, 179, 238, 0.44);
    color: #cbe4ff;
}

.line-extreme {
    background: rgba(76, 227, 194, 0.2);
    border: 1px solid rgba(76, 227, 194, 0.4);
    color: #9ff7de;
}

.compare-line p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.market-grid {
    display: grid;
    gap: 0.72rem;
    margin-top: 0.95rem;
}

.market-card {
    border: 1px solid rgba(147, 205, 255, 0.32);
    border-radius: 0.95rem;
    padding: 0.9rem;
    background: rgba(8, 23, 46, 0.86);
    box-shadow: 0 0 0.9rem rgba(72, 163, 255, 0.2);
}

.market-card h3 {
    margin: 0;
    font-size: 1rem;
}

.market-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.dashboard-section {
    position: relative;
}

.dashboard-frame {
    margin: 0.95rem 0 0;
    border-radius: 1rem;
    padding: 0.5rem;
    border: 1px solid rgba(133, 191, 255, 0.5);
    background: linear-gradient(145deg, rgba(8, 30, 60, 0.94), rgba(6, 16, 35, 0.9));
    box-shadow: 0 0 1.2rem rgba(72, 163, 255, 0.4), 0 22px 42px rgba(2, 8, 24, 0.58);
}

.dashboard-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.72rem;
    border: 1px solid rgba(146, 202, 255, 0.38);
}

.section-head h2 {
    margin: 0;
    font-size: 1.3rem;
}

.section-head p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.card-grid,
.guide-grid {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.95rem;
}

.card,
.guide-card {
    border: 1px solid rgba(179, 203, 255, 0.25);
    border-radius: 0.95rem;
    padding: 0.85rem;
    background: rgba(10, 27, 55, 0.84);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover,
.guide-card:hover {
    border-color: rgba(141, 214, 255, 0.68);
    box-shadow: 0 0 0.9rem rgba(72, 163, 255, 0.32);
    transform: translateY(-2px);
}

.card h3,
.guide-card h3 {
    margin: 0;
    font-size: 1rem;
}

.card p,
.guide-card p {
    margin: 0.48rem 0 0;
    color: var(--muted);
}

.text-link {
    display: inline-block;
    margin-top: 0.62rem;
    color: #9bd0ff;
    text-underline-offset: 3px;
}

.proof-grid {
    margin-top: 0.95rem;
    display: grid;
    gap: 0.72rem;
}

.proof-item {
    border: 1px solid rgba(144, 197, 255, 0.3);
    border-radius: 0.85rem;
    padding: 0.82rem;
    background: rgba(8, 23, 47, 0.82);
}

.proof-item p {
    margin: 0;
    color: #d5e7ff;
}

.faq-list {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.6rem;
}

.faq-item {
    border: 1px solid rgba(176, 197, 248, 0.27);
    border-radius: 0.8rem;
    padding: 0.75rem 0.85rem;
    background: rgba(15, 27, 54, 0.86);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

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

.cta-strip {
    margin-top: 1rem;
    border-radius: 1.15rem;
    border: 1px solid var(--border);
    padding: 1.1rem;
    background: linear-gradient(132deg, rgba(15, 36, 68, 0.86), rgba(17, 61, 93, 0.86));
    box-shadow: var(--shadow);
}

.cta-strip h2 {
    margin: 0;
}

.cta-strip p {
    margin: 0.45rem 0 0.9rem;
    color: var(--muted);
}

.guide-page .section {
    padding: 1rem;
}

.legacy-guide-page .guide-hero {
    text-align: left;
}

.extreme-guide-page .guide-hero {
    text-align: left;
}

.chat-guide-page .guide-hero {
    text-align: left;
}

.legacy-toc {
    margin: 0.9rem 0 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.55rem;
}

.legacy-toc a {
    color: #bfe3ff;
    text-underline-offset: 3px;
    font-weight: 600;
}

.legacy-guide-section {
    scroll-margin-top: 5.4rem;
}

.extreme-guide-section .legacy-step-list {
    margin-top: 0.72rem;
}

.guide-chat-bridge {
    margin-top: 0.82rem;
    border: 1px solid rgba(126, 214, 255, 0.38);
    border-radius: 0.85rem;
    padding: 0.68rem 0.74rem;
    background: rgba(10, 33, 59, 0.48);
}

.guide-shot-wrap {
    margin-top: 1rem;
    border: 1px solid rgba(130, 211, 255, 0.34);
    border-radius: 0.9rem;
    background: rgba(7, 27, 49, 0.78);
    padding: 0.75rem;
}

.guide-shot-title {
    margin: 0 0 0.62rem;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #d9ecff;
}

.guide-shot-grid {
    display: grid;
    gap: 0.62rem;
}

.guide-shot-card {
    appearance: none;
    border: 1px solid rgba(127, 204, 255, 0.3);
    background: rgba(9, 31, 58, 0.84);
    border-radius: 0.78rem;
    text-align: left;
    color: inherit;
    width: 100%;
    cursor: zoom-in;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    display: grid;
}

.guide-shot-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(220px, 62vw, 420px);
    object-fit: contain;
    display: block;
    border-bottom: 1px solid rgba(117, 197, 255, 0.24);
    background: #031326;
}

.guide-shot-caption {
    display: block;
    color: #c6e7ff;
    font-size: 0.84rem;
    line-height: 1.35;
    padding: 0.55rem 0.62rem 0.65rem;
}

.guide-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 3.2rem 0.82rem 1rem;
}

.guide-lightbox[hidden] {
    display: none;
}

.guide-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 11, 22, 0.9);
    backdrop-filter: blur(4px);
}

.guide-lightbox-close {
    position: absolute;
    top: 0.82rem;
    right: 0.82rem;
    border: 1px solid rgba(155, 216, 255, 0.46);
    border-radius: 999px;
    background: rgba(6, 27, 50, 0.94);
    color: #d7ecff;
    padding: 0.42rem 0.72rem;
    font-size: 0.82rem;
    cursor: pointer;
}

.guide-lightbox-figure {
    position: relative;
    z-index: 1;
    margin: 0;
    width: min(960px, 100%);
    max-height: calc(100vh - 4.2rem);
    display: grid;
    gap: 0.55rem;
}

.guide-lightbox-figure img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 8.2rem);
    object-fit: contain;
    border-radius: 0.9rem;
    border: 1px solid rgba(143, 216, 255, 0.38);
    background: #031326;
}

.guide-lightbox-figure figcaption {
    color: #d2ebff;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.35;
}

body.lightbox-open {
    overflow: hidden;
}

.chat-guide-section .legacy-step-list {
    margin-top: 0.72rem;
}

.legacy-subhead {
    margin: 0.8rem 0 0.45rem;
    font-size: 0.95rem;
    color: #d8ebff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.legacy-step-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

.security-note {
    margin: 0.88rem 0 0;
    border: 1px solid rgba(122, 222, 255, 0.42);
    border-radius: 0.82rem;
    padding: 0.68rem 0.72rem;
    background: rgba(11, 38, 66, 0.56);
    color: #d3ebff;
}

.legacy-links {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.guide-inline-text {
    margin: 0.55rem 0 0;
    color: var(--muted);
}

.dashboard-info-grid {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.dashboard-info-card {
    border: 1px solid rgba(147, 204, 255, 0.32);
    border-radius: 0.88rem;
    padding: 0.8rem;
    background: rgba(8, 23, 48, 0.82);
}

.dashboard-info-card h4 {
    margin: 0;
    font-size: 0.96rem;
}

.dashboard-rules-grid {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.package-grid {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.package-card {
    border: 1px solid rgba(141, 201, 255, 0.34);
    border-radius: 0.9rem;
    padding: 0.8rem;
    background: rgba(7, 22, 46, 0.82);
}

.package-card h4 {
    margin: 0;
    font-size: 0.96rem;
}

.legacy-numbered {
    list-style: decimal;
}

.vpn-guide-grid {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.8rem;
}

.vpn-card,
.vpn-status-card {
    border: 1px solid rgba(141, 201, 255, 0.34);
    border-radius: 0.9rem;
    padding: 0.88rem;
    background: rgba(8, 24, 50, 0.8);
}

.vpn-card h3,
.vpn-status-card h3 {
    margin: 0;
    font-size: 1rem;
}

.vpn-status-grid {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.8rem;
}

.vpn-warning {
    margin-top: 0.75rem;
}

.step-list,
.note-list {
    margin: 0.9rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
    display: grid;
    gap: 0.65rem;
}

.footer {
    width: min(1100px, 92vw);
    margin: 0 auto 1.5rem;
    border-top: 1px solid rgba(170, 192, 246, 0.3);
    padding-top: 1rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.footer a {
    color: #9bd0ff;
}

.floating-wa {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #062111;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(145deg, #3cf09d, #18c26d);
    box-shadow: 0 14px 28px rgba(5, 19, 10, 0.45);
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(8px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    will-change: opacity, transform, filter;
}

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

@media (min-width: 760px) {
    .brand-logo {
        width: 3.2rem;
        height: 3.2rem;
    }

    .brand-text {
        font-size: 1.12rem;
    }

    .menu-toggle {
        display: none;
    }

    .topbar {
        padding: 1rem 1.2rem;
    }

    .nav-links {
        position: static;
        display: flex;
        align-items: center;
        gap: 0.28rem;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .nav-links a {
        padding: 0.52rem 0.72rem;
        border: 1px solid transparent;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        border-color: rgba(164, 188, 248, 0.35);
    }

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

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

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

    .feature-compare-table thead th {
        font-size: 0.76rem;
        padding: 0.62rem 0.8rem;
    }

    .feature-compare-table thead th:first-child {
        width: 28%;
    }

    .feature-compare-table tbody th,
    .feature-compare-table tbody td {
        padding: 0.68rem 0.8rem;
    }

    .feature-compare-table tbody th {
        font-size: 0.92rem;
    }

    .compare-stack {
        gap: 0.5rem;
    }

    .compare-line {
        gap: 0.6rem;
        padding: 0.48rem 0.58rem;
    }

    .line-label {
        font-size: 0.66rem;
    }

    .compare-line p {
        font-size: 0.84rem;
    }

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

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

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

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

    .extreme-guide-page .legacy-toc {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.2rem;
    }

    .chat-guide-page .legacy-toc {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.2rem;
    }

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

    .section,
    .hero,
    .guide-hero,
    .cta-strip {
        padding: 1.2rem;
    }

    .global-search-wrap {
        width: min(860px, 92vw);
        margin-top: 0.72rem;
    }
}

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

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

@keyframes pulseRing {
    0%,
    100% {
        opacity: 0.82;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.46;
        transform: translate(-50%, -50%) scale(1.08);
    }
}
