/* ========================================
   WILDBORIS — ARCANE STYLE LANDING PAGE
   ======================================== */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
    --bg-deep: #0a0614;
    --bg-dark: #110b1f;
    --bg-card: #16102a;
    --bg-card-hover: #1e1538;
    
    --blue: #00d4ff;
    --blue-dim: rgba(0, 212, 255, 0.15);
    --purple: #7b2ff7;
    --purple-dim: rgba(123, 47, 247, 0.15);
    --pink: #ff2d6f;
    --pink-dim: rgba(255, 45, 111, 0.15);
    --gold: #c8aa6e;
    --gold-dim: rgba(200, 170, 110, 0.15);
    
    --text-primary: #e8e4f0;
    --text-secondary: #8b82a3;
    --text-dim: #5a5272;
    
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --font-graffiti: 'Rubik Spray Paint', cursive;
    
    --container-max: 1200px;
    --section-pad: 120px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}

/* Selection */
::selection {
    background: var(--purple);
    color: white;
}

/* --- PARTICLE CANVAS --- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- TEXT UTILITIES --- */
.text-glow {
    color: var(--blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2);
}

.text-accent {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(200, 170, 110, 0.4);
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 6, 20, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 47, 247, 0.2);
    padding: 10px 0;
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-hex {
    width: 40px;
    height: 40px;
}

.logo-icon {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--blue);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(123, 47, 247, 0.3);
}

.btn-nav:hover {
    box-shadow: 0 0 30px rgba(123, 47, 247, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 6, 20, 0.98);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.mobile-cta {
    margin-top: 16px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Hex Grid Background */
.hex-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, rgba(123, 47, 247, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(123, 47, 247, 0.03) 87.5%),
        linear-gradient(150deg, rgba(123, 47, 247, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(123, 47, 247, 0.03) 87.5%),
        linear-gradient(30deg, rgba(123, 47, 247, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(123, 47, 247, 0.03) 87.5%),
        linear-gradient(150deg, rgba(123, 47, 247, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(123, 47, 247, 0.03) 87.5%),
        linear-gradient(60deg, rgba(0, 212, 255, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(0, 212, 255, 0.02) 75%),
        linear-gradient(60deg, rgba(0, 212, 255, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(0, 212, 255, 0.02) 75%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.6;
}

/* Graffiti Text */
.graffiti {
    position: absolute;
    font-family: var(--font-graffiti);
    opacity: 0.06;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.graffiti-1 {
    font-size: 18vw;
    top: 5%;
    right: -5%;
    color: var(--purple);
    transform: rotate(-12deg);
}

.graffiti-2 {
    font-size: 12vw;
    bottom: 10%;
    left: -3%;
    color: var(--blue);
    transform: rotate(8deg);
}

.graffiti-3 {
    font-size: 25vw;
    bottom: -5%;
    right: 10%;
    color: var(--pink);
    transform: rotate(-5deg);
}

/* Smoke Effects */
.smoke {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: smokeDrift 20s ease-in-out infinite;
}

.smoke-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
}

.smoke-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes smokeDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 10px) scale(0.95); }
}

/* Gears */
.gear {
    position: absolute;
    opacity: 0.5;
    z-index: 0;
}

.gear-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: gearRotate 60s linear infinite;
}

.gear-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 3%;
    animation: gearRotate 45s linear infinite reverse;
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Content */
.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease 0.2s both;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--blue);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--blue);
}

/* Hero Title */
.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.4s both;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    position: relative;
}

.title-line-1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    color: var(--text-primary);
    -webkit-text-stroke: 2px var(--text-primary);
    paint-order: stroke fill;
}

.title-line-2 {
    font-size: clamp(4rem, 11vw, 7rem);
    background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

/* Glitch Effect on Hover */
.title-line-2:hover {
    animation: glitch 0.3s ease;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
    100% { transform: translate(0); }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.7s both;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.8s both;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    z-index: 0;
    transition: opacity 0.4s ease;
}

.btn-primary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60px;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    z-index: 1;
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 47, 247, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border: 1px solid rgba(139, 130, 163, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 1s ease 1s both;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--purple), transparent);
}

