:root {
    --bg: #071322;
    --bg-deep: #040d18;
    --surface: #0d1f33;
    --surface-2: #112941;
    --surface-3: #17334e;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(214, 191, 119, 0.28);
    --text: #f4f7fb;
    --text-soft: #d3dce6;
    --muted: #91a1b3;
    --gold: #d6bf77;
    --gold-light: #f1e2ac;
    --gold-deep: #a98e3e;
    --mint: #68e0c5;
    --mint-soft: #baf5e7;
    --danger: #ff9f9f;
    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.16);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.30);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 0%, rgba(104, 224, 197, 0.07), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(214, 191, 119, 0.10), transparent 32%),
        var(--bg);
    line-height: 1.8;
    overflow-x: hidden;
}

::selection {
    color: var(--bg-deep);
    background: var(--gold-light);
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.site-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.16;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-shell {
    position: relative;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 19, 34, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 19, 34, 0.90);
    border-bottom-color: rgba(214, 191, 119, 0.16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(214, 191, 119, 0.13));
}

.brand-copy {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-title {
    color: var(--gold-light);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.035);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
}

.main-nav a {
    position: relative;
    transition: color .25s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 999px;
    transition: width .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    justify-self: end;
}

.button {
    border: 1px solid transparent;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 20px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.button svg,
.text-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: scaleX(-1);
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible + .switch-track {
    outline: 3px solid rgba(104, 224, 197, .34);
    outline-offset: 4px;
}

.button-small {
    min-height: 44px;
    padding: 8px 17px;
    font-size: .9rem;
}

.button-large {
    min-height: 56px;
    padding: 13px 25px;
}

.button-primary {
    color: #071322;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 12px 30px rgba(214, 191, 119, 0.18);
}

.button-primary:hover {
    box-shadow: 0 16px 38px rgba(214, 191, 119, 0.28);
}

.button-secondary {
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.035);
    border-color: var(--border);
}

.button-secondary:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.055);
}

.hero {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 88px 0 96px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.hero-glow-one {
    width: 460px;
    height: 460px;
    top: 6%;
    left: -210px;
    background: radial-gradient(circle, rgba(104, 224, 197, .12), transparent 68%);
}

.hero-glow-two {
    width: 560px;
    height: 560px;
    right: -250px;
    bottom: -210px;
    background: radial-gradient(circle, rgba(214, 191, 119, .12), transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 84px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-light);
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 6px rgba(104, 224, 197, .09);
}

.hero h1 {
    max-width: 720px;
    margin: 18px 0 20px;
    font-size: clamp(2.85rem, 5vw, 5.2rem);
    line-height: 1.2;
    letter-spacing: -.055em;
    font-weight: 900;
}

.text-gradient {
    display: block;
    color: transparent;
    background: linear-gradient(100deg, #fff 3%, var(--gold-light) 62%, var(--gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 2.05;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.trust-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--mint);
    background: rgba(104, 224, 197, .075);
    border: 1px solid rgba(104, 224, 197, .13);
}

.trust-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item span:last-child {
    display: grid;
    min-width: 0;
}

.trust-item b {
    color: var(--text-soft);
    font-size: .82rem;
    white-space: nowrap;
}

.trust-item small {
    color: var(--muted);
    font-size: .72rem;
    white-space: nowrap;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-frame {
    width: min(100%, 510px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, rgba(18, 41, 64, .88), rgba(8, 23, 38, .92));
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.04);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.visual-topbar {
    min-height: 58px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: var(--muted);
    font-size: .78rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.018);
}

.window-dots {
    justify-self: start;
    direction: ltr;
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
}

.window-dots i:nth-child(2) {
    background: rgba(214,191,119,.5);
}

.window-dots i:nth-child(3) {
    background: rgba(104,224,197,.52);
}

.secure-pill {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 9px;
    color: var(--mint-soft);
    border: 1px solid rgba(104,224,197,.13);
    border-radius: 999px;
    background: rgba(104,224,197,.06);
}

.secure-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(104,224,197,.08);
}

.visual-body {
    padding: 24px;
}

.connection-orb {
    width: 264px;
    height: 264px;
    margin: 10px auto 26px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(214,191,119,.08), transparent 48%),
        radial-gradient(circle at center, rgba(104,224,197,.035), transparent 66%);
}

.connection-orb::before,
.connection-orb::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.065);
}

.connection-orb::before {
    width: 78%;
    height: 78%;
}

.connection-orb::after {
    width: 48%;
    height: 48%;
    border-color: rgba(214,191,119,.18);
}

.orbit {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px dashed rgba(104,224,197,.17);
    animation: rotate 24s linear infinite;
}

.orbit::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    top: 36px;
    left: 18px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 14px rgba(104,224,197,.58);
}

.orbit-two {
    inset: 53px;
    border-style: solid;
    border-color: rgba(214,191,119,.12);
    animation-duration: 17s;
    animation-direction: reverse;
}

