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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    background-color: #0d0d0d;
    color: #e5e5e5;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Header */
.header {
    margin-bottom: 80px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.125rem;
    color: #737373;
    font-weight: 400;
}

/* Sections */
.section {
    margin-bottom: 60px;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

p {
    font-size: 1.0625rem;
    color: #a3a3a3;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1.0625rem;
    color: #a3a3a3;
    padding: 16px 0;
    border-bottom: 1px solid #262626;
    line-height: 1.6;
}

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

.feature-list li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.info-item {
    background-color: #171717;
    padding: 24px;
    border-radius: 6px;
    border: 1px solid #262626;
}

.info-label {
    font-size: 0.875rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.info-value.active {
    color: #22c55e;
}

/* Links */
a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #60a5fa;
}

/* Footer */
.footer {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid #262626;
    text-align: center;
}

.footer p {
    font-size: 0.9375rem;
    color: #525252;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .header {
        margin-bottom: 60px;
    }
    
    .section {
        margin-bottom: 50px;
    }
}