:root {
    
    --kx: #ff006e;
    --hr: #8338ec;
    --nv: #3a86ff;
    --wk: #06ffa5;
    --dj: #fb5607;
    --py: #ffbe0b;
    
    
    --um: #0a0a0f;
    --zf: #12121a;
    --ae: #1a1a24;
    --ol: rgba(26, 26, 36, 0.6);
    
    
    --ig: #ffffff;
    --cx: rgba(255, 255, 255, 0.7);
    --bw: rgba(255, 255, 255, 0.5);
    --yt: var(--wk);
    
    
    --lp: rgba(255, 255, 255, 0.03);
    --sr: rgba(255, 255, 255, 0.08);
    --eh: 0 8px 32px rgba(0, 0, 0, 0.4);
    --kd: blur(20px);
    
    
    --vg: linear-gradient(135deg, var(--kx) 0%, var(--hr) 100%);
    --mz: linear-gradient(135deg, var(--nv) 0%, var(--wk) 100%);
    --rf: linear-gradient(135deg, var(--dj) 0%, var(--py) 100%);
    --jn: radial-gradient(at 40% 20%, hsla(328,100%,50%,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(260,80%,60%,0.12) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(220,100%,60%,0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(160,100%,50%,0.08) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(30,100%,50%,0.1) 0px, transparent 50%);
    
    
    --fd: 'Syne', sans-serif;
    --fb: 'DM Sans', sans-serif;
    
    
    --s0: clamp(0.75rem, 1.5vw, 0.875rem);
    --s1: clamp(0.8125rem, 1.6vw, 1rem);
    --s2: clamp(0.9375rem, 1.8vw, 1.125rem);
    --s3: clamp(1rem, 2vw, 1.25rem);
    --s4: clamp(1.125rem, 2.2vw, 1.5rem);
    --s5: clamp(1.25rem, 2.8vw, 2rem);
    --s6: clamp(1.5rem, 3.5vw, 3rem);
    --s7: clamp(1.75rem, 4.5vw, 4rem);
    --s8: clamp(2rem, 6vw, 5.5rem);
    --s9: clamp(2.5rem, 8vw, 7rem);
    
    
    --g0: 0.25rem;
    --g1: 0.5rem;
    --g2: 1rem;
    --g3: 1.5rem;
    --g4: 2rem;
    --g5: 3rem;
    --g6: 4rem;
    --g7: 6rem;
    --g8: 8rem;
    --g9: 12rem;
    
    
    --q1: 0.5rem;
    --q2: 1rem;
    --q3: 1.5rem;
    --q4: 2rem;
    --q5: 3rem;
    --q6: 9999px;
    
    
    --e1: cubic-bezier(0.16, 1, 0.3, 1);
    --e2: cubic-bezier(0.34, 1.56, 0.64, 1);
    --e3: cubic-bezier(0.85, 0, 0.15, 1);
    --w1: 0.2s var(--e1);
    --w2: 0.4s var(--e1);
    --w3: 0.6s var(--e1);
    --w4: 0.8s var(--e1);
    
    
    --z1: 1;
    --z2: 10;
    --z3: 20;
    --z4: 30;
    --z5: 40;
    --z6: 50;
    --z7: 100;
    --z8: 200;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--kx) var(--zf);
    background-color: var(--um);
}

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

html::-webkit-scrollbar-track {
    background: var(--zf);
}

html::-webkit-scrollbar-thumb {
    background: var(--vg);
    border-radius: var(--q6);
}

body {
    font-family: var(--fb);
    font-size: var(--s2);
    line-height: 1.6;
    color: var(--ig);
    background-color: var(--um);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--jn);
    pointer-events: none;
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--w1);
}

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

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--kx);
    color: var(--ig);
}

.section-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--g4);
}

.gradient-text {
    background: var(--vg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--lp);
    backdrop-filter: var(--kd);
    -webkit-backdrop-filter: var(--kd);
    border: 1px solid var(--sr);
    box-shadow: var(--eh);
}

.glass-card {
    background: var(--lp);
    backdrop-filter: var(--kd);
    -webkit-backdrop-filter: var(--kd);
    border: 1px solid var(--sr);
    border-radius: var(--q4);
    box-shadow: var(--eh);
    transition: all var(--w2);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--g1);
    padding: var(--g1) var(--g2);
    background: var(--lp);
    backdrop-filter: var(--kd);
    -webkit-backdrop-filter: var(--kd);
    border: 1px solid var(--sr);
    border-radius: var(--q6);
    font-size: var(--s1);
    color: var(--cx);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--wk);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.glass-orb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--lp);
    backdrop-filter: var(--kd);
    -webkit-backdrop-filter: var(--kd);
    border: 1px solid var(--sr);
    border-radius: 50%;
    transition: all var(--w1);
    flex-shrink: 0;
}