/* Hero Visual (Hextech Orb) */
.hero-visual {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
}

.hextech-orb {
    width: 350px;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orbSpin linear infinite;
}

.orb-ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 212, 255, 0.2);
    animation-duration: 20s;
}

.orb-ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(123, 47, 247, 0.25);
    animation-duration: 15s;
    animation-direction: reverse;
    border-style: dashed;
}

.orb-ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(200, 170, 110, 0.2);
    animation-duration: 10s;
}

@keyframes orbSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orb-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), rgba(123, 47, 247, 0.2), rgba(10, 6, 20, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(123, 47, 247, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(123, 47, 247, 0.2), inset 0 0 30px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 60px rgba(0, 212, 255, 0.5), 0 0 120px rgba(123, 47, 247, 0.3), inset 0 0 40px rgba(0, 212, 255, 0.3); }
}

.orb-face {
    position: relative;
    width: 60px;
    height: 40px;
}

.eye {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 15px var(--blue), 0 0 30px var(--blue);
    animation: eyeBlink 4s ease-in-out infinite;
}

.eye-left { left: 6px; }
.eye-right { right: 6px; }

@keyframes eyeBlink {
    0%, 45%, 55%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

.mouth {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--gold);
}

/* Orb Particles */
.orb-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--blue);
    animation: orbParticle 5s linear infinite;
}

.orb-particles span:nth-child(1) { animation-delay: 0s; top: 10%; left: 50%; }
.orb-particles span:nth-child(2) { animation-delay: 0.6s; top: 50%; left: 95%; }
.orb-particles span:nth-child(3) { animation-delay: 1.2s; top: 90%; left: 50%; }
.orb-particles span:nth-child(4) { animation-delay: 1.8s; top: 50%; left: 5%; }
.orb-particles span:nth-child(5) { animation-delay: 2.4s; top: 20%; left: 85%; background: var(--purple); box-shadow: 0 0 6px var(--purple); }
.orb-particles span:nth-child(6) { animation-delay: 3s; top: 80%; left: 15%; background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.orb-particles span:nth-child(7) { animation-delay: 3.6s; top: 30%; left: 10%; background: var(--pink); box-shadow: 0 0 6px var(--pink); }
.orb-particles span:nth-child(8) { animation-delay: 4.2s; top: 70%; left: 90%; }

@keyframes orbParticle {
    0% { opacity: 0; transform: scale(0) translate(0, 0); }
    20% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0) translate(var(--dx, 20px), var(--dy, -30px)); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 60px; }
}

.scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-dim);
}

/* --- ANIMATION UTILITY --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--section-pad) 0;
    position: relative;
    background: 
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.section-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Industrial Pipes */
.pipe {
    position: absolute;
    background: linear-gradient(90deg, rgba(200, 170, 110, 0.05), rgba(200, 170, 110, 0.02));
    border-radius: 4px;
}

.pipe-1 {
    width: 3px;
    height: 100%;
    left: 10%;
    top: 0;
}

.pipe-2 {
    width: 3px;
    height: 100%;
    right: 15%;
    top: 0;
}