.orbit-two::after {
    top: auto;
    left: auto;
    bottom: -4px;
    right: 49%;
    background: var(--gold);
    box-shadow: 0 0 14px rgba(214,191,119,.48);
}

.logo-disc {
    width: 108px;
    height: 108px;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    border-radius: 32px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(214,191,119,.18);
    box-shadow: 0 18px 45px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
}

.logo-disc img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.ping-chip {
    position: absolute;
    right: 11px;
    top: 38px;
    z-index: 3;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(8,23,38,.84);
    box-shadow: var(--shadow-sm);
    font-size: .7rem;
    font-weight: 700;
}

.ip-card,
.metric-card,
.location-strip {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.026);
}

.ip-card {
    min-height: 76px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 18px;
}

.ip-card > div,
.metric-card {
    display: grid;
}

.label {
    color: var(--muted);
    font-size: .71rem;
}

.ip-card strong {
    margin-top: 2px;
    color: var(--text);
    font-size: .91rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 7px rgba(104,224,197,.08), 0 0 18px rgba(104,224,197,.4);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.metric-card {
    position: relative;
    min-height: 112px;
    padding: 16px;
    border-radius: 18px;
}

.metric-card strong {
    margin-top: auto;
    font-size: 1rem;
}

.metric-icon {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    border-radius: 11px;
    background: rgba(214,191,119,.07);
}

.metric-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-strip {
    margin-top: 12px;
    padding: 12px 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    border-radius: 16px;
}

.location-strip span {
    padding: 5px 9px;
    color: var(--text-soft);
    background: rgba(255,255,255,.027);
    border-radius: 999px;
    font-size: .72rem;
}

.floating-note {
    position: absolute;
    right: -18px;
    top: 64px;
    z-index: 4;
    min-width: 184px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(12, 31, 49, .92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.floating-note svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-note span {
    display: grid;
}

.floating-note b {
    font-size: .76rem;
}

.floating-note small {
    color: var(--muted);
    font-size: .66rem;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.section-features {
    border-top: 1px solid rgba(255,255,255,.05);
    background: linear-gradient(180deg, rgba(255,255,255,.012), transparent 75%);
}

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading h2,
.faq-intro h2,
.cta-copy h2 {
    margin: 12px 0 12px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.45;
    letter-spacing: -.035em;
    font-weight: 900;
}

.section-heading p,
.faq-intro > p,
.cta-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 292px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(155deg, rgba(17,41,65,.72), rgba(10,27,44,.78));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    left: -70px;
    bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214,191,119,.09), transparent 68%);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214,191,119,.22);
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.feature-number {
    position: absolute;
    top: 20px;
    left: 22px;
    color: rgba(255,255,255,.13);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    color: var(--gold-light);
    border: 1px solid rgba(214,191,119,.15);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(214,191,119,.10), rgba(214,191,119,.025));
}

.feature-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    margin: 0 0 9px;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 800;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.95;
}

.section-pricing {
    overflow: hidden;
}

.section-pricing::before {
    content: '';
    position: absolute;
    width: 720px;
    height: 720px;
    right: 50%;
    top: 25%;
    transform: translateX(50%);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(104,224,197,.045), transparent 68%);
}

.billing-switch {
    width: fit-content;
    margin: -20px auto 64px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
}

.billing-label {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: color .25s ease;
}

.billing-label.active {
    color: var(--text);
}

.billing-label b {
    display: inline-flex;
    margin-right: 4px;
    padding: 3px 7px;
    color: #071322;
    background: var(--mint);
    border-radius: 999px;
    font-size: .68rem;
}

.switch-control {
    display: inline-flex;
    cursor: pointer;
}

.switch-control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch-track {
    width: 46px;
    height: 26px;
    padding: 3px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: #24394d;
    transition: background-color .25s ease, border-color .25s ease;
}

.switch-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 9px rgba(0,0,0,.25);
    transform: translateX(0);
    transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

.switch-control input:checked + .switch-track {
    background: var(--mint);
    border-color: var(--mint);
}

.switch-control input:checked + .switch-track .switch-thumb {
    transform: translateX(-20px);
}

.pricing-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    min-height: 530px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg, rgba(17,41,65,.76), rgba(9,25,41,.9));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.pricing-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,255,255,.15);
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.pricing-card-featured {
    border-color: rgba(214,191,119,.40);
    background: linear-gradient(155deg, rgba(40,45,48,.25), rgba(13,32,50,.92));
    box-shadow: 0 20px 65px rgba(0,0,0,.2), inset 0 1px 0 rgba(241,226,172,.09);
}

.pricing-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 0%, rgba(214,191,119,.12), transparent 36%);
}

.recommended-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 5px 9px;
    color: #1d1b12;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    font-size: .7rem;
    font-weight: 900;
}

