/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'TT Lakes Neue';
    src: url('assets/fonts/tt-lakes-neue.woff2') format('woff2');
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Global accent color variable */
:root {
    --accent: #5eead4;
    --accent-light: #a7f3d0;
    --accent-rgb: 94, 234, 212;
}

/* Header and Navigation Bar */
header {
    background: rgba(15, 15, 15, 0.92);
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    min-height: 50px;
}

.logo {
    margin-left: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img,
#logo-canvas {
    width: 180px;
    height: auto;
    display: block;
    margin-top: -35px;
    margin-bottom: -15px;
    transition: transform 0.3s ease-in-out;
}

.logo:hover .logo-img,
.logo:hover #logo-canvas {
    transform: scale(1.05);
}

.nav-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Header scroll state */
header.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

/* Video Background Section */
.video-background {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 80px;
    width: 100%;
    z-index: 1;
    text-align: center;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
}

/* Scroll indicator */
.scroll-indicator {
    display: inline-block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s;
}

.scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: #fff;
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

/* Legacy bottom-text support */
.bottom-text {
    position: absolute;
    bottom: 60px;
    width: 100%;
    z-index: 1;
    text-align: center;
    color: white;
}

.bottom-text h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bottom-text p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Contact Page Styling */
.contact-section {
    padding: 100px 20px 60px;
    background-color: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.contact-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-container h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.contact-container p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5eead4;
    background-color: rgba(94, 234, 212, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    padding: 14px;
    background-color: #5eead4;
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
}

.contact-form button:hover {
    background-color: #a7f3d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(94, 234, 212, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-img,
    #logo-canvas {
        width: 180px;
        margin-top: -32px;
        margin-bottom: -15px;
    }

    .nav-links li a {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    .nav-container {
        flex-wrap: nowrap;
        align-items: center;
    }

    .logo-img,
    #logo-canvas {
        width: 160px;
        margin-top: -30px;
        margin-bottom: -12px;
    }

    .nav-links {
        flex-direction: row;
        gap: 5px;
        flex-shrink: 0;
    }

    .nav-links li a {
        font-size: 13px;
        padding: 8px 12px;
        letter-spacing: 0.5px;
    }

    .bottom-text h1 {
        font-size: 32px;
    }

    .bottom-text p {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .contact-container {
        padding: 20px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 0;
    }

    .nav-container {
        width: 95%;
    }

    .logo-img,
    #logo-canvas {
        width: 130px;
        margin-top: -25px;
        margin-bottom: -8px;
    }

    .nav-links {
        gap: 2px;
    }

    .nav-links li a {
        font-size: 11px;
        padding: 6px 10px;
        letter-spacing: 0.3px;
    }

    .bottom-text {
        bottom: 40px;
    }

    .bottom-text p {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

#thank-you-message {
    display: none;
    color: #5eead4;
    font-size: 16px;
    margin-top: 25px;
    padding: 16px;
    background: rgba(94, 234, 212, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    text-align: center;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
    padding: 100px 20px;
    background-color: #0a0a0a;
}

.content-section.section-dark {
    background-color: #050505;
}

.content-section.section-cta {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    text-align: center;
}

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

.section-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.about-text p.lead {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

.about-text a {
    color: #5eead4;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.about-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #5eead4;
    transition: width 0.3s ease;
}

.about-text a:hover::after {
    width: 100%;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Technology Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    background: #000;
    border-color: rgba(94, 234, 212, 0.3);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: #5eead4;
}

.tech-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-logo {
    transform: scale(1.1);
}

.tech-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
}

.opensource-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border-radius: 4px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    min-height: 32px;
}

.tech-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    background: rgba(94, 234, 212, 0.15);
    color: #5eead4;
    border-radius: 20px;
}

.tech-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    flex-grow: 1;
}

.tech-link {
    color: #5eead4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.tech-link:hover {
    color: #a7f3d0;
    gap: 8px;
}

/* VaaS Section */
.vaas-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.vaas-description p.lead {
    font-size: 20px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 40px;
}

.vaas-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vaas-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}

.vaas-feature p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.vaas-inputs {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
}

.vaas-inputs h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
}

.input-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.input-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
}

.input-list li:last-child {
    border-bottom: none;
}

.input-icon {
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #5eead4;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #a7f3d0;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.partner-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.partner-link:hover {
    color: #5eead4;
    border-color: rgba(94, 234, 212, 0.4);
    background: rgba(94, 234, 212, 0.05);
}

.partner-separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.site-footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE - CONTENT SECTIONS
   ======================================== */

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .vaas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 70px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card {
        padding: 30px 25px;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .hero-tagline {
        font-size: 18px;
        letter-spacing: 2px;
        padding: 0 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 50px 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-text p.lead {
        font-size: 17px;
    }
    
    .vaas-description p.lead {
        font-size: 17px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .scroll-indicator {
        width: 24px;
        height: 40px;
    }
}
