:root {
    --bg: #050711;
    --panel: #0d1220;
    --line: #26344f;
    --text: #f4f7fb;
    --muted: #aab5c5;
    --blue: #4f8cff;
    --cyan: #38d5ff;
    --green: #42e695;
    --yellow: #f5c451;
    --rose: #fb7185;
    --violet: #8b5cf6;
    --shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
html {
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255,255,255,.045);
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
        #050711;
}

::-webkit-scrollbar-thumb {
    border: 3px solid #050711;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green), var(--cyan), var(--violet));
    box-shadow: 0 0 18px rgba(56, 213, 255, .24);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cyan), var(--green), var(--violet));
}

::-webkit-scrollbar-corner {
    background: #050711;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 3%, rgba(79, 140, 255, .32), transparent 30rem),
        radial-gradient(circle at 84% 7%, rgba(66, 230, 149, .18), transparent 32rem),
        radial-gradient(circle at 50% 45%, rgba(139, 92, 246, .12), transparent 34rem),
        linear-gradient(180deg, #050711 0%, #080d18 48%, #050711 100%);
    color: var(--text);
    font: 16px/1.6 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 14px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(5, 7, 17, .78);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 42px rgba(0,0,0,.22);
}

.brand,
.header-action,
.nav-links,
.footer div,
.footer nav,
.hero-actions,
.hero-stats {
    display: flex;
    align-items: center;
}

.brand { gap: 10px; font-weight: 800; font-size: 18px; }
.brand-logo, .footer-logo { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.nav-links { gap: 18px; color: var(--muted); font-size: 14px; }
.nav-links a:hover, .footer a:hover, .consent-meta a:hover { color: var(--text); }

.header-action {
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: #06101c;
    font-weight: 800;
}

.panel-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 2px solid #06101c;
    border-radius: 5px;
}

.panel-icon::before,
.panel-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    height: 2px;
    border-radius: 999px;
    background: #06101c;
}

.panel-icon::before { top: 4px; }
.panel-icon::after { bottom: 4px; }

main > section {
    padding: 86px clamp(18px, 5vw, 72px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
    min-height: 100vh;
    padding-top: 132px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(44px, 7vw, 88px);
    line-height: .95;
    letter-spacing: 0;
}

h1 span {
    display: block;
    width: fit-content;
    color: transparent;
    background: linear-gradient(90deg, var(--green), var(--cyan) 48%, var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
}

h2 {
    max-width: 780px;
    margin-bottom: 0;
    font-size: clamp(32px, 4.2vw, 58px);
    line-height: 1;
    letter-spacing: 0;
}

h3 { margin-bottom: 8px; font-size: 19px; line-height: 1.25; }

.hero-text {
    max-width: 660px;
    color: #c8d1dc;
    font-size: 19px;
}

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

.button,
.card-button,
.vds-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    font-weight: 800;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover,
.card-button:hover,
.vds-button:hover,
.vds-location-btn:hover,
.vds-category-btn:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: #06101c;
    box-shadow: 0 12px 34px rgba(56, 213, 255, .18);
}

.button-secondary {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
}

.hero-stats {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stats span {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
    color: var(--muted);
    font-size: 14px;
}

.hero-stats strong { color: var(--text); margin-right: 5px; }

.hero-visual {
    position: relative;
    min-height: 540px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background:
        linear-gradient(140deg, rgba(79, 140, 255, .24), transparent 42%),
        linear-gradient(320deg, rgba(66, 230, 149, .18), transparent 46%),
        var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, black, transparent 88%);
}

.server-stack,
.console-window,
.metrics-panel {
    position: relative;
    z-index: 1;
}

.server-stack {
    display: grid;
    gap: 12px;
}

.server-stack div {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.server-stack span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 18px rgba(66, 230, 149, .85);
}

.server-stack strong { font-size: 14px; }
.server-stack em { color: var(--green); font-size: 12px; font-style: normal; font-weight: 800; }

.console-window,
.metrics-panel {
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    background: rgba(5, 9, 14, .78);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.console-window { margin-top: 20px; overflow: hidden; }

.console-top {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.console-top span { width: 10px; height: 10px; border-radius: 999px; background: var(--rose); }
.console-top span:nth-child(2) { background: var(--yellow); }
.console-top span:nth-child(3) { background: var(--green); }
.console-top p { margin: 0 0 0 8px; color: var(--muted); font: 13px JetBrains Mono, monospace; }

pre {
    margin: 0;
    padding: 24px;
    white-space: pre-wrap;
    color: #c4f1d5;
    font: 15px/1.8 JetBrains Mono, monospace;
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 22px 0 0 auto;
    max-width: 430px;
    overflow: hidden;
}

.metrics-panel div { padding: 18px; background: rgba(255, 255, 255, .035); }
.metrics-panel span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.metrics-panel strong { display: block; margin-top: 6px; font-size: 21px; }

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    min-width: 80px;
    background: linear-gradient(90deg, var(--line), transparent);
}

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

.feature-card,
.pricing-card,
.vds-card,
.review-card,
.consent-card,
.uptime-card,
.faq-grid details,
.state-card {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)),
        rgba(13, 18, 32, .78);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.feature-card {
    position: relative;
    min-height: 228px;
    padding: 26px;
    overflow: hidden;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green), transparent);
    opacity: .6;
    transform: scaleX(.45);
    transform-origin: left;
    transition: opacity .22s ease, transform .22s ease;
}

