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

:root {
    --bg: #030503;
    --bg-1: #070a07;
    --bg-2: #0b0f0b;
    --line: #1a231b;
    --line-2: #253026;
    --green: #00ff85;
    --green-2: #00d470;
    --green-3: #00a355;
    --green-soft: rgba(0, 255, 133, 0.12);
    --green-glow: rgba(0, 255, 133, 0.45);
    --white: #f5f8f5;
    --gray: #8f9b90;
    --gray-2: #5a655b;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html, body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    letter-spacing: -0.011em;
}

img { max-width: 100%; height: auto; display: block; }

/* ====== ФОН ====== */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 133, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 133, 0.028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.bg-noise {
    position: fixed;
    inset: 0;
    opacity: 0.022;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    pointer-events: none;
    z-index: 1;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.bg-orb-1 {
    width: 550px; height: 550px;
    top: -180px; left: -180px;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.16), transparent 70%);
    animation: orbFloat1 16s ease-in-out infinite;
}
.bg-orb-2 {
    width: 650px; height: 650px;
    top: 40%; right: -250px;
    background: radial-gradient(circle, rgba(0, 190, 100, 0.1), transparent 70%);
    animation: orbFloat2 20s ease-in-out infinite;
}
.bg-orb-3 {
    width: 500px; height: 500px;
    bottom: -200px; left: 20%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.08), transparent 70%);
    animation: orbFloat1 18s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(50px, -40px, 0); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-60px, 50px, 0); }
}

/* ====== PRELOADER ====== */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #050805 0%, #010201 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.75s var(--ease-out), visibility 0.75s var(--ease-out);
}
.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.loader-logo-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-logo-halo {
    position: absolute;
    inset: -35px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.35), transparent 62%);
    filter: blur(24px);
    animation: haloPulse 2.2s ease-in-out infinite;
}
.loader-logo-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 255, 133, 0.35);
    border-top-color: var(--green);
    animation: ringSpin 3s linear infinite;
}
.loader-logo {
    width: 118px;
    height: 118px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 133, 0.55);
    background: var(--bg-1);
    box-shadow:
        0 0 0 6px rgba(0, 255, 133, 0.05),
        0 0 50px rgba(0, 255, 133, 0.55),
        inset 0 0 25px rgba(0, 255, 133, 0.15);
    position: relative;
    z-index: 2;
    animation: logoScale 2.4s ease-in-out infinite;
}
@keyframes haloPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.18); }
}
@keyframes ringSpin {
    to { transform: rotate(360deg); }
}
@keyframes logoScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}
.loader-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    padding-left: 8px;
    background: linear-gradient(90deg, #ffffff 0%, #00ff85 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 2.8s linear infinite;
}
@keyframes shineText {
    to { background-position: 200% center; }
}
.loader-bar {
    width: 260px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.loader-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-3), var(--green));
    border-radius: 3px;
    box-shadow: 0 0 14px var(--green);
    transition: width 0.3s var(--ease-out);
}
.loader-percent {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--green);
    font-variant-numeric: tabular-nums;
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    animation: fadeDown 0.85s var(--ease-out) 0.2s both;
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 3, 0.72);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
    z-index: -1;
}
.header.scrolled::before {
    border-bottom-color: var(--line);
    background: rgba(3, 5, 3, 0.88);
}
.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.brand-logo-wrap {
    width: 42px; height: 42px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--green), var(--green-3), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 22px rgba(0, 255, 133, 0.35);
    transition: transform 0.6s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.brand:hover .brand-logo-wrap {
    transform: rotate(360deg) scale(1.06);
    box-shadow: 0 0 32px rgba(0, 255, 133, 0.6);
}
.brand-logo {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--bg);
    background: var(--bg-1);
}
.brand-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}
.brand-name::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav > a:not(.nav-btn) {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s var(--ease-out);
    position: relative;
    padding: 4px 0;
}
.nav > a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.35s var(--ease-out);
}
.nav > a:not(.nav-btn):hover { color: var(--green); }
.nav > a:not(.nav-btn):hover::after { width: 100%; }
.nav-btn {
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    color: var(--green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--green);
    position: relative;
    overflow: hidden;
    transition: color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    background: rgba(0, 255, 133, 0.04);
}
.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease-smooth);
    z-index: 0;
}
.nav-btn-text { position: relative; z-index: 2; }
.nav-btn:hover {
    color: var(--bg);
    box-shadow: 0 0 32px rgba(0, 255, 133, 0.5);
}
.nav-btn:hover::before { transform: translateY(0); }

