body {
    min-height: 100vh;

    margin: 0;

    color: var(--dv-text-primary);
    background: var(--dv-bg-page);

    font-family: var(--dv-font-family);
}

.landing-background {
    position: fixed;
    z-index: -2;

    inset: 0;

    overflow: hidden;

    background:
            radial-gradient(
                    circle at 20% 20%,
                    rgba(124, 58, 237, 0.18),
                    transparent 34%
            ),
            radial-gradient(
                    circle at 85% 70%,
                    rgba(37, 99, 235, 0.12),
                    transparent 30%
            ),
            var(--dv-bg-page);
}

.landing-background::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.04) 1px,
                    transparent 1px
            ),
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.04) 1px,
                    transparent 1px
            );

    background-size: 52px 52px;

    mask-image:
            linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0.8),
                    transparent 85%
            );
}

.landing-header {
    width: min(1180px, calc(100% - 40px));

    display: flex;
    align-items: center;

    margin: 0 auto;
    padding: 22px 0;
}

.landing-logo {
    display: inline-flex;
    align-items: center;

    color: var(--dv-text-primary);

    text-decoration: none;
}

.landing-logo-mark {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dv-primary-border);
    border-radius: 14px;

    color: #ddd6fe;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.24),
                    rgba(91, 33, 182, 0.08)
            );

    box-shadow:
            0 12px 30px rgba(91, 33, 182, 0.22);
}

.landing-logo-mark svg {
    width: 26px;
    height: 26px;
}

.landing-logo-copy {
    display: flex;
    align-items: baseline;

    margin-left: 12px;
}

.landing-logo-copy strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.landing-logo-copy small {
    margin-left: 6px;

    color: var(--dv-primary-hover);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.landing-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
    margin-right: 28px;
}

.landing-nav a {
    color: var(--dv-text-secondary);

    font-size: var(--dv-font-size-sm);
    font-weight: 600;

    text-decoration: none;

    transition: color var(--dv-transition-fast);
}

.landing-nav a:hover {
    color: var(--dv-text-primary);
}

.landing-login {
    min-height: 42px;
    padding: 0 17px;
}

.hero {
    width: min(1180px, calc(100% - 40px));
    min-height: calc(100vh - 88px);

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: center;

    gap: 72px;

    margin: 0 auto;
    padding: 10px 0 80px;

    transform: translateY(-34px);
}

.hero-badge {
    color: #ddd6fe;
    border-color: var(--dv-primary-border);
    background: var(--dv-primary-soft);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 5px rgba(62, 233, 138, 0.08),
            0 0 16px rgba(62, 233, 138, 0.45);
}

.hero h1 {
    max-width: 720px;

    margin: 24px 0 0;

    font-size: clamp(48px, 6vw, 78px);
    font-weight: 850;

    line-height: 0.98;
    letter-spacing: -3.4px;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
            linear-gradient(
                    90deg,
                    #c4b5fd,
                    #8b5cf6 48%,
                    #60a5fa
            );

    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 600px;

    margin: 26px 0 0;

    color: var(--dv-text-secondary);

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}

.hero-actions .dv-btn {
    min-height: 54px;
    padding: 0 22px;
}

.hero-primary-action svg {
    width: 18px;
    height: 18px;

    transition: transform var(--dv-transition-fast);
}

.hero-primary-action:hover svg {
    transform: translateX(3px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 32px;

    margin-top: 42px;
}

.hero-meta div {
    display: flex;
    flex-direction: column;
}

.hero-meta strong {
    font-size: 15px;
    font-weight: 800;
}

.hero-meta span {
    margin-top: 4px;

    color: var(--dv-text-muted);

    font-size: 12px;
}

.hero-visual {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
            rgba(124, 58, 237, 0.26);

    filter: blur(90px);
}

.hero-device-card {
    position: relative;
    z-index: 2;

    width: min(390px, 100%);

    padding: 28px;

    transform: rotate(-1.5deg);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    background:
            linear-gradient(
                    180deg,
                    rgba(31, 31, 39, 0.9),
                    rgba(18, 18, 24, 0.9)
            );

    transition:
            transform var(--dv-transition-slow),
            border-color var(--dv-transition-base),
            box-shadow var(--dv-transition-base);
}

.hero-device-card:hover {
    transform: rotate(0deg) translateY(-6px);

    border-color: var(--dv-primary-border);

    box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.48),
            0 18px 55px rgba(91, 33, 182, 0.22);
}

.hero-device-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-device-header > div {
    display: flex;
    flex-direction: column;
}

.hero-device-label {
    color: var(--dv-text-muted);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-device-header strong {
    margin-top: 7px;

    font-size: 17px;
}

.hero-status-dot {
    width: 10px;
    height: 10px;

    margin-top: 5px;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 7px rgba(62, 233, 138, 0.08),
            0 0 18px rgba(62, 233, 138, 0.42);
}

.hero-shield {
    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 38px auto 32px;

    border: 1px solid var(--dv-primary-border);
    border-radius: 34px;

    color: #ddd6fe;

    background:
            radial-gradient(
                    circle at 35% 25%,
                    rgba(196, 181, 253, 0.26),
                    transparent 35%
            ),
            linear-gradient(
                    145deg,
                    rgba(124, 58, 237, 0.26),
                    rgba(91, 33, 182, 0.08)
            );

    box-shadow:
            0 24px 55px rgba(91, 33, 182, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-shield svg {
    width: 58px;
    height: 58px;

    filter:
            drop-shadow(
                    0 8px 18px rgba(124, 58, 237, 0.35)
            );
}

.hero-server {
    display: flex;
    align-items: center;

    padding: 16px;

    border: 1px solid var(--dv-border);
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);
}

.hero-server-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(124, 58, 237, 0.14);
}

.hero-server-icon span {
    width: 12px;
    height: 12px;

    border: 3px solid #c4b5fd;
    border-radius: 50%;
}

.hero-server-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    margin-left: 12px;
}

.hero-server-copy span {
    color: var(--dv-text-muted);

    font-size: 10px;
}

.hero-server-copy strong {
    margin-top: 4px;

    font-size: 13px;
}

.hero-server-ping {
    margin-left: auto;

    color: var(--dv-success);

    font-size: 11px;
    font-weight: 700;
}

.hero-connection-line {
    height: 4px;

    margin: 22px 0;

    overflow: hidden;

    border-radius: var(--dv-radius-round);

    background: rgba(255, 255, 255, 0.06);
}

.hero-connection-line span {
    width: 78%;
    height: 100%;

    display: block;

    border-radius: inherit;

    background:
            linear-gradient(
                    90deg,
                    var(--dv-primary),
                    var(--dv-success)
            );

    box-shadow:
            0 0 14px rgba(62, 233, 138, 0.32);
}

.hero-device-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.hero-device-footer div {
    display: flex;
    flex-direction: column;

    padding: 13px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.025);
}

.hero-device-footer span {
    color: var(--dv-text-muted);

    font-size: 10px;
}

.hero-device-footer strong {
    margin-top: 4px;

    font-size: 12px;
}

.hero-floating-card {
    position: absolute;
    z-index: 3;

    padding: 14px 16px;

    border: 1px solid var(--dv-border);
    border-radius: 15px;

    background: rgba(22, 22, 29, 0.92);

    box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.34);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-floating-card span {
    color: var(--dv-text-muted);

    font-size: 10px;
}

.hero-floating-card strong {
    display: block;

    margin-top: 4px;

    font-size: 13px;
}

.hero-floating-left {
    left: -10px;
    bottom: 110px;
}

.hero-floating-right {
    right: -18px;
    top: 112px;

    display: flex;
    align-items: center;

    gap: 10px;
}

.hero-floating-check {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #052e16;
    background: var(--dv-success);

    font-size: 16px;
    font-weight: 900;
}

.hero-floating-right div {
    display: flex;
    flex-direction: column;
}