.plan-icon-wrap {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    border: 1px solid rgba(104,224,197,.14);
    border-radius: 19px;
    background: rgba(104,224,197,.055);
}

.plan-icon-featured {
    border-color: rgba(214,191,119,.25);
    background: rgba(214,191,119,.07);
}

.plan-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    image-rendering: auto;
}

.plan-head {
    min-height: 95px;
}

.plan-kicker {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 800;
}

.plan-head h3 {
    margin: 4px 0 4px;
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.plan-head p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}

.price-block {
    min-height: 110px;
    padding: 18px 0 20px;
    border-bottom: 1px solid var(--border);
}

.original-price {
    min-height: 28px;
    color: var(--muted);
    text-decoration: line-through;
    font-size: .78rem;
}

.hidden {
    visibility: hidden;
}

.price-line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
}

.price-line strong {
    color: var(--text);
    font-size: clamp(2.7rem, 4vw, 3.8rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.04em;
}

.price-line span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.plan-features {
    list-style: none;
    padding: 22px 0;
    margin: 0 0 6px;
    display: grid;
    gap: 14px;
    color: var(--text-soft);
    font-size: .86rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--mint);
    border-radius: 8px;
    background: rgba(104,224,197,.07);
    font-size: .75rem;
    font-weight: 900;
}

.plan-features b {
    color: var(--mint-soft);
}

.button-plan {
    margin-top: auto;
    width: 100%;
    color: var(--text);
    border-color: rgba(255,255,255,.11);
    background: rgba(255,255,255,.04);
}

.button-plan:hover {
    border-color: rgba(104,224,197,.24);
    background: rgba(104,224,197,.07);
}

.button-plan-featured {
    color: #111b20;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button-plan-featured:hover {
    border-color: transparent;
    background: linear-gradient(135deg, #f5e8b8, #d8c27d);
}

.pricing-note {
    width: min(760px, 100%);
    margin: 26px auto 0;
    padding: 13px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.022);
}

.pricing-note-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--gold-light);
}

.pricing-note-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-note p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.8;
}

.section-faq {
    border-top: 1px solid rgba(255,255,255,.05);
    background: linear-gradient(180deg, rgba(255,255,255,.01), transparent 45%);
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro h2 {
    font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: var(--mint-soft);
    font-size: .88rem;
    font-weight: 700;
}

.text-link:hover {
    color: var(--mint);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    transition: border-color .3s ease, background-color .3s ease;
}

.faq-list details:hover,
.faq-list details[open] {
    border-color: rgba(214,191,119,.20);
    background: rgba(255,255,255,.035);
}

.faq-list summary {
    list-style: none;
    min-height: 76px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: var(--text-soft);
    font-size: .95rem;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list details p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 20px;
    color: var(--muted);
    font-size: .88rem;
    line-height: 2;
}

.faq-list details p b {
    color: var(--gold-light);
}

.faq-plus {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
    background: rgba(255,255,255,.025);
}

.faq-plus::before,
.faq-plus::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 1.5px;
    border-radius: 99px;
    background: var(--gold-light);
    transform: translate(-50%, -50%);
    transition: transform .25s ease;
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.cta-section {
    padding: 28px 0 110px;
}

.cta-card {
    position: relative;
    min-height: 250px;
    padding: 48px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, #b69b4d 0%, #d9c47f 48%, #f0e2b0 100%);
    color: #13202d;
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: .23;
    background-image:
        radial-gradient(circle at 82% 10%, rgba(255,255,255,.8), transparent 24%),
        linear-gradient(90deg, rgba(0,0,0,.11) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,.11) 1px, transparent 1px);
    background-size: auto, 46px 46px, 46px 46px;
    mask-image: linear-gradient(90deg, transparent, black 42%);
}

.cta-copy,
.cta-card .button {
    position: relative;
    z-index: 2;
}

.eyebrow-light {
    color: #463d20;
}

.cta-copy h2 {
    max-width: 660px;
    margin-top: 9px;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #101b24;
}

.cta-copy p {
    color: rgba(16, 27, 36, .72);
}

.button-light {
    min-width: 170px;
    color: var(--text);
    background: #0b1a2b;
    box-shadow: 0 14px 28px rgba(10, 25, 47, .18);
}

.button-light:hover {
    background: #071322;
    box-shadow: 0 18px 34px rgba(10, 25, 47, .24);
}

.site-footer {
    padding: 70px 0 24px;
    border-top: 1px solid rgba(255,255,255,.06);
    background: #05101c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, .7fr);
    gap: 48px;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-about p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 7px;
    color: var(--text);
    font-size: .88rem;
    font-weight: 800;
}

.footer-column > a:not(.telegram-link) {
    color: var(--muted);
    font-size: .82rem;
    transition: color .2s ease;
}

.footer-column > a:not(.telegram-link):hover {
    color: var(--gold-light);
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: .8rem;
}