.feature-card::before,
.review-card::before,
.faq-grid details::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 0, rgba(56, 213, 255, .2), transparent 38%),
        linear-gradient(135deg, rgba(66, 230, 149, .12), rgba(139, 92, 246, .08));
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}

.feature-card > *,
.review-card > *,
.faq-grid details > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover,
.feature-card:focus-within,
.review-card:hover,
.review-card:focus-within,
.faq-grid details:hover,
.faq-grid details:focus-within {
    transform: translateY(-6px);
    border-color: rgba(56, 213, 255, .5);
    background:
        linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
        rgba(13, 18, 32, .92);
    box-shadow:
        0 20px 58px rgba(0, 0, 0, .34),
        0 0 38px rgba(56, 213, 255, .1);
}

.feature-card:hover::before,
.feature-card:focus-within::before,
.review-card:hover::before,
.review-card:focus-within::before,
.faq-grid details:hover::before,
.faq-grid details:focus-within::before {
    opacity: 1;
}

.feature-card:hover::after,
.feature-card:focus-within::after {
    opacity: 1;
    transform: scaleX(1);
}

.feature-card:hover h3,
.feature-card:focus-within h3,
.review-card:hover .review-name,
.review-card:focus-within .review-name,
.faq-grid details:hover summary,
.faq-grid details:focus-within summary {
    color: var(--cyan);
}

.ui-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 26px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.ui-icon::before {
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.icon-rocket { color: var(--green); }
.icon-shield { color: var(--cyan); }
.icon-terminal { color: var(--yellow); }
.icon-chat { color: var(--rose); }
.icon-rocket::before { content: "UP"; }
.icon-shield::before { content: "OK"; }
.icon-terminal::before { content: ">_"; }
.icon-chat::before { content: "24"; }

.feature-card p, .review-text, .consent-card p, .faq-grid p { color: var(--muted); }

.uptime-section { padding-top: 32px; padding-bottom: 32px; }

.uptime-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
    gap: 28px;
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
    overflow: hidden;
}

.uptime-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(79,140,255,.18), transparent 45%, rgba(66,230,149,.12));
    pointer-events: none;
}

.uptime-card > * { position: relative; z-index: 1; }

.uptime-metrics {
    display: grid;
    gap: 12px;
}

.uptime-metrics span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    background: rgba(0,0,0,.18);
    color: var(--muted);
}

.uptime-metrics strong { color: var(--text); }

.pricing-cards-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.pricing-card,
.vds-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    overflow: hidden;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.pricing-card::before,
.vds-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 0, rgba(56, 213, 255, .22), transparent 38%),
        linear-gradient(135deg, rgba(66, 230, 149, .14), rgba(79, 140, 255, .08));
    opacity: 0;
    transition: opacity .22s ease;
    pointer-events: none;
}

.pricing-card::after,
.vds-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet));
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: none;
}

