:root {
    --bg-main: #0B0E14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B5C1;
    
    --accent-cyan: #00E5FF;
    --accent-purple: #9D4EDD;
    --accent-pink: #FF007F;
    --accent-deep: #0A192F;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-cyan);
}

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

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

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

h5 {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.35rem;
    color: var(--text-primary);
    font-weight: 300;
}

strong {
    font-weight: 700;
    color: var(--accent-cyan);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Base Components Output */
.logo-icon {
    color: var(--accent-cyan);
}

.icon-cyan { color: var(--accent-cyan); }
.icon-purple { color: var(--accent-purple); }
.icon-pink { color: var(--accent-pink); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: white;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    color: white;
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border-color);
    background: transparent;
    color: white;
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(11, 14, 20, 0.9);
    backdrop-filter: blur(12px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
}

.nav-links .btn {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/misty_mountain_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 14, 20, 0.6) 0%, var(--bg-main) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(4px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to top, rgba(0, 229, 255, 0.05), transparent);
}

.contact-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 4rem;
    border-radius: 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links {
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--bg-main);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #070a0f;
    border-top: 1px solid var(--border-color);
    padding: 0;
}
.footer-container {
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-brand {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.footer-brand .logo img {
    height: 70px; /* Slightly smaller than navbar */
    width: auto;
}
.footer-copyright {
    flex: 1;
    text-align: center;
    align-self: flex-end;
}
.footer-copyright p {
    margin-bottom: 0;
}
.footer-partners {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.footer-partners img {
    height: 60px; /* Slightly bigger */
    width: auto;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 900px) {
    .about-grid, .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
    }
    
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