.telegram-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(104,224,197,.14);
    border-radius: 12px;
    color: var(--mint);
    background: rgba(104,224,197,.055);
}

.telegram-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 58px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: rgba(145,161,179,.72);
    font-size: .74rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1080px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-visual {
        min-height: 510px;
    }

    .visual-frame {
        transform: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.35fr repeat(3, .8fr);
        gap: 28px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 30px, 680px);
    }

    .section {
        padding: 82px 0;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 76px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        grid-template-columns: repeat(3, minmax(0,1fr));
        text-align: right;
    }

    .hero-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .floating-note {
        right: -8px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        width: min(100%, 520px);
        margin-inline: auto;
        gap: 22px;
    }

    .pricing-card {
        min-height: 500px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro {
        position: static;
        text-align: center;
    }

    .cta-card {
        padding: 42px 34px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 520px);
    }

    .site-header {
        position: relative;
    }

    html {
        scroll-padding-top: 18px;
    }

    .header-inner {
        min-height: 72px;
        gap: 10px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-title {
        font-size: .92rem;
    }

    .brand-badge {
        display: none;
    }

    .header-cta {
        min-height: 40px;
        padding: 7px 13px;
        font-size: .78rem;
    }

    .header-cta svg {
        display: none;
    }

    .hero {
        padding-top: 58px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 3.35rem);
    }

    .hero-lead {
        font-size: .94rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        width: min(100%, 340px);
        margin-inline: auto;
        text-align: right;
    }

    .hero-visual {
        min-height: 450px;
    }

    .visual-body {
        padding: 18px;
    }

    .connection-orb {
        width: 220px;
        height: 220px;
    }

    .floating-note {
        top: 26px;
        right: 6px;
        min-width: 160px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 250px;
    }

    .billing-switch {
        gap: 8px;
        padding: 7px 9px;
    }

    .billing-label {
        font-size: .74rem;
    }

    .billing-label b {
        display: none;
    }

    .pricing-card {
        min-height: auto;
        padding: 24px;
    }

    .cta-section {
        padding-bottom: 82px;
    }

    .cta-card {
        padding: 35px 25px;
        border-radius: 26px;
    }

    .cta-card .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ========================================================================== 
   V2 — Premium visual & interaction enhancement layer
   Keeps the original design language, but adds richer depth, motion and UX.
   ========================================================================== */

:root {
    --bg: #06111f;
    --bg-deep: #030a13;
    --surface: #0b1d31;
    --surface-2: #102a43;
    --gold: #d9c27a;
    --gold-light: #f5e7b5;
    --gold-glow: rgba(217, 194, 122, .20);
    --mint: #70e4ca;
    --mint-soft: #c1f5e9;
    --ease-out: cubic-bezier(.2,.75,.2,1);
}

body {
    background:
        radial-gradient(ellipse 62% 42% at 8% -4%, rgba(112, 228, 202, .10), transparent 70%),
        radial-gradient(ellipse 54% 40% at 95% 5%, rgba(217, 194, 122, .14), transparent 72%),
        linear-gradient(180deg, #06111f 0%, #071523 47%, #05101c 100%);
}

body.menu-open {
    overflow: hidden;
}

body.page-paused *,
body.page-paused *::before,
body.page-paused *::after {
    animation-play-state: paused !important;
}

/* Browser scroll progress */
.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 2px;
    z-index: 120;
    pointer-events: none;
    background: rgba(255,255,255,.025);
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: right center;
    background: linear-gradient(90deg, var(--mint), var(--gold-light), var(--gold));
    box-shadow: 0 0 14px rgba(217,194,122,.38);
    will-change: transform;
}

/* Header refinements */
.site-header {
    background: rgba(5, 15, 27, .62);
    border-bottom-color: rgba(255,255,255,.055);
}

.site-header::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 7%, rgba(217,194,122,.13), rgba(112,228,202,.11), transparent 93%);
    opacity: .7;
    pointer-events: none;
}

.site-header.is-scrolled {
    background: rgba(5, 15, 27, .88);
    box-shadow: 0 14px 38px rgba(0,0,0,.28);
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 9px;
}

.brand-logo {
    mix-blend-mode: screen;
    transition: transform .35s var(--ease-out), filter .35s ease;
}

.brand:hover .brand-logo {
    transform: translateY(-1px) rotate(-2deg) scale(1.025);
    filter: drop-shadow(0 10px 24px rgba(217,194,122,.20));
}

.brand-title {
    background: linear-gradient(110deg, #fff4cb, #d9c27a 72%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 999px;
    background: rgba(255,255,255,.018);
}

.main-nav a {
    padding: 2px 3px;
}

.main-nav a::after {
    bottom: -7px;
    box-shadow: 0 0 9px rgba(217,194,122,.32);
}

.mobile-nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: none;
    place-items: center;
    align-content: center;
    gap: 4px;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.mobile-nav-toggle:hover {
    border-color: rgba(217,194,122,.25);
    background: rgba(217,194,122,.06);
}

.mobile-nav-toggle span {
    width: 18px;
    height: 1.5px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .3s var(--ease-out), opacity .2s ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* Off-canvas mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 380px);
    visibility: hidden;
    pointer-events: none;
}

