﻿@font-face {
    font-family: 'Yekan Bakh';
    src: url('../fonts/YekanBakhFaNum-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-fa: 'Yekan Bakh', Tahoma, sans-serif;
    --font-en: 'Space Grotesk', 'Segoe UI', sans-serif;
    --bg-1: #0b1218;
    --bg-2: #1c2632;
    --panel: rgba(18, 28, 37, 0.88);
    --panel-soft: rgba(16, 25, 34, 0.92);
    --border: rgba(255, 255, 255, 0.08);
    --text: #eef4fb;
    --muted: #98a8b8;
    --accent: #44b197;
    --accent-2: #6ca9ff;
    --ok: #9ae7b1;
    --danger: #ff5d74;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --glow: 0 0 0 1px rgba(108, 169, 255, 0.16), 0 24px 54px rgba(0, 0, 0, 0.52);
    --scroll-track: #0b1218;
    --scroll-thumb-start: #44b197;
    --scroll-thumb-end: #6ca9ff;
    --scroll-thumb-border: rgba(11, 18, 24, 0.78);
    --vip-gold-1: #f8d782;
    --vip-gold-2: #c89a3d;
    --gamer-red-1: #ff5a70;
    --gamer-red-2: #c3324f;
    --silver-line: rgba(198, 221, 238, 0.16);
    --silver-glaze: rgba(228, 240, 248, 0.05);
    --halo-glow: 0 18px 40px rgba(95, 177, 255, 0.2), 0 0 24px rgba(103, 233, 203, 0.14);
    --calc-glow-a: rgba(108, 169, 255, 0.34);
    --calc-glow-b: rgba(68, 177, 151, 0.32);
    --calc-glow-c: rgba(192, 232, 255, 0.2);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fa);
    background:
        radial-gradient(900px 520px at 78% -8%, rgba(108, 169, 255, 0.12), transparent 60%),
        radial-gradient(740px 460px at -8% 22%, rgba(68, 177, 151, 0.10), transparent 64%),
        radial-gradient(circle at top, var(--bg-2) 0%, var(--bg-1) 70%);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb-end) rgba(11, 18, 24, 0.7);
}

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

*::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(28, 38, 50, 0.7), rgba(11, 18, 24, 0.86));
    border-radius: 999px;
    border: 1px solid rgba(108, 169, 255, 0.12);
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--scroll-thumb-start) 0%, var(--scroll-thumb-end) 100%);
    border: 3px solid var(--scroll-thumb-border);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #52c3aa 0%, #7fb9ff 100%);
}

*::-webkit-scrollbar-corner {
    background: var(--scroll-track);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}

button,
input,
select,
textarea {
    font-family: var(--font-fa);
}

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    animation: float 14s ease-in-out infinite;
}

.orb-a {
    width: 260px;
    height: 260px;
    right: -40px;
    top: 90px;
    background: radial-gradient(circle, rgba(108, 169, 255, 0.24), transparent 70%);
}

.orb-b {
    width: 320px;
    height: 320px;
    left: -60px;
    top: 340px;
    background: radial-gradient(circle, rgba(68, 177, 151, 0.20), transparent 68%);
    animation-delay: -2.6s;
}

.orb-c {
    width: 220px;
    height: 220px;
    right: 24%;
    bottom: 50px;
    background: radial-gradient(circle, rgba(154, 231, 177, 0.15), transparent 68%);
    animation-delay: -4.3s;
}

.grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(159, 183, 203, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 183, 203, 0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, #000 35%, transparent 95%);
}

.topbar {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background:
        linear-gradient(145deg, rgba(221, 236, 247, 0.12) 0%, rgba(221, 236, 247, 0.02) 36%, transparent 70%),
        linear-gradient(180deg, rgba(19, 31, 43, 0.97), rgba(13, 22, 31, 0.95));
    border: 1px solid rgba(133, 188, 230, 0.24);
    border-radius: 18px;
    padding: 12px 14px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 14px;
    z-index: 25;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.topbar::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 18%, rgba(236, 245, 252, 0.1) 40%, transparent 62%);
}

.topbar::after {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 34%, rgba(245, 251, 255, 0.26) 50%, transparent 66%);
    transform: translateX(-145%);
    transition: transform .8s ease;
}

.topbar:hover {
    border-color: rgba(158, 208, 244, 0.4);
    box-shadow: var(--halo-glow), var(--shadow);
}