@media (max-width: 960px) {

    .landing-nav {
        display: none;
    }

    .landing-login {
        margin-left: auto;
    }

    .hero {
        grid-template-columns: 1fr;

        gap: 28px;

        padding-top: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-meta {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }
}

@media (max-width: 600px) {

    .landing-header {
        width: min(100% - 24px, 1180px);
        padding-top: 14px;
    }

    .landing-logo-copy small {
        display: none;
    }

    .landing-login {
        min-height: 38px;
        padding: 0 12px;

        font-size: 11px;
    }

    .hero {
        width: min(100% - 24px, 1180px);

        padding-top: 34px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .dv-btn {
        width: 100%;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 18px;

        text-align: left;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-device-card {
        padding: 22px;
    }

    .hero-floating-left {
        left: -4px;
        bottom: 62px;
    }

    .hero-floating-right {
        right: -4px;
        top: 72px;
    }

    .hero {
        transform: none;
    }

    .hero-device-card {
        transform: none;
    }
}

/******** AMBIENT BACKGROUND ********/

.pointer-glow {
    --pointer-x: 50vw;
    --pointer-y: 50vh;

    position: fixed;
    z-index: -1;

    inset: 0;

    pointer-events: none;

    opacity: 0;

    background:
            radial-gradient(
                    420px circle at var(--pointer-x) var(--pointer-y),
                    rgba(139, 92, 246, 0.1),
                    transparent 70%
            );

    transition: opacity 500ms ease;
}

.pointer-glow.is-active {
    opacity: 1;
}

.landing-particles {
    position: fixed;
    z-index: -1;

    inset: 0;

    overflow: hidden;
    pointer-events: none;
}

.landing-particle {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: rgba(196, 181, 253, 0.72);

    box-shadow:
            0 0 12px rgba(139, 92, 246, 0.65),
            0 0 28px rgba(139, 92, 246, 0.28);

    animation:
            particle-float 14s ease-in-out infinite;
}

.particle-one {
    top: 18%;
    left: 8%;

    animation-delay: -3s;
}

.particle-two {
    top: 68%;
    left: 17%;

    width: 3px;
    height: 3px;

    opacity: 0.7;

    animation-delay: -8s;
    animation-duration: 18s;
}

.particle-three {
    top: 27%;
    right: 12%;

    width: 4px;
    height: 4px;

    animation-delay: -5s;
    animation-duration: 16s;
}

.particle-four {
    right: 30%;
    bottom: 14%;

    width: 3px;
    height: 3px;

    opacity: 0.65;

    animation-delay: -11s;
    animation-duration: 20s;
}

.particle-five {
    top: 11%;
    left: 54%;

    width: 2px;
    height: 2px;

    opacity: 0.55;

    animation-delay: -6s;
    animation-duration: 17s;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    35% {
        transform: translate3d(18px, -24px, 0);
    }

    70% {
        transform: translate3d(-12px, 15px, 0);
    }
}


/******** REVEAL ANIMATION ********/

[data-reveal] {
    opacity: 0;

    transform: translateY(24px);

    transition:
            opacity 800ms ease,
            transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;

    transform: translateY(0);
}

.hero-visual[data-reveal] {
    transition-delay: 140ms;
}


/******** HERO MOTION ********/

.hero-glow {
    animation:
            hero-glow-breathe 8s ease-in-out infinite;
}

.hero-status-dot {
    animation:
            status-pulse 2.6s ease-in-out infinite;
}

.hero-connection-line span {
    position: relative;

    overflow: hidden;
}

.hero-connection-line span::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: -35%;

    width: 30%;

    background:
            linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.8),
                    transparent
            );

    animation:
            connection-shimmer 3.8s ease-in-out infinite;
}

.hero-floating-left {
    animation:
            floating-card-left 6s ease-in-out infinite;
}

.hero-floating-right {
    animation:
            floating-card-right 7s ease-in-out infinite;
}

@keyframes hero-glow-breathe {

    0%,
    100% {
        opacity: 0.78;

        transform: scale(0.96);
    }

    50% {
        opacity: 1;

        transform: scale(1.06);
    }
}

@keyframes status-pulse {

    0%,
    100% {
        box-shadow:
                0 0 0 7px rgba(62, 233, 138, 0.08),
                0 0 18px rgba(62, 233, 138, 0.42);
    }

    50% {
        box-shadow:
                0 0 0 11px rgba(62, 233, 138, 0.03),
                0 0 28px rgba(62, 233, 138, 0.62);
    }
}

@keyframes connection-shimmer {

    0% {
        left: -35%;
    }

    55%,
    100% {
        left: 115%;
    }
}

@keyframes floating-card-left {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes floating-card-right {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/******** ACCESSIBILITY ********/

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;

        transform: none;
    }
}

@media (max-width: 600px) {

    .pointer-glow,
    .landing-particle {
        display: none;
    }

    [data-reveal] {
        opacity: 1;

        transform: none;
    }

    .hero-floating-left,
    .hero-floating-right {
        animation: none;
    }
}

/**************************************************
 * BENEFITS
 **************************************************/

.benefits {
    position: relative;

    padding: 120px 0 150px;
}

.benefits::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 14%;
    left: 50%;

    width: 780px;
    height: 620px;

    border-radius: 50%;

    background:
            rgba(91, 33, 182, 0.1);

    filter: blur(130px);

    transform: translateX(-50%);

    pointer-events: none;
}

.benefits-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}

.benefits-heading {
    max-width: 760px;

    margin-bottom: 58px;
}

.benefits-badge {
    color: #ddd6fe;

    border-color: var(--dv-primary-border);

    background: var(--dv-primary-soft);
}

.benefits-heading h2 {
    margin: 22px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(40px, 5vw, 64px);
    font-weight: 850;

    line-height: 1.02;
    letter-spacing: -2.8px;
}

.benefits-heading h2 span {
    display: block;

    color: transparent;

    background:
            linear-gradient(
                    90deg,
                    #c4b5fd,
                    #8b5cf6 52%,
                    #60a5fa
            );

    background-clip: text;
    -webkit-background-clip: text;
}

.benefits-heading p {
    max-width: 630px;

    margin: 22px 0 0;

    color: var(--dv-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}


/**************************************************
 * GRID
 **************************************************/

.benefits-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(320px, 0.82fr);

    grid-template-areas:
        "speed privacy"
        "devices stability";

    gap: 18px;
}

.benefit-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    border: 1px solid var(--dv-border);
    border-radius: 28px;

    background:
            linear-gradient(
                    145deg,
                    rgba(28, 28, 36, 0.86),
                    rgba(14, 14, 20, 0.9)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.045),
            0 24px 70px rgba(0, 0, 0, 0.22);

    transition:
            transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
            border-color 400ms ease,
            box-shadow 400ms ease;
}

.benefit-card::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    background:
            radial-gradient(
                    circle at 20% 0%,
                    rgba(139, 92, 246, 0.16),
                    transparent 42%
            );

    transition: opacity 400ms ease;

    pointer-events: none;
}

.benefit-card:hover {
    border-color: rgba(139, 92, 246, 0.34);

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.07),
            0 34px 90px rgba(0, 0, 0, 0.34),
            0 14px 50px rgba(91, 33, 182, 0.1);

    transform: translateY(-7px);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-speed {
    grid-area: speed;

    min-height: 510px;

    padding: 36px;
}

.benefit-privacy {
    grid-area: privacy;

    min-height: 510px;

    padding: 34px;
}

.benefit-devices {
    grid-area: devices;

    min-height: 430px;

    padding: 34px;
}

.benefit-stability {
    grid-area: stability;

    min-height: 430px;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(250px, 1.1fr);

    gap: 20px;

    padding: 34px;
}


/**************************************************
 * COMMON CONTENT
 **************************************************/

.benefit-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(139, 92, 246, 0.24);
    border-radius: 15px;

    color: #c4b5fd;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.18),
                    rgba(91, 33, 182, 0.06)
            );

    box-shadow:
            0 16px 34px rgba(91, 33, 182, 0.16);
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
}

.benefit-eyebrow {
    display: block;

    margin-top: 26px;

    color: #a78bfa;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.benefit-card h3 {
    max-width: 520px;

    margin: 11px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(25px, 2.5vw, 34px);
    font-weight: 800;

    line-height: 1.12;
    letter-spacing: -1.2px;
}

.benefit-card p {
    max-width: 520px;

    margin: 16px 0 0;

    color: var(--dv-text-secondary);

    font-size: 14px;
    line-height: 1.7;
}


/**************************************************
 * SPEED CARD
 **************************************************/

.benefit-speed {
    display: grid;
    grid-template-columns: minmax(250px, 0.82fr) minmax(320px, 1.18fr);

    align-items: stretch;

    gap: 28px;
}

.benefit-card-content {
    position: relative;
    z-index: 2;
}

.benefit-value {
    display: flex;
    align-items: baseline;

    gap: 9px;

    margin-top: 40px;
}

.benefit-value strong {
    color: var(--dv-text-primary);

    font-size: 46px;
    font-weight: 850;

    line-height: 1;
    letter-spacing: -2px;
}

.benefit-value span {
    color: var(--dv-text-muted);

    font-size: 13px;
    font-weight: 700;
}

.speed-visual {
    position: relative;

    min-height: 100%;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 22px;

    background:
            radial-gradient(
                    circle at 70% 20%,
                    rgba(96, 165, 250, 0.12),
                    transparent 38%
            ),
            linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.026),
                    rgba(255, 255, 255, 0.008)
            );
}

.speed-chart-grid {
    position: absolute;

    inset: 0;

    opacity: 0.24;

    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.06) 1px,
                    transparent 1px
            ),
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.06) 1px,
                    transparent 1px
            );

    background-size: 42px 42px;

    mask-image:
            linear-gradient(
                    to bottom,
                    transparent,
                    black 28%,
                    black 78%,
                    transparent
            );
}

.speed-visual svg {
    position: absolute;

    right: 0;
    bottom: 52px;
    left: 0;

    width: 100%;
    height: 58%;
}

.speed-chart-line {
    fill: none;

    stroke: url("#speedLineGradient");
    stroke-width: 4;

    stroke-linecap: round;

    filter:
            drop-shadow(
                    0 0 9px rgba(139, 92, 246, 0.48)
            );

    stroke-dasharray: 780;
    stroke-dashoffset: 780;

    animation:
            chart-draw 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.speed-chart-area {
    fill: url("#speedAreaGradient");

    opacity: 0;

    animation:
            chart-area-reveal 1.2s ease 800ms forwards;
}

.speed-chart-point {
    position: absolute;

    top: 21%;
    right: 7%;

    width: 11px;
    height: 11px;

    border: 3px solid #181820;
    border-radius: 50%;

    background: #60a5fa;

    box-shadow:
            0 0 0 7px rgba(96, 165, 250, 0.1),
            0 0 24px rgba(96, 165, 250, 0.76);

    animation:
            chart-point-pulse 2.5s ease-in-out infinite;
}

.speed-chart-label {
    position: absolute;

    top: 25px;
    right: 24px;

    display: flex;
    flex-direction: column;

    padding: 11px 14px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;

    background: rgba(10, 10, 15, 0.68);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.speed-chart-label span {
    color: var(--dv-text-muted);

    font-size: 9px;
}

.speed-chart-label strong {
    margin-top: 4px;

    color: var(--dv-success);

    font-size: 12px;
}


/**************************************************
 * PRIVACY CARD
 **************************************************/

.benefit-privacy {
    background:
            radial-gradient(
                    circle at 75% 15%,
                    rgba(37, 99, 235, 0.1),
                    transparent 42%
            ),
            linear-gradient(
                    145deg,
                    rgba(27, 27, 36, 0.9),
                    rgba(13, 13, 19, 0.92)
            );
}

.protocol-stack {
    position: absolute;

    right: 30px;
    bottom: 30px;
    left: 30px;

    min-height: 156px;
}

.protocol-layer {
    position: absolute;

    right: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 15px;

    background:
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.045),
                    rgba(255, 255, 255, 0.018)
            );

    box-shadow:
            0 18px 35px rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
            transform 350ms ease,
            border-color 350ms ease;
}