.mobile-menu-backdrop {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(1, 7, 14, .62);
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .32s ease;
}

.mobile-menu-panel {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    padding: 26px 22px 30px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    background:
        radial-gradient(circle at 88% 0%, rgba(217,194,122,.12), transparent 28%),
        linear-gradient(180deg, rgba(10,27,45,.98), rgba(5,16,28,.99));
    border-right: 1px solid rgba(255,255,255,.08);
    box-shadow: -28px 0 70px rgba(0,0,0,.32);
    transform: translateX(105%);
    transition: transform .4s var(--ease-out);
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu-backdrop {
    opacity: 1;
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-head {
    min-height: 52px;
    margin-bottom: 8px;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    font-weight: 800;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    color: var(--muted);
    background: rgba(255,255,255,.025);
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.mobile-menu-panel > a:not(.button) {
    position: relative;
    padding: 14px 15px;
    display: grid;
    gap: 2px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--text-soft);
    background: transparent;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.mobile-menu-panel > a:not(.button)::after {
    content: '←';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(217,194,122,.65);
    font-size: .9rem;
}

.mobile-menu-panel > a:not(.button):hover,
.mobile-menu-panel > a:not(.button).active {
    border-color: rgba(217,194,122,.14);
    background: rgba(217,194,122,.05);
    transform: translateX(-2px);
}

.mobile-menu-panel > a span {
    font-size: .9rem;
    font-weight: 800;
}

.mobile-menu-panel > a small {
    color: var(--muted);
    font-size: .72rem;
}

.mobile-menu-panel .mobile-support {
    margin-top: 7px;
    border-top-color: rgba(112,228,202,.12) !important;
}

.mobile-menu-cta {
    width: 100%;
    margin-top: auto;
}

/* Buttons */
.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.button::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.18) 48%, transparent 76%);
    transform: translateX(125%);
    transition: transform .65s var(--ease-out);
}

.button:hover::after {
    transform: translateX(-125%);
}

.button-ripple {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255,255,255,.18);
    transform: scale(0);
    opacity: .6;
    animation: button-ripple .56s ease-out forwards;
}

@keyframes button-ripple {
    to { transform: scale(1); opacity: 0; }
}

/* Hero */
.hero {
    min-height: min(860px, calc(100vh - 82px));
    padding-top: 78px;
    isolation: isolate;
}

.hero::before {
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: .95;
}

.hero::after {
    content: '';
    position: absolute;
    width: 980px;
    height: 980px;
    left: 50%;
    top: -540px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid rgba(217,194,122,.07);
    box-shadow:
        0 0 0 86px rgba(217,194,122,.018),
        0 0 0 172px rgba(112,228,202,.012);
    pointer-events: none;
    z-index: -1;
}

.hero-glow-one {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(112,228,202,.14), transparent 70%);
}

.hero-glow-two {
    width: 660px;
    height: 660px;
    background: radial-gradient(circle, rgba(217,194,122,.15), transparent 72%);
}

.eyebrow {
    padding: 5px 10px;
    border: 1px solid rgba(217,194,122,.10);
    border-radius: 999px;
    background: rgba(217,194,122,.035);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.eyebrow-dot {
    animation: status-breathe 2.6s ease-in-out infinite;
}

@keyframes status-breathe {
    0%, 100% { box-shadow: 0 0 0 5px rgba(112,228,202,.075), 0 0 0 rgba(112,228,202,0); }
    50% { box-shadow: 0 0 0 8px rgba(112,228,202,.035), 0 0 19px rgba(112,228,202,.32); }
}

.hero h1 {
    margin-top: 22px;
    text-wrap: balance;
    text-shadow: 0 12px 42px rgba(0,0,0,.18);
}

.text-gradient {
    background-image: linear-gradient(105deg, #ffffff 0%, #f7e9b7 47%, #d9c27a 82%, #bda55d 100%);
}

.hero-lead {
    color: #a7b5c4;
}

.hero-actions {
    margin-top: 35px;
}

.hero-trust {
    position: relative;
    margin-top: 40px;
    padding-top: 26px;
}

.hero-trust::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 90px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    opacity: .7;
}

.trust-icon {
    transition: transform .3s var(--ease-out), border-color .3s ease, background .3s ease;
}

.trust-item:hover .trust-icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(112,228,202,.25);
    background: rgba(112,228,202,.10);
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 76%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,194,122,.10), rgba(112,228,202,.035) 44%, transparent 70%);
    filter: blur(2px);
    transform: scale(1.16);
    pointer-events: none;
}

