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

body {
    font-family: 'Inter', sans-serif;
    background-color: #09090b;
    color: #f4f4f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
}

.logo span {
    color: #4ade80;
}

.badge-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #18181b;
    border: 1px solid #27272a;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: #a1a1aa;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0 80px 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    max-width: 900px;
}

.subtitle {
    font-size: 1.15rem;
    color: #a1a1aa;
    max-width: 650px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #fff;
    color: #09090b;
}

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

.btn-secondary {
    background-color: #18181b;
    color: #fff;
    border: 1px solid #27272a;
}

.btn-secondary:hover {
    background-color: #27272a;
    border-color: #3f3f46;
}

.about-section {
    background: #121215;
    border: 1px solid #222225;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: left;
    max-width: 1000px;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 40px;
    text-align: left;
}

.feature-card {
    background: #121215;
    border: 1px solid #222225;
    border-radius: 14px;
    padding: 28px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: #3f3f46;
}

.feature-card .icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #a1a1aa;
    line-height: 1.6;
}

.beta-tag {
    background: rgba(234, 179, 8, 0.15);
    color: #facc15;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.link-disabled {
    display: inline-block;
    margin-top: 16px;
    color: #71717a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: default;
}

.site-footer {
    text-align: center;
    padding: 32px 0;
    color: #71717a;
    font-size: 0.9rem;
    border-top: 1px solid #18181b;
    margin-top: auto;
}

.site-footer a {
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .action-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