.protocol-layer span {
    color: var(--dv-text-muted);

    font-size: 10px;
}

.protocol-layer strong {
    color: var(--dv-text-primary);

    font-size: 12px;
}

.protocol-layer-one {
    z-index: 1;

    top: 0;

    transform: scale(0.9);
}

.protocol-layer-two {
    z-index: 2;

    top: 45px;

    transform: scale(0.95);
}

.protocol-layer-three {
    z-index: 3;

    top: 90px;

    border-color: rgba(62, 233, 138, 0.13);
}

.protocol-layer-three strong {
    color: var(--dv-success);
}

.benefit-privacy:hover .protocol-layer-one {
    transform:
            translateY(-5px)
            scale(0.9);
}

.benefit-privacy:hover .protocol-layer-two {
    transform:
            translateY(-2px)
            scale(0.95);
}

.benefit-privacy:hover .protocol-layer-three {
    transform: translateY(3px);
}


/**************************************************
 * DEVICES CARD
 **************************************************/

.benefit-devices {
    background:
            radial-gradient(
                    circle at 72% 58%,
                    rgba(37, 99, 235, 0.14),
                    transparent 35%
            ),
            linear-gradient(
                    145deg,
                    rgba(27, 27, 36, 0.9),
                    rgba(13, 13, 19, 0.92)
            );
}

.benefit-devices h3,
.benefit-devices p {
    max-width: 470px;
}

.platform-orbit {
    position: absolute;

    right: 48px;
    bottom: 38px;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 50%;

    animation:
            platform-orbit-breathe 5s ease-in-out infinite;
}

.platform-orbit::before {
    content: "";

    position: absolute;

    inset: 34px;

    border: 1px dashed rgba(167, 139, 250, 0.14);
    border-radius: 50%;
}

.platform-core {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dv-primary-border);
    border-radius: 23px;

    color: #ddd6fe;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.28),
                    rgba(91, 33, 182, 0.08)
            );

    box-shadow:
            0 20px 48px rgba(91, 33, 182, 0.26);

    transform: translate(-50%, -50%);
}

.platform-core svg {
    width: 34px;
    height: 34px;
}

.platform-node {
    position: absolute;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;

    color: var(--dv-text-secondary);

    background: rgba(20, 20, 27, 0.88);

    box-shadow:
            0 14px 32px rgba(0, 0, 0, 0.28);

    font-size: 9px;
    font-weight: 850;

    transition:
            color 300ms ease,
            border-color 300ms ease,
            transform 300ms ease;
}

.platform-windows {
    top: -8px;
    left: 88px;
}

.platform-android {
    top: 87px;
    right: -8px;
}

.platform-ios {
    bottom: -8px;
    left: 88px;
}

.platform-macos {
    top: 87px;
    left: -8px;
}

.benefit-devices:hover .platform-node {
    color: #c4b5fd;

    border-color: rgba(139, 92, 246, 0.24);
}

.benefit-devices:hover .platform-windows {
    transform: translateY(-4px);
}

.benefit-devices:hover .platform-android {
    transform: translateX(4px);
}

.benefit-devices:hover .platform-ios {
    transform: translateY(4px);
}

.benefit-devices:hover .platform-macos {
    transform: translateX(-4px);
}


/**************************************************
 * STABILITY CARD
 **************************************************/

.benefit-stability {
    background:
            radial-gradient(
                    circle at 73% 50%,
                    rgba(62, 233, 138, 0.08),
                    transparent 42%
            ),
            linear-gradient(
                    145deg,
                    rgba(27, 27, 35, 0.9),
                    rgba(13, 13, 18, 0.92)
            );
}

.benefit-stability-copy {
    position: relative;
    z-index: 2;
}

.route-status {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 30px;
}

.route-status-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 7px rgba(62, 233, 138, 0.07),
            0 0 18px rgba(62, 233, 138, 0.42);

    animation:
            route-pulse 2.6s ease-in-out infinite;
}

.route-status div {
    display: flex;
    flex-direction: column;
}

.route-status div span {
    color: var(--dv-text-muted);

    font-size: 9px;
}

.route-status div strong {
    margin-top: 4px;

    color: var(--dv-text-primary);

    font-size: 11px;
}

.network-visual {
    position: relative;

    min-height: 100%;
}

.network-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(62, 233, 138, 0.1);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.network-ring-large {
    width: 270px;
    height: 270px;
}

.network-ring-small {
    width: 155px;
    height: 155px;

    border-style: dashed;

    animation:
            network-ring-spin 24s linear infinite;
}

.network-center {
    position: absolute;
    z-index: 3;

    top: 50%;
    left: 50%;

    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(62, 233, 138, 0.22);
    border-radius: 24px;

    color: var(--dv-success);

    background:
            linear-gradient(
                    145deg,
                    rgba(62, 233, 138, 0.12),
                    rgba(62, 233, 138, 0.025)
            );

    box-shadow:
            0 20px 55px rgba(0, 0, 0, 0.3),
            0 0 44px rgba(62, 233, 138, 0.08);

    font-size: 15px;
    font-weight: 900;

    transform: translate(-50%, -50%);
}

.network-node {
    position: absolute;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 9px 11px;

    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 11px;

    color: var(--dv-text-secondary);

    background: rgba(17, 17, 23, 0.9);

    box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.25);

    font-size: 9px;
    font-weight: 700;
}

.network-node span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 12px rgba(62, 233, 138, 0.55);
}

.network-node-one {
    top: 13%;
    left: 3%;
}

.network-node-two {
    top: 47%;
    right: 0;
}

.network-node-three {
    bottom: 11%;
    left: 5%;
}

.network-line {
    position: absolute;
    z-index: 1;

    top: 50%;
    left: 50%;

    width: 115px;
    height: 1px;

    opacity: 0.46;

    background:
            linear-gradient(
                    90deg,
                    rgba(62, 233, 138, 0),
                    rgba(62, 233, 138, 0.8),
                    rgba(62, 233, 138, 0)
            );

    transform-origin: left center;
}

.network-line-one {
    transform: rotate(-137deg);
}

.network-line-two {
    width: 128px;

    transform: rotate(-3deg);
}

.network-line-three {
    transform: rotate(137deg);
}


/**************************************************
 * ANIMATIONS
 **************************************************/