.topbar:hover::after {
    transform: translateX(145%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
    isolation: isolate;
    text-shadow: 0 0 0 rgba(111, 182, 255, 0);
    transition: text-shadow .2s ease;
}

.brand img {
    display: block;
}

.brand-logo {
    width: 46px;
    height: 46px;
    transition: transform .22s ease, filter .22s ease;
}

.brand::before {
    content: '';
    position: absolute;
    inset: -7px -10px;
    border-radius: 16px;
    pointer-events: none;
    background: radial-gradient(circle at 35% 50%, rgba(108, 169, 255, 0.18), transparent 70%);
    opacity: 0;
}

.brand::after {
    content: '';
    position: absolute;
    right: 18px;
    top: -10px;
    width: 18px;
    height: 30px;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, #e7f6ff 0%, #9dd8ff 40%, #6eb0ff 100%);
    clip-path: polygon(48% 0, 88% 0, 62% 36%, 100% 36%, 34% 100%, 44% 58%, 16% 58%);
    filter: drop-shadow(0 0 10px rgba(110, 176, 255, 0.85));
}

.brand.is-lightning {
    text-shadow: 0 0 14px rgba(132, 196, 255, 0.55);
}

.brand.is-lightning .brand-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 0 16px rgba(110, 176, 255, 0.56));
}

.brand.is-lightning::before {
    opacity: 1;
    animation: brandFlash .62s ease-out;
}

.brand.is-lightning::after {
    opacity: 1;
    animation: brandBolt .62s ease-out;
}

.top-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.solid-btn,
.ghost-btn {
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    cursor: pointer;
    font-family: var(--font-fa);
    font-weight: 700;
}

.with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    transition: transform .25s ease;
}

.with-icon:hover .btn-icon {
    transform: translateX(-2px);
}

.solid-btn {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: #031018;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(46, 179, 229, 0.32);
    position: relative;
    overflow: hidden;
}

.solid-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(55, 175, 237, 0.42);
}

.solid-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-130%);
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
    animation: btnSheen 5.5s ease-in-out infinite;
    pointer-events: none;
}

.ghost-btn {
    background: rgba(22, 33, 43, 0.92);
    border-color: var(--border);
    color: var(--text);
}

.ghost-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(108, 169, 255, 0.45);
}

.hero {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.live-strip .strip-card,
.feature-card,
.price-card,
.calc-shell,
.steps-list li,
.faq-grid details {
    background:
        linear-gradient(145deg, rgba(228, 240, 248, 0.055) 0%, rgba(228, 240, 248, 0.01) 42%, transparent 74%),
        linear-gradient(180deg, rgba(15, 24, 33, 0.94), rgba(10, 17, 25, 0.96));
    border: 1px solid var(--border);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.hero-copy::before,
.hero-panel::before,
.live-strip .strip-card::before,
.feature-card::before,
.price-card::before,
.calc-shell::before,
.steps-list li::before,
.faq-grid details::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(108, 169, 255, 0.08);
    mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
    padding: 1px;
}

.hero-copy::after,
.hero-panel::after,
.live-strip .strip-card::after,
.feature-card::after,
.price-card::after,
.calc-shell::after,
.steps-list li::after,
.faq-grid details::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 10%, var(--silver-glaze) 34%, transparent 60%),
        radial-gradient(180px 90px at 18% 0%, rgba(199, 219, 234, 0.075), transparent 80%);
    opacity: .32;
    transition: opacity .25s ease;
}

.hero-copy:hover,
.hero-panel:hover,
.live-strip .strip-card:hover,
.feature-card:hover,
.price-card:hover,
.calc-shell:hover,
.steps-list li:hover,
.faq-grid details:hover {
    border-color: rgba(160, 208, 242, 0.16);
    box-shadow: 0 16px 34px rgba(5, 16, 26, 0.6), 0 0 10px rgba(108, 169, 255, 0.06);
}

.hero-copy:hover::after,
.hero-panel:hover::after,
.live-strip .strip-card:hover::after,
.feature-card:hover::after,
.price-card:hover::after,
.calc-shell:hover::after,
.steps-list li:hover::after,
.faq-grid details:hover::after {
    opacity: .46;
}

.interactive-card {
    will-change: transform;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    transform-style: preserve-3d;
}

.interactive-card:hover {
    border-color: rgba(108, 169, 255, 0.2);
    box-shadow: 0 16px 30px rgba(5, 18, 30, 0.62);
}

.hero-copy {
    padding: 26px;
}

.kicker {
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(68, 177, 151, 0.14);
    color: var(--accent);
    border: 1px solid rgba(68, 177, 151, 0.25);
    padding: 6px 12px;
    font-size: .88rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.35;
}

h1 {
    font-size: clamp(1.7rem, 3.8vw, 2.55rem);
}

h2 {
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
}

.lead {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.hero-cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
    color: #c7daeb;
    font-size: .94rem;
    line-height: 1.6;
}

.hero-points li {
    position: relative;
    padding-right: 18px;
}

