:root {
    --white: #ffffff;
    --light-bg: #f7f7f7;
    --text-dark: #2c2c2c;
    --text-gray: #7a7a7a;
    --border-light: #e5e5e5;
    --accent: #4a90e2;
    --green-blue: #2c5f7c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
}

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

/* Green/Blue Header */
.blade-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--green-blue);
    border-bottom: none;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blade-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 15px;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0px;
    color: #ffffff;
}

.logo-img {
    height: 70px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    font-weight: 400;
    font-size: 22px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
}

/* Full-Width Video Section with Text Overlay - EDGE TO EDGE */
.video-header {
    margin-top: 85px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 35%;
    background: #000;
    overflow: hidden;
}

/* Dark overlay on video - MUCH DARKER */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    border: 0;
}

/* Video Text Overlay - UNBOLD + PERFECTLY CENTERED */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-title {
    font-size: 90px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.9);
    line-height: 1.3;
    letter-spacing: 1px;
}

/* Subtitle Only Section with Green Lines - LOWER */
.subtitle-section {
    background: var(--white);
    padding: 80px 0 50px 0;
    text-align: center;
}

.main-subtitle {
    font-size: 32px;
    color: #2c5f7c;
    font-style: italic;
    font-weight: 400;
    padding: 30px 0;
    border-top: 2px solid #2c5f7c;
    border-bottom: 2px solid #2c5f7c;
    max-width: 900px;
    margin: 0 auto;
}

/* 6 White Cards on White Background */
.apps-section {
    background: var(--white);
    padding: 80px 0;
}

.section-header {
    text-align: left;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

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

.app-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.app-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.app-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.app-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.app-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.app-status {
    display: inline-block;
    padding: 8px 15px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 124, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.parallax-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.parallax-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Green Footer */
.blade-footer {
    background: var(--green-blue);
    color: rgba(255, 255, 255, 0.9);
    padding: 50px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        padding-bottom: 60%;
    }
    
    .video-container iframe {
        display: none;
    }
    
    .video-title {
        font-size: 36px;
    }
    
    .content-title {
        font-size: 28px;
    }
    
    .parallax-section {
        background-attachment: scroll;
        height: 300px;
    }
    
    .parallax-title {
        font-size: 28px;
    }
    
    .parallax-text {
        font-size: 16px;
    }
}
