:root {
    --carbon-black: #0E1114;
    --midnight-green: #0B3D2E;
    --accent-green: #00ff88;
    --light-green: #7fff7f;
    --dark-surface: #1a1d23;
    --text-light: #e8e8e8;
    --text-muted: #9ca3af;
    --gradient-primary: linear-gradient(135deg, #0B3D2E 0%, #00ff88 100%);
    --gradient-dark: linear-gradient(135deg, #0E1114 0%, #1a1d23 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background: var(--carbon-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: rgba(14, 17, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green) !important;
    letter-spacing: -0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.navbar-brand img{
    width: 15%;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
    margin: 0 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

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

.btn-invest {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--carbon-black);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-invest:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    color: var(--carbon-black);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--carbon-black);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

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

/* Glowing Orbs */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 61, 46, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.highlight-text {
    color: var(--accent-green);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--carbon-black);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--accent-green);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 3;
}

.tech-circle {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: rotate 20s linear infinite;
}

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

.tech-circle svg {
    width: 100%;
    height: auto;
}

/* Proven Module Section */
.proven-section {
    padding: 120px 0;
    background: var(--dark-surface);
    position: relative;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.media-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.media-card {
    background: var(--carbon-black);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.media-card:hover::before {
    transform: scaleX(1);
}

.media-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.media-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--midnight-green) 0%, var(--carbon-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-green);
}

.media-label {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    background: rgba(0, 255, 136, 0.05);
}

/* Integration Process Section */
.integration-section {
    padding: 120px 0;
    background: var(--carbon-black);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-card {
    position: relative;
    padding: 2.5rem;
    background: var(--dark-surface);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.process-card:hover::before {
    opacity: 0.1;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.process-number {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--carbon-black);
    margin-bottom: 1.5rem;
    z-index: 1;
}

.process-title {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    z-index: 1;
}

.process-description {
    position: relative;
    color: var(--text-muted);
    line-height: 1.8;
    z-index: 1;
}

/* Key Features Section */
.features-section {
    padding: 120px 0;
    background: var(--dark-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--carbon-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--carbon-black);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: var(--carbon-black);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

/* Featured Team Member */
.featured-member-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.team-member {
    background: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-member.featured {
    background: linear-gradient(135deg, var(--midnight-green) 0%, var(--carbon-black) 100%);
    border: 2px solid var(--accent-green);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--carbon-black);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
    filter: grayscale(30%);
}

.team-member:hover .team-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.9) 0%, rgba(0, 255, 136, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--carbon-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.team-member:hover .social-links a {
    transform: translateY(0);
    opacity: 1;
}

.social-links a:nth-child(1) { transition-delay: 0.1s; }
.social-links a:nth-child(2) { transition-delay: 0.2s; }
.social-links a:nth-child(3) { transition-delay: 0.3s; }

.social-links a:hover {
    background: var(--accent-green);
    color: var(--carbon-black);
    transform: translateY(-5px);
}

.team-content {
    padding: 2.5rem;
}

.team-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.team-member.featured .team-name {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-role {
    font-size: 1.1rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.team-bio {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Regular Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--midnight-green) 0%, var(--carbon-black) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-green);
    color: var(--carbon-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.copyright {
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
    .featured-member-wrapper {
        grid-template-columns: 1fr;
    }
    
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .media-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }

    .navbar-brand img{
        width: 100% !important;
    }

    .navbar-brand {
        width: 50%;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
}

/* Scroll Reveal Animations */
[data-aos] {
    pointer-events: auto;
}

/* Full Screen Header Styles */
.full-screen-header {
width: 100%;
height: 100vh;
background: var(--carbon-black);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

/* Particle Canvas */
#particleCanvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

/* Animated Grid Background */
.grid-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
animation: gridMove 25s linear infinite;
z-index: 2;
}

@keyframes gridMove {
0% { transform: translate(0, 0); }
100% { transform: translate(60px, 60px); }
}

/* Glowing Orbs */
.glow-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
z-index: 2;
}

.orb-1 {
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
top: -150px;
right: -100px;
animation: floatOrb1 15s ease-in-out infinite;
}

.orb-2 {
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(11, 61, 46, 0.5) 0%, transparent 70%);
bottom: -100px;
left: -100px;
animation: floatOrb2 12s ease-in-out infinite;
}

.orb-3 {
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: floatOrb3 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(-50px, 50px) scale(1.1); }
}

@keyframes floatOrb2 {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(50px, -50px) scale(1.15); }
}

@keyframes floatOrb3 {
0%, 100% { transform: translate(-50%, -50%) scale(1); }
33% { transform: translate(-45%, -55%) scale(1.1); }
66% { transform: translate(-55%, -45%) scale(0.95); }
}

/* Header Content */
.header-content {
position: relative;
z-index: 10;
text-align: center;
padding: 0 20px;
}

/* Brand Wrapper */
.brand-wrapper {
margin-bottom: 3rem;
}

/* Brand Name */
.brand-name {
font-size: clamp(4rem, 12vw, 10rem);
font-weight: 900;
font-family: 'Space Grotesk', sans-serif;
letter-spacing: 0.1em;
margin: 0;
padding: 0;
position: relative;
display: inline-block;
}

.brand-letter {
display: inline-block;
background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 50%, #ffffff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
background-size: 200% auto;
animation: shimmer 3s linear infinite;
text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
position: relative;
}

.brand-letter:nth-child(1) { animation-delay: 0s; }
.brand-letter:nth-child(2) { animation-delay: 0.1s; }
.brand-letter:nth-child(3) { animation-delay: 0.2s; }
.brand-letter:nth-child(4) { animation-delay: 0.3s; }
.brand-letter:nth-child(5) { animation-delay: 0.4s; }
.brand-letter:nth-child(6) { animation-delay: 0.5s; }
.brand-letter:nth-child(7) { animation-delay: 0.6s; }

@keyframes shimmer {
0% { background-position: 0% center; }
100% { background-position: 200% center; }
}

.brand-letter:hover {
animation: letterPop 0.5s ease;
transform: translateY(-10px);
}

@keyframes letterPop {
0%, 100% { transform: translateY(0) scale(1); }
50% { transform: translateY(-10px) scale(1.2); }
}

/* Brand Underline */
.brand-underline {
height: 4px;
background: var(--gradient-primary);
margin: 1.5rem auto 0;
width: 0;
border-radius: 2px;
animation: underlineExpand 2s ease-out forwards;
animation-delay: 0.8s;
box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

@keyframes underlineExpand {
0% { width: 0; }
100% { width: 80%; }
}

/* Header Tagline */
.header-tagline {
font-size: clamp(1.2rem, 3vw, 2.2rem);
font-weight: 400;
color: var(--text-muted);
letter-spacing: 0.15em;
text-transform: uppercase;
margin: 0;
position: relative;
font-family: 'Inter', sans-serif;
}

.header-tagline::before,
.header-tagline::after {
content: '';
position: absolute;
top: 50%;
width: 60px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.header-tagline::before {
left: -80px;
animation: lineSlideIn 1.5s ease-out forwards;
animation-delay: 1.5s;
}

.header-tagline::after {
right: -80px;
animation: lineSlideIn 1.5s ease-out forwards;
animation-delay: 1.5s;
}

@keyframes lineSlideIn {
0% { width: 0; opacity: 0; }
100% { width: 60px; opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
text-align: center;
animation: bounce 2s infinite;
}

.mouse {
width: 30px;
height: 50px;
border: 2px solid var(--accent-green);
border-radius: 20px;
margin: 0 auto 10px;
position: relative;
box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.wheel {
width: 4px;
height: 10px;
background: var(--accent-green);
border-radius: 2px;
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
animation: scroll 2s infinite;
}

@keyframes scroll {
0% { top: 8px; opacity: 1; }
100% { top: 28px; opacity: 0; }
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
40% { transform: translateX(-50%) translateY(-10px); }
60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator p {
color: var(--accent-green);
font-size: 0.9rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
margin: 0;
}

/* Energy Wave */
.energy-wave {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: auto;
z-index: 3;
opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
.brand-name {
font-size: clamp(3rem, 15vw, 6rem);
letter-spacing: 0.05em;
}

.header-tagline {
font-size: clamp(0.9rem, 4vw, 1.5rem);
letter-spacing: 0.1em;
}

.header-tagline::before,
.header-tagline::after {
width: 40px;
}

.header-tagline::before {
left: -50px;
}

.header-tagline::after {
right: -50px;
}

.scroll-indicator {
bottom: 30px;
}

.brand-underline {
width: 90% !important;
}
}

@media (max-width: 480px) {
.header-tagline::before,
.header-tagline::after {
display: none;
}
}

/* Responsive Font Fixes for Mobile */
@media (max-width: 768px) {
.brand-name {
font-size: clamp(2.5rem, 12vw, 5rem);
letter-spacing: 0.05em;
}

.header-tagline {
font-size: clamp(0.8rem, 3.5vw, 1.3rem);
letter-spacing: 0.08em;
padding: 0 10px;
}

.header-tagline::before,
.header-tagline::after {
width: 30px;
}

.header-tagline::before {
left: -40px;
}

.header-tagline::after {
right: -40px;
}

.scroll-indicator {
bottom: 30px;
}

.brand-underline {
width: 90% !important;
}

.brand-wrapper {
margin-bottom: 2rem;
}
}

@media (max-width: 480px) {
.brand-name {
font-size: clamp(2rem, 10vw, 3.5rem);
letter-spacing: 0.03em;
}

.header-tagline {
font-size: clamp(0.7rem, 3vw, 1rem);
letter-spacing: 0.05em;
padding: 0 15px;
line-height: 1.4;
}

.header-tagline::before,
.header-tagline::after {
display: none;
}

.scroll-indicator {
bottom: 20px;
display: none;
}

.scroll-indicator p {
font-size: 0.75rem;
}

.mouse {
width: 25px;
height: 45px;
}

.brand-wrapper {
margin-bottom: 1.5rem;
}
}

/* Extra small devices */
@media (max-width: 375px) {
.brand-name {
font-size: clamp(1.8rem, 9vw, 3rem);
letter-spacing: 0.02em;
}

.header-tagline {
font-size: 0.65rem;
letter-spacing: 0.03em;
}
}

/* Prevent text breaking */
.brand-name {
white-space: nowrap;
overflow: visible;
}

.header-tagline {
max-width: 100%;
word-wrap: break-word;
hyphens: none;
}

/* Ensure proper spacing on very small screens */
@media (max-width: 320px) {
.brand-name {
font-size: 1.5rem;
}

.header-tagline {
font-size: 0.6rem;
letter-spacing: 0.02em;
}
}

/* Performance Optimizations */

/* Force GPU Acceleration for Animated Elements */
.brand-letter,
.glow-orb,
.grid-background,
.team-member,
.service-card,
.process-card,
.feature-card,
.media-card,
.btn-primary-custom,
.btn-secondary-custom,
.team-image,
.tech-circle {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Reduce animations on mobile */
@media (max-width: 768px) {
    /* Disable expensive animations */
    .grid-background {
        animation: none;
        opacity: 0.3;
    }
    
    .glow-orb {
        animation: none;
        opacity: 0.2;
        filter: blur(60px); /* Reduce blur intensity */
    }
    
    .tech-circle {
        animation: none;
    }
    
    .energy-wave {
        display: none; /* Remove wave on mobile */
    }
    
    /* Simplify particle effects */
    #particleCanvas {
        opacity: 0.5;
    }
    
    /* Reduce shimmer animation */
    .brand-letter {
        animation: shimmerMobile 4s linear infinite;
    }
    
    @keyframes shimmerMobile {
        0%, 100% { background-position: 0% center; }
        50% { background-position: 100% center; }
    }
    
    /* Disable hover animations on mobile */
    .service-card:hover,
    .team-member:hover,
    .process-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    /* Simplify transitions */
    * {
        transition-duration: 0.2s !important;
    }
}

/* Optimize will-change for performance */
.brand-letter {
    will-change: background-position;
}

.service-card,
.team-member,
.process-card,
.feature-card {
    will-change: auto; /* Remove will-change when not hovering */
}

.service-card:hover,
.team-member:hover,
.process-card:hover,
.feature-card:hover {
    will-change: transform;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .grid-background,
    .glow-orb,
    .tech-circle,
    .brand-letter {
        animation: none !important;
    }
}

/* Contain paint and layout */
.full-screen-header,
.hero-section,
.proven-section,
.integration-section,
.features-section,
.team-section {
    contain: layout style paint;
}

/* Optimize images */
img {
    content-visibility: auto;
}

/* Use simpler shadows on mobile */
@media (max-width: 768px) {
    .service-card,
    .team-member,
    .process-card,
    .feature-card {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    .service-card:hover,
    .team-member:hover,
    .process-card:hover,
    .feature-card:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    }
}

/* Products & Features Section Styles */
.products-section {
    padding: 120px 0;
    background: var(--carbon-black);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    top: 50%;
    right: -250px;
    border-radius: 50%;
}

/* Product Slider */
.product-slider {
    margin-top: 4rem;
    position: relative;
}

/* Slide Navigation Tabs */
.slide-navigation {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.slide-nav-btn {
    background: var(--dark-surface);
    border: 2px solid rgba(0, 255, 136, 0.2);
    padding: 1rem 2rem;
    border-radius: 15px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.slide-nav-btn:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
}

.slide-nav-btn.active {
    background: var(--gradient-primary);
    border-color: var(--accent-green);
    color: var(--carbon-black);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.nav-number {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.nav-title {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Slides Container */
.slides-container {
    position: relative;
    min-height: 600px;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    transform: translateX(50px);
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Feature Highlights (Slide 1) */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--dark-surface);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--carbon-black);
    flex-shrink: 0;
}

.highlight-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-light);
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Features List (Slide 2) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

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

.feature-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--carbon-black);
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Slide CTA */
.slide-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slide Visual */
.slide-visual {
    position: relative;
}

.visual-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--midnight-green) 0%, var(--carbon-black) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.visual-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.visual-content i {
    font-size: 6rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.visual-content p {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Rotating Border Animation */
.rotating-border {
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--accent-green),
        transparent
    );
    border-radius: 20px;
    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Energy Particles Animation */
.energy-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-green);
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation: floatParticle 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 70%;
    right: 20%;
    animation: floatParticle 4s ease-in-out infinite;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation: floatParticle 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation: floatParticle 4.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    50% { transform: translate(20px, -20px); opacity: 1; }
}

/* Feature Grid Visual (Slide 2) */
.feature-grid-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.feature-box {
    aspect-ratio: 1;
    background: var(--dark-surface);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-green);
    animation: pulseBox 2s ease-in-out infinite;
}

@keyframes pulseBox {
    0%, 100% { 
        transform: scale(1);
        border-color: rgba(0, 255, 136, 0.2);
    }
    50% { 
        transform: scale(1.05);
        border-color: var(--accent-green);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    }
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(0, 255, 136, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-green);
    width: 60px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Arrow Navigation */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--dark-surface);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    color: var(--accent-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-arrow:hover {
    background: var(--accent-green);
    color: var(--carbon-black);
    border-color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.slide-arrow.prev {
    left: -25px;
}

.slide-arrow.next {
    right: -25px;
}

/* Responsive */
@media (max-width: 992px) {
    .slide-arrow {
        display: none;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slides-container {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .slide-navigation {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slide-nav-btn {
        min-width: auto;
        justify-content: center;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .feature-highlights,
    .features-list {
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
    
    .visual-placeholder {
        margin-bottom: 2rem;
    }
    
    .visual-content i {
        font-size: 4rem;
    }
    
    .feature-grid-visual {
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-box {
        font-size: 2rem;
    }
    
    .slide-cta {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }
}