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

:root {
    --color-bg: #0a0a0a;
    --color-surface: #141414;
    --color-text: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-accent: #ff6b35;
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 1.5rem;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 57px!important;
    background: rgba(20, 20, 20, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    z-index: 1000;
    
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(20, 20, 20, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }
}

.smooth-scroll-container {
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 1;
}

.hero-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(180, 80, 50, 0.4) 0%, rgba(120, 40, 30, 0.2) 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
    max-width: 1200px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: var(--spacing-lg);
    opacity: 1;
}

.title-solid {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1;
    text-transform: uppercase;
    opacity: 1;
}

.title-outline {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 85, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 1.5px rgba(255, 107, 53, 0.8);
    opacity: 1;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--transition-smooth);
    z-index: -1;
}

.hero-button:hover {
    color: #ffffff;
}

.hero-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 768px) {
    .title-solid,
    .title-outline {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }
    
    .title-outline {
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
    }
    
    .hero-glow {
        width: 100%;
        opacity: 1;
    }
}



.divider-animated {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.divider-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.features-section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    margin-bottom: 50px;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
    opacity: 1 !important;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: center;
    min-height: 500px;
}

.feature-block.image-right {
    grid-template-areas: "list image";
   
}

.feature-block.image-left {
    grid-template-areas: "image list";
    margin-bottom: -80px;
}

.feature-block.image-right .feature-image {
    grid-area: image;
}

.feature-block.image-right .feature-list {
    grid-area: list;
}

.feature-block.image-left .feature-image {
    grid-area: image;
}

.feature-block.image-left .feature-list {
    grid-area: list;
}

.feature-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 50%, #16213e 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-image-inner.alt {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d1b3d 50%, #1a1a2e 100%);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.image-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-icon {
    font-size: 6rem;
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.floating-orb.orb-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 20%;
    animation: floatOrb1 6s ease-in-out infinite;
}

.floating-orb.orb-2 {
    width: 50px;
    height: 50px;
    bottom: 20%;
    right: 15%;
    animation: floatOrb2 8s ease-in-out infinite;
}

.floating-orb.orb-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 10%;
    animation: floatOrb3 5s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -30px) rotate(180deg); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 20px) rotate(-180deg); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -15px); }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: var(--spacing-md);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s var(--transition-smooth);
}

.feature-item:hover .feature-item-icon {
    transform: scale(1.1);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-item-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-text);
    transition: color 0.3s var(--transition-smooth);
}

.feature-item:hover .feature-item-content h3 {
    color: var(--color-accent);
}

.feature-item-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        min-height: unset;
    }
    
    .feature-block.image-right,
    .feature-block.image-left {
        grid-template-areas: 
            "image"
            "list";
    }
    
    .feature-image {
        min-height: 300px;
    }
    
    .image-icon {
        font-size: 4rem;
    }
}

.cta-section {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
 
    background-image: url(../images/lines_on_black.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    z-index: 1; 

}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 1!important;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        opacity: 1!important;

}

.cta-button,
.magnetic-button {
    background: linear-gradient(135deg, var(--color-accent), #ff8555);
    border: none;
    color: var(--color-text);
    padding: 1.25rem 3rem;
    border-radius: 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    position: relative;
}

.cta-button:hover,
.magnetic-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.footer {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid var(--color-glass-border);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.5s var(--transition-smooth);
    overflow-y: auto;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(30, 30, 30, 0.95));
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 0;
    max-width: 1000px;
    width: 100%;
    max-height: none;
    overflow: visible;
    position: relative;
    transform: scale(0.85) translateY(40px);
    opacity: 0;
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    margin: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
    overflow: hidden;
    border-radius: 2rem;
}

.modal-left {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    overflow: hidden;
}

.modal-image-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
}

.modal-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.modal-image::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent 70%);
    border-radius: 50%;
    animation: modalOrbPulse 3s ease-in-out infinite;
}

.modal-image::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 25%;
    height: 25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
}

.modal-image-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 60%);
    animation: modalGlow 4s ease-in-out infinite;
}

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

@keyframes modalGlow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.modal-image-icon {
    font-size: 5rem;
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.3));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.modal-right {
    padding: var(--spacing-xl) var(--spacing-lg);
    overflow-y: auto;
    max-height: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    scrollbar-gutter: stable;
    cursor: grab;
}

.modal-right:active {
    cursor: grabbing;
}

/* Custom scrollbar styling for modal-right */
.modal-right::-webkit-scrollbar {
    width: 10px;
}

.modal-right::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-right::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 5px;
    transition: background 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.modal-right::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.8);
    background-clip: padding-box;
}

.modal-right::-webkit-scrollbar-thumb:active {
    background: rgba(255, 107, 53, 1);
    background-clip: padding-box;
}

/* Firefox scrollbar */
.modal-right {
    scrollbar-color: rgba(255, 107, 53, 0.5) rgba(255, 255, 255, 0.05);
    scrollbar-width: thin;
}

/* Safety: disable inner interactions when overlay is inactive */
.modal-overlay:not(.active) .modal-right,
.modal-overlay:not(.active) .modal-content,
.modal-overlay:not(.active) .modal-inner {
    pointer-events: none;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
}

.modal-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

.modal-close span:first-child {
    transform: rotate(45deg);
}

.modal-close span:last-child {
    transform: rotate(-45deg);
}

.modal-close:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    transform: rotate(90deg) scale(1.1);
}

.modal-close:hover span {
    background: var(--color-accent);
}

.modal-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    color: var(--color-text-secondary);
    line-height: 1.9;
    font-size: 1rem;
}

.modal-body .typewriter-text {
    opacity: 0;
}

.modal-body .typewriter-text.visible {
    opacity: 1;
}

.modal-body .typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--color-accent);
    margin-left: 2px;
    animation: cursorBlink 0.8s infinite;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.modal-body h4 {
    color: var(--color-text);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body h4::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: var(--color-accent);
    border-radius: 2px;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
    margin-top: var(--spacing-sm);
}

.modal-body li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-body li:last-child {
    border-bottom: none;
}

.modal-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .modal-inner {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 400px;
    }
    
    .modal-left {
        padding: var(--spacing-md);
        min-height: 200px;
    }
    
    .modal-image-container {
        max-width: 150px;
    }
    
    .modal-right {
        padding: var(--spacing-md);
        max-height: 50vh;
        -webkit-overflow-scrolling: touch;
        scroll-padding: var(--spacing-md);
        padding-bottom: calc(var(--spacing-md) + 1rem);
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .modal-close span {
        width: 16px;
    }
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cursor-glow {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

[data-reveal] {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].gsap-init {
    opacity: 0;
    transform: translateY(30px);
}

.js-tilt-glare {
    border-radius: var(--border-radius);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