.visual-frame {
    --tilt-x: 2deg;
    --tilt-y: -4deg;
    --lift: 0px;
    --spot-x: 50%;
    --spot-y: 18%;
    position: relative;
    isolation: isolate;
    border-color: rgba(255,255,255,.12);
    background:
        radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(217,194,122,.10), transparent 34%),
        linear-gradient(155deg, rgba(17,43,68,.94), rgba(5,18,31,.96));
    box-shadow:
        0 38px 100px rgba(0,0,0,.38),
        0 0 0 1px rgba(217,194,122,.035),
        inset 0 1px 0 rgba(255,255,255,.055);
    transform: perspective(1200px) rotateY(var(--tilt-y)) rotateX(var(--tilt-x)) translateY(var(--lift));
    transition: transform .34s var(--ease-out), border-color .3s ease, box-shadow .3s ease, background .2s linear;
    will-change: transform;
}

.visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255,255,255,.045), transparent 24%),
        radial-gradient(circle at 50% 0%, rgba(217,194,122,.08), transparent 30%);
}

.visual-frame.has-pointer {
    border-color: rgba(217,194,122,.18);
    box-shadow:
        0 46px 110px rgba(0,0,0,.42),
        0 0 0 1px rgba(217,194,122,.06),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.visual-topbar {
    background: linear-gradient(90deg, rgba(255,255,255,.015), rgba(217,194,122,.025), rgba(255,255,255,.012));
}

.secure-pill {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 0 20px rgba(112,228,202,.03);
}

.secure-pill i,
.status-dot {
    animation: secure-pulse 2.8s ease-in-out infinite;
}

@keyframes secure-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(112,228,202,.07), 0 0 10px rgba(112,228,202,.22); }
    50% { box-shadow: 0 0 0 7px rgba(112,228,202,.025), 0 0 22px rgba(112,228,202,.42); }
}

.connection-orb {
    background:
        radial-gradient(circle at center, rgba(217,194,122,.12), transparent 46%),
        radial-gradient(circle at center, rgba(112,228,202,.055), transparent 68%);
}

.connection-orb::before {
    border-color: rgba(112,228,202,.10);
    box-shadow: inset 0 0 40px rgba(112,228,202,.025);
}

.logo-disc {
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow:
        0 24px 60px rgba(0,0,0,.28),
        0 0 36px rgba(217,194,122,.055),
        inset 0 1px 0 rgba(255,255,255,.07);
}

.logo-disc img {
    mix-blend-mode: screen;
}

.ping-chip {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(217,194,122,.12);
    animation: chip-float 4.2s ease-in-out infinite;
}

@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.ip-card,
.metric-card,
.location-strip,
.connection-quality {
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
    border-color: rgba(255,255,255,.085);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.metric-card {
    transition: transform .28s var(--ease-out), border-color .28s ease, background .28s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217,194,122,.16);
    background: rgba(217,194,122,.045);
}

.location-strip span {
    border: 1px solid rgba(255,255,255,.04);
    transition: transform .25s var(--ease-out), color .25s ease, border-color .25s ease;
}

.location-strip span:hover {
    transform: translateY(-2px);
    color: var(--text);
    border-color: rgba(217,194,122,.14);
}

.connection-quality {
    margin-top: 12px;
    padding: 12px 14px 13px;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.quality-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: .7rem;
}

.quality-head strong {
    color: var(--mint-soft);
    font-size: .72rem;
}

.quality-track {
    height: 4px;
    margin-top: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
}

.quality-track span {
    width: 92%;
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--mint), var(--gold));
    transform-origin: right center;
    animation: quality-breathe 4s ease-in-out infinite;
}

@keyframes quality-breathe {
    0%, 100% { transform: scaleX(.88); opacity: .74; }
    50% { transform: scaleX(1); opacity: 1; }
}

.floating-note {
    transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .3s ease;
}

.floating-note:hover {
    transform: translateY(-4px);
    border-color: rgba(217,194,122,.18);
    box-shadow: 0 20px 44px rgba(0,0,0,.26);
}

.floating-note-two {
    right: auto;
    left: -26px;
    top: auto;
    bottom: 76px;
    min-width: 178px;
}

.floating-note-two svg {
    stroke: var(--gold-light);
}

/* Section rhythm */
.section {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2,
.faq-intro h2,
.cta-copy h2 {
    text-wrap: balance;
}

.section-heading p,
.faq-intro > p {
    max-width: 640px;
    margin-inline: auto;
}

.section-features {
    background:
        radial-gradient(circle at 10% 50%, rgba(112,228,202,.035), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.012), transparent 75%);
}