.pipe-3 {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--purple);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(123, 47, 247, 0.1);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.feature-card-large {
    grid-column: span 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    color: var(--blue);
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-count {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
    padding: var(--section-pad) 0;
    position: relative;
    background: var(--bg-deep);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-hex {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.step-num-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Step Visuals */
.step-visual {
    display: flex;
    justify-content: center;
}

.chat-bubble {
    display: flex;
    gap: 12px;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 12px;
    padding: 16px;
    max-width: 320px;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    color: var(--purple);
    flex-shrink: 0;
}

.chat-avatar svg {
    width: 100%;
    height: 100%;
}

.chat-text {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--blue);
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Processing Visual */
.processing-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-node {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.process-node.active {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    animation: nodeProcess 3s ease-in-out infinite;
}

@keyframes nodeProcess {
    0%, 100% { border-color: var(--blue); color: var(--blue); }
    33% { border-color: var(--purple); color: var(--purple); }
    66% { border-color: var(--gold); color: var(--gold); }
}

.process-arrow {
    color: var(--text-dim);
    font-size: 1.2rem;
}

/* Result Visual */
.result-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 280px;
}

.result-bar {
    height: 32px;
    background: rgba(123, 47, 247, 0.1);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.result-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 6px;
    opacity: 0.3;
}

.result-bar span {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 1px;
    line-height: 32px;
    padding-left: 12px;
    color: var(--text-primary);
}

/* Step Connector */
.step-connector {
    display: flex;
    justify-content: center;
    padding: 0 0 0 40px;
    position: relative;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--purple), rgba(123, 47, 247, 0.1));
}

.connector-pulse {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ========================================
   TOOLS SECTION
   ======================================== */
.tools-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.tools-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tool-category {
    background: var(--bg-card);
    border: 1px solid rgba(123, 47, 247, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}

.tool-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.tool-category:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: var(--bg-card-hover);
}

.tool-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tool-cat-icon {
    width: 36px;
    height: 36px;
    color: var(--blue);
    padding: 6px;
    background: var(--blue-dim);
    border-radius: 8px;
}

.tool-cat-icon.pink {
    color: var(--pink);
    background: var(--pink-dim);
}

.tool-cat-icon.gold {
    color: var(--gold);
    background: var(--gold-dim);
}

.tool-cat-icon svg {
    width: 100%;
    height: 100%;
}

.tool-cat-header h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.tool-cat-count {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-tag {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(123, 47, 247, 0.08);
    border: 1px solid rgba(123, 47, 247, 0.1);
    border-radius: 20px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.tool-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ========================================
   SECURITY SECTION
   ======================================== */
.security-section {
    padding: var(--section-pad) 0;
    background: var(--bg-deep);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.security-content {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

.security-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.security-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sec-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sec-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    flex-shrink: 0;
    padding: 8px;
    background: var(--gold-dim);
    border-radius: 8px;
}

.sec-icon svg {
    width: 100%;
    height: 100%;
}

.sec-feature h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sec-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Shield Visual */
.security-visual {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.security-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.shield-container {
    position: relative;
    width: 200px;
    height: 240px;
}

.shield-svg {
    width: 100%;
    height: 100%;
}

.shield-pulse {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(123, 47, 247, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(123, 47, 247, 0.3);
}

.price-card-featured {
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.15) 0%, var(--bg-card) 100%);
    border-color: var(--purple);
    transform: scale(1.05);
    z-index: 2;
}

.price-card-featured.visible {
    transform: scale(1.05);
}

.price-card-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--blue));
    color: white;
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(123, 47, 247, 0.4);
}

.price-tier {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.price-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price-amount {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
}

.price-card-featured .price-value {
    background: linear-gradient(135deg, var(--blue), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: var(--blue);
    font-size: 0.8rem;
}

.check.gold {
    color: var(--gold);
}

.btn-price {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    border: 1px solid rgba(123, 47, 247, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-price:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.btn-price-gold {
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border: none;
    color: white;
}

.btn-price-gold:hover {
    color: white;
    box-shadow: 0 8px 30px rgba(123, 47, 247, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-pad) 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(123, 47, 247, 0.15), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.1), transparent 60%);
}

.cta-graffiti {
    font-family: var(--font-graffiti);
    font-size: clamp(4rem, 12vw, 10rem);
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 45, 111, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    margin-bottom: 48px;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1rem;
}

.cta-channels {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.channel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.channel svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 48px 0;
    border-top: 1px solid rgba(123, 47, 247, 0.1);
    background: var(--bg-deep);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-quote {
    font-style: italic;
    margin-top: 4px;
    color: var(--purple) !important;
    font-size: 0.75rem !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 1200px) {
    .hero {
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 750px;
    }
    
    .hero-visual {
        opacity: 0.3;
    }
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .tools-showcase {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .price-card-featured {
        transform: none;
    }
    
    .price-card-featured.visible {
        transform: none;
    }
    
    .price-card-featured:hover {
        transform: translateY(-6px);
    }
    
    .cta-channels {
        gap: 20px;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copy {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
}

/* --- ELEMENT ENTRANCE ANIMATIONS --- */
[data-aos] {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
