* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --font-display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #a78bfa;
    --dark: #000000;
    --darker: #000000;
    --light: #ffffff;
    --gray: #9ca3af;
    --gray-dark: #4b5563;
    --gray-darker: #1f2937;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    color: var(--light);
    overflow-x: hidden;
    overflow-y: scroll;
    cursor: crosshair;
}
* {
    cursor: crosshair;
}
a, button, .btn-primary, .btn-secondary, .price-card, .stat-card, .video-link, .nav-links a {
    cursor: pointer;
}
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, #a0a0a0, #ffffff, #a0a0a0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 3s linear infinite;
}
@keyframes logoShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
.logo span {
    background: linear-gradient(90deg, #909090, #606060, #909090, #606060);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 3s linear infinite;
}
.logo-hero {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #a0a0a0, #ffffff, #a0a0a0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    margin-bottom: 1rem;
}
.logo-hero span {
    background: linear-gradient(90deg, #909090, #606060, #909090, #606060);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}
.nav-links a:hover {
    color: #ffffff;
}
.btn-primary, .btn-secondary {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.btn-primary {
    background: linear-gradient(135deg, #505050, #808080, #505050);
    background-size: 200% auto;
    color: white;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
}
.btn-secondary {
    background: transparent;
    border: 2px solid #808080;
    color: #c0c0c0;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #505050, #707070);
    color: white;
    transform: translateY(-3px);
    border-color: #a0a0a0;
}
.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 5%;
    position: relative;
}
.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff 0%, #a0a0a0 25%, #ffffff 50%, #a0a0a0 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.glitch {
    position: relative;
}
@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
}
.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-buttons .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}
.button-icon-png {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.34));
    transition: transform .38s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
}
.hero-buttons a:hover .button-icon-png--rocket {
    transform: translate(4px, -4px) rotate(8deg) scale(1.08);
    filter: drop-shadow(-4px 7px 10px rgba(142, 200, 255, 0.32));
}
.hero-buttons a:hover .button-icon-png--compass {
    transform: rotate(24deg) scale(1.08);
    filter: drop-shadow(0 7px 10px rgba(255, 196, 78, 0.25));
}
.ui-icon {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.ui-icon--rocket { -webkit-mask-image: url('../images/icons/rocket.svg'); mask-image: url('../images/icons/rocket.svg'); }
.ui-icon--compass { -webkit-mask-image: url('../images/icons/compass.svg'); mask-image: url('../images/icons/compass.svg'); }
.ui-icon--sparkles { -webkit-mask-image: url('../images/icons/sparkles.svg'); mask-image: url('../images/icons/sparkles.svg'); }
.ui-icon--gem { -webkit-mask-image: url('../images/icons/gem.svg'); mask-image: url('../images/icons/gem.svg'); }
.hero-buttons .ui-icon {
    width: 1.35em;
    height: 1.35em;
    filter: drop-shadow(0 3px 7px rgba(0,0,0,.32));
    transition: transform .35s cubic-bezier(.22,1,.36,1), filter .3s ease;
}
.hero-buttons a:hover .ui-icon--rocket { transform: translate(3px,-3px) rotate(7deg); filter: drop-shadow(-3px 5px 8px rgba(255,255,255,.25)); }
.hero-buttons a:hover .ui-icon--compass { transform: rotate(28deg) scale(1.06); }
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-card {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #909090;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}
.stat-card:hover::before {
    left: 100%;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(150, 150, 150, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}
.stat-number,
.stat-hours {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #808080, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: shimmer 3s linear infinite;
}
.stat-label {
    color: #a0a0a0;
    font-size: 0.95rem;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.section-title .ui-icon {
    width: .9em;
    height: .9em;
    margin-right: .34em;
    vertical-align: -.08em;
    background: linear-gradient(145deg,#fff 12%,#a9b1bd 82%);
    filter: drop-shadow(0 6px 14px rgba(202,215,235,.2));
    animation: sectionIconFloat 4s ease-in-out infinite;
}
.section-title .ui-icon--gem { animation-delay: -.8s; }
@keyframes sectionIconFloat {
    0%,100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-4px) rotate(3deg); }
}
.features {
    padding: 5rem 5%;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    max-width: 1180px;
    margin: 0 auto;
}
.video-link {
    display: block;
    width: 100%;
    padding: 0;
    text-decoration: none;
    text-align: left;
    color: inherit;
    font: inherit;
    position: relative;
    min-width: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(14, 16, 20, 0.72);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
    transition: transform 0.35s cubic-bezier(.22,1,.36,1), border-color 0.3s ease, box-shadow 0.35s ease;
}
.video-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 44px rgba(205, 218, 238, 0.1);
    border-color: rgba(224, 231, 241, 0.34);
}
.video-link.is-playing,
.video-link.is-playing:hover {
    transform: none;
    border-color: rgba(224,231,241,.26);
    box-shadow: 0 22px 58px rgba(0,0,0,.46);
    cursor: default;
}
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    filter: saturate(.82) contrast(1.04) brightness(.86);
    transition: transform .55s cubic-bezier(.22,1,.36,1), filter .4s ease;
}
.video-link.is-playing .video-thumbnail > :not(.video-frame) { visibility: hidden; }
.video-frame { position:absolute;inset:0;z-index:5;width:100%;height:100%;border:0;background:#000; }
.video-link:hover .video-thumbnail img { transform: scale(1.055); filter: saturate(1) contrast(1.06) brightness(.96); }
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 3.7rem;
    color: rgba(244, 247, 251, 0.9);
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.5));
}

