/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Carbon Fiber Background - Muted Version */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.01) 0%, transparent 50%),
        linear-gradient(45deg, #0a0a0a 25%, transparent 25%),
        linear-gradient(-45deg, #0a0a0a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #0a0a0a 75%),
        linear-gradient(-45deg, transparent 75%, #0a0a0a 75%);
    background-size: 20px 20px, 20px 20px, 40px 40px, 40px 40px, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 0 0, 0 20px, 20px -20px, -20px 0px;
    z-index: -1;
    opacity: 0.15;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(68, 68, 68, 0.3);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.main-header.hidden {
    transform: translateY(-100%);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00aaff;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 10% 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

/* Tagline FIRST - Large and Prominent */
.hero-tagline {
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-shadow: 0 0 30px rgba(0, 170, 255, 0.2);
    animation: breathe 4s ease-in-out infinite;
    line-height: 1.2;
}

/* Company Name */
.company-name {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 100px;
    opacity: 0.9;
}

/* Value Proposition */
.value-proposition {
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-text {
    font-size: 20px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.8;
    opacity: 0.85;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 80px;
}

.cta-button:hover {
    border-color: #00aaff;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
    color: #00aaff;
    transform: translateY(-2px);
}

/* Coming Soon Indicator */
.coming-soon-indicator {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    letter-spacing: 3px;
    opacity: 0.4;
    animation: pulse 3s ease-in-out infinite;
}

/* Value Section (Below Fold) */
.value-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 10%;
}

.value-section-content {
    max-width: 800px;
    text-align: center;
}

.section-text {
    font-size: 24px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 2;
    margin-bottom: 60px;
    opacity: 0.7;
}

/* Contact Section */
.contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 10%;
}

.contact-content {
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.contact-title {
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
    letter-spacing: 0.5px;
}

.required {
    color: #00aaff;
}

.form-input,
.form-textarea {
    height: 55px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 0 25px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-textarea {
    height: auto;
    padding: 20px 25px;
    resize: vertical;
    min-height: 150px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
    font-style: italic;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
    background: rgba(30, 30, 30, 0.9);
}

.submit-button {
    height: 55px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.submit-button:hover {
    border-color: #00aaff;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
    color: #00aaff;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    background: rgba(0, 170, 255, 0.1);
    border: 1px solid rgba(0, 170, 255, 0.3);
    color: #00aaff;
}

.form-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

/* Footer */
.main-footer {
    padding: 80px 10% 40px;
    border-top: 1px solid rgba(68, 68, 68, 0.3);
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-company {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-meta {
    flex: 1;
    text-align: right;
    min-width: 250px;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.footer-dev {
    font-size: 12px;
    color: #555;
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-tagline {
        font-size: 48px;
    }
    
    .value-text {
        font-size: 18px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 5% 60px;
    }
    
    .hero-tagline {
        font-size: 36px;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }
    
    .company-name {
        font-size: 24px;
        margin-bottom: 60px;
    }
    
    .value-proposition {
        margin-bottom: 80px;
        gap: 30px;
    }
    
    .value-text {
        font-size: 16px;
    }
    
    .value-section {
        padding: 100px 5%;
    }
    
    .section-text {
        font-size: 18px;
    }
    
    .contact-section {
        padding: 100px 5%;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .contact-form {
        gap: 30px;
    }
    
    .main-footer {
        padding: 60px 5% 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-meta {
        text-align: center;
    }
    
    .coming-soon-indicator {
        top: 20px;
        right: 20px;
        font-size: 10px;
    }
    
    .header-content {
        padding: 0 5%;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 28px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .value-text {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 14px;
    }
}