/* MOBILE */
.mobile-toggle {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color 0.3s var(--ease-out);
}
.mobile-toggle span {
    width: 18px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
    background: rgba(3, 5, 3, 0.97);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; animation: fadeDown 0.35s var(--ease-out); }
.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}
.mobile-cta {
    text-align: center;
    background: var(--green) !important;
    color: var(--bg) !important;
    border-radius: var(--radius-sm);
    padding: 14px !important;
    margin-top: 6px;
    border: none !important;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 160px 30px 90px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: rgba(0, 255, 133, 0.04);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 44px;
    animation: fadeUp 0.9s var(--ease-out) 0.35s both;
    backdrop-filter: blur(10px);
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    animation: dotPulse 2s ease-in-out infinite;
}
.hero-logo-wrap {
    position: relative;
    width: 210px;
    height: 210px;
    margin: 0 auto 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s var(--ease-out) 0.45s both;
}
.hero-logo-halo {
    position: absolute;
    inset: -55px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.35), transparent 62%);
    filter: blur(38px);
    animation: haloPulse 3.5s ease-in-out infinite;
}
.hero-logo-orbit {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 255, 133, 0.32);
    animation: orbitSpin 22s linear infinite;
}
.orbit-dot {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 50%;
    box-shadow:
        0 0 12px var(--green),
        0 0 30px var(--green),
        0 0 50px rgba(0, 255, 133, 0.5);
}
@keyframes orbitSpin {
    to { transform: rotate(360deg); }
}
.hero-logo {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background: var(--bg-1);
    border: 3px solid rgba(0, 255, 133, 0.5);
    box-shadow:
        0 0 60px rgba(0, 255, 133, 0.5),
        0 0 130px rgba(0, 255, 133, 0.18),
        inset 0 0 30px rgba(0, 255, 133, 0.15);
    animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(34px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 28px;
    line-height: 1;
    animation: fadeUp 1s var(--ease-out) 0.55s both;
}
.title-line {
    display: inline-block;
    color: var(--white);
}
.title-line.green {
    background: linear-gradient(120deg, #00ff85 0%, #00d470 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 32px rgba(0, 255, 133, 0.55));
}
.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.75;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto 46px;
    animation: fadeUp 1s var(--ease-out) 0.65s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
    animation: fadeUp 1s var(--ease-out) 0.75s both;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #00ff85, #00d470);
    color: var(--bg);
    box-shadow:
        0 10px 30px rgba(0, 255, 133, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transition: left 0.85s var(--ease-out);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(0, 255, 133, 0.6);
}
.btn-primary:hover::before { left: 120%; }
.btn-primary svg { transition: transform 0.4s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    border: 1px solid var(--line-2);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(0, 255, 133, 0.18);
    background: rgba(0, 255, 133, 0.04);
}
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
    padding: 34px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(0, 255, 133, 0.03) 0%, rgba(0, 255, 133, 0.005) 100%);
    backdrop-filter: blur(12px);
    animation: fadeUp 1s var(--ease-out) 0.85s both;
    position: relative;
    overflow: hidden;
}
.hero-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.55;
}
.stat { text-align: center; }
.stat-value {
    font-size: 34px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.6px;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 11px;
    color: var(--gray-2);
    letter-spacing: 2.2px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}

/* ====== MARQUEE ====== */
.marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(0, 255, 133, 0.015);
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 44px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gray-2);
    text-transform: uppercase;
    transition: color 0.3s var(--ease-out);
}
.marquee-track .dot {
    width: 5px; height: 5px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    opacity: 0.65;
    flex-shrink: 0;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ====== SECTIONS ====== */
.section-head {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    padding: 6px 16px;
    border: 1px solid rgba(0, 255, 133, 0.3);
    border-radius: 50px;
    background: rgba(0, 255, 133, 0.05);
    margin-bottom: 22px;
}
.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -1.3px;
    margin-bottom: 16px;
    line-height: 1.15;
    background: linear-gradient(120deg, #ffffff 0%, #d8ffe8 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-head p {
    color: var(--gray);
    font-size: 15px;
}

/* ====== STEPS ====== */
.steps {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 110px 30px 40px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.step {
    position: relative;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}
.step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.5;
    transition: opacity 0.4s var(--ease-out);
}
.step::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.14), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}
.step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 133, 0.45);
    box-shadow: 0 28px 65px rgba(0, 255, 133, 0.12);
}
.step:hover::before { opacity: 1; }
.step:hover::after { opacity: 1; }
.step-num {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #00ff85 0%, #00a355 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 22px rgba(0, 255, 133, 0.4));
    display: inline-block;
}
.step h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.65;
}