@keyframes chart-draw {

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes chart-area-reveal {

    to {
        opacity: 1;
    }
}

@keyframes chart-point-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

@keyframes platform-orbit-breathe {

    0%,
    100% {
        transform: scale(0.98);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes network-ring-spin {

    to {
        transform:
                translate(-50%, -50%)
                rotate(360deg);
    }
}

@keyframes route-pulse {

    0%,
    100% {
        box-shadow:
                0 0 0 7px rgba(62, 233, 138, 0.07),
                0 0 18px rgba(62, 233, 138, 0.42);
    }

    50% {
        box-shadow:
                0 0 0 11px rgba(62, 233, 138, 0.025),
                0 0 26px rgba(62, 233, 138, 0.58);
    }
}


/**************************************************
 * RESPONSIVE
 **************************************************/

@media (max-width: 1050px) {

    .benefits-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-areas:
            "speed speed"
            "privacy devices"
            "stability stability";
    }

    .benefit-speed {
        min-height: 470px;
    }

    .benefit-stability {
        min-height: 420px;
    }

    .platform-orbit {
        right: 28px;

        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

@media (max-width: 760px) {

    .benefits {
        padding: 90px 0 110px;
    }

    .benefits-container {
        width: min(100% - 24px, 1180px);
    }

    .benefits-heading {
        margin-bottom: 38px;
    }

    .benefits-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .benefits-heading p {
        font-size: 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;

        grid-template-areas:
            "speed"
            "privacy"
            "devices"
            "stability";
    }

    .benefit-card,
    .benefit-speed,
    .benefit-privacy,
    .benefit-devices,
    .benefit-stability {
        min-height: auto;

        padding: 26px;

        border-radius: 22px;
    }

    .benefit-speed {
        display: block;
    }

    .speed-visual {
        min-height: 290px;

        margin-top: 32px;
    }

    .benefit-privacy {
        padding-bottom: 230px;
    }

    .benefit-devices {
        padding-bottom: 300px;
    }

    .platform-orbit {
        right: 50%;
        bottom: 35px;

        transform:
                translateX(50%)
                scale(0.9);

        transform-origin: center;
    }

    .benefit-stability {
        display: block;

        padding-bottom: 365px;
    }

    .network-visual {
        position: absolute;

        right: 22px;
        bottom: 22px;
        left: 22px;

        min-height: 320px;
    }
}

@media (max-width: 430px) {

    .benefits-heading h2 {
        font-size: 38px;
    }

    .benefit-card h3 {
        font-size: 26px;
    }

    .benefit-value strong {
        font-size: 40px;
    }

    .speed-visual {
        min-height: 250px;
    }

    .benefit-privacy {
        padding-bottom: 220px;
    }

    .protocol-stack {
        right: 20px;
        bottom: 25px;
        left: 20px;
    }

    .benefit-stability {
        padding-bottom: 340px;
    }

    .network-ring-large {
        width: 240px;
        height: 240px;
    }
}

/**************************************************
 * CONNECTION
 **************************************************/

.connection {
    position: relative;

    padding: 130px 0 150px;
}

.connection::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 18%;
    right: -180px;

    width: 580px;
    height: 780px;

    border-radius: 50%;

    background:
            rgba(37, 99, 235, 0.08);

    filter: blur(140px);

    pointer-events: none;
}

.connection-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}

.connection-heading {
    max-width: 780px;

    margin-bottom: 70px;
}

.connection-badge {
    color: #ddd6fe;

    border-color: var(--dv-primary-border);

    background: var(--dv-primary-soft);
}

.connection-heading h2 {
    margin: 22px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(40px, 5vw, 64px);
    font-weight: 850;

    line-height: 1.02;
    letter-spacing: -2.8px;
}

.connection-heading h2 span {
    display: block;

    color: transparent;

    background:
            linear-gradient(
                    90deg,
                    #c4b5fd,
                    #8b5cf6 52%,
                    #60a5fa
            );

    background-clip: text;
    -webkit-background-clip: text;
}

.connection-heading p {
    max-width: 620px;

    margin: 22px 0 0;

    color: var(--dv-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}


/**************************************************
 * FLOW
 **************************************************/

.connection-flow {
    position: relative;
}

.connection-progress {
    position: absolute;
    z-index: 1;

    top: 98px;
    bottom: 98px;
    left: 34px;

    width: 2px;

    overflow: hidden;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.06);
}

.connection-progress-line {
    position: absolute;

    inset: 0;

    background:
            linear-gradient(
                    to bottom,
                    #8b5cf6,
                    #60a5fa 48%,
                    #3ee98a
            );

    opacity: 0.42;
}

.connection-progress-glow {
    position: absolute;

    top: -90px;
    left: 0;

    width: 100%;
    height: 110px;

    background:
            linear-gradient(
                    to bottom,
                    transparent,
                    rgba(255, 255, 255, 0.95),
                    transparent
            );

    box-shadow:
            0 0 20px rgba(139, 92, 246, 0.75);

    animation:
            connection-flow-glow 5.5s ease-in-out infinite;
}

.connection-step {
    position: relative;

    min-height: 530px;

    display: grid;
    grid-template-columns:
        70px
        minmax(260px, 0.72fr)
        minmax(470px, 1.28fr);

    align-items: center;

    gap: 38px;

    padding: 38px 42px 38px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.connection-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.connection-step-number {
    position: relative;
    z-index: 3;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dv-primary-border);
    border-radius: 22px;

    color: #ddd6fe;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.22),
                    rgba(91, 33, 182, 0.07)
            );

    box-shadow:
            0 18px 44px rgba(91, 33, 182, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 1px;
}

.connection-step-copy {
    position: relative;
    z-index: 2;
}

.connection-step-label {
    color: #a78bfa;

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.connection-step-copy h3 {
    max-width: 400px;

    margin: 14px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(29px, 3vw, 40px);
    font-weight: 820;

    line-height: 1.08;
    letter-spacing: -1.5px;
}

.connection-step-copy p {
    max-width: 410px;

    margin: 18px 0 0;

    color: var(--dv-text-secondary);

    font-size: 14px;
    line-height: 1.75;
}


/**************************************************
 * VISUAL BASE
 **************************************************/

.connection-visual {
    position: relative;

    min-height: 410px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;

    background:
            radial-gradient(
                    circle at 70% 20%,
                    rgba(139, 92, 246, 0.14),
                    transparent 40%
            ),
            linear-gradient(
                    145deg,
                    rgba(25, 25, 34, 0.86),
                    rgba(12, 12, 18, 0.92)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 30px 70px rgba(0, 0, 0, 0.22);
}

.connection-visual::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.18;

    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.045) 1px,
                    transparent 1px
            ),
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.045) 1px,
                    transparent 1px
            );

    background-size: 44px 44px;

    mask-image:
            radial-gradient(
                    circle at center,
                    black,
                    transparent 72%
            );
}

.connection-floating-badge {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 14px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 14px;

    background: rgba(15, 15, 22, 0.9);

    box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.34);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.connection-floating-badge > span {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    color: #052e16;
    background: var(--dv-success);

    font-size: 14px;
    font-weight: 900;
}

.connection-floating-badge div {
    display: flex;
    flex-direction: column;
}

.connection-floating-badge small {
    color: var(--dv-text-muted);

    font-size: 8px;
}

.connection-floating-badge strong {
    margin-top: 3px;

    color: var(--dv-text-primary);

    font-size: 10px;
}


/**************************************************
 * TELEGRAM VISUAL
 **************************************************/

.telegram-window {
    position: relative;
    z-index: 2;

    width: min(370px, calc(100% - 70px));

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 22px;

    background:
            linear-gradient(
                    180deg,
                    rgba(31, 31, 42, 0.94),
                    rgba(17, 17, 24, 0.96)
            );

    box-shadow:
            0 28px 65px rgba(0, 0, 0, 0.36);

    transform: rotate(-2deg);

    transition:
            transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.connection-step:hover .telegram-window {
    transform:
            rotate(0deg)
            translateY(-5px);
}

.telegram-window-header {
    display: flex;
    align-items: center;
}

.telegram-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dv-primary-border);
    border-radius: 14px;

    color: #ddd6fe;

    background: rgba(139, 92, 246, 0.16);
}

.telegram-avatar svg {
    width: 22px;
    height: 22px;
}

.telegram-window-header > div:nth-child(2) {
    display: flex;
    flex-direction: column;

    margin-left: 12px;
}

.telegram-window-header strong {
    color: var(--dv-text-primary);

    font-size: 12px;
}

.telegram-window-header span {
    margin-top: 4px;

    color: var(--dv-text-muted);

    font-size: 9px;
}

.telegram-online {
    width: 8px;
    height: 8px;

    margin: 0 3px 0 auto;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 6px rgba(62, 233, 138, 0.06),
            0 0 16px rgba(62, 233, 138, 0.45);
}

.telegram-message {
    display: flex;
    flex-direction: column;

    margin-top: 24px;
    padding: 17px;

    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px 16px 16px 5px;

    background: rgba(139, 92, 246, 0.09);
}

.telegram-message span {
    color: var(--dv-text-muted);

    font-size: 9px;
}

.telegram-message strong {
    margin-top: 6px;

    color: var(--dv-text-primary);

    font-size: 13px;
}

.telegram-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 14px;
}

.telegram-plan div {
    display: flex;
    flex-direction: column;

    padding: 13px;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.025);
}

.telegram-plan span {
    color: var(--dv-text-muted);

    font-size: 8px;
}

.telegram-plan strong {
    margin-top: 5px;

    color: var(--dv-text-primary);

    font-size: 11px;
}

.telegram-button,
.app-install-button,
.import-button {
    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 15px;

    border-radius: 13px;

    color: #ffffff;

    background:
            linear-gradient(
                    135deg,
                    #8b5cf6,
                    #6d4aff
            );

    box-shadow:
            0 14px 34px rgba(91, 33, 182, 0.28);

    font-size: 10px;
    font-weight: 800;
}

.telegram-check {
    right: 26px;
    bottom: 30px;

    animation:
            step-badge-float 6s ease-in-out infinite;
}


/**************************************************
 * APP VISUAL
 **************************************************/

.app-visual {
    background:
            radial-gradient(
                    circle at 65% 30%,
                    rgba(37, 99, 235, 0.14),
                    transparent 42%
            ),
            linear-gradient(
                    145deg,
                    rgba(25, 25, 34, 0.86),
                    rgba(12, 12, 18, 0.92)
            );
}

.app-device {
    position: relative;
    z-index: 2;

    width: 270px;

    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 32px;

    background:
            linear-gradient(
                    145deg,
                    #252530,
                    #111118
            );

    box-shadow:
            0 32px 70px rgba(0, 0, 0, 0.42);

    transform: rotate(2deg);

    transition:
            transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.connection-step:hover .app-device {
    transform:
            rotate(0deg)
            translateY(-5px);
}

.app-device-top {
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.app-device-top span {
    width: 54px;
    height: 5px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.09);
}

.app-device-screen {
    padding: 20px;

    border-radius: 24px;

    background:
            linear-gradient(
                    180deg,
                    rgba(20, 20, 28, 0.96),
                    rgba(12, 12, 18, 0.98)
            );
}

.app-device-title {
    margin-bottom: 17px;

    color: var(--dv-text-primary);

    font-size: 12px;
    font-weight: 750;
}

.app-download-item {
    display: flex;
    align-items: center;

    padding: 11px;

    border: 1px solid transparent;
    border-radius: 13px;
}

.app-download-item + .app-download-item {
    margin-top: 8px;
}

.app-download-active {
    border-color: rgba(139, 92, 246, 0.17);

    background: rgba(139, 92, 246, 0.08);
}

.app-download-icon,
.app-platform-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    color: #ddd6fe;
    background: rgba(139, 92, 246, 0.14);

    font-size: 8px;
    font-weight: 850;
}

.app-download-copy {
    min-width: 0;

    display: flex;
    flex-direction: column;

    margin-left: 10px;
}