/* Pointer-reactive feature cards */
.feature-card {
    --spot-x: 50%;
    --spot-y: 0%;
    min-height: 305px;
    padding: 29px;
    border-color: rgba(255,255,255,.075);
    background:
        radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(217,194,122,.11), transparent 38%),
        linear-gradient(155deg, rgba(17,42,66,.78), rgba(7,24,40,.88));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.03),
        0 16px 42px rgba(0,0,0,.08);
}

.feature-card.has-pointer {
    border-color: rgba(217,194,122,.20);
}

.feature-card::after {
    opacity: .9;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 24px rgba(0,0,0,.08);
    transition: transform .3s var(--ease-out), background .3s ease, border-color .3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px) rotate(-2deg);
    border-color: rgba(217,194,122,.25);
    background: rgba(217,194,122,.095);
}

.feature-number {
    font-variant-numeric: tabular-nums;
}

/* Pricing */
.section-pricing::before {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(112,228,202,.055), rgba(217,194,122,.02) 40%, transparent 70%);
}

.billing-switch {
    position: relative;
    margin-bottom: 72px;
    padding: 8px 11px;
    border-color: rgba(255,255,255,.085);
    background: rgba(5,18,31,.68);
    box-shadow: 0 12px 38px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.billing-switch::after {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(110deg, rgba(217,194,122,.13), transparent 35%, rgba(112,228,202,.10));
    opacity: .55;
}

.switch-track {
    width: 50px;
    height: 28px;
    background: #21374a;
    box-shadow: inset 0 2px 7px rgba(0,0,0,.18);
}

.switch-thumb {
    width: 20px;
    height: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.32);
}

.switch-control input:checked + .switch-track .switch-thumb {
    transform: translateX(-22px);
}

.pricing-grid {
    gap: 22px;
}

.pricing-card {
    --spot-x: 50%;
    --spot-y: 8%;
    min-height: 545px;
    padding: 31px;
    border-color: rgba(255,255,255,.08);
    background:
        radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(112,228,202,.07), transparent 34%),
        linear-gradient(155deg, rgba(16,41,65,.82), rgba(6,22,37,.93));
    box-shadow:
        0 22px 64px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.035);
    transition: transform .35s var(--ease-out), border-color .3s ease, box-shadow .35s ease, background .2s linear;
}

.pricing-card.has-pointer {
    border-color: rgba(112,228,202,.19);
}

.pricing-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 30px 76px rgba(0,0,0,.27), inset 0 1px 0 rgba(255,255,255,.04);
}

.pricing-card.is-updating .price-line,
.pricing-card.is-updating .original-price,
.pricing-card.is-updating .traffic {
    animation: pricing-soft-pop .48s var(--ease-out);
}

@keyframes pricing-soft-pop {
    0% { opacity: .45; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

.number-pop {
    font-variant-numeric: tabular-nums;
}

.pricing-card-featured {
    border-color: rgba(217,194,122,.43);
    background:
        radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(217,194,122,.15), transparent 36%),
        linear-gradient(155deg, rgba(25,39,50,.92), rgba(7,24,40,.95));
    box-shadow:
        0 30px 90px rgba(0,0,0,.24),
        0 0 0 1px rgba(217,194,122,.025),
        inset 0 1px 0 rgba(245,231,181,.10);
}

.pricing-card-featured::before {
    background:
        radial-gradient(circle at 50% 0%, rgba(217,194,122,.16), transparent 33%),
        linear-gradient(120deg, rgba(255,255,255,.025), transparent 28%);
}

.recommended-badge {
    box-shadow: 0 9px 24px rgba(217,194,122,.18);
}

.plan-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.plan-icon {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--mint-soft);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

.plan-icon-featured .plan-icon {
    stroke: var(--gold-light);
}

.price-line strong {
    background: linear-gradient(120deg, #fff 8%, var(--gold-light) 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.button-plan {
    min-height: 52px;
}

.pricing-note {
    margin-top: 32px;
    background: linear-gradient(90deg, rgba(217,194,122,.025), rgba(255,255,255,.018), rgba(112,228,202,.02));
}

/* FAQ — JS enhanced animation uses height rather than max-height */
.faq-list details {
    background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.018));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
}

.faq-list details[open] {
    box-shadow: 0 18px 46px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.025);
}

.faq-list summary {
    transition: color .25s ease, padding .25s ease;
}

.faq-list details[open] summary {
    color: var(--text);
}

.faq-list details[data-enhanced="true"] p {
    max-height: none;
    will-change: height, opacity, transform;
}

.faq-plus {
    transition: border-color .25s ease, background .25s ease, transform .25s var(--ease-out);
}

.faq-list details[open] .faq-plus {
    border-color: rgba(217,194,122,.20);
    background: rgba(217,194,122,.06);
    transform: rotate(90deg);
}