.glass-orb:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.cursor {
    position: fixed;
    pointer-events: none;
    z-index: var(--z7);
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .cursor {
    opacity: 1;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--ig);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--ig);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--kx);
}

@media (pointer: coarse) {
    .cursor { display: none; }
}

.liquid-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.6;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.floating-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -15%;
    left: -10%;
    animation-delay: -7s;
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 400px;
    height: 400px;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--g1);
    padding: var(--g2) var(--g4);
    font-family: var(--fd);
    font-size: var(--s1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--q6);
    overflow: hidden;
    transition: all var(--w2);
    white-space: nowrap;
}

.btn-primary {
    background: var(--vg);
    color: var(--ig);
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--ig);
    border: 1px solid var(--sr);
}

.btn-outline:hover {
    background: var(--lp);
    border-color: var(--kx);
}

.btn-ghost {
    background: transparent;
    color: var(--cx);
}

.btn-ghost:hover {
    color: var(--ig);
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform var(--w1);
}

.btn:hover .btn-icon {
    transform: translate(2px, -2px);
}

.btn-liquid {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--w1);
}

.btn:hover .btn-liquid {
    opacity: 1;
}

.magnetic-btn {
    transform-style: preserve-3d;
    transform: perspective(500px);
}

.nav {
    position: fixed;
    top: var(--g3);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z4);
    border-radius: var(--q6);
    padding: var(--g1) var(--g2);
    transition: all var(--w2);
    max-width: calc(100% - 2rem);
}

.nav.scrolled {
    top: var(--g2);
    padding: var(--g0) var(--g2);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: var(--g5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--g1);
    font-family: var(--fd);
    font-size: var(--s3);
    font-weight: 700;
    white-space: nowrap;
}

.logo-icon {
    font-size: var(--s4);
    color: var(--kx);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--g4);
}

.nav-link {
    position: relative;
    font-size: var(--s1);
    color: var(--cx);
    transition: color var(--w1);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vg);
    transition: width var(--w2);
}

.nav-link:hover {
    color: var(--ig);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
    padding: var(--g1) var(--g3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: var(--g1);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ig);
    border-radius: 2px;
    transition: all var(--w1);
    transform-origin: center;
}

.nav.menu-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav.menu-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

@media (max-width: 1023px) {
    .nav {
        border-radius: var(--q4);
    }
    
    .nav-links {
        display: none;
    }
    
    .nav.menu-open {
        border-radius: var(--q4);
    }
    
    .nav.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: var(--g1);
        padding: var(--g3);
        background: rgba(18, 18, 26, 0.95);
        backdrop-filter: var(--kd);
        -webkit-backdrop-filter: var(--kd);
        border: 1px solid var(--sr);
        border-radius: var(--q4);
        gap: var(--g2);
    }
    
    .nav.menu-open .nav-links .nav-link {
        font-size: var(--s2);
        padding: var(--g1) 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        gap: var(--g2);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--g6);
    padding: var(--g9) var(--g4) var(--g6);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: var(--z1);
}

.hero-badge {
    margin-bottom: var(--g4);
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--fd);
    font-size: var(--s9);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--g4);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-description {
    font-size: var(--s3);
    color: var(--cx);
    max-width: 500px;
    margin-bottom: var(--g5);
    opacity: 0;
    transform: translateY(30px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--g2);
    margin-bottom: var(--g6);
    opacity: 0;
    transform: translateY(30px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--g3);
    opacity: 0;
    transform: translateY(30px);
}

.stat-item {
    text-align: center;
}

.stat-number,
.stat-number-text {
    display: block;
    font-family: var(--fd);
    font-size: var(--s6);
    font-weight: 700;
    background: var(--vg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--s0);
    color: var(--bw);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sr);
}

.hero-visual {
    position: relative;
    height: 600px;
    opacity: 0;
    transform: scale(0.8);
}

.hero-3d-container {
    position: absolute;
    inset: 0;
    border-radius: var(--q5);
    overflow: hidden;
}

.hero-orbit {
    position: absolute;
    inset: 0;
    animation: slowRotate 30s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    color: var(--ig);
}

.orbit-item svg {
    width: 24px;
    height: 24px;
}

.orbit-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 {
    bottom: 30%;
    left: 5%;
}

.orbit-3 {
    bottom: 20%;
    right: 10%;
}

.hero-scroll {
    position: absolute;
    bottom: var(--g5);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--g1);
    color: var(--bw);
    font-size: var(--s0);
    opacity: 0;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--sr);
    border-radius: var(--q6);
    display: flex;
    justify-content: center;
    padding-top: var(--g1);
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--kx);
    border-radius: var(--q6);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