.hero-points li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--ok), var(--accent));
    box-shadow: 0 0 0 4px rgba(154, 231, 177, 0.12);
    animation: heroDotBlink 1.8s ease-in-out infinite;
}

.hero-points li:nth-child(2)::before {
    animation-delay: .35s;
}

.hero-points li:nth-child(3)::before {
    animation-delay: .7s;
}

.hero-panel {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.metric {
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(18, 33, 47, 0.9), rgba(11, 22, 33, 0.94));
    border: 1px solid rgba(108, 169, 255, 0.2);
    padding: 16px;
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 118px;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 24%, rgba(238, 247, 255, 0.16) 48%, transparent 68%);
    transform: translateX(-140%);
    animation: metricSheen 7.5s ease-in-out infinite;
}

.metric::after {
    content: '';
    position: absolute;
    inset: auto -30% -60% -30%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(108, 169, 255, 0.18), transparent 65%);
    animation: metricGlow 6.2s ease-in-out infinite;
    pointer-events: none;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    color: var(--accent-2);
    background: rgba(108, 169, 255, 0.14);
    border: 1px solid rgba(108, 169, 255, 0.3);
    position: relative;
    animation: metricIconFloat 4.2s ease-in-out infinite;
}

.metric-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 1px solid rgba(108, 169, 255, 0.24);
    opacity: 0;
    animation: metricRing 2.8s ease-out infinite;
}

.metric-icon svg {
    width: 23px;
    height: 23px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.metric-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.metric-title {
    color: var(--muted);
    font-size: .92rem;
    display: block;
}

.metric-value {
    display: block;
    font-family: var(--font-fa);
    font-size: 1.38rem;
    color: #eaf5ff;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.metric-value-num,
.metric-value-id {
    font-family: var(--font-fa);
    letter-spacing: 0.4px;
}

.metric-sub {
    display: block;
    margin-top: 1px;
    color: #9fb6c8;
    font-size: .82rem;
    line-height: 1.55;
}

.metric-value-id {
    font-size: 1.3rem;
    direction: ltr;
    unicode-bidi: embed;
}

.metric-stability {
    background:
        radial-gradient(220px 90px at 90% 0%, rgba(108, 169, 255, 0.2), transparent 72%),
        linear-gradient(145deg, rgba(14, 32, 45, 0.92), rgba(10, 22, 34, 0.96));
    border-color: rgba(108, 169, 255, 0.32);
}

.metric-stability .metric-icon {
    color: #7fc1ff;
    background: rgba(108, 169, 255, 0.18);
    border-color: rgba(108, 169, 255, 0.4);
}

.metric-delivery {
    background:
        radial-gradient(220px 90px at 90% 0%, rgba(70, 206, 255, 0.18), transparent 72%),
        linear-gradient(145deg, rgba(11, 33, 47, 0.93), rgba(10, 20, 32, 0.96));
    border-color: rgba(94, 199, 238, 0.34);
}

.metric-delivery .metric-icon {
    color: #6bd2ff;
    background: rgba(70, 206, 255, 0.15);
    border-color: rgba(94, 199, 238, 0.38);
}

.metric-support {
    background:
        radial-gradient(220px 90px at 90% 0%, rgba(68, 177, 151, 0.2), transparent 72%),
        linear-gradient(145deg, rgba(12, 32, 36, 0.94), rgba(10, 20, 30, 0.97));
    border-color: rgba(68, 177, 151, 0.32);
}

.metric-support .metric-icon {
    color: #79efd3;
    background: rgba(68, 177, 151, 0.16);
    border-color: rgba(68, 177, 151, 0.4);
}

.metric-delivery .metric-icon {
    animation-delay: .35s;
}

.metric-support .metric-icon {
    animation-delay: .7s;
}

.metric-delivery .metric-icon::after {
    animation-delay: .35s;
}

.metric-support .metric-icon::after {
    animation-delay: .7s;
}

.metric-delivery::before {
    animation-delay: .2s;
}

.metric-support::before {
    animation-delay: .45s;
}

.metric-delivery .metric-value {
    font-family: var(--font-fa);
}

.live-strip {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.strip-card {
    padding: 14px 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow);
    display: grid;
    gap: 6px;
}

.strip-icon {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    color: var(--accent);
    background: rgba(68, 177, 151, 0.13);
    border: 1px solid rgba(68, 177, 151, 0.25);
    transition: transform .25s ease;
}

.strip-icon svg {
    width: 16px;
    height: 16px;
}

.strip-label {
    color: var(--muted);
    font-size: .84rem;
}

.strip-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.02rem;
    letter-spacing: .2px;
}

.features,
.pricing,
.reseller-zone,
.special-zone,
.calculator,
.steps,
.faq {
    margin-top: 34px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.feature-card {
    padding: 20px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(68, 177, 151, 0.14);
    color: var(--accent);
    border: 1px solid rgba(68, 177, 151, 0.24);
    margin-bottom: 10px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.icon-wrap svg {
    width: 22px;
    height: 22px;
}

.feature-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(108, 169, 255, 0.18);
    box-shadow: 0 14px 28px rgba(5, 16, 26, 0.58);
}

.feature-card:hover .icon-wrap {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 6px 14px rgba(68, 177, 151, 0.12);
}

.section-head {
    margin-bottom: 14px;
}

.kicker.with-kicker-icon {
    padding: 5px 10px;
}

.kicker.with-kicker-icon .kicker-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: var(--accent);
    background: rgba(68, 177, 151, 0.13);
    border: 1px solid rgba(68, 177, 151, 0.25);
    animation: kickerIconFloat 3.8s ease-in-out infinite;
    transition: transform .25s ease;
}

.kicker.with-kicker-icon .kicker-icon svg {
    width: 14px;
    height: 14px;
}

.strip-card:hover .strip-icon,
.section-head:hover .kicker-icon {
    transform: translateY(-1px) scale(1.03);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.reseller-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(54, 216, 176, 0.28);
    background:
        radial-gradient(460px 180px at 90% 15%, rgba(116, 184, 255, 0.22), transparent 65%),
        radial-gradient(480px 220px at 0% 100%, rgba(68, 177, 151, 0.2), transparent 70%),
        linear-gradient(125deg, rgba(12, 30, 38, 0.92), rgba(11, 24, 34, 0.95));
    box-shadow: 0 24px 56px rgba(3, 17, 22, 0.55);
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.reseller-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(68, 177, 151, 0.08), rgba(108, 169, 255, 0.08));
    pointer-events: none;
}