/* CTA */
.cta-card {
    min-height: 270px;
    border: 1px solid rgba(255,255,255,.35);
    background:
        radial-gradient(circle at 16% 110%, rgba(112,228,202,.26), transparent 35%),
        linear-gradient(120deg, #b49a4e 0%, #dac57f 48%, #f3e5b2 100%);
    box-shadow:
        0 34px 90px rgba(0,0,0,.26),
        inset 0 1px 0 rgba(255,255,255,.55);
}

.cta-card::after {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    left: -110px;
    top: -150px;
    border: 1px solid rgba(12,28,43,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(12,28,43,.035), 0 0 0 110px rgba(12,28,43,.02);
    pointer-events: none;
}

.cta-card .button-light {
    border: 1px solid rgba(255,255,255,.08);
}

/* Footer */
.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(112,228,202,.025), transparent 30%),
        #040e19;
}

.footer-column > a:not(.telegram-link) {
    position: relative;
}

.footer-column > a:not(.telegram-link)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .25s ease;
}

.footer-column > a:not(.telegram-link):hover::after {
    width: 100%;
}

/* Viewport reveal */
.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .72s var(--ease-out) var(--reveal-delay, 0ms),
        transform .72s var(--ease-out) var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero entrance */
.js .hero-copy > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.js .hero-visual {
    opacity: 0;
    transform: translateY(20px) scale(.985);
    transition: opacity .9s var(--ease-out) .22s, transform .9s var(--ease-out) .22s;
}

.js body.is-ready .hero-copy > * {
    opacity: 1;
    transform: translateY(0);
}

.js body.is-ready .hero-copy > :nth-child(1) { transition-delay: .05s; }
.js body.is-ready .hero-copy > :nth-child(2) { transition-delay: .11s; }
.js body.is-ready .hero-copy > :nth-child(3) { transition-delay: .18s; }
.js body.is-ready .hero-copy > :nth-child(4) { transition-delay: .25s; }
.js body.is-ready .hero-copy > :nth-child(5) { transition-delay: .32s; }

.js body.is-ready .hero-visual {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Back to top */
.back-to-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 45;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--gold-light);
    border: 1px solid rgba(217,194,122,.18);
    border-radius: 14px;
    background: rgba(7,22,37,.82);
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.94);
    transition: opacity .25s ease, visibility .25s ease, transform .25s var(--ease-out), border-color .25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    border-color: rgba(217,194,122,.36);
    transform: translateY(-3px) scale(1);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Desktop-only featured pricing lift */
@media (min-width: 861px) {
    .pricing-card-featured {
        transform: translateY(-12px);
    }

    .pricing-card-featured:hover {
        transform: translateY(-19px);
    }
}

@media (max-width: 1080px) {
    .visual-frame {
        --tilt-x: 0deg;
        --tilt-y: 0deg;
        transform: translateY(var(--lift));
    }

    .floating-note-two {
        left: -8px;
    }
}

@media (max-width: 860px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: grid;
    }

    .header-actions {
        gap: 7px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-copy {
        max-width: 680px;
        margin-inline: auto;
    }

    .hero h1 {
        max-width: 760px;
        margin-inline: auto;
    }

    .hero-trust::before {
        right: 50%;
        transform: translateX(50%);
    }

    .visual-frame {
        transform: none;
    }

    .floating-note-two {
        left: 0;
        bottom: 62px;
    }
}

@media (max-width: 620px) {
    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-copy {
        gap: 7px;
    }

    .header-cta {
        display: none;
    }

    .mobile-nav-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        grid-template-columns: 1fr minmax(0, 88vw);
    }

    .mobile-menu-panel {
        padding: 20px 17px 24px;
    }

    .section {
        padding: 88px 0;
    }

    .hero {
        padding-top: 54px;
        padding-bottom: 84px;
    }

    .eyebrow {
        font-size: .77rem;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12.4vw, 3.25rem);
        line-height: 1.25;
    }

    .hero-lead {
        line-height: 1.95;
    }

    .visual-frame {
        border-radius: 28px;
    }

    .visual-topbar {
        padding-inline: 16px;
    }

    .connection-quality {
        padding-inline: 12px;
    }

    .floating-note-two {
        display: none;
    }

    .floating-note-one {
        right: 3px;
        top: 20px;
    }

    .feature-card {
        min-height: 255px;
        padding: 25px;
    }

    .billing-switch {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        margin-bottom: 48px;
    }

    .pricing-card {
        padding: 25px;
    }

    .pricing-card-featured {
        box-shadow: 0 24px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(245,231,181,.09);
    }

    .cta-card::after {
        width: 240px;
        height: 240px;
    }

    .back-to-top {
        left: 14px;
        bottom: 14px;
        width: 43px;
        height: 43px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eyebrow-dot,
    .secure-pill i,
    .status-dot,
    .ping-chip,
    .quality-track span {
        animation: none !important;
    }

    .js .reveal,
    .js .hero-copy > *,
    .js .hero-visual {
        opacity: 1 !important;
        transform: none !important;
    }

    .button::after {
        display: none;
    }
}
