@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: screen;
}

/* Main cursor - geometric diamond shape */
.cursor-main {
    width: 24px;
    height: 24px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-diamond {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #dc143c 100%);
    box-shadow:
        0 0 20px rgba(255, 107, 53, 0.6),
        0 0 40px rgba(255, 69, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: cursorBreathing 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes cursorBreathing {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 107, 53, 0.6),
            0 0 40px rgba(255, 69, 0, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 107, 53, 0.8),
            0 0 60px rgba(255, 69, 0, 0.6),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

/* Trailing follower cursor */
.cursor-follower {
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 3px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

/* Orbiting particles */
.cursor-orbit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
    animation: orbit 2s linear infinite;
    opacity: 0.8;
}

.cursor-orbit:nth-child(2) {
    animation-delay: -0.5s;
}

.cursor-orbit:nth-child(3) {
    animation-delay: -1s;
}

.cursor-orbit:nth-child(4) {
    animation-delay: -1.5s;
}

@keyframes orbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(30px) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Hover state - expand and glow */
.cursor-hover .cursor-main {
    width: 32px;
    height: 32px;
}

.cursor-hover .cursor-diamond {
    background: linear-gradient(135deg, #ff8c42 0%, #ff4500 50%, #ff1744 100%);
    box-shadow:
        0 0 30px rgba(255, 140, 66, 0.8),
        0 0 60px rgba(255, 69, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 140, 66, 0.5);
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
}

/* Click state - pulse ripple */
.cursor-clicking .cursor-main {
    width: 20px;
    height: 20px;
}

.cursor-clicking .cursor-follower {
    width: 50px;
    height: 50px;
}

/* Click ripple effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    animation: rippleEffect 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Text/Link hover - color shift to deeper red */
.cursor-text .cursor-diamond {
    background: linear-gradient(135deg, #ff3c00 0%, #e91e63 50%, #c62828 100%);
    box-shadow:
        0 0 30px rgba(255, 60, 0, 0.8),
        0 0 60px rgba(233, 30, 99, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.cursor-text .cursor-follower {
    border-color: rgba(255, 60, 0, 0.5);
    background: radial-gradient(circle, rgba(255, 60, 0, 0.15) 0%, transparent 70%);
}

/* Mobile - hide custom cursor */
@media (max-width: 768px),
(hover: none) {
    .custom-cursor {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }
}

body {
    background: #000000;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-top: 0;
    touch-action: pan-y;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

a,
button {
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3);
    touch-action: manipulation;
}

/* ========== BACKGROUND ANIMATIONS ========== */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6), transparent);
    top: -250px;
    left: -250px;
    animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
    top: 50%;
    right: -200px;
    animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
    bottom: -300px;
    left: 30%;
    animation: floatOrb3 30s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent);
    top: 20%;
    right: 20%;
    animation: floatOrb4 22s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 150px) scale(1.2);
    }

    66% {
        transform: translate(-80px, 100px) scale(0.9);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-120px, -100px) scale(1.1);
    }

    66% {
        transform: translate(80px, 120px) scale(0.95);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-150px, -80px) scale(1.15);
    }

    66% {
        transform: translate(100px, -120px) scale(0.9);
    }
}

@keyframes floatOrb4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(90px, 110px) scale(1.25);
    }

    66% {
        transform: translate(-100px, -90px) scale(0.85);
    }
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.4));
    border-radius: 50%;
    opacity: 0.3;
}

/* ========== GLASS MORPHISM NAVBAR ========== */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation-fill-mode: forwards;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@keyframes navSlideDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
        filter: blur(0);
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: logoRotate 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@keyframes logoRotate {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.1) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar-menu li:nth-child(1) {
    animation-delay: 0.3s;
}

.navbar-menu li:nth-child(2) {
    animation-delay: 0.4s;
}

.navbar-menu li:nth-child(3) {
    animation-delay: 0.5s;
}

.navbar-menu li:nth-child(4) {
    animation-delay: 0.6s;
}

.navbar-menu li:nth-child(5) {
    animation-delay: 0.7s;
}