.reseller-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.12) 48%, transparent 70%);
    transform: translateX(-140%);
    transition: transform .85s ease;
}

.reseller-shell:hover {
    transform: translateY(-2px);
    border-color: rgba(97, 224, 188, 0.42);
    box-shadow: 0 28px 62px rgba(3, 17, 22, 0.62), 0 0 18px rgba(94, 197, 231, 0.12);
}

.reseller-shell:hover::after {
    transform: translateX(140%);
}

.reseller-copy {
    position: relative;
    z-index: 1;
}

.reseller-kicker {
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .84rem;
    color: #b8fff1;
    background: rgba(68, 177, 151, 0.18);
    border: 1px solid rgba(68, 177, 151, 0.34);
}

.reseller-lead {
    margin: 10px 0 0;
    color: #b7cad8;
}

.reseller-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: #d7e8f6;
}

.reseller-list li {
    position: relative;
    padding-right: 18px;
}

.reseller-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(120deg, #44b197, #6ca9ff);
    box-shadow: 0 0 0 4px rgba(108, 169, 255, 0.12);
}

.reseller-cta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.reseller-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    color: #031018;
    border: 1px solid transparent;
    background: linear-gradient(120deg, #6cf0d2, #88b7ff);
    box-shadow: 0 10px 20px rgba(68, 177, 151, 0.3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.reseller-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(88, 189, 173, 0.45);
}

.reseller-link {
    font-family: var(--font-fa);
    letter-spacing: .1px;
    color: #9fd9ff;
    border-bottom: 1px dashed rgba(159, 217, 255, 0.55);
    padding-bottom: 2px;
}

.reseller-highlight {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid rgba(121, 208, 255, 0.26);
    background: linear-gradient(150deg, rgba(16, 35, 46, 0.85), rgba(16, 30, 39, 0.95));
    display: grid;
    place-content: center;
    text-align: center;
    gap: 4px;
    overflow: hidden;
}

.reseller-highlight::before {
    content: '';
    position: absolute;
    inset: -35% -20%;
    background: conic-gradient(from 0deg, rgba(68, 177, 151, 0.1), rgba(108, 169, 255, 0.2), rgba(68, 177, 151, 0.1));
    animation: resellerSpin 12s linear infinite;
}

.reseller-pill {
    position: relative;
    z-index: 1;
    font-size: .84rem;
    color: #a2bbcc;
}

.reseller-highlight strong {
    position: relative;
    z-index: 1;
    font-family: var(--font-en);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: 1px;
    color: #d5f3ff;
}

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

.special-card {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 44px rgba(5, 18, 30, 0.58);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.special-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.12) 48%, transparent 70%);
    transform: translateX(-140%);
    transition: transform .85s ease;
}

.special-card:hover {
    transform: translateY(-2px);
}

.special-card:hover::before {
    transform: translateX(140%);
}

.special-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.special-kicker {
    margin: 0;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .84rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.special-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
}

.special-icon svg {
    width: 18px;
    height: 18px;
}