/* ====== FEATURES ====== */
.features {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 110px 30px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature {
    position: relative;
    padding: 34px 30px;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}
.feature::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 133, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    pointer-events: none;
}
.feature:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 133, 0.4);
    box-shadow: 0 28px 65px rgba(0, 255, 133, 0.1);
}
.feature:hover::after { opacity: 1; }
.feature-num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green);
    padding: 5px 13px;
    border: 1px solid rgba(0, 255, 133, 0.3);
    border-radius: 8px;
    background: rgba(0, 255, 133, 0.05);
    display: inline-block;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.feature-body { position: relative; z-index: 2; }
.feature h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: -0.3px;
    transition: color 0.35s var(--ease-out);
}
.feature:hover h3 { color: var(--green); }
.feature p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.65;
}

/* ====== PRICING ====== */
.pricing {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px 110px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 44px 36px 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.4;
    transition: opacity 0.4s var(--ease-out);
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 133, 0.45);
    box-shadow: 0 32px 75px rgba(0, 255, 133, 0.12);
}
.price-card:hover::before { opacity: 1; }
.price-card.featured {
    border-color: rgba(0, 255, 133, 0.55);
    box-shadow:
        0 0 60px rgba(0, 255, 133, 0.18),
        inset 0 0 60px rgba(0, 255, 133, 0.02);
}
.price-card.featured:hover {
    box-shadow:
        0 32px 85px rgba(0, 255, 133, 0.22),
        inset 0 0 60px rgba(0, 255, 133, 0.03);
}
.price-label {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg);
    background: linear-gradient(135deg, #00ff85, #00d470);
    padding: 6px 13px;
    border-radius: 50px;
    box-shadow: 0 0 22px rgba(0, 255, 133, 0.5);
    z-index: 3;
}
.price-head {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}
.price-tag {
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
    font-weight: 700;
}
.price-value {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 16px;
    line-height: 1;
}
.price-num {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -3px;
    line-height: 1;
}
.price-currency {
    font-size: 28px;
    color: var(--green);
    font-weight: 800;
    margin-top: 7px;
    filter: drop-shadow(0 0 12px rgba(0, 255, 133, 0.5));
}
.price-note {
    font-size: 14px;
    color: var(--gray);
}
.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}
.price-list li {
    color: var(--white);
    font-size: 14px;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}
.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 255, 133, 0.1);
    border: 1px solid rgba(0, 255, 133, 0.5);
}
.price-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    width: 5px;
    height: 8px;
    border-right: 1.6px solid var(--green);
    border-bottom: 1.6px solid var(--green);
    transform: rotate(45deg);
}
.price-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--line-2);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.price-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0, 255, 133, 0.05);
    transform: translateY(-2px);
}
.price-btn-primary {
    background: linear-gradient(135deg, #00ff85, #00d470);
    color: var(--bg);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 255, 133, 0.35);
}
.price-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.85s var(--ease-out);
}
.price-btn-primary:hover {
    color: var(--bg);
    background: linear-gradient(135deg, #1fff95, #00e07a);
    box-shadow: 0 16px 45px rgba(0, 255, 133, 0.6);
    transform: translateY(-3px);
}
.price-btn-primary:hover::before { left: 120%; }

/* ====== FAQ ====== */
.faq {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 30px 110px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: linear-gradient(160deg, var(--bg-1) 0%, #050805 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.faq-item[open] {
    border-color: rgba(0, 255, 133, 0.4);
    box-shadow: 0 18px 45px rgba(0, 255, 133, 0.08);
}
.faq-item summary {
    list-style: none;
    padding: 26px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 133, 0.4);
    background: rgba(0, 255, 133, 0.05);
    transition: all 0.35s var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
}
.faq-icon::before {
    width: 10px; height: 1.6px;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 1.6px; height: 10px;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.faq-content {
    padding: 0 28px 26px;
    color: var(--gray);
    font-size: 14.5px;
    line-height: 1.75;
    animation: faqFade 0.4s var(--ease-out);
}
@keyframes faqFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== CTA ====== */
.cta {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 30px 120px;
}
.cta-box {
    position: relative;
    padding: 76px 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--bg-1) 0%, #040604 100%);
    border: 1px solid var(--line);
    text-align: center;
    overflow: hidden;
}
.cta-halo {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.22), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
    animation: haloPulse 4s ease-in-out infinite;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.6;
}
.cta-content { position: relative; z-index: 2; }
.cta-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 22px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 255, 133, 0.3);
    border-radius: 50px;
    background: rgba(0, 255, 133, 0.05);
}
.cta-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.3px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta-box p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
}
.mirror-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 21px 65px;
    border-radius: 60px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg);
    background: linear-gradient(135deg, #00ff85 0%, #00d470 100%);
    box-shadow:
        0 12px 40px rgba(0, 255, 133, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}
.mirror-btn-icon { display: flex; transition: transform 0.4s var(--ease-out); }
.mirror-btn-text { position: relative; z-index: 2; }
.mirror-btn-shine {
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transition: left 0.9s var(--ease-out);
}
.mirror-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 60px;
    background: linear-gradient(135deg, var(--green), transparent, var(--green));
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.5s var(--ease-out);
}
.mirror-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 24px 65px rgba(0, 255, 133, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.mirror-btn:hover::after { opacity: 0.85; }
.mirror-btn:hover .mirror-btn-shine { left: 120%; }
.mirror-btn:hover .mirror-btn-icon {
    transform: translateX(-4px) rotate(-8deg);
}
.mirror-btn:active { transform: translateY(-1px) scale(1); }

/* ====== FOOTER ====== */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
    padding: 28px 32px;
    background: rgba(3, 5, 3, 0.6);
    backdrop-filter: blur(10px);
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.3px;
}
.footer-logo-wrap {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 133, 0.4);
    box-shadow: 0 0 14px rgba(0, 255, 133, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.footer-meta {
    font-size: 12px;
    color: var(--gray-2);
    letter-spacing: 1px;
}
.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-out);
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 50px;
}
.footer-links a:hover {
    color: var(--green);
    border-color: rgba(0, 255, 133, 0.4);
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green-2), var(--green-3));
    border-radius: 10px;
    border: 2px solid var(--bg);
    transition: background 0.3s var(--ease-out);
}
::-webkit-scrollbar-thumb:hover { background: var(--green); }
* { scrollbar-width: thin; scrollbar-color: var(--green-2) var(--bg); }