.pricing-card > *,
.vds-card > * {
    position: relative;
    z-index: 1;
}

.pricing-card:hover,
.vds-card:hover,
.pricing-card:focus-within,
.vds-card:focus-within {
    transform: translateY(-7px);
    border-color: rgba(56, 213, 255, .58);
    background:
        linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
        rgba(13, 18, 32, .92);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, .38),
        0 0 0 1px rgba(56, 213, 255, .08),
        0 0 42px rgba(56, 213, 255, .12);
}

.pricing-card:hover::before,
.vds-card:hover::before,
.pricing-card:focus-within::before,
.vds-card:focus-within::before {
    opacity: 1;
}

.pricing-card:hover::after,
.vds-card:hover::after,
.pricing-card:focus-within::after,
.vds-card:focus-within::after {
    opacity: 1;
    transform: scaleX(1);
}

.pricing-card:hover .card-title,
.vds-card:hover .vds-name,
.pricing-card:focus-within .card-title,
.vds-card:focus-within .vds-name {
    color: var(--cyan);
}

.pricing-card:hover .card-price-text,
.vds-card:hover .vds-price-text,
.pricing-card:focus-within .card-price-text,
.vds-card:focus-within .vds-price-text {
    color: var(--green);
}

.pricing-card-enhanced {
    border-color: rgba(66, 230, 149, .5);
    background:
        linear-gradient(180deg, rgba(66, 230, 149, .16), rgba(255,255,255,.035)),
        rgba(13, 18, 32, .84);
}

.accent-title { color: var(--green); }
.card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-title, .vds-name { margin: 0; font-size: 21px; }

.card-badge {
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(66, 230, 149, .14);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.card-specs,
.vds-specs {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #c4cfdb;
    font-size: 14px;
}

.spec-item,
.vds-spec {
    display: flex;
    align-items: center;
    gap: 11px;
}

.spec-icon,
.vds-icon-spec {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    margin-top: 0;
}

.card-price,
.vds-price {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.card-price-text,
.vds-price-text {
    color: var(--text);
    font-size: 24px;
    font-weight: 800;
}

.card-button,
.vds-button {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #061019;
}

.pricing-card:hover .card-button,
.vds-card:hover .vds-button,
.pricing-card:focus-within .card-button,
.vds-card:focus-within .vds-button {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 12px 28px rgba(56, 213, 255, .18);
}

.card-button:focus-visible,
.vds-button:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.vds-location-container,
.vds-categories-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.vds-location-btn,
.vds-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.vds-flag {
    width: 30px;
    height: 22px;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.vds-location-btn.active,
.vds-category-btn.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: #06110c;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(56, 213, 255, .14);
}

.vds-location-section, .vds-category-section { display: none; }
.vds-location-section.active, .vds-category-section.active { display: block; }
.vds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.vds-category-header { margin: 28px 0 18px; text-align: center; }
.vds-category-title { color: var(--cyan); }

.reviews-shell {
    display: grid;
    gap: 18px;
}

.reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-controls {
    display: grid;
    grid-template-columns: 46px minmax(120px, 360px) 46px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.review-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
        rgba(13, 18, 32, .86);
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0,0,0,.2);
    transition: transform .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}

.review-nav-btn span {
    display: block;
    margin-top: -2px;
    font-size: 34px;
    line-height: 1;
}

.review-nav-btn:hover:not(:disabled),
.review-nav-btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(56, 213, 255, .55);
    background: linear-gradient(135deg, rgba(66, 230, 149, .22), rgba(56, 213, 255, .16));
}

.review-nav-btn:disabled {
    cursor: default;
    opacity: .35;
}

.reviews-progress {
    position: relative;
    height: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    overflow: hidden;
    cursor: pointer;
    touch-action: none;
}

.reviews-progress span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 14%;
    transform: translateX(0);
    transform-origin: left;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--violet));
    box-shadow: 0 0 24px rgba(56, 213, 255, .24);
    transition: width .18s ease, transform .12s ease;
}

.reviews-progress span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    transform: translateY(-50%);
    box-shadow: -10px 0 0 rgba(255,255,255,.48);
}