.special-card h3 {
    margin-top: 12px;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
}

.special-text {
    margin: 8px 0 0;
    color: #d5e2ed;
}

.special-note {
    margin: 14px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
}

.special-note::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 22%, transparent);
}

.vip-card {
    background:
        radial-gradient(320px 120px at 100% 0, rgba(248, 215, 130, 0.2), transparent 70%),
        linear-gradient(140deg, rgba(49, 38, 18, 0.94), rgba(18, 27, 35, 0.95));
    border-color: rgba(248, 215, 130, 0.34);
}

.vip-card:hover {
    border-color: rgba(248, 215, 130, 0.52);
    box-shadow: 0 24px 48px rgba(39, 28, 12, 0.58), 0 0 24px rgba(248, 215, 130, 0.17);
}

.vip-card .special-kicker {
    color: #ffe7b3;
    background: rgba(248, 215, 130, 0.16);
    border-color: rgba(248, 215, 130, 0.32);
}

.vip-card .special-icon {
    color: #f9d88d;
    background: rgba(248, 215, 130, 0.14);
    border: 1px solid rgba(248, 215, 130, 0.32);
}

.vip-card .special-note {
    color: #f9d88d;
    background: rgba(248, 215, 130, 0.12);
    border: 1px solid rgba(248, 215, 130, 0.3);
}

.gamer-card {
    background:
        radial-gradient(340px 130px at 100% 0, rgba(255, 90, 112, 0.22), transparent 70%),
        linear-gradient(145deg, rgba(53, 15, 23, 0.95), rgba(20, 19, 34, 0.95));
    border-color: rgba(255, 90, 112, 0.32);
}

.gamer-card:hover {
    border-color: rgba(255, 90, 112, 0.52);
    box-shadow: 0 24px 48px rgba(44, 11, 20, 0.6), 0 0 24px rgba(255, 90, 112, 0.2);
}

.gamer-card .special-kicker {
    color: #ffc0cb;
    background: rgba(255, 90, 112, 0.16);
    border-color: rgba(255, 90, 112, 0.3);
}

.gamer-card .special-icon {
    color: #ff97a9;
    background: rgba(255, 90, 112, 0.14);
    border: 1px solid rgba(255, 90, 112, 0.32);
}

.gamer-card .special-note {
    color: #ff9dad;
    background: rgba(255, 90, 112, 0.13);
    border: 1px solid rgba(255, 90, 112, 0.34);
    animation: gamerPulse 2.8s ease-in-out infinite;
}

.price-card {
    position: relative;
    padding: 18px;
}

.price-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.price-card strong {
    color: #fff;
    font-size: 1.15rem;
    font-family: var(--font-fa);
    letter-spacing: .35px;
}

.price-card.featured {
    border-color: rgba(154, 231, 177, 0.35);
    background: linear-gradient(145deg, rgba(16, 25, 34, 0.95), rgba(23, 49, 39, 0.86));
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .76rem;
    color: #032112;
    background: linear-gradient(110deg, #9ae7b1, #44b197);
    font-weight: 700;
}

.calc-shell {
    padding: clamp(18px, 2.2vw, 24px);
    border-color: rgba(126, 197, 242, 0.34);
    background:
        radial-gradient(540px 230px at 96% -10%, rgba(108, 169, 255, 0.26), transparent 68%),
        radial-gradient(460px 240px at 4% 110%, rgba(68, 177, 151, 0.22), transparent 72%),
        radial-gradient(270px 170px at 56% 50%, rgba(192, 232, 255, 0.12), transparent 78%),
        linear-gradient(145deg, rgba(13, 27, 40, 0.97), rgba(8, 17, 28, 0.99));
    background-size: 145% 145%, 130% 130%, 120% 120%, 100% 100%;
    box-shadow: 0 30px 66px rgba(2, 14, 23, 0.64), inset 0 1px 0 rgba(207, 233, 251, 0.13);
    animation: calcAurora 14s ease-in-out infinite;
    isolation: isolate;
    transform: translateZ(0);
}

.calc-shell > * {
    position: relative;
    z-index: 1;
}

.calc-shell::before {
    border: 1px solid rgba(146, 210, 250, 0.28);
}

.calc-shell::after {
    background:
        radial-gradient(420px 132px at 16% 0%, rgba(212, 239, 255, 0.24), transparent 72%),
        linear-gradient(112deg, transparent 18%, rgba(224, 244, 255, 0.28) 48%, transparent 72%);
    opacity: .56;
    transform: translateX(-130%);
    animation: calcSweep 7.8s cubic-bezier(.22, .61, .36, 1) infinite;
    mix-blend-mode: screen;
}

.calc-shell:hover {
    border-color: rgba(153, 217, 250, 0.5);
    box-shadow: 0 34px 72px rgba(2, 14, 23, 0.68), 0 0 28px rgba(108, 169, 255, 0.24);
    transform: translateY(-2px);
}

.calc-shell label {
    display: block;
    margin-bottom: 9px;
    color: #b4c5d6;
    font-size: .98rem;
    font-weight: 700;
}

.inputs-row {
    display: grid;
    grid-template-columns: 1fr 168px;
    gap: 12px;
    align-items: center;
    position: relative;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(125, 197, 243, 0.24);
    background: linear-gradient(150deg, rgba(10, 23, 36, 0.82), rgba(7, 17, 27, 0.9));
    box-shadow: inset 0 1px 0 rgba(168, 215, 247, 0.12);
    animation: calcInputBreathe 5.8s ease-in-out infinite;
}

.volume-input-wrap {
    position: relative;
    width: 100%;
}

.volume-input-unit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #93b6cf;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .2px;
    pointer-events: none;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 99px;
    background: transparent;
    cursor: pointer;
    margin: 0;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(68, 177, 151, 0.36), rgba(108, 169, 255, 0.4));
    border: 1px solid rgba(133, 202, 244, 0.26);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.36);
}

