* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0e0f17; }
::-webkit-scrollbar-thumb { background: var(--accent-red); border-radius: 4px; }

:root {
    --bg-dark: #0e0f17;
    --bg-deep: #12131e;
    --bg-surface: #171827;
    --bg-card: rgba(23, 24, 39, 0.75);
    --bg-card-hover: rgba(30, 32, 51, 0.85);
    --text-primary: #ffffff;
    --text-secondary: #a0a5ba;
    --text-muted: #646982;
    --accent-red: #ff3b4b;
    --accent-red-bright: #ff3847;
    --accent-red-light: #ff5c6a;
    --accent-red-glow: rgba(255, 59, 75, 0.35);
    --accent-red-subtle: rgba(255, 59, 75, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(255, 59, 75, 0.25);
    --gradient-red: linear-gradient(135deg, #ff3b4b 0%, #e62e3d 100%);
    --gradient-red-soft: linear-gradient(135deg, rgba(255, 59, 75, 0.2) 0%, rgba(255, 59, 75, 0.05) 100%);
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
}
.orb-1 {
    top: -10%; left: 15%; width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 70%);
}
.orb-2 {
    top: 45%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent-red-light) 0%, transparent 70%);
    opacity: 0.2;
}
.orb-3 {
    bottom: 5%; left: 20%; width: 550px; height: 550px;
    background: radial-gradient(circle, var(--accent-red-bright) 0%, transparent 70%);
    opacity: 0.18;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 72px;
    background: rgba(14, 15, 23, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
    height: 62px;
    background: rgba(14, 15, 23, 0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border-bottom-color: var(--border-glow);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-brand-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px var(--accent-red-glow));
    transition: transform 0.3s var(--ease-out);
}
.nav-brand-img:hover {
    transform: scale(1.08) rotate(-3deg);
}
.nav-brand-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav-brand-title span { color: var(--accent-red); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    padding: 0.4rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent-red);
    transition: width 0.3s var(--ease-out);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-red-bright);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.lang-switch {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.04);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid var(--border-subtle);
}
.lang-btn {
    background: none; border: none;
    color: var(--text-muted);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-mono);
    min-height: 32px;
}
.lang-btn.active {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 0 15px var(--accent-red-glow);
}

.btn-launch {
    background: var(--gradient-red);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px var(--accent-red-glow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
}
.btn-launch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 59, 75, 0.45);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.4rem;
    min-height: 44px;
    min-width: 44px;
}
.mobile-nav-drawer {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(14, 15, 23, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}
.mobile-nav-drawer.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav-drawer a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
.mobile-nav-drawer a:hover {
    color: var(--accent-red);
}
.mobile-nav-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 2rem 100px;
    z-index: 10;
}
.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-red-subtle);
    border: 1px solid var(--border-glow);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-red-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
}
.hero-tag .pulse {
    width: 8px; height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-red);
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 75, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 59, 75, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 59, 75, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #ff5c6a 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 400;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}
.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1rem;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    text-align: center;
    transition: all 0.3s;
}
.metric-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.metric-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    display: block;
}
.metric-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.btn-main {
    background: var(--gradient-red);
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 25px var(--accent-red-glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
}
.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 59, 75, 0.45);
}
.btn-outline {
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
}
.btn-outline:hover {
    border-color: var(--border-glow);
    background: var(--accent-red-subtle);
    color: var(--accent-red-light);
    transform: translateY(-3px);
}

.shield-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cyber-sphere-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
    background: radial-gradient(circle, rgba(255, 59, 75, 0.08) 0%, transparent 70%);
    box-shadow: 0 0 60px rgba(255, 59, 75, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-center-logo {
    position: absolute;
    width: 140px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(0 0 30px var(--accent-red-glow));
    animation: pulseHeroLogo 4s ease-in-out infinite alternate;
}
@keyframes pulseHeroLogo {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}
.cyber-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.radar-pulse {
    position: absolute;
    inset: -20px;
    border: 1px dashed rgba(255, 59, 75, 0.3);
    border-radius: 50%;
    animation: radarRotate 40s linear infinite;
}
@keyframes radarRotate { to { transform: rotate(360deg); } }

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(18, 19, 30, 0.9);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.8rem 0;
    z-index: 10;
    position: relative;
}
.marquee-content {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}
.marquee-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.marquee-tag i { color: var(--accent-red); font-size: 0.5rem; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.section {
    position: relative;
    padding: 120px 2rem;
    z-index: 10;
}
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}
.section-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    background: var(--accent-red-subtle);
    border: 1px solid var(--border-glow);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-title .text-red { color: var(--accent-red); }
.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}
.suite-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.suite-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s;
}
.suite-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255, 59, 75, 0.15);
}
.suite-card:hover::before { opacity: 1; }
.suite-icon {
    width: 54px; height: 54px;
    background: var(--gradient-red-soft);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}