.navbar-menu li:nth-child(6) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.navbar-menu a:hover {
    color: white;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.navbar-menu a.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.navbar-cta {
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-btn-outline {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}

.navbar-toggle {
    display: none;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.navbar-toggle:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.navbar-toggle:active {
    transform: scale(0.95);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 50px 80px;
    text-align: center;
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    font-size: 0.9rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding: 12px 28px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* ========== STEPS SECTION ========== */
.steps-section {
    position: relative;
    padding: 100px 50px;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    color: #8B5CF6;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.step-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.step-description {
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-link:hover {
    gap: 12px;
    color: #3B82F6;
}

/* ========== RESOURCES SECTION ========== */
.resources-section {
    position: relative;
    padding: 100px 50px;
    background: rgba(139, 92, 246, 0.02);
    z-index: 1;
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-card {
    background: rgba(26, 21, 53, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.2);
}

.resource-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: #8B5CF6;
    filter: drop-shadow(0 4px 10px rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 15px rgba(139, 92, 246, 0.5));
}

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

.resource-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.resource-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

.resource-btn {
    padding: 10px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.resource-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    padding: 100px 50px;
    z-index: 1;
}

.community-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.community-card {
    background: rgba(26, 21, 53, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.3);
}

.community-card-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.community-card-highlight:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
}

.community-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 10px rgba(139, 92, 246, 0.3));
}

.community-icon svg {
    width: 100%;
    height: 100%;
    color: #8B5CF6;
}

.community-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.community-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.community-btn {
    padding: 12px 28px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
}

.community-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.community-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.community-btn-primary:hover {
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.community-dual-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.community-btn-small {
    padding: 12px 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    flex: 1;
    text-align: center;
}

.community-btn-small:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #0a0814);
    padding: 80px 50px 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #8B5CF6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8B5CF6;
    transform: translateX(5px);
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.newsletter-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #8B5CF6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    body {
        padding-top: 0;
    }

    .glass-navbar {
        top: 10px;
        width: 95%;
        padding: 12px 20px;
        border-radius: 18px;
    }

    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(20px) scale(0.8);
        }

        to {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    .navbar-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 21, 53, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 18px;
        padding: 20px;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.4s ease,
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    }

    .navbar-menu.active {
        max-height: 600px;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-menu li {
        opacity: 0;
        transform: translateX(-20px);
        animation: none;
    }

    .navbar-menu.active li {
        animation: slideInLeft 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar-menu.active li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navbar-menu.active li:nth-child(2) {
        animation-delay: 0.1s;
    }

    .navbar-menu.active li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .navbar-menu.active li:nth-child(4) {
        animation-delay: 0.2s;
    }

    .navbar-menu.active li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .navbar-menu.active li:nth-child(6) {
        animation-delay: 0.3s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .navbar-menu a {
        padding: 14px 18px;
        text-align: left;
        font-size: 1rem;
        border-radius: 12px;
        background: rgba(139, 92, 246, 0.05);
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .navbar-menu a:hover {
        background: rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.3);
        transform: translateX(5px);
    }

    .navbar-menu a.active {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
        border-color: rgba(139, 92, 246, 0.5);
    }

    .navbar-cta {
        flex-direction: column;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        gap: 10px;
        opacity: 1;
        animation: none;
    }

    .nav-btn {
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .nav-btn-primary {
        background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    }

    .nav-btn-outline {
        background: rgba(139, 92, 246, 0.15);
        border: 1.5px solid rgba(139, 92, 246, 0.4);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .footer {
        padding: 60px 25px 30px !important;
        background: linear-gradient(180deg, rgba(15, 12, 41, 0.98), #050309);
    }

    .footer-container {
        padding: 0 !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
        margin-bottom: 40px !important;
        padding-bottom: 40px !important;
        border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    }

    .footer-brand {
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 10px;
    }

    .footer-logo {
        font-size: 2.5rem !important;
        text-align: center !important;
        display: block !important;
        margin-bottom: 18px !important;
        background: linear-gradient(135deg, #a78bfa, #60a5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }

    .footer-brand p {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.8 !important;
        color: rgba(255, 255, 255, 0.75) !important;
        max-width: 500px;
        margin: 0 auto 25px !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap;
    }

    .social-link {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.4rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        backdrop-filter: blur(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .social-link:hover {
        transform: translateY(-5px) scale(1.05) !important;
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4) !important;
    }

    .footer-column {
        text-align: center !important;
        padding: 20px 15px;
        background: rgba(139, 92, 246, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-column h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        margin-bottom: 22px !important;
        letter-spacing: 0.5px;
    }

    .footer-column h3::after {
        left: 50% !important;
        transform: translateX(-50%);
        width: 50px !important;
        height: 3px !important;
    }

    .footer-links {
        align-items: center !important;
    }

    .footer-links li {
        margin-bottom: 12px !important;
    }

    .footer-links a {
        font-size: 1rem !important;
        padding: 10px 0 !important;
        display: inline-block !important;
        color: rgba(255, 255, 255, 0.75) !important;
        position: relative;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #8B5CF6, #3B82F6);
        transition: width 0.3s ease;
    }

    .footer-links a:hover::after {
        width: 80%;
    }

    .footer-newsletter {
        max-width: 100% !important;
        margin-top: 0 !important;
    }

    .newsletter-input {
        padding: 16px 20px !important;
        font-size: 1rem !important;
        background: rgba(139, 92, 246, 0.08) !important;
        border: 1.5px solid rgba(139, 92, 246, 0.25) !important;
        margin-bottom: 12px !important;
    }

    .newsletter-input:focus {
        background: rgba(139, 92, 246, 0.12) !important;
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
    }

    .newsletter-btn {
        padding: 16px 30px !important;
        font-size: 1rem !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, #8B5CF6, #3B82F6);
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    }

    .newsletter-btn:hover {
        box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5) !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 18px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(139, 92, 246, 0.1);
    }

    .footer-copyright {
        font-size: 0.95rem !important;
        order: 2 !important;
        color: rgba(255, 255, 255, 0.65) !important;
        letter-spacing: 0.3px;
    }

    .footer-links-bottom {
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        order: 1 !important;
        flex-direction: row !important;
    }

    .footer-links-bottom a {
        font-size: 0.95rem !important;
        padding: 8px 12px !important;
        color: rgba(255, 255, 255, 0.7) !important;
        border-radius: 8px;
        transition: all 0.3s ease !important;
    }

    .footer-links-bottom a:hover {
        background: rgba(139, 92, 246, 0.1);
        color: #a78bfa !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }
}