input[type="range"]::-moz-range-track {
    height: 12px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(68, 177, 151, 0.36), rgba(108, 169, 255, 0.4));
    border: 1px solid rgba(133, 202, 244, 0.26);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.36);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    margin-top: -7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #44b197, #6ca9ff);
    box-shadow: 0 0 0 3px rgba(68, 177, 151, 0.26), 0 0 20px rgba(108, 169, 255, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.34);
    animation: calcKnobPulse 2.8s ease-in-out infinite;
    transition: transform .2s ease, box-shadow .2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 4px rgba(68, 177, 151, 0.26), 0 0 24px rgba(108, 169, 255, 0.45);
}

input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: linear-gradient(135deg, #44b197, #6ca9ff);
    box-shadow: 0 0 0 3px rgba(68, 177, 151, 0.24), 0 0 20px rgba(108, 169, 255, 0.34);
    animation: calcKnobPulse 2.8s ease-in-out infinite;
}

input[type="range"]:hover::-webkit-slider-runnable-track,
input[type="range"]:hover::-moz-range-track {
    border-color: rgba(154, 218, 251, 0.38);
}

input[type="number"] {
    width: 100%;
    background: linear-gradient(160deg, rgba(6, 20, 32, 0.84), rgba(5, 15, 25, 0.92));
    color: var(--text);
    border: 1px solid rgba(132, 198, 241, 0.28);
    border-radius: 14px;
    padding: 11px 10px;
    font-family: var(--font-fa);
    font-size: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.4px;
    direction: ltr;
    text-align: right;
    box-shadow: inset 0 1px 0 rgba(181, 223, 250, 0.11);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

.volume-input-wrap input[type="number"] {
    padding-right: 52px;
}

input[type="number"]:focus {
    outline: none;
    border-color: rgba(158, 221, 251, 0.58);
    background: linear-gradient(160deg, rgba(8, 25, 39, 0.9), rgba(7, 20, 32, 0.94));
    box-shadow: 0 0 0 3px rgba(108, 169, 255, 0.16), 0 0 24px rgba(108, 169, 255, 0.24);
    transform: translateY(-1px);
}

.calc-result {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.calc-result > div {
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(130, 200, 244, 0.26);
    background:
        radial-gradient(180px 100px at 100% 0, rgba(124, 200, 255, 0.12), transparent 75%),
        linear-gradient(180deg, rgba(6, 20, 32, 0.78), rgba(5, 16, 26, 0.9));
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    animation: calcCardBreath 5.8s ease-in-out infinite;
}

.calc-result > div::after {
    content: '';
    position: absolute;
    inset: -20% -10%;
    pointer-events: none;
    background: radial-gradient(circle at 18% 25%, rgba(124, 200, 255, 0.26), transparent 60%);
    opacity: .5;
    animation: calcOrb 5.4s ease-in-out infinite;
}

.calc-result > div:nth-child(2) {
    animation-delay: .45s;
}

.calc-result > div:nth-child(2)::after {
    animation-delay: .55s;
}

.calc-result > div:hover {
    transform: translateY(-2px);
    border-color: rgba(162, 224, 252, 0.44);
    box-shadow: 0 12px 28px rgba(3, 15, 24, 0.56), 0 0 24px rgba(108, 169, 255, 0.14);
}

.calc-result span {
    color: #9fb2c5;
    font-size: .9rem;
}

.calc-result strong {
    margin-top: 6px;
    display: block;
    font-family: var(--font-fa);
    font-size: 1.24rem;
    letter-spacing: 0.7px;
    font-variant-numeric: tabular-nums;
    animation: calcValueGlow 4.6s ease-in-out infinite;
}

.price-number {
    direction: ltr;
    unicode-bidi: embed;
    font-family: var(--font-en);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.6px;
}

.currency {
    font-family: var(--font-fa);
    font-weight: 700;
}

.full {
    width: 100%;
    margin-top: 14px;
    border: none;
    box-shadow: 0 14px 30px rgba(42, 157, 226, 0.24), 0 0 20px rgba(68, 177, 151, 0.16);
    transition: transform .2s ease, box-shadow .2s ease;
}

.full:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(42, 157, 226, 0.3), 0 0 26px rgba(68, 177, 151, 0.22);
}

.helper {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.helper.micro {
    margin: 0 0 8px;
    font-size: .82rem;
}

.helper a {
    color: var(--accent);
}

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.steps-list li {
    padding: 18px 18px 16px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(140deg, rgba(68, 177, 151, 0.18) 0%, rgba(68, 177, 151, 0.04) 36%, transparent 70%),
        linear-gradient(180deg, rgba(14, 24, 34, 0.95), rgba(10, 17, 25, 0.97));
    border-color: rgba(68, 177, 151, 0.28);
}

.steps-list span {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    font-family: var(--font-en);
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 700;
    color: #dcfff7;
    background: linear-gradient(145deg, rgba(68, 177, 151, 0.42), rgba(41, 116, 106, 0.3));
    border: 1px solid rgba(125, 255, 224, 0.4);
    box-shadow: 0 10px 24px rgba(68, 177, 151, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    animation: stepFloat 3.6s ease-in-out infinite;
    z-index: 1;
}

.steps-list p {
    margin: 0;
    padding: 0 74px 0 12px;
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.steps-list li:nth-child(2) span {
    animation-delay: .35s;
}

.steps-list li:nth-child(3) span {
    animation-delay: .7s;
}

.faq-grid {
    display: grid;
    gap: 10px;
}

.faq-grid details {
    padding: 14px 16px;
}

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

.faq-grid p {
    margin: 10px 0 0;
    color: var(--muted);
}

.footer {
    margin: 34px auto 24px;
    padding: 18px 22px;
    display: grid;
    justify-items: center;
    gap: 6px;
    color: var(--muted);
    text-align: center;
    border: 1px solid rgba(145, 200, 238, 0.32);
    border-radius: 18px;
    background:
        linear-gradient(150deg, rgba(223, 238, 248, 0.16) 0%, rgba(223, 238, 248, 0.02) 40%, transparent 72%),
        linear-gradient(180deg, rgba(18, 30, 42, 0.98), rgba(11, 20, 30, 0.99));
    box-shadow: 0 20px 42px rgba(2, 12, 20, 0.56);
    position: relative;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(68, 177, 151, 0), rgba(68, 177, 151, 0.9), rgba(108, 169, 255, 0.9), rgba(108, 169, 255, 0));
}

.footer::after {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 35%, rgba(242, 249, 255, 0.26) 52%, transparent 68%);
    transform: translateX(-150%);
    transition: transform .85s ease;
}

.footer:hover {
    border-color: rgba(168, 217, 249, 0.5);
    box-shadow: var(--halo-glow), 0 24px 48px rgba(2, 12, 20, 0.62);
}

.footer:hover::after {
    transform: translateX(150%);
}

.copyright-line {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.copyright-mark {
    font-family: var(--font-en);
    color: var(--accent);
    font-size: 1.08rem;
}

.footer-note {
    margin: 0;
    font-size: .86rem;
    color: #9cb4c6;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}

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

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -12px, 0); }
}

@keyframes heroDotBlink {
    0%, 20%, 100% {
        opacity: .38;
        transform: scale(.88);
    }
    45%, 62% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes brandFlash {
    0% { opacity: 0; filter: brightness(1); }
    18% { opacity: .95; filter: brightness(1.5); }
    34% { opacity: .18; filter: brightness(1); }
    46% { opacity: .78; filter: brightness(1.35); }
    100% { opacity: 0; filter: brightness(1); }
}

@keyframes brandBolt {
    0% { opacity: 0; transform: translateY(-7px) scale(.78); }
    20% { opacity: 1; transform: translateY(0) scale(1.03); }
    38% { opacity: .24; transform: translateY(1px) scale(.88); }
    52% { opacity: .88; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(2px) scale(.82); }
}

@keyframes btnSheen {
    0%, 78% { transform: translateX(-130%); }
    90%, 100% { transform: translateX(130%); }
}

@keyframes kickerIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1.5px); }
}