.app-download-copy strong {
    color: var(--dv-text-primary);

    font-size: 10px;
}

.app-download-copy span {
    margin-top: 4px;

    color: var(--dv-text-muted);

    font-size: 8px;
}

.app-download-status {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;

    border-radius: 50%;

    color: #052e16;
    background: var(--dv-success);

    font-size: 10px;
    font-weight: 900;
}

.app-ready {
    top: 42px;
    right: 28px;

    animation:
            step-badge-float-reverse 7s ease-in-out infinite;
}

.app-ready > .app-ready-icon {
    color: #eff6ff;
    background: #3b82f6;
}


/**************************************************
 * IMPORT VISUAL
 **************************************************/

.import-visual {
    background:
            radial-gradient(
                    circle at 72% 25%,
                    rgba(62, 233, 138, 0.09),
                    transparent 42%
            ),
            linear-gradient(
                    145deg,
                    rgba(25, 25, 34, 0.86),
                    rgba(12, 12, 18, 0.92)
            );
}

.import-card {
    position: relative;
    z-index: 2;

    width: min(390px, calc(100% - 70px));

    padding: 22px;

    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 23px;

    background:
            linear-gradient(
                    180deg,
                    rgba(31, 31, 40, 0.95),
                    rgba(16, 16, 23, 0.97)
            );

    box-shadow:
            0 30px 70px rgba(0, 0, 0, 0.4);

    transform: rotate(-1.5deg);

    transition:
            transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.connection-step:hover .import-card {
    transform:
            rotate(0deg)
            translateY(-5px);
}

.import-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.import-card-header > div:first-child {
    display: flex;
    flex-direction: column;
}

.import-card-header span {
    color: var(--dv-text-muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.import-card-header strong {
    margin-top: 6px;

    color: var(--dv-text-primary);

    font-size: 13px;
}

.import-logo {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(62, 233, 138, 0.18);
    border-radius: 14px;

    color: var(--dv-success);

    background: rgba(62, 233, 138, 0.07);
}

.import-logo svg {
    width: 23px;
    height: 23px;
}

.import-link,
.import-server {
    display: flex;
    align-items: center;

    margin-top: 18px;
    padding: 14px;

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.022);
}

.import-link-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.13);

    font-size: 14px;
}

.import-link div:last-child,
.import-server div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    margin-left: 11px;
}

.import-link span,
.import-server span {
    color: var(--dv-text-muted);

    font-size: 8px;

    letter-spacing: normal;
    text-transform: none;
}

.import-link strong,
.import-server strong {
    overflow: hidden;

    margin-top: 5px;

    color: var(--dv-text-primary);

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.import-server-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 6px rgba(62, 233, 138, 0.06),
            0 0 15px rgba(62, 233, 138, 0.4);
}

.import-server small {
    margin-left: auto;

    color: var(--dv-success);

    font-size: 8px;
    font-weight: 800;
}

.import-success {
    right: 22px;
    bottom: 25px;

    animation:
            step-badge-float 6.5s ease-in-out infinite;
}


/**************************************************
 * RESULT
 **************************************************/

.connection-result {
    min-height: 118px;

    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 38px;
    padding: 24px 28px;

    border: 1px solid rgba(62, 233, 138, 0.13);
    border-radius: 24px;

    background:
            radial-gradient(
                    circle at 15% 50%,
                    rgba(62, 233, 138, 0.08),
                    transparent 30%
            ),
            linear-gradient(
                    90deg,
                    rgba(25, 25, 33, 0.88),
                    rgba(15, 15, 21, 0.92)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.04),
            0 24px 65px rgba(0, 0, 0, 0.22);
}

.connection-result-icon {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(62, 233, 138, 0.2);
    border-radius: 18px;

    color: var(--dv-success);

    background: rgba(62, 233, 138, 0.07);

    box-shadow:
            0 16px 38px rgba(62, 233, 138, 0.08);
}

.connection-result-icon svg {
    width: 29px;
    height: 29px;
}

.connection-result-copy {
    display: flex;
    flex-direction: column;
}

.connection-result-copy span {
    color: var(--dv-success);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.connection-result-copy strong {
    margin-top: 6px;

    color: var(--dv-text-primary);

    font-size: 17px;
}

.connection-result-button {
    min-height: 48px;

    margin-left: auto;
    padding: 0 19px;
}

.connection-result-button svg {
    width: 17px;
    height: 17px;

    margin-left: 7px;
}


/**************************************************
 * ANIMATIONS
 **************************************************/

@keyframes connection-flow-glow {

    0% {
        top: -110px;
    }

    55%,
    100% {
        top: calc(100% + 20px);
    }
}

@keyframes step-badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes step-badge-float-reverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/**************************************************
 * RESPONSIVE
 **************************************************/

@media (max-width: 980px) {

    .connection-step {
        grid-template-columns:
            70px
            minmax(0, 1fr);

        gap: 28px;

        padding: 46px 0;
    }

    .connection-visual {
        grid-column: 2;

        min-height: 430px;
        margin-top: 12px;
    }
}

@media (max-width: 700px) {

    .connection {
        padding: 95px 0 110px;
    }

    .connection-container {
        width: min(100% - 24px, 1180px);
    }

    .connection-heading {
        margin-bottom: 42px;
    }

    .connection-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .connection-heading p {
        font-size: 15px;
    }

    .connection-progress {
        display: none;
    }

    .connection-step {
        display: block;

        min-height: auto;

        padding: 40px 0;
    }

    .connection-step-number {
        width: 58px;
        height: 58px;

        margin-bottom: 24px;

        border-radius: 18px;
    }

    .connection-step-copy h3 {
        font-size: 30px;
    }

    .connection-visual {
        min-height: 390px;

        margin-top: 30px;

        border-radius: 22px;
    }

    .telegram-window,
    .import-card {
        width: min(350px, calc(100% - 36px));
    }

    .connection-result {
        align-items: flex-start;
        flex-wrap: wrap;

        padding: 22px;
    }

    .connection-result-button {
        width: 100%;

        margin: 8px 0 0;
    }
}

@media (max-width: 430px) {

    .connection-heading h2 {
        font-size: 38px;
    }

    .connection-step-copy h3 {
        font-size: 27px;
    }

    .connection-visual {
        min-height: 355px;
    }

    .telegram-window,
    .import-card {
        padding: 17px;
    }

    .app-device {
        width: 245px;
    }

    .connection-floating-badge {
        transform: scale(0.9);
    }

    .telegram-check,
    .import-success {
        right: 10px;
        bottom: 15px;
    }

    .app-ready {
        top: 18px;
        right: 10px;
    }
}

/**************************************************
 * NETWORK SECTION
 **************************************************/

.network-section {
    position: relative;

    padding: 130px 0 150px;
}

.network-section::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 16%;
    left: -220px;

    width: 680px;
    height: 760px;

    border-radius: 50%;

    background: rgba(91, 33, 182, 0.11);

    filter: blur(150px);

    pointer-events: none;
}

.network-section-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}

.network-section-heading {
    max-width: 830px;

    margin-bottom: 66px;
}

.network-section-badge {
    color: #ddd6fe;

    border-color: var(--dv-primary-border);

    background: var(--dv-primary-soft);
}

.network-section-heading h2 {
    margin: 22px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(40px, 5vw, 64px);
    font-weight: 850;

    line-height: 1.02;
    letter-spacing: -2.8px;
}

.network-section-heading h2 span {
    display: block;

    color: transparent;

    background:
            linear-gradient(
                    90deg,
                    #c4b5fd,
                    #8b5cf6 50%,
                    #60a5fa
            );

    background-clip: text;
    -webkit-background-clip: text;
}

.network-section-heading p {
    max-width: 660px;

    margin: 22px 0 0;

    color: var(--dv-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}


/**************************************************
 * DASHBOARD
 **************************************************/

.network-dashboard {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(320px, 0.75fr);

    gap: 18px;
}

.network-map-panel,
.network-server-panel {
    overflow: hidden;

    border: 1px solid var(--dv-border);
    border-radius: 28px;

    background:
            linear-gradient(
                    145deg,
                    rgba(27, 27, 36, 0.91),
                    rgba(12, 12, 18, 0.94)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.045),
            0 28px 80px rgba(0, 0, 0, 0.27);
}


/**************************************************
 * MAP PANEL
 **************************************************/

.network-panel-header {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 28px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.network-panel-header > div:first-child {
    display: flex;
    flex-direction: column;
}

.network-panel-eyebrow {
    color: var(--dv-text-muted);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.network-panel-header strong {
    margin-top: 7px;

    color: var(--dv-text-primary);

    font-size: 15px;
}

.network-global-status {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--dv-text-secondary);

    font-size: 10px;
    font-weight: 700;
}

.network-global-status > span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 6px rgba(62, 233, 138, 0.06),
            0 0 18px rgba(62, 233, 138, 0.46);

    animation:
            network-status-pulse 2.8s ease-in-out infinite;
}

.network-map {
    position: relative;

    min-height: 590px;

    overflow: hidden;
}

.network-map-grid {
    position: absolute;

    inset: 0;

    opacity: 0.28;

    background-image:
            linear-gradient(
                    rgba(255, 255, 255, 0.045) 1px,
                    transparent 1px
            ),
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.045) 1px,
                    transparent 1px
            );

    background-size: 48px 48px;

    mask-image:
            radial-gradient(
                    circle at center,
                    black,
                    transparent 80%
            );
}

