:root {
    --bg-color: #050505; /* Neutral dark black */
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3; /* Neutral gray */
    --accent-color: #ff00dd; /* Magenta */
    --accent-glow: rgba(255, 0, 221, 0.4);
    --accent-secondary: #ff003c; /* Red */
    --accent-secondary-glow: rgba(255, 0, 60, 0.2);
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Gradients and Glows */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-secondary-glow) 0%, transparent 60%);
    animation-delay: -7s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 90%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2.5rem;
}

.brand-logo {
    max-width: 280px;
    height: auto;
    max-height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.brand-logo:hover {
    transform: scale(1.02);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e2e8f0;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent-color);
}

.headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 5.5vw, 3rem);
    white-space: nowrap;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    text-align: left;
    width: 100%;
}

.service {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.service h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.service p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-container {
    margin: 2rem 0;
}

.cta-blurb {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.5px;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 12px var(--accent-glow);
}
@media (min-width: 600px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .container {
        padding: 4rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 700px;
    }
}