@keyframes metricIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes metricSheen {
    0%, 70% { transform: translateX(-140%); }
    100% { transform: translateX(140%); }
}

@keyframes metricRing {
    0% {
        transform: scale(.9);
        opacity: .55;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes metricGlow {
    0%, 100% { opacity: .25; transform: translateY(0); }
    50% { opacity: .52; transform: translateY(-2px); }
}

@keyframes resellerSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes stepFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes gamerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 112, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(255, 90, 112, 0.04); }
}

@keyframes calcAurora {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0 0;
    }
    50% {
        background-position: 100% 10%, 0% 90%, 55% 42%, 0 0;
    }
}

@keyframes calcSweep {
    0% {
        transform: translateX(-130%);
    }
    45% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(130%);
    }
}

@keyframes calcOrb {
    0%, 100% {
        opacity: .34;
        transform: translate3d(0, 0, 0) scale(.96);
    }
    50% {
        opacity: .72;
        transform: translate3d(10px, -8px, 0) scale(1.08);
    }
}

@keyframes calcInputBreathe {
    0%, 100% {
        border-color: rgba(125, 197, 243, 0.24);
        box-shadow: inset 0 1px 0 rgba(168, 215, 247, 0.12);
    }
    50% {
        border-color: rgba(149, 214, 250, 0.4);
        box-shadow: inset 0 1px 0 rgba(193, 228, 250, 0.2), 0 0 0 1px rgba(108, 169, 255, 0.16);
    }
}