::selection { background: rgba(0, 255, 133, 0.3); color: var(--white); }
::-moz-selection { background: rgba(0, 255, 133, 0.3); color: var(--white); }

/* ====== CURSOR GLOW ====== */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.1), transparent 60%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
    will-change: transform;
}
body.loaded .cursor-glow { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ====== REVEAL ====== */
[data-reveal] {
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity 1s var(--ease-out),
        transform 1s var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== BACK TO TOP ====== */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(0, 255, 133, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s var(--ease-out);
    z-index: 90;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.back-top::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: -1;
    filter: blur(8px);
}
.back-top:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 20px 50px rgba(0, 255, 133, 0.7);
}
.back-top:hover::before { opacity: 1; }
.back-top:active { transform: translateY(-1px) scale(0.95); }

/* ====== BODY LOADED ====== */
body:not(.loaded) main,
body:not(.loaded) footer {
    opacity: 0;
}
main, footer {
    transition: opacity 0.7s var(--ease-out) 0.15s;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
    .nav { display: none; }
    .mobile-toggle { display: flex; }
    .header-inner { padding: 14px 20px; }

    .hero { padding: 130px 20px 70px; }
    .hero-logo-wrap { width: 165px; height: 165px; margin-bottom: 34px; }
    .hero-logo { width: 148px; height: 148px; }
    .hero-logo-orbit { inset: -6px; }
    .hero-logo-halo { inset: -38px; }
    .hero-title { letter-spacing: -1.5px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }

    .hero-stats { gap: 24px; padding: 28px 16px; }
    .stat { min-width: 60px; }
    .stat-value { font-size: 26px; }
    .stat-divider { display: none; }

    .steps { padding: 80px 20px 20px; }
    .steps-grid { grid-template-columns: 1fr; }

    .features { padding: 80px 20px; }
    .features-grid { grid-template-columns: 1fr; gap: 14px; }

    .pricing { padding: 20px 20px 80px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-num { font-size: 58px; }
    .price-card { padding: 36px 26px 28px; }

    .faq { padding: 20px 20px 80px; }
    .faq-item summary { padding: 20px 22px; font-size: 15px; }
    .faq-content { padding: 0 22px 22px; font-size: 14px; }

    .cta { padding: 0 20px 90px; }
    .cta-box { padding: 54px 24px; border-radius: var(--radius-lg); }
    .mirror-btn {
        padding: 18px 44px;
        font-size: 15px;
        letter-spacing: 2px;
        width: 100%;
    }
    .footer-inner { justify-content: center; text-align: center; }
    .marquee-track { gap: 28px; }
    .marquee-track span { font-size: 13px; letter-spacing: 3px; }
    .back-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