.network-map-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 440px;
    height: 440px;

    border-radius: 50%;

    background: rgba(91, 33, 182, 0.16);

    filter: blur(100px);

    transform: translate(-50%, -50%);
}

.network-europe-shape {
    position: absolute;

    top: 7%;
    left: 7%;

    width: 86%;
    height: 86%;

    opacity: 0.26;

    stroke: rgba(167, 139, 250, 0.32);
    stroke-width: 1.4;

    filter:
            drop-shadow(
                    0 0 20px rgba(91, 33, 182, 0.15)
            );
}

.network-routes {
    position: absolute;
    z-index: 2;

    inset: 0;

    width: 100%;
    height: 100%;
}

.network-route {
    fill: none;

    stroke: url("#networkRoutePurple");
    stroke-width: 2.4;

    stroke-linecap: round;

    stroke-dasharray: 8 12;

    filter: url("#networkRouteGlow");

    animation:
            network-route-flow 10s linear infinite;

    transition:
            stroke-width 350ms ease,
            opacity 350ms ease,
            filter 350ms ease;
}

.network-route-warsaw {
    stroke: url("#networkRouteGreen");

    stroke-width: 3.2;
}

.network-route.is-active {
    stroke: url("#networkRouteGreen");
    stroke-width: 4;

    opacity: 1;
}

.network-location {
    position: absolute;
    z-index: 5;

    width: 20px;
    height: 20px;

    padding: 0;

    border: 0;

    cursor: pointer;

    background: transparent;
}

.network-location-amsterdam {
    top: 53%;
    left: 25%;
}

.network-location-frankfurt {
    top: 42%;
    left: 67%;
}

.network-location-helsinki {
    top: 19%;
    left: 69%;
}

.network-location-warsaw {
    top: 54%;
    left: 61%;
}

.network-location-pulse {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;

    border: 2px solid rgba(15, 15, 21, 0.85);
    border-radius: 50%;

    background: #a78bfa;

    box-shadow:
            0 0 0 7px rgba(139, 92, 246, 0.08),
            0 0 22px rgba(139, 92, 246, 0.62);

    transform: translate(-50%, -50%);

    transition:
            background 300ms ease,
            box-shadow 300ms ease,
            transform 300ms ease;
}

.network-location-card {
    position: absolute;

    left: 50%;
    bottom: 27px;

    min-width: 108px;

    display: flex;
    flex-direction: column;

    padding: 10px 12px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;

    text-align: left;

    background: rgba(15, 15, 22, 0.9);

    box-shadow:
            0 15px 38px rgba(0, 0, 0, 0.32);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateX(-50%);

    transition:
            border-color 300ms ease,
            transform 300ms ease,
            box-shadow 300ms ease;
}

.network-location-card small {
    color: var(--dv-text-muted);

    font-size: 8px;
}

.network-location-card strong {
    margin-top: 4px;

    color: var(--dv-text-primary);

    font-size: 10px;
}

.network-location:hover .network-location-card,
.network-location.is-active .network-location-card {
    border-color: rgba(62, 233, 138, 0.22);

    box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.36),
            0 0 30px rgba(62, 233, 138, 0.07);

    transform:
            translateX(-50%)
            translateY(-5px);
}

.network-location:hover .network-location-pulse,
.network-location.is-active .network-location-pulse {
    background: var(--dv-success);

    box-shadow:
            0 0 0 9px rgba(62, 233, 138, 0.08),
            0 0 28px rgba(62, 233, 138, 0.72);

    transform:
            translate(-50%, -50%)
            scale(1.15);
}

.network-origin {
    position: absolute;
    z-index: 4;

    top: 46%;
    left: 49%;

    width: 110px;
    height: 110px;

    transform: translate(-50%, -50%);
}

.network-origin-core {
    position: absolute;
    z-index: 3;

    top: 50%;
    left: 50%;

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(139, 92, 246, 0.34);
    border-radius: 22px;

    color: #ddd6fe;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.3),
                    rgba(91, 33, 182, 0.1)
            );

    box-shadow:
            0 20px 55px rgba(91, 33, 182, 0.25),
            0 0 45px rgba(139, 92, 246, 0.12);

    font-size: 14px;
    font-weight: 900;

    transform: translate(-50%, -50%);
}

.network-origin-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.network-origin-ring-one {
    width: 92px;
    height: 92px;

    animation:
            network-origin-ring 3.5s ease-out infinite;
}

.network-origin-ring-two {
    width: 110px;
    height: 110px;

    animation:
            network-origin-ring 3.5s ease-out 1.6s infinite;
}

.network-map-legend {
    position: absolute;
    z-index: 5;

    right: 22px;
    bottom: 20px;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 11px 13px;

    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 12px;

    background: rgba(13, 13, 19, 0.72);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.network-map-legend div {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--dv-text-muted);

    font-size: 8px;
}

.network-legend-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #a78bfa;
}

.network-legend-active {
    background: var(--dv-success);

    box-shadow:
            0 0 11px rgba(62, 233, 138, 0.55);
}


/**************************************************
 * SERVER PANEL
 **************************************************/

.network-server-panel {
    padding: 26px;
}

.server-panel-top {
    display: flex;
    align-items: center;
}

.server-country-symbol {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--dv-primary-border);
    border-radius: 15px;

    color: #ddd6fe;

    background: rgba(139, 92, 246, 0.14);

    font-size: 12px;
    font-weight: 900;

    transition:
            color 300ms ease,
            background 300ms ease;
}

.server-panel-title {
    min-width: 0;

    display: flex;
    flex-direction: column;

    margin-left: 13px;
}

.server-panel-title span {
    color: var(--dv-text-muted);

    font-size: 9px;
}

.server-panel-title strong {
    margin-top: 5px;

    color: var(--dv-text-primary);

    font-size: 17px;
}

.server-status-badge {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-left: auto;
    padding: 8px 10px;

    border: 1px solid rgba(62, 233, 138, 0.13);
    border-radius: 999px;

    color: var(--dv-success);

    background: rgba(62, 233, 138, 0.05);

    font-size: 8px;
    font-weight: 800;
}

.server-status-badge span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 11px rgba(62, 233, 138, 0.55);
}

.server-highlight {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 27px;
    padding: 17px;

    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 16px;

    background:
            linear-gradient(
                    90deg,
                    rgba(139, 92, 246, 0.09),
                    rgba(139, 92, 246, 0.025)
            );
}

.server-highlight-shield {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    color: #ddd6fe;

    background: rgba(139, 92, 246, 0.15);
}

.server-highlight-shield svg {
    width: 22px;
    height: 22px;
}

.server-highlight > div:last-child {
    display: flex;
    flex-direction: column;
}

.server-highlight span {
    color: var(--dv-text-muted);

    font-size: 8px;
}

.server-highlight strong {
    margin-top: 5px;

    color: var(--dv-text-primary);

    font-size: 11px;
}

.server-details {
    margin-top: 23px;
}

.server-detail-row {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.server-detail-row span {
    color: var(--dv-text-muted);

    font-size: 9px;
}

.server-detail-row strong {
    color: var(--dv-text-primary);

    font-size: 10px;
}

.server-detail-positive {
    color: var(--dv-success) !important;
}

.server-load-block {
    margin-top: 23px;
}

.server-load-header {
    display: flex;
    justify-content: space-between;
}

.server-load-header span {
    color: var(--dv-text-muted);

    font-size: 9px;
}

.server-load-header strong {
    color: var(--dv-success);

    font-size: 9px;
}

.server-load-track {
    height: 5px;

    margin-top: 11px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.055);
}

.server-load-value {
    width: 32%;
    height: 100%;

    display: block;

    border-radius: inherit;

    background:
            linear-gradient(
                    90deg,
                    #8b5cf6,
                    #60a5fa,
                    #3ee98a
            );

    box-shadow:
            0 0 16px rgba(62, 233, 138, 0.24);

    transition:
            width 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.server-route-info {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-top: 24px;
    padding: 14px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.022);
}

.server-route-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--dv-success);

    box-shadow:
            0 0 0 6px rgba(62, 233, 138, 0.055),
            0 0 16px rgba(62, 233, 138, 0.42);
}

.server-route-info div {
    display: flex;
    flex-direction: column;
}

.server-route-info span {
    color: var(--dv-text-muted);

    font-size: 8px;
}

.server-route-info strong {
    margin-top: 4px;

    color: var(--dv-text-primary);

    font-size: 9px;
}

.server-action {
    width: 100%;
    min-height: 49px;

    margin-top: 24px;
}

.server-action svg {
    width: 16px;
    height: 16px;

    margin-left: 7px;
}


/**************************************************
 * NETWORK STATS
 **************************************************/

.network-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 18px;

    overflow: hidden;

    border: 1px solid var(--dv-border);
    border-radius: 22px;

    background:
            linear-gradient(
                    90deg,
                    rgba(25, 25, 33, 0.83),
                    rgba(14, 14, 20, 0.9)
            );
}

.network-stat {
    min-height: 126px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 23px;

    border-right: 1px solid rgba(255, 255, 255, 0.055);
}

.network-stat:last-child {
    border-right: 0;
}