.reviews-progress:hover {
    border-color: rgba(56, 213, 255, .35);
    background: rgba(255,255,255,.065);
}

.review-card {
    position: relative;
    flex: 0 0 min(380px, 86vw);
    scroll-snap-align: start;
    padding: 22px;
    opacity: 0;
    transform: translateY(10px);
    overflow: hidden;
    transition:
        opacity .45s ease,
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.review-visible { opacity: 1; transform: translateY(0); }
.review-visible:hover,
.review-visible:focus-within {
    transform: translateY(-6px);
}
.review-header { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.review-name { font-weight: 800; }
.review-date { color: var(--muted); font-size: 13px; }
.rating-badge { display: inline-flex; margin-top: 16px; color: var(--yellow); font-weight: 800; }

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

.faq-grid details {
    position: relative;
    padding: 20px 22px;
    overflow: hidden;
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}
.faq-grid summary { cursor: pointer; color: var(--text); font-weight: 800; }
.faq-grid p { margin: 14px 0 0; }

.consent-card { padding: 24px; }
.consent-meta { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 18px; color: var(--muted); }
.consent-meta a { color: var(--green); font-weight: 800; }
.consent-scrollbox { max-height: 420px; overflow-y: auto; padding-right: 12px; }
.consent-scrollbox h3 { margin-top: 20px; }

.state-card {
    grid-column: 1 / -1;
    padding: 24px;
    color: var(--muted);
    text-align: center;
}

.vds-empty-state {
    display: grid;
    gap: 6px;
    max-width: 560px;
    margin: 18px auto;
    padding: 22px;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 16px;
    color: var(--muted);
    text-align: center;
}

.vds-empty-title { color: var(--text); font-weight: 800; }
.vds-empty-badge { color: var(--green); font-weight: 800; }
.vds-empty-dot { display: none; }

.footer {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(180px, .8fr));
    column-gap: clamp(42px, 6vw, 96px);
    row-gap: 34px;
    align-items: start;
    width: 100%;
    padding: 48px clamp(24px, 8vw, 160px) 58px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at 100% 0, rgba(79, 140, 255, .08), transparent 28rem),
        rgba(10, 11, 25, .72);
    color: var(--muted);
    overflow: hidden;
}

.footer .footer-brand,
.footer .footer-column {
    display: grid;
    align-items: start;
    justify-content: start;
    gap: 12px;
}

.footer-logo-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    color: var(--text);
    font-size: 28px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 270px;
    margin: 8px 0 0;
    color: #a8a8b6;
    font-size: 17px;
    line-height: 1.55;
}

.footer-brand small {
    color: #8e8e9c;
    font-size: 14px;
}

.footer-column h3 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.2;
}

.footer-column span,
.footer-column a {
    color: #9d9daa;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.3;
    width: max-content;
    max-width: 100%;
}

.footer-column span {
    text-transform: none;
}

.footer-column a:hover,
.footer-logo-row:hover {
    color: var(--cyan);
}

.doc-main {
    min-height: 100vh;
    padding-top: 122px;
}

.doc-hero {
    padding-bottom: 28px;
}

.doc-shell {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto 72px;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.026)),
        rgba(13, 18, 32, .86);
    box-shadow: var(--shadow);
}

.doc-meta {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14px;
}

.doc-shell h2 {
    margin: 28px 0 10px;
    font-size: 22px;
}

.doc-shell p {
    color: #c4cfdb;
}

.doc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 980px) {
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 112px; }
    .hero-visual { min-height: 420px; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .uptime-card { grid-template-columns: 1fr; }
    .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .site-header { min-height: 64px; }
    .header-action { padding: 0 12px; }
    main > section { padding: 58px 18px; }
    .hero { padding-top: 104px; }
    h1 { font-size: 44px; }
    .hero-visual { min-height: auto; padding: 16px; }
    .metrics-panel { grid-template-columns: 1fr; }
    .section-heading { display: block; }
    .section-heading::after { display: none; }
    .feature-grid, .faq-grid { grid-template-columns: 1fr; }
    .footer { grid-template-columns: 1fr; padding: 38px 18px 44px; }
    .footer-logo-row { font-size: 24px; }
}