.play-button svg circle {
    fill: rgba(100, 100, 100, 0.9);
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.12);
    color: #fff;
}

.video-link:hover .play-button svg circle {
    fill: rgba(150, 150, 150, 0.9);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .35rem;
    min-height: 58%;
    background: linear-gradient(to top, rgba(4,5,7,.96) 0%, rgba(4,5,7,.58) 52%, transparent 100%);
    padding: 3.4rem 1.25rem 1.15rem;
    color: white;
    opacity: 1;
    transition: background .3s ease;
}
.video-author { color: rgba(224,231,241,.66); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.video-overlay strong { display: -webkit-box; overflow: hidden; color: #f6f7f9; font-size: 1.02rem; line-height: 1.32; font-weight: 750; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.pricing {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.95), rgba(15, 15, 15, 0.95));
    border: 1.5px solid rgba(100, 100, 100, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.price-icon {
    font-size: 3rem;
    color: #909090;
    margin-bottom: 1rem;
}

.price-card:hover {
    transform: translateY(-12px);
    border-color: rgba(150, 150, 150, 0.6);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

.price-card:hover .price-icon {
    color: #c0c0c0;
}

.price-card.featured {
    border-color: #909090;
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.2);
}

.price-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #606060, #909090, #606060);
    background-size: 200% auto;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #909090, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    animation: shimmer 3s linear infinite;
}

.hwid-addon {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 0.25rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(110deg, rgba(32, 32, 32, 0.96), rgba(15, 15, 15, 0.96));
    border: 1px solid rgba(130, 130, 130, 0.32);
    border-radius: 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hwid-addon:hover {
    transform: translateY(-3px);
    border-color: rgba(175, 175, 175, 0.55);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.hwid-addon-info,
.hwid-addon-action {
    display: flex;
    align-items: center;
}

.hwid-addon-info {
    gap: 1.1rem;
    text-align: left;
}

.hwid-addon-icon {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(145, 145, 145, 0.35);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    color: #bdbdbd;
    font-size: 1.45rem;
}

.hwid-addon-label {
    display: block;
    margin-bottom: 0.25rem;
    color: #858585;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hwid-addon h3 {
    margin: 0 0 0.2rem;
    color: #f1f1f1;
    font-size: 1.35rem;
}

.hwid-addon p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.hwid-addon-action {
    flex: 0 0 auto;
    gap: 1.25rem;
}

.hwid-addon-price {
    color: #f2f2f2;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.developers {
    margin: 1.5rem 0;
}

.developers p {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.dev-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dev-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.dev-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

.footer {
    padding: 2.25rem 5%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.99), rgba(7, 7, 7, 0.99));
    border-top: 1px solid rgba(120, 120, 120, 0.18);
    color: #9a9a9a;
    font-family: inherit;
}

.contact-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(100, 100, 100, 0.2);
}

.contact-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 12px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.5rem;
    color: #909090;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(150, 150, 150, 0.6);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.contact-item:hover i {
    color: #c0c0c0;
}

.disclaimer {
    margin: 0;
    font-size: 0.86rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .section-title {
        font-size: 2rem;
    }
}


.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 3rem;
    max-width: 1120px;
    margin: 0 auto;
}