.network-stat span {
    color: var(--dv-text-muted);

    font-size: 9px;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.network-stat strong {
    margin-top: 8px;

    color: var(--dv-text-primary);

    font-size: 23px;
    font-weight: 820;
}

.network-stat small {
    margin-top: 6px;

    color: var(--dv-text-secondary);

    font-size: 9px;
}


/**************************************************
 * NETWORK ANIMATIONS
 **************************************************/

@keyframes network-route-flow {

    to {
        stroke-dashoffset: -80;
    }
}

@keyframes network-origin-ring {

    0% {
        opacity: 0.7;

        transform:
                translate(-50%, -50%)
                scale(0.7);
    }

    100% {
        opacity: 0;

        transform:
                translate(-50%, -50%)
                scale(1.3);
    }
}

@keyframes network-status-pulse {

    0%,
    100% {
        box-shadow:
                0 0 0 6px rgba(62, 233, 138, 0.06),
                0 0 18px rgba(62, 233, 138, 0.46);
    }

    50% {
        box-shadow:
                0 0 0 10px rgba(62, 233, 138, 0.025),
                0 0 27px rgba(62, 233, 138, 0.65);
    }
}


/**************************************************
 * NETWORK RESPONSIVE
 **************************************************/

@media (max-width: 1000px) {

    .network-dashboard {
        grid-template-columns: 1fr;
    }

    .network-map {
        min-height: 570px;
    }

    .network-server-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 0 28px;
    }

    .server-panel-top,
    .server-highlight,
    .server-details {
        grid-column: 1;
    }

    .server-load-block,
    .server-route-info,
    .server-action {
        grid-column: 2;
    }

    .server-load-block {
        margin-top: 0;
    }

    .server-action {
        align-self: end;
    }
}

@media (max-width: 720px) {

    .network-section {
        padding: 95px 0 110px;
    }

    .network-section-container {
        width: min(100% - 24px, 1180px);
    }

    .network-section-heading {
        margin-bottom: 42px;
    }

    .network-section-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .network-section-heading p {
        font-size: 15px;
    }

    .network-panel-header {
        min-height: auto;

        align-items: flex-start;
        flex-direction: column;

        gap: 15px;

        padding: 21px;
    }

    .network-map {
        min-height: 500px;
    }

    .network-location-card {
        min-width: 90px;

        padding: 8px 9px;
    }

    .network-location-card strong {
        font-size: 9px;
    }

    .network-map-legend {
        right: 12px;
        bottom: 12px;

        gap: 10px;
    }

    .network-server-panel {
        display: block;

        padding: 22px;
    }

    .server-highlight,
    .server-details,
    .server-load-block,
    .server-route-info,
    .server-action {
        margin-top: 21px;
    }

    .network-stats {
        grid-template-columns: 1fr 1fr;
    }

    .network-stat:nth-child(2) {
        border-right: 0;
    }

    .network-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }
}

@media (max-width: 470px) {

    .network-section-heading h2 {
        font-size: 38px;
    }

    .network-map {
        min-height: 430px;
    }

    .network-europe-shape {
        top: 10%;
        left: 2%;

        width: 96%;
        height: 80%;
    }

    .network-location-card small {
        display: none;
    }

    .network-location-card {
        min-width: auto;

        padding: 7px 8px;
    }

    .network-origin {
        transform:
                translate(-50%, -50%)
                scale(0.82);
    }

    .network-map-legend {
        left: 12px;

        justify-content: center;
    }

    .network-stats {
        grid-template-columns: 1fr;
    }

    .network-stat {
        min-height: 105px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.055);
    }

    .network-stat:last-child {
        border-bottom: 0;
    }
}

/**************************************************
 * PRICING
 **************************************************/

.pricing {
    position: relative;

    padding: 130px 0 150px;
}

.pricing::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 18%;
    right: -200px;

    width: 720px;
    height: 760px;

    border-radius: 50%;

    background: rgba(91, 33, 182, 0.11);

    filter: blur(150px);

    pointer-events: none;
}

.pricing-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}

.pricing-heading {
    max-width: 840px;

    margin-bottom: 66px;
}

.pricing-badge {
    color: #ddd6fe;

    border-color: var(--dv-primary-border);

    background: var(--dv-primary-soft);
}

.pricing-heading h2 {
    margin: 22px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(40px, 5vw, 64px);
    font-weight: 850;

    line-height: 1.02;
    letter-spacing: -2.8px;
}

.pricing-heading h2 span {
    display: block;

    color: transparent;

    background:
            linear-gradient(
                    90deg,
                    #c4b5fd,
                    #8b5cf6 52%,
                    #60a5fa
            );

    background-clip: text;
    -webkit-background-clip: text;
}

.pricing-heading p {
    max-width: 650px;

    margin: 22px 0 0;

    color: var(--dv-text-secondary);

    font-size: 17px;
    line-height: 1.7;
}


/**************************************************
 * PRICING GRID
 **************************************************/

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: stretch;

    gap: 18px;
}

.pricing-card {
    position: relative;

    min-width: 0;
    min-height: 650px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    padding: 32px;

    border: 1px solid var(--dv-border);
    border-radius: 28px;

    background:
            linear-gradient(
                    145deg,
                    rgba(27, 27, 36, 0.91),
                    rgba(12, 12, 18, 0.95)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.045),
            0 28px 80px rgba(0, 0, 0, 0.24);

    transition:
            transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
            border-color 400ms ease,
            box-shadow 400ms ease;
}

.pricing-card::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0;

    background:
            radial-gradient(
                    circle at 22% 0%,
                    rgba(139, 92, 246, 0.14),
                    transparent 42%
            );

    transition: opacity 400ms ease;

    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(139, 92, 246, 0.32);

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.065),
            0 36px 90px rgba(0, 0, 0, 0.34),
            0 16px 55px rgba(91, 33, 182, 0.1);

    transform: translateY(-7px);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card-featured {
    border-color: rgba(139, 92, 246, 0.42);

    background:
            radial-gradient(
                    circle at 70% 5%,
                    rgba(139, 92, 246, 0.18),
                    transparent 38%
            ),
            linear-gradient(
                    145deg,
                    rgba(31, 27, 45, 0.96),
                    rgba(14, 13, 22, 0.97)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.07),
            0 34px 90px rgba(0, 0, 0, 0.3),
            0 18px 70px rgba(91, 33, 182, 0.16);

    transform: translateY(-14px);
}

.pricing-card-featured:hover {
    transform: translateY(-21px);
}

.pricing-featured-glow {
    position: absolute;

    top: -130px;
    right: -100px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(139, 92, 246, 0.2);

    filter: blur(80px);

    pointer-events: none;
}

.pricing-popular {
    position: absolute;
    z-index: 3;

    top: 20px;
    right: 20px;

    padding: 8px 11px;

    border: 1px solid rgba(139, 92, 246, 0.28);
    border-radius: 999px;

    color: #ddd6fe;

    background: rgba(139, 92, 246, 0.12);

    box-shadow:
            0 12px 30px rgba(91, 33, 182, 0.12);

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/**************************************************
 * CARD CONTENT
 **************************************************/

.pricing-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-period {
    display: flex;
    flex-direction: column;
}

.pricing-period span {
    color: #a78bfa;

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-period strong {
    margin-top: 8px;

    color: var(--dv-text-primary);

    font-size: 21px;
    font-weight: 800;
}

.pricing-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--dv-primary-border);
    border-radius: 15px;

    color: #c4b5fd;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.18),
                    rgba(91, 33, 182, 0.05)
            );

    box-shadow:
            0 15px 35px rgba(91, 33, 182, 0.14);
}

.pricing-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-icon-featured {
    border-color: rgba(139, 92, 246, 0.42);

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.32),
                    rgba(91, 33, 182, 0.1)
            );

    box-shadow:
            0 18px 42px rgba(91, 33, 182, 0.24);
}

.pricing-price {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;

    gap: 10px;

    margin-top: 39px;
}

.pricing-price > strong {
    color: var(--dv-text-primary);

    font-size: clamp(48px, 4vw, 62px);
    font-weight: 850;

    line-height: 0.9;
    letter-spacing: -3px;
}

.pricing-price > div {
    display: flex;
    flex-direction: column;

    padding-bottom: 3px;
}

.pricing-price span {
    color: var(--dv-text-primary);

    font-size: 18px;
    font-weight: 800;
}

.pricing-price small {
    margin-top: 4px;

    color: var(--dv-text-muted);

    font-size: 9px;
}

.pricing-saving {
    position: relative;
    z-index: 2;

    width: fit-content;

    margin-top: 17px;
    padding: 7px 10px;

    border: 1px solid rgba(62, 233, 138, 0.12);
    border-radius: 999px;

    color: var(--dv-success);
    background: rgba(62, 233, 138, 0.05);

    font-size: 8px;
    font-weight: 800;
}

.pricing-saving-featured {
    border-color: rgba(62, 233, 138, 0.18);

    box-shadow:
            0 0 24px rgba(62, 233, 138, 0.05);
}

.pricing-description {
    position: relative;
    z-index: 2;

    min-height: 72px;

    margin: 23px 0 0;

    color: var(--dv-text-secondary);

    font-size: 13px;
    line-height: 1.7;
}

.pricing-divider {
    position: relative;
    z-index: 2;

    height: 1px;

    margin: 25px 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.08),
                    rgba(255, 255, 255, 0.025),
                    transparent
            );
}


/**************************************************
 * FEATURES
 **************************************************/

.pricing-features {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 15px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;

    color: var(--dv-text-secondary);

    font-size: 11px;
    line-height: 1.4;
}

.pricing-features li span {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    margin-right: 10px;

    border: 1px solid rgba(62, 233, 138, 0.13);
    border-radius: 8px;

    color: var(--dv-success);
    background: rgba(62, 233, 138, 0.055);

    font-size: 10px;
    font-weight: 900;
}

.pricing-action {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 51px;

    margin-top: auto;
}

.pricing-action svg {
    width: 16px;
    height: 16px;

    margin-left: 8px;

    transition: transform 250ms ease;
}

