:root {
    /* Client Palette */
    --cbb-black: #010400;
    --cbb-grey: #797D81;
    --cbb-white: #FFFBFC;
    --cbb-yellow: #FDC727;

    /* Derived Shades for depth and interaction */
    --cbb-yellow-light: #fff3d1;
    --cbb-yellow-dark: #e8b31d;
    --cbb-grey-light: #e5e7eb;
    --cbb-grey-dark: #4b5563;

    /* Semantic Variables */
    --primary: var(--cbb-yellow);
    --secondary: var(--cbb-grey);
    --text: var(--cbb-black);
    --text-light: var(--cbb-grey);
    --bg: var(--cbb-white);
    --glass: rgba(255, 251, 252, 0.85);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cbb-white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--cbb-yellow-light);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--cbb-grey-light);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

@keyframes move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, 50px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

header {
    padding: 2rem 0;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.hero {
    max-width: 800px;
    padding: 4rem 1rem;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--cbb-yellow-light);
    color: var(--cbb-black);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--cbb-yellow);
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--cbb-black);
}

.highlight {
    color: var(--secondary);
    position: relative;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 0.5rem;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #e1e8f0;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 100px;
    outline: none;
}

.newsletter-form button {
    background: var(--cbb-yellow);
    color: var(--cbb-black);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--cbb-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 199, 39, 0.4);
}

.form-hint {
    font-size: 0.875rem;
    color: #94a3b8;
}

footer {
    padding: 2rem 0;
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

footer p {
    font-size: 0.875rem;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 1rem;
    }

    .newsletter-form input {
        background: white;
        border: 1px solid #e1e8f0;
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }
}