@media (max-width: 1023px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(var(--g8) + 2rem) var(--g2) var(--g5);
        min-height: auto;
        gap: var(--g4);
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        height: 280px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--g2);
    }
    
    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--g7) + 2rem);
    }
    
    .hero-visual {
        height: 220px;
    }

    .hero-stats {
        gap: var(--g1);
    }
    
    .stat-divider {
        height: 30px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--g6);
}

.section-tag {
    margin-bottom: var(--g3);
}

.section-title {
    font-family: var(--fd);
    font-size: var(--s7);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (max-width: 640px) {
    .section-header {
        margin-bottom: var(--g5);
    }
}

.features {
    padding: var(--g8) 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--g4);
}

.feature-card {
    padding: var(--g5);
    display: flex;
    flex-direction: column;
    gap: var(--g3);
}

.feature-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp);
    border: 1px solid var(--sr);
    border-radius: var(--q3);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--kx);
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--kx) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(20px);
    transition: opacity var(--w2);
}

.feature-card:hover .icon-glow {
    opacity: 0.4;
}

.feature-title {
    font-family: var(--fd);
    font-size: var(--s4);
    font-weight: 600;
}

.feature-desc {
    color: var(--cx);
    font-size: var(--s1);
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features {
        padding: var(--g6) 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--g2);
    }
    
    .feature-card {
        padding: var(--g3);
        flex-direction: row;
        align-items: flex-start;
    }
    
    .feature-icon-wrap {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-card .feature-title {
        font-size: var(--s3);
    }
}

.services {
    padding: var(--g8) 0;
    position: relative;
}

.services .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--g6);
    align-items: start;
}

.services-content {
    position: sticky;
    top: var(--g8);
}

.services-description {
    font-size: var(--s3);
    color: var(--cx);
    margin-top: var(--g4);
    max-width: 450px;
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--g2);
}

.accordion-item {
    background: var(--lp);
    backdrop-filter: var(--kd);
    -webkit-backdrop-filter: var(--kd);
    border: 1px solid var(--sr);
    border-radius: var(--q3);
    overflow: hidden;
    transition: all var(--w2);
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: var(--g3);
    padding: var(--g4);
    cursor: pointer;
    transition: background var(--w1);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-number {
    font-family: var(--fd);
    font-size: var(--s1);
    font-weight: 600;
    color: var(--kx);
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
    font-family: var(--fd);
    font-size: var(--s3);
    font-weight: 600;
}

.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.accordion-icon span {
    position: absolute;
    background: var(--ig);
    border-radius: 2px;
    transition: transform var(--w2);
}

.accordion-icon span:first-child {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.accordion-icon span:last-child {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.accordion-item.active .accordion-icon span:last-child {
    transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--w3);
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.accordion-content p {
    padding: 0 var(--g4) var(--g3);
    color: var(--cx);
}

.accordion-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--g1);
    padding: 0 var(--g4) var(--g4);
}

.accordion-list li {
    display: flex;
    align-items: center;
    gap: var(--g1);
    font-size: var(--s1);
    color: var(--bw);
}

.accordion-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--wk);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .services {
        padding: var(--g6) 0;
    }
    
    .services .section-container {
        grid-template-columns: 1fr;
    }
    
    .services-content {
        position: static;
        text-align: center;
    }
    
    .services-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .accordion-header {
        padding: var(--g2);
        gap: var(--g2);
    }
    
    .accordion-content p {
        padding: 0 var(--g2) var(--g2);
        font-size: var(--s1);
    }
    
    .accordion-list {
        grid-template-columns: 1fr;
        padding: 0 var(--g2) var(--g2);
    }
    
    .accordion-title {
        font-size: var(--s2);
    }
}

.pricing {
    padding: var(--g8) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--g4);
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: var(--g5);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: rgba(255, 0, 110, 0.05);
    border-color: rgba(255, 0, 110, 0.3);
    transform: scale(1.05);
}

.pricing-card.proxy-featured {
    background: rgba(58, 134, 255, 0.05);
    border-color: rgba(58, 134, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card.proxy-featured:hover {
    background: rgba(58, 134, 255, 0.1);
    border-color: rgba(58, 134, 255, 0.45);
}

.pricing-card.proxy-featured .pricing-badge {
    background: var(--mz);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: var(--g0) var(--g2);
    background: var(--vg);
    border-radius: var(--q6);
    font-size: var(--s0);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--g4);
    border-bottom: 1px solid var(--sr);
    margin-bottom: var(--g4);
}

.pricing-tier {
    font-size: var(--s1);
    color: var(--bw);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--g0);
    margin: var(--g2) 0;
}

.price-currency {
    font-size: var(--s4);
    color: var(--bw);
    margin-top: var(--g1);
}

.price-amount {
    font-family: var(--fd);
    font-size: var(--s7);
    font-weight: 700;
}

.price-plus {
    font-size: var(--s4);
    color: var(--bw);
    margin-top: var(--g1);
}

.pricing-period {
    font-size: var(--s1);
    color: var(--bw);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: var(--g2);
    margin-bottom: var(--g5);
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--g2);
    font-size: var(--s1);
    color: var(--cx);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--wk);
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1023px) {
    .pricing {
        padding: var(--g6) 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: var(--g3);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.proxy-featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: var(--g3);
    }
}

.contact {
    padding: var(--g8) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--g7);
    align-items: start;
}

.contact-grid--centered {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-content {
    position: sticky;
    top: var(--g8);
}

.contact-grid--centered .contact-content {
    position: static;
}

.contact-description {
    font-size: var(--s3);
    color: var(--cx);
    margin-top: var(--g4);
    max-width: 450px;
}

.contact-grid--centered .contact-description {
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--g2);
    margin-top: var(--g5);
}

.contact-grid--centered .contact-info {
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--g2);
    color: var(--cx);
    transition: color var(--w1);
}

.contact-link:hover {
    color: var(--ig);
}

.link-icon {
    width: 48px;
    height: 48px;
}

.link-icon svg {
    width: 20px;
    height: 20px;
}

.contact-cta-wrap {
    margin-top: var(--g5);
}

@media (max-width: 1023px) {
    .contact {
        padding: var(--g6) 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        position: static;
        text-align: center;
    }
    
    .contact-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        align-items: center;
    }
}

.footer {
    padding: var(--g6) 0;
    border-top: 1px solid var(--sr);
    background: var(--lp);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--g4);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: var(--g6);
    padding-bottom: var(--g5);
    border-bottom: 1px solid var(--sr);
    margin-bottom: var(--g4);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--g1);
    font-family: var(--fd);
    font-size: var(--s4);
    font-weight: 700;
    margin-bottom: var(--g2);
}

.footer-tagline {
    font-size: var(--s1);
    color: var(--bw);
}

.footer-links {
    display: flex;
    gap: var(--g6);
}

.footer-column {
    min-width: 100px;
}

.footer-heading {
    font-family: var(--fd);
    font-size: var(--s1);
    font-weight: 600;
    margin-bottom: var(--g3);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--g1);
}

.footer-column a {
    font-size: var(--s1);
    color: var(--bw);
    transition: color var(--w1);
}

.footer-column a:hover {
    color: var(--ig);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: var(--s0);
    color: var(--bw);
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--bw);
    transition: all 0.25s ease;
}

.footer-ico:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: var(--ig);
    transform: translateY(-1px);
}

.footer-ico svg {
    width: 16px;
    height: 16px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    opacity: 0.55;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
}

.payment-badge:hover {
    opacity: 0.9;
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.payment-badge__icon {
    height: 18px;
    width: auto;
    display: block;
}

.payment-badge__logo {
    height: 14px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer {
        padding: var(--g5) 0;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: var(--g5);
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--g4);
    }
    
    .footer-column {
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--g2);
        text-align: center;
    }

    .footer-payment {
        justify-content: center;
    }
}

.loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--um);
    z-index: var(--z8);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--g4);
}

.loader-blob {
    width: 80px;
    height: 80px;
    background: var(--vg);
    border-radius: 50%;
    animation: loaderMorph 2s ease-in-out infinite;
}

@keyframes loaderMorph {
    0%, 100% {
        border-radius: 50%;
        transform: scale(1);
    }
    25% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
        transform: scale(1.1);
    }
    50% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
        transform: scale(1);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 40% 60% 60% 40%;
        transform: scale(1.1);
    }
}

.loader-text {
    font-family: var(--fd);
    font-size: var(--s1);
    color: var(--bw);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.loader-progress {
    width: 150px;
    height: 2px;
    background: var(--sr);
    border-radius: var(--q6);
    overflow: hidden;
}

.loader-bar {
    width: 0;
    height: 100%;
    background: var(--vg);
    animation: loaderProgress 2s ease-out forwards;
}

@keyframes loaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--w3);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }

.parallax {
    will-change: transform;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: var(--z5);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

@media (max-width: 480px) {
    .section-container {
        padding: 0 var(--g2);
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
}

@media (pointer: coarse), (max-width: 1023px) {
    html, body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none;
    }

    body::after {
        display: none;
    }

    body::before {
        position: absolute;
        min-height: 100%;
    }

    .liquid-bg {
        opacity: 0.3;
    }

    .floating-blobs {
        display: none;
    }

    .blob {
        display: none;
    }

    .glass-card,
    .feature-card,
    .pricing-card,
    .accordion-item {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(18, 18, 26, 0.85);
    }

    .nav-inner {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(18, 18, 26, 0.95);
    }

    .nav-dropdown {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background: rgba(18, 18, 26, 0.97);
    }
}