.suite-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.suite-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}
.method-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(16px);
}
.method-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent-red-subtle);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.2rem;
}
.method-item {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.method-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.method-name {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.method-name i { color: var(--accent-red); font-size: 0.75rem; }
.method-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
    line-height: 1.5;
}

.crypto-card-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    backdrop-filter: blur(20px);
}
.crypto-visual-box {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    background: rgba(14, 15, 23, 0.9);
    border: 1px solid var(--border-glow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.crypto-nodes-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 75, 0.15) 0%, transparent 70%);
}
.crypto-icon-orbit {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.crypto-icon-badge {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-red);
    box-shadow: 0 0 20px var(--accent-red-glow);
    animation: floatBadge 3s ease-in-out infinite alternate;
}
.crypto-icon-badge:nth-child(2) { animation-delay: 0.5s; }
.crypto-icon-badge:nth-child(3) { animation-delay: 1s; }
@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.crypto-coins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.coin-pill {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.coin-pill:hover {
    border-color: var(--border-glow);
    color: var(--text-primary);
    background: var(--accent-red-subtle);
}
.coin-pill i { color: var(--accent-red); }

.plans-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 40px;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    box-shadow: 0 4px 20px var(--accent-red-glow);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    max-width: 1350px;
    margin: 0 auto;
}
.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
    backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.plan-card.vip {
    border-color: var(--border-glow);
    background: linear-gradient(180deg, rgba(255, 59, 75, 0.05) 0%, rgba(23, 24, 39, 0.85) 100%);
}
.plan-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(255, 59, 75, 0.2);
}
.plan-badge {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--gradient-red);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px var(--accent-red-glow);
}
.plan-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.plan-price {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.plan-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}
.plan-features-list {
    list-style: none;
    margin-bottom: 2rem;
}
.plan-features-list li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features-list li i {
    color: var(--accent-red);
    font-size: 0.75rem;
}
.plan-btn {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    min-height: 44px;
}
.plan-card.vip .plan-btn, .plan-btn:hover {
    background: var(--gradient-red);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 4px 20px var(--accent-red-glow);
}

.checkout-widget {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.checkout-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.crypto-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.crypto-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 44px;
}
.crypto-btn:hover {
    border-color: var(--accent-red);
    background: var(--accent-red-subtle);
    color: var(--text-primary);
}

.matrix-wrap {
    max-width: 1050px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.matrix-table th {
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--border-subtle);
}
.matrix-table td {
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.matrix-table th.brand-col, .matrix-table td.brand-col {
    background: rgba(255, 59, 75, 0.05);
    border-left: 1px solid var(--border-glow);
    border-right: 1px solid var(--border-glow);
}
.matrix-table th.brand-col {
    color: var(--accent-red);
    font-weight: 700;
}
.check-yes { color: var(--accent-red); font-weight: 700; }
.check-no { color: var(--text-muted); opacity: 0.4; }

.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.faq-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-box:hover { border-color: var(--border-glow); }
.faq-header {
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.92rem;
    min-height: 52px;
}
.faq-header i {
    color: var(--accent-red);
    transition: transform 0.3s;
}
.faq-box.active .faq-header i { transform: rotate(180deg); }
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-box.active .faq-body {
    max-height: 400px;
    padding: 0 1.8rem 1.5rem;
}
.faq-body p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 2rem 40px;
    position: relative;
    z-index: 10;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}
.footer-brand-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 1.5rem;
}
.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.4rem;
}
.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-red); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

a.lang-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-center-mark {
    position: absolute;
    width: 140px;
    height: 140px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-red);
    filter: drop-shadow(0 0 30px var(--accent-red-glow));
    animation: pulseHeroLogo 4s ease-in-out infinite alternate;
}

a.plan-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.nav-brand-img.is-hidden {
    display: none;
}

.hero .reserve-domains-notice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.hero .reserve-domains-copy strong { color: var(--text-primary); display: block; }
.hero .reserve-domains-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.hero .reserve-domains-list a {
    color: var(--accent-red-light);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
}

.gsap-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s var(--ease-out);
}
.gsap-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .navbar { padding: 0 1.8rem; }
    .nav-links { gap: 1.2rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .crypto-card-wrap { grid-template-columns: 1fr; padding: 2.2rem; gap: 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 1.2rem; height: 64px; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
    .hero { padding: 110px 1.2rem 60px; }
    .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .metric-card { padding: 1rem 0.6rem; }
    .metric-value { font-size: 1.3rem; }
    .cyber-sphere-frame { max-width: 280px; }
    .hero-center-logo { width: 90px; }
    .section { padding: 80px 1.2rem; }
    .methods-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .crypto-coins-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-main, .btn-outline { width: 100%; justify-content: center; }
    .plans-filter { flex-wrap: wrap; justify-content: center; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.7rem; }
    .checkout-widget { padding: 1.5rem 1rem; }
    .crypto-select-grid { grid-template-columns: repeat(2, 1fr); }
}