@keyframes calcKnobPulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(68, 177, 151, 0.24), 0 0 20px rgba(108, 169, 255, 0.34);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(68, 177, 151, 0.16), 0 0 26px rgba(108, 169, 255, 0.46);
    }
}

@keyframes calcCardBreath {
    0%, 100% {
        border-color: rgba(130, 200, 244, 0.26);
        box-shadow: inset 0 0 0 0 rgba(118, 195, 243, 0);
    }
    50% {
        border-color: rgba(160, 220, 252, 0.44);
        box-shadow: 0 10px 24px rgba(3, 15, 24, 0.48), inset 0 0 0 1px rgba(118, 195, 243, 0.16);
    }
}

@keyframes calcValueGlow {
    0%, 100% {
        text-shadow: 0 0 0 rgba(115, 196, 248, 0);
    }
    50% {
        text-shadow: 0 0 12px rgba(115, 196, 248, 0.28);
    }
}

.features,
.pricing,
.reseller-zone,
.special-zone,
.calculator,
.steps,
.faq,
.footer {
    contain-intrinsic-size: 1px 560px;
}

@media (max-width: 1040px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .reseller-shell {
        grid-template-columns: 1fr;
    }

    .reseller-highlight {
        min-height: 140px;
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .steps-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .topbar {
        padding: 10px;
    }

    .top-actions {
        gap: 6px;
    }

    .solid-btn,
    .ghost-btn {
        padding: 9px 12px;
        font-size: 10px;
    }

    .hero-copy,
    .hero-panel,
    .feature-card,
    .price-card,
    .calc-shell,
    .steps-list li,
    .faq-grid details {
        border-radius: 16px;
    }

    .metric {
        min-height: 102px;
        grid-template-columns: 42px 1fr;
        gap: 10px;
        padding: 13px;
    }

    .metric-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .metric-icon svg {
        width: 21px;
        height: 21px;
    }

    .metric-value {
        font-size: 1.24rem;
    }

    .metric-sub {
        font-size: .78rem;
    }

    .features,
    .live-strip,
    .pricing-grid,
    .calc-result {
        grid-template-columns: 1fr;
    }

    .inputs-row {
        grid-template-columns: 1fr;
    }

    .steps-list li {
        min-height: 112px;
    }

    .steps-list span {
        width: 48px;
        height: 48px;
        font-size: 1.55rem;
        top: 10px;
        right: 10px;
    }

    .steps-list p {
        min-height: 60px;
        padding: 0 64px 0 8px;
    }

    .reseller-shell {
        padding: 18px;
    }

    .reseller-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .reseller-btn {
        justify-content: center;
    }

    .special-card {
        padding: 18px;
    }

    .footer {
        padding: 16px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orb,
    .reveal,
    .kicker-icon,
    .brand::before,
    .brand::after,
    .topbar::after,
    .footer::after,
    .metric::before,
    .reseller-shell::after,
    .metric::after,
    .metric-icon,
    .metric-icon::after,
    .hero-points li::before,
    .steps-list span,
    .reseller-highlight::before,
    .gamer-card .special-note,
    .calc-shell,
    .calc-shell::after,
    .inputs-row,
    .calc-result > div,
    .calc-result > div::after,
    .calc-result strong,
    input[type="range"]::-webkit-slider-thumb,
    input[type="range"]::-moz-range-thumb,
    .solid-btn::after {
        animation: none !important;
        transition: none !important;
    }
}
