body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #f8fafc;
    background: linear-gradient(135deg, #020617 0%, #071827 45%, #0b3a46 100%);
    min-height: 100vh;
}

.topbar {
    height: 126px;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid rgba(34, 211, 238, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-box {
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: #102a3a;
    border: 1px solid rgba(34, 211, 238, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box span {
    color: #22d3ee;
    font-size: 28px;
    font-weight: 900;
}

.brand-name {
    font-size: 34px;
    font-weight: 800;
    color: #22d3ee;
}

.brand-subtitle {
    color: #a1a1aa;
    letter-spacing: 8px;
    font-size: 18px;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 22px;
    font-weight: 700;
}

nav a {
    color: #e5e7eb;
    text-decoration: none;
}

.youtube {
    background: #ff0000;
    padding: 16px 28px;
    border-radius: 28px;
    color: white;
}

.ai-tools {
    border: 2px solid white;
    padding: 16px 28px;
    border-radius: 32px;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    padding: 90px 64px;
}

.pill {
    display: inline-block;
    padding: 18px 28px;
    background: rgba(8, 145, 178, 0.28);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 999px;
    font-size: 24px;
}

h1 {
    font-size: 72px;
    line-height: 0.95;
    margin: 36px 0 22px;
}

h1 span {
    color: #22d3ee;
}

.hero-left p {
    color: #cbd5e1;
    font-size: 24px;
}

.ats-card {
    margin-top: 34px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 24px;
    padding: 28px;
}

.ats-card h2 {
    color: #22d3ee;
    font-size: 28px;
}

label {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    color: #e5e7eb;
    font-weight: 700;
}

input[type="file"], textarea {
    width: 100%;
    background: #020617;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #f8fafc;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
}

textarea {
    height: 260px;
}

button, .actions a {
    display: inline-block;
    margin-top: 24px;
    background: linear-gradient(135deg, #06b6d4, #2563eb);
    color: white;
    padding: 14px 22px;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.feature-card, .score-card, .card {
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 24px;
    padding: 30px;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-header h3 {
    color: #22d3ee;
    font-size: 28px;
}

.package-list {
    display: grid;
    gap: 14px;
    font-size: 20px;
}

.package-list div {
    background: rgba(2, 6, 23, 0.45);
    padding: 14px;
    border-radius: 14px;
}

.brand-preview {
    margin-top: 36px;
    min-height: 260px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(34,211,238,.2), #020617 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preview-logo {
    width: 90px;
    height: 90px;
    border-radius: 26px;
    border: 2px solid rgba(34,211,238,.5);
    color: #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 900;
}

.score {
    color: #22d3ee;
    font-size: 52px;
    font-weight: 900;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.error {
    background: #7f1d1d;
    color: #fee2e2;
    padding: 16px;
    border-radius: 12px;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    h1 {
        font-size: 48px;
    }

    nav {
        display: none;
    }
}