.payment-provider {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-width: 196px;
    padding: 0.9rem 1.15rem 0.78rem;
    color: #ffffff;
    background: linear-gradient(145deg, rgba(25, 28, 38, 0.96), rgba(13, 15, 23, 0.98));
    border: 1px solid rgba(119, 134, 175, 0.28);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.payment-provider__logo {
    display: block;
    width: 142px;
    height: auto;
}

.payment-provider__caption {
    color: rgba(222, 229, 240, 0.58);
    font-size: 0.67rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.4rem;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-left > p:first-child {
    flex-basis: 100%;
    color: #d0d0d0;
    font-size: 0.96rem;
    font-weight: 600;
}

.footer-left .developers,
.footer-left .developers p,
.footer-left .terms-link {
    margin: 0;
}

.footer-right {
    min-width: 150px;
    padding: 0.9rem 1.1rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(130, 130, 130, 0.2);
    border-radius: 14px;
}

.contact-title {
    margin: 0 0 0.7rem;
    color: #c8c8c8;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.contact-links-small {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-links-small a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 8px;
    color: #909090;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-links-small a:hover {
    transform: translateY(-3px);
    border-color: rgba(150, 150, 150, 0.6);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.contact-links-small img {
    display: block;
    transition: transform 0.25s ease;
}

.contact-links-small a:hover img {
    transform: scale(1.08);
}


.terms-section {
    min-height: 100vh;
    padding: 5rem 5%;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.terms-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.terms-date {
    text-align: center;
    color: #909090;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.terms-content {
    color: #b0b0b0;
    line-height: 1.8;
}

.terms-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.terms-content a {
    color: #909090;
    text-decoration: underline;
}

.terms-content a:hover {
    color: #ffffff;
}

.terms-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.terms-warning i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.terms-warning p {
    color: #ffffff;
    margin: 0;
}

.terms-container .btn-large {
    display: inline-block;
    margin-top: 2rem;
}


.terms-link {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.terms-link a {
    color: #909090;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-link a:hover {
    color: #ffffff;
}


/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 17px;
    background: #2d2d2d;
}

::-webkit-scrollbar-track {
    background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
    background: #5d5d5d;
    border: 4px solid #2d2d2d;
    min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d6d6d;
}

::-webkit-scrollbar-thumb:active {
    background: #e74c3c;
}

::-webkit-scrollbar-button:single-button {
    display: block;
    height: 0;
    width: 0;
}

::-webkit-scrollbar-button:single-button:vertical:decrement,
::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 0;
    width: 0;
    background: transparent;
}

/* Для Firefox */
html {
    scrollbar-width: auto;
    scrollbar-color: #5d5d5d #2d2d2d;
}

body {
    scrollbar-width: auto;
    scrollbar-color: #5d5d5d #2d2d2d;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content h1, .logo-hero {
        font-size: 2.5rem !important;
        letter-spacing: -1px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hwid-addon {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        padding: 1.25rem;
    }

    .hwid-addon-action {
        justify-content: space-between;
        padding-top: 1rem;
        border-top: 1px solid rgba(130, 130, 130, 0.2);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-left {
        justify-content: center;
        text-align: center;
    }

    .footer-left > p:first-child {
        flex-basis: 100%;
    }

    .footer-right {
        width: min(100%, 220px);
        margin: 0 auto;
    }

    .payment-provider {
        width: min(100%, 220px);
        margin: 0 auto;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card:hover {
        transform: translateY(-8px);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .terms-container {
        padding: 2rem 1.5rem;
    }
    
    .terms-container h1 {
        font-size: 1.8rem;
    }
    
    .terms-content h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1, .logo-hero {
        font-size: 2rem !important;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number,
    .stat-hours {
        font-size: 2rem;
    }
    
    .price-icon {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }

    .hwid-addon-info {
        align-items: flex-start;
    }

    .hwid-addon-action {
        flex-wrap: wrap;
    }

    .hwid-addon-action .btn-secondary {
        flex: 1;
        min-width: 130px;
    }
    
    .contact-links-small {
        gap: 0.5rem;
    }
    
    .contact-links-small a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Floating navigation and liquid backdrop, shared with the account area. */
body { background: #08090b; cursor: default; }
* { cursor: inherit; }
a, button, .btn-primary, .btn-secondary, .price-card, .stat-card, .video-link { cursor: pointer; }
.backdrop { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; background: #08090b; }
.backdrop__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s cubic-bezier(.22,1,.36,1); }
.backdrop__canvas.is-ready { opacity: 1; }
.backdrop__fallback { position: absolute; inset: -20%; background: radial-gradient(38% 44% at 22% 28%,rgba(190,205,225,.16),transparent 62%),radial-gradient(46% 40% at 78% 34%,rgba(150,168,195,.13),transparent 66%),radial-gradient(52% 52% at 46% 78%,rgba(120,140,170,.11),transparent 68%); filter: blur(46px); animation: liquidFallback 46s ease-in-out infinite alternate; }
.backdrop.has-webgl .backdrop__fallback { display: none; }
.backdrop::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%,transparent 30%,rgba(8,9,11,.55) 78%,rgba(8,9,11,.9) 100%); opacity: .9; }
@keyframes liquidFallback { 0%{transform:translate3d(-3%,-2%,0) scale(1)} 50%{transform:translate3d(4%,3%,0) scale(1.08)} 100%{transform:translate3d(-2%,4%,0) scale(1.03)} }
.site-nav { position: fixed; top: 16px; left: 50%; translate: -50% 0; z-index: 1000; width: min(calc(100% - 32px),1180px); transition: translate .55s cubic-bezier(.22,1,.36,1); }
.site-nav.is-hidden { translate: -50% calc(-100% - 24px); }
.site-nav__inner { display: flex; align-items: center; gap: 18px; min-height: 64px; padding: 8px 8px 8px 18px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(12,14,18,.66); backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%); box-shadow: 0 18px 60px rgba(0,0,0,.28); transition: background .3s ease,box-shadow .3s ease; }
.site-nav.is-stuck .site-nav__inner { background: rgba(10,12,15,.86); box-shadow: 0 24px 70px rgba(0,0,0,.42); }
.site-brand { display: flex; align-items: center; gap: 9px; color: #f3f5f8; font-weight: 800; letter-spacing: -.035em; text-decoration: none; white-space: nowrap; }
.site-brand>span:last-child { margin-left: -8px; color: #929aa8; }
.site-brand__mark { width: 29px; height: 29px; display: grid; place-items: center; margin: 0!important; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: linear-gradient(145deg,#f5f7fa,#858e9c); color: #090a0c!important; font-size: 13px; box-shadow: 0 0 22px rgba(180,197,225,.22); }
.site-nav__links { position: relative; display: flex; align-items: center; gap: 4px; margin: auto; padding: 0; list-style: none; }
.site-nav__link { position: relative; display: flex; align-items: center; height: 38px; padding: 0 17px; border-radius: 999px; color: #68717e; font-size: 14px; font-weight: 600; text-decoration: none; transition: color .28s ease; }
.site-nav__link:hover,.site-nav__link[aria-current=page] { color: #f3f5f8; }
.site-nav__pill { position: absolute; left: 0; top: 0; height: 38px; border: 1px solid rgba(255,255,255,.07); border-radius: 999px; background: rgba(255,255,255,.075); opacity: 0; pointer-events: none; transition: transform .5s cubic-bezier(.22,1,.36,1),width .5s cubic-bezier(.22,1,.36,1),opacity .25s ease; }
.site-nav__pill.is-on { opacity: 1; }
.site-nav__actions { display: flex; align-items: center; gap: 6px; }
.account-login-action { max-width: 190px; margin-right: 10px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-action { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; padding: 0 15px; border: 1px solid transparent; border-radius: 999px; color: #f3f5f8; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .25s ease,transform .18s ease; }
.nav-action:active { transform: scale(.975); }
.nav-action--quiet { color: #939ba8; }
.nav-action--quiet:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-action--primary { background: #f1f4f8; color: #0a0b0d; box-shadow: 0 10px 30px -14px rgba(255,255,255,.7); }
.nav-action--primary:hover { background: #fff; }
.site-nav__toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; }
.site-nav__toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s ease; }
.site-nav__toggle[aria-expanded=true] span:first-child { transform: translateY(3px) rotate(45deg); }
.site-nav__toggle[aria-expanded=true] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.site-nav__sheet { margin-top: 8px; padding: 10px; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: rgba(10,12,15,.94); backdrop-filter: blur(24px); }
.site-nav__sheet[hidden] { display: none; }
.site-nav__sheet a { display: block; padding: 12px 14px; border-radius: 12px; color: #939ba8; text-decoration: none; }
.site-nav__sheet a:hover { background: rgba(255,255,255,.06); color: #fff; }
.hero { padding-top: 7.5rem; }
.pricing { background: rgba(0,0,0,.16); }
@media(max-width:850px){.site-nav__links,.site-nav__actions>.nav-action{display:none}.site-nav__toggle{display:block}.site-brand{margin-right:auto}.account-login-action{margin-right:0}}
@media(max-width:520px){.site-nav{top:10px;width:calc(100% - 20px)}.site-nav__inner{min-height:58px}.hero{padding-top:6.5rem}}
@media(prefers-reduced-motion:reduce){.backdrop__fallback,.site-brand__logo,.hero-logo-image{animation:none!important}.site-nav,.site-nav__pill{transition-duration:.01ms!important}}

/* 2026-08-08 pricing refresh based on the approved karta.png reference. */
.stat-number[data-suffix="+"]::after { content: "+"; }
.pricing {
    padding: 7rem 5% 6rem;
    background: transparent;
}
.pricing-heading {
    max-width: 720px;
    margin: 0 auto 4.2rem;
    text-align: center;
}
.pricing-heading h2 {
    margin: 0;
    color: #f7f7f8;
    font-family: "Inter Tight", Inter, sans-serif;
    font-size: clamp(2.35rem, 5vw, 4rem);
    line-height: .98;
    letter-spacing: -.055em;
}
.pricing-heading p {
    margin: 1.35rem 0 0;
    color: #a2a4aa;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}
.pricing-grid--plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1.35rem;
    max-width: 1160px;
}
.pricing-grid--plans .price-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.55rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 28px;
    background: rgba(17, 18, 21, .92);
    box-shadow: none;
    transform: none;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, background .3s ease;
}
.pricing-grid--plans .price-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, .16);
    background: rgba(21, 22, 25, .97);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .25);
}
.pricing-grid--plans .price-card.featured {
    min-height: 440px;
    padding-top: 2rem;
    border-color: rgba(255, 255, 255, .09);
    background: rgba(22, 23, 27, .96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}
.pricing-grid--plans .price-card.featured:hover { transform: translateY(-7px); }
.price-offer {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1.15rem;
    font-size: .83rem;
    font-style: normal;
}
.price-offer span {
    padding: .35rem .65rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 7px 0 0 7px;
    background: rgba(255, 255, 255, .035);
    color: #6f7178;
    font-weight: 700;
    text-decoration: line-through;
}
.price-offer strong {
    margin-left: 0;
    padding: .35rem .65rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 7px;
    background: rgba(255, 255, 255, .055);
    color: #aeb0b5;
    font-weight: 800;
}
.price-offer em {
    padding: .42rem .72rem;
    border-radius: 7px;
    background: #84380d;
    color: #ff8a2a;
    font-size: .72rem;
    font-style: normal;
    font-weight: 800;
}
.pricing-grid--plans .price-card h3 {
    margin: 0;
    color: #f8f8f9;
    font-size: clamp(2.05rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}
.plan-label {
    margin-top: .72rem;
    color: #ff8a2a;
    font-size: .78rem;
    font-weight: 800;
}
.plan-description {
    min-height: 3.1rem;
    margin: 2rem 0 1.6rem;
    color: #74767d;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.45;
}
.plan-buy {
    min-width: 160px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 1.7rem;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 999px;
    background: rgba(18, 19, 22, .9);
    color: #f3f3f4;
    font-size: .96rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.plan-buy:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(28, 29, 33, .98);
}
.pricing-grid--plans .hwid-addon { margin-top: 1rem; }
@media(max-width: 850px) {
    .pricing { padding: 5rem 20px; }
    .pricing-heading { margin-bottom: 2.5rem; }
    .pricing-heading h2 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
    .pricing-heading p br { display: none; }
    .pricing-grid--plans { grid-template-columns: 1fr; max-width: 520px; }
    .pricing-grid--plans .price-card,
    .pricing-grid--plans .price-card.featured { min-height: 390px; padding: 2.35rem 1.5rem 1.75rem; transform: none; }
}

/* Atlas identity and typography */
h1,h2,h3,h4,.logo,.logo-hero,.site-brand{font-family:var(--font-display)}
.site-brand__logo{width:40px;height:40px;flex:0 0 auto;object-fit:contain;filter:drop-shadow(0 0 13px rgba(214,220,230,.28));animation:brandLogoFloat 4s ease-in-out infinite;transform-origin:50% 55%}
.hero-logo-image{position:relative;z-index:2;display:block;width:clamp(190px,26vw,310px);height:auto;margin:0 auto;filter:drop-shadow(0 28px 42px rgba(0,0,0,.42)) drop-shadow(0 0 34px rgba(222,229,240,.2));animation:heroLogoFloat 5.2s ease-in-out infinite;will-change:transform,filter}
.logo-hero{position:relative;isolation:isolate;margin-bottom:.7rem;background:none;-webkit-text-fill-color:initial;animation:none}
@keyframes brandLogoFloat{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-3px) rotate(1.5deg)}}
@keyframes heroLogoFloat{0%,100%{transform:translateY(0) rotate(-1deg) scale(1);filter:drop-shadow(0 28px 42px rgba(0,0,0,.42)) drop-shadow(0 0 28px rgba(222,229,240,.16))}50%{transform:translateY(-12px) rotate(1deg) scale(1.025);filter:drop-shadow(0 38px 48px rgba(0,0,0,.34)) drop-shadow(0 0 48px rgba(222,229,240,.3))}}
@media(max-width:520px){.site-brand__logo{width:35px;height:35px}.hero-logo-image{width:clamp(180px,62vw,250px)}}

/* Product disclosure and legal navigation for payment-provider review. */
.product-info {
    padding: 6.5rem 5%;
}
.product-info__intro {
    max-width: 790px;
    margin: 0 auto 3rem;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    margin-bottom: .8rem;
    color: #ff8a2a;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.product-info__intro h2 {
    margin: 0;
    color: #f7f7f8;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 1;
    letter-spacing: -.045em;
}
.product-info__intro p {
    margin: 1.25rem auto 0;
    color: #9b9da4;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.65;
}
.product-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 1160px;
    margin: 0 auto;
}
.product-info__grid article {
    min-height: 230px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    background: rgba(17,18,21,.84);
}
.product-info__grid i { color: #ff8a2a; font-size: 1.45rem; }
.product-info__grid h3 { margin: 1.25rem 0 .7rem; color: #f6f6f7; font-size: 1.3rem; }
.product-info__grid p { margin: 0; color: #85878e; line-height: 1.6; }
.product-info__notice {
    max-width: 900px;
    margin: 1.5rem auto 0;
    color: #777a82;
    font-size: .82rem;
    line-height: 1.55;
    text-align: center;
}
.legal-links { display: flex; flex-wrap: wrap; gap: .45rem 1rem; }
.legal-links a { color: #92959d; font-size: .82rem; text-decoration: none; }
.legal-links a:hover { color: #fff; }
.legal-status {
    margin: 1.25rem 0;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255,153,66,.28);
    border-radius: 14px;
    background: rgba(132,56,13,.16);
    color: #e6b184;
}
.legal-table { width: 100%; margin: 1rem 0 1.5rem; border-collapse: collapse; }
.legal-table th,.legal-table td { padding: .75rem; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; vertical-align: top; }
.legal-table th { width: 34%; color: #dedfe2; }
.legal-table td { color: #9b9da4; }
.terms-content h3 { margin: 1.25rem 0 .55rem; color: #e8e8ea; }
.terms-content code { color: #e7b17d; }
.document-nav { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.08); }
.document-nav a { color: #a5a8af; }
@media(max-width:850px){
    .product-info { padding: 5rem 20px; }
    .product-info__grid { grid-template-columns: 1fr; max-width: 520px; }
    .product-info__grid article { min-height: auto; }
    .legal-table,.legal-table tbody,.legal-table tr,.legal-table th,.legal-table td { display: block; width: 100%; }
    .legal-table th { padding-bottom: .2rem; border-bottom: 0; }
    .legal-table td { padding-top: .2rem; }
    .legal-links { justify-content: center; }
}

/* Full-screen section paging on large screens. */
html.is-paging-enabled {
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: none;
    scrollbar-width: none;
}
html.is-paging-enabled::-webkit-scrollbar { width: 0; height: 0; }
html.is-paging-enabled .page-section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
html.is-paging-enabled .hero,
html.is-paging-enabled .product-info,
html.is-paging-enabled .pricing,
html.is-paging-enabled .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
html.is-paging-enabled .hero { padding-top: clamp(6.2rem, 10vh, 7.5rem); }
html.is-paging-enabled .hero-content { transform: none !important; }
html.is-paging-enabled .hero-logo-image { width: clamp(190px, 30vh, 310px); }
html.is-paging-enabled .hero-buttons { margin-bottom: clamp(1.5rem, 4vh, 4rem); }
html.is-paging-enabled .hero-stats { margin-top: clamp(1rem, 2.5vh, 2rem); }
html.is-paging-enabled .stat-card { padding: clamp(1.1rem, 2.4vh, 2rem); }
html.is-paging-enabled .product-info { padding-top: clamp(5.5rem, 9vh, 7rem); padding-bottom: clamp(2.5rem, 5vh, 5rem); }
html.is-paging-enabled .product-info__intro { margin-bottom: clamp(1.5rem, 3vh, 3rem); }
html.is-paging-enabled .product-info__grid article { min-height: clamp(185px, 26vh, 230px); padding: clamp(1.35rem, 2.5vh, 2rem); }
html.is-paging-enabled .pricing { padding-top: clamp(5.2rem, 8vh, 6.5rem); padding-bottom: clamp(1.8rem, 4vh, 3.5rem); }
html.is-paging-enabled .pricing-heading { margin-bottom: clamp(1.2rem, 3vh, 2.5rem); }
html.is-paging-enabled .pricing-heading h2 { font-size: clamp(2.25rem, 5.5vh, 4rem); }
html.is-paging-enabled .pricing-heading p { margin-top: clamp(.7rem, 1.5vh, 1.35rem); }
html.is-paging-enabled .pricing-grid--plans { gap: clamp(.8rem, 1.8vh, 1.35rem); }
html.is-paging-enabled .pricing-grid--plans .price-card,
html.is-paging-enabled .pricing-grid--plans .price-card.featured {
    min-height: clamp(292px, 41vh, 390px);
    padding-top: clamp(1.35rem, 2.8vh, 2.25rem);
    padding-bottom: clamp(1.2rem, 2.5vh, 1.75rem);
}
html.is-paging-enabled .plan-description { margin-top: clamp(1rem, 2.3vh, 2rem); margin-bottom: clamp(.8rem, 1.8vh, 1.6rem); }
html.is-paging-enabled .pricing-grid--plans .hwid-addon { margin-top: clamp(.2rem, 1vh, 1rem); }
html.is-paging-enabled .footer { padding-top: 7rem; padding-bottom: 4rem; }
html.is-paging-enabled .page-section--footer {
    min-height: auto;
    display: block;
    padding: 2.25rem 5%;
    scroll-snap-align: end;
}
html.is-paging-enabled .site-nav,
html.is-paging-enabled .site-nav.is-hidden {
    opacity: 1;
    pointer-events: auto;
    translate: -50% 0;
}

@media (min-width: 900px) and (prefers-reduced-motion: no-preference) {
    html.section-transitions .page-section {
        opacity: .3;
        transform: none;
        filter: saturate(.72);
        transition: opacity .52s ease, filter .52s ease;
        will-change: opacity;
    }
    html.section-transitions .page-section.is-before { transform: none; }
    html.section-transitions .page-section.is-active {
        opacity: 1;
        transform: none;
        filter: saturate(1);
    }
}

.section-rail {
    position: fixed;
    z-index: 120;
    top: 50%;
    right: clamp(16px, 2vw, 32px);
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
    transform: translateY(-50%);
}
html.is-paging-enabled .section-rail { display: flex; }
.section-rail::before {
    content: '';
    position: absolute;
    top: 7px;
    right: 6px;
    bottom: 7px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,.24), rgba(255,255,255,.08));
}
.section-rail__dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 14px;
    min-height: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #c8cad0;
    cursor: pointer;
}
.section-rail__dot i {
    position: relative;
    z-index: 1;
    width: 13px;
    height: 13px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    background: #15171c;
    box-shadow: 0 0 0 4px rgba(9,10,13,.72);
    transition: transform .32s ease, background .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.section-rail__dot span {
    position: absolute;
    right: 27px;
    padding: .42rem .65rem;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    background: rgba(13,15,20,.9);
    box-shadow: 0 8px 25px rgba(0,0,0,.28);
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .22s ease, transform .22s ease;
}
.section-rail__dot:hover span,
.section-rail__dot:focus-visible span { opacity: 1; transform: translateX(0); }
.section-rail__dot.is-active i {
    border-color: #7eb6ff;
    background: #55a6ff;
    box-shadow: 0 0 0 4px rgba(9,10,13,.8), 0 0 20px rgba(64,158,255,.58);
    transform: scale(1.16);
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .page-section { transition: none !important; }
}
