/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0a0a0a;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Typography */
h1, h2, h3 {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    letter-spacing: -1px;
}

h2 {
    font-size: 32px;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 20px;
    letter-spacing: -0.25px;
}

p {
    color: #9ca3af;
    font-size: 16px;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid #262626;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid;
    cursor: pointer;
}

.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.btn-primary:hover {
    background: #f3f4f6;
    border-color: #f3f4f6;
}

.btn-secondary {
    background: transparent;
    color: #9ca3af;
    border-color: #374151;
}

.btn-secondary:hover {
    color: #ffffff;
    border-color: #4b5563;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #0a0a0a;
    text-align: center;
}

.hero h1 {
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    margin: 64px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Platform Section */
.platform {
    padding: 80px 0;
    background: #111111;
}

.platform h2 {
    text-align: center;
    margin-bottom: 16px;
}

.platform > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: none;
}

.feature {
    padding: 32px;
    background: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 8px;
}

.feature h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
}

/* Metrics Section */
.metrics-section {
    text-align: center;
    padding: 48px 0;
    border-top: 1px solid #262626;
}

.metrics-section h3 {
    margin-bottom: 32px;
    font-size: 24px;
}

.example-news {
    background: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.example-news p {
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.example-news p:last-child {
    margin-bottom: 0;
    font-size: 14px;
    color: #6b7280;
}

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

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.metric-desc {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: none;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method strong {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-method a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 15px;
}

.contact-method a:hover {
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    background: #111111;
    border: 1px solid #262626;
    border-radius: 8px;
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 6px;
    background: #0a0a0a;
    color: #e5e7eb;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6b7280;
}

.contact-form select {
    cursor: pointer;
}

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

.contact-form button {
    width: 100%;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #111111;
    border-top: 1px solid #262626;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
    max-width: none;
}

.footer-brand h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-brand p {
    font-size: 14px;
    color: #6b7280;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #262626;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        gap: 24px;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .platform, .contact {
        padding: 60px 0;
    }
    
    .feature {
        padding: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .hero-stats {
        margin: 48px 0;
    }
}

/* Remove all animations and transitions for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}