.pricing-action:hover svg {
    transform: translateX(4px);
}


/**************************************************
 * NOTE
 **************************************************/

.pricing-note {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 32px;
    padding: 21px 24px;

    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 19px;

    background:
            linear-gradient(
                    90deg,
                    rgba(139, 92, 246, 0.07),
                    rgba(255, 255, 255, 0.015)
            );
}

.pricing-note-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--dv-primary-border);
    border-radius: 14px;

    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.12);
}

.pricing-note-icon svg {
    width: 22px;
    height: 22px;
}

.pricing-note > div:last-child {
    display: flex;
    flex-direction: column;
}

.pricing-note strong {
    color: var(--dv-text-primary);

    font-size: 12px;
}

.pricing-note span {
    margin-top: 5px;

    color: var(--dv-text-muted);

    font-size: 10px;
}


/**************************************************
 * RESPONSIVE
 **************************************************/

@media (max-width: 980px) {

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card-featured {
        grid-column: 1 / -1;

        width: min(560px, 100%);

        justify-self: center;

        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 700px) {

    .pricing {
        padding: 95px 0 110px;
    }

    .pricing-container {
        width: min(100% - 24px, 1180px);
    }

    .pricing-heading {
        margin-bottom: 43px;
    }

    .pricing-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .pricing-heading p {
        font-size: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .pricing-card-featured {
        grid-column: auto;

        width: 100%;
        min-height: 620px;

        padding: 27px;

        border-radius: 23px;

        transform: none;
    }

    .pricing-card:hover,
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }

    .pricing-price > strong {
        font-size: 54px;
    }
}

@media (max-width: 430px) {

    .pricing-heading h2 {
        font-size: 38px;
    }

    .pricing-card {
        min-height: 600px;

        padding: 23px;
    }

    .pricing-popular {
        position: static;

        width: fit-content;

        margin-bottom: 22px;
    }

    .pricing-price > strong {
        font-size: 48px;
    }

    .pricing-description {
        min-height: auto;
    }

    .pricing-note {
        align-items: flex-start;

        padding: 18px;
    }
}

/**************************************************
 * FAQ
 **************************************************/

.faq {
    position: relative;

    padding: 130px 0 150px;
}

.faq::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 12%;
    left: -220px;

    width: 650px;
    height: 760px;

    border-radius: 50%;

    background: rgba(91, 33, 182, 0.1);

    filter: blur(150px);

    pointer-events: none;
}

.faq-container {
    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;
}

.faq-layout {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.72fr)
        minmax(500px, 1.28fr);

    align-items: start;

    gap: 74px;
}


/**************************************************
 * INTRO
 **************************************************/

.faq-intro {
    position: sticky;

    top: 110px;
}

.faq-badge {
    color: #ddd6fe;

    border-color: var(--dv-primary-border);

    background: var(--dv-primary-soft);
}

.faq-intro h2 {
    margin: 22px 0 0;

    color: var(--dv-text-primary);

    font-size: clamp(40px, 5vw, 62px);
    font-weight: 850;

    line-height: 1.02;
    letter-spacing: -2.8px;
}

.faq-intro h2 span {
    display: block;

    color: transparent;

    background:
            linear-gradient(
                    90deg,
                    #c4b5fd,
                    #8b5cf6 52%,
                    #60a5fa
            );

    background-clip: text;
    -webkit-background-clip: text;
}

.faq-intro > p {
    max-width: 510px;

    margin: 22px 0 0;

    color: var(--dv-text-secondary);

    font-size: 16px;
    line-height: 1.7;
}


/**************************************************
 * SUPPORT CARD
 **************************************************/

.faq-support-card {
    position: relative;

    overflow: hidden;

    margin-top: 42px;
    padding: 25px;

    border: 1px solid var(--dv-border);
    border-radius: 24px;

    background:
            radial-gradient(
                    circle at 90% 0%,
                    rgba(139, 92, 246, 0.14),
                    transparent 42%
            ),
            linear-gradient(
                    145deg,
                    rgba(27, 27, 36, 0.9),
                    rgba(13, 13, 19, 0.94)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.045),
            0 25px 70px rgba(0, 0, 0, 0.23);

    transition:
            transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
            border-color 350ms ease,
            box-shadow 350ms ease;
}

.faq-support-card::after {
    content: "";

    position: absolute;

    top: -80px;
    right: -70px;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(139, 92, 246, 0.13);

    filter: blur(60px);

    pointer-events: none;
}

.faq-support-card:hover {
    border-color: rgba(139, 92, 246, 0.3);

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.065),
            0 32px 80px rgba(0, 0, 0, 0.31),
            0 14px 48px rgba(91, 33, 182, 0.09);

    transform: translateY(-5px);
}

.faq-support-icon {
    position: relative;
    z-index: 2;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dv-primary-border);
    border-radius: 16px;

    color: #c4b5fd;

    background:
            linear-gradient(
                    145deg,
                    rgba(139, 92, 246, 0.2),
                    rgba(91, 33, 182, 0.06)
            );

    box-shadow:
            0 16px 38px rgba(91, 33, 182, 0.16);
}

.faq-support-icon svg {
    width: 25px;
    height: 25px;
}

.faq-support-copy {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    margin-top: 25px;
}

.faq-support-copy > span {
    color: #a78bfa;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-support-copy strong {
    margin-top: 8px;

    color: var(--dv-text-primary);

    font-size: 22px;
    font-weight: 800;

    letter-spacing: -0.6px;
}

.faq-support-copy p {
    margin: 13px 0 0;

    color: var(--dv-text-secondary);

    font-size: 12px;
    line-height: 1.7;
}

.faq-support-action {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 48px;

    margin-top: 24px;
}

.faq-support-action svg {
    width: 16px;
    height: 16px;

    margin-left: 8px;

    transition: transform 250ms ease;
}

.faq-support-action:hover svg {
    transform: translateX(4px);
}


/**************************************************
 * FAQ LIST
 **************************************************/

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.faq-item {
    overflow: hidden;

    border: 1px solid var(--dv-border);
    border-radius: 20px;

    background:
            linear-gradient(
                    145deg,
                    rgba(26, 26, 34, 0.86),
                    rgba(13, 13, 19, 0.92)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.035),
            0 18px 50px rgba(0, 0, 0, 0.16);

    transition:
            border-color 350ms ease,
            background 350ms ease,
            box-shadow 350ms ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.22);
}

.faq-item.is-open {
    border-color: rgba(139, 92, 246, 0.3);

    background:
            radial-gradient(
                    circle at 85% 0%,
                    rgba(139, 92, 246, 0.1),
                    transparent 40%
            ),
            linear-gradient(
                    145deg,
                    rgba(29, 27, 39, 0.91),
                    rgba(14, 13, 21, 0.94)
            );

    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 24px 65px rgba(0, 0, 0, 0.22),
            0 10px 40px rgba(91, 33, 182, 0.06);
}

.faq-question {
    width: 100%;
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 0 24px;

    border: 0;

    color: var(--dv-text-primary);
    background: transparent;

    cursor: pointer;

    text-align: left;

    font: inherit;
}

.faq-question > span:first-child {
    font-size: 15px;
    font-weight: 750;

    line-height: 1.45;
}

.faq-toggle {
    position: relative;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(139, 92, 246, 0.17);
    border-radius: 11px;

    background: rgba(139, 92, 246, 0.07);

    transition:
            background 300ms ease,
            border-color 300ms ease,
            transform 300ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";

    position: absolute;

    width: 12px;
    height: 2px;

    border-radius: 999px;

    background: #c4b5fd;

    transition:
            transform 300ms ease,
            opacity 300ms ease;
}

.faq-toggle::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-toggle {
    border-color: rgba(139, 92, 246, 0.35);

    background: rgba(139, 92, 246, 0.14);

    transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle::after {
    opacity: 0;

    transform: rotate(0deg);
}

.faq-answer {
    height: 0;

    overflow: hidden;

    transition:
            height 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
    padding: 0 74px 24px 24px;
}

.faq-answer-inner p {
    max-width: 620px;

    margin: 0;

    color: var(--dv-text-secondary);

    font-size: 13px;
    line-height: 1.75;
}


/**************************************************
 * RESPONSIVE
 **************************************************/

@media (max-width: 950px) {

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-intro {
        position: static;

        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);

        align-items: end;

        gap: 36px;
    }

    .faq-intro > .faq-badge,
    .faq-intro > h2,
    .faq-intro > p {
        grid-column: 1;
    }

    .faq-support-card {
        grid-column: 2;
        grid-row: 1 / 4;

        margin-top: 0;
    }
}

@media (max-width: 700px) {

    .faq {
        padding: 95px 0 110px;
    }

    .faq-container {
        width: min(100% - 24px, 1180px);
    }

    .faq-layout {
        gap: 40px;
    }

    .faq-intro {
        display: block;
    }

    .faq-intro h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .faq-intro > p {
        font-size: 15px;
    }

    .faq-support-card {
        margin-top: 32px;
    }

    .faq-question {
        min-height: 80px;

        padding: 0 19px;
    }

    .faq-question > span:first-child {
        font-size: 14px;
    }

    .faq-answer-inner {
        padding: 0 58px 21px 19px;
    }
}

@media (max-width: 430px) {

    .faq-intro h2 {
        font-size: 38px;
    }

    .faq-support-card {
        padding: 21px;

        border-radius: 21px;
    }

    .faq-question {
        gap: 15px;
    }

    .faq-toggle {
        width: 31px;
        height: 31px;
    }

    .faq-answer-inner {
        padding-right: 19px;
    }
}