@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DMSans.ttf') format('truetype');
    font-weight: 100 1000;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('./fonts/DMSans-Italic.ttf') format('truetype');
    font-weight: 100 1000;
    font-style: italic;
}

:root {
    --bg-primary: #0C0A09;
    /* Deep stone dark */
    --bg-secondary: #1C1917;
    --accent: #CA8A04;
    /* Gold accent from design system */
    --text-primary: #FAFAF9;
    --text-secondary: #A8A29E;
    --glass-bg: rgba(28, 25, 23, 0.7);
    --glass-border: rgba(250, 250, 249, 0.1);
    --font-main: 'DM Sans', sans-serif;
}

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

html,
body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Blobs */
.glass-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: move 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -100px;
    right: -50px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #44403C 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation-duration: 25s;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #78716C 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 50px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Main Content Overlay */
.content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    z-index: 1;
    background: radial-gradient(circle at center, transparent 0%, rgba(12, 10, 9, 0.4) 100%);
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
}

.logo span {
    color: var(--accent);
    font-weight: 300;
}

.hero {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #A8A29E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: var(--accent);
    color: white;
    filter: drop-shadow(0 0 15px rgba(202, 138, 4, 0.5));
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

footer {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.footer-info {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.status-link:hover {
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0);
    }
}

.footer-divider {
    color: var(--text-secondary);
    opacity: 0.3;
}

/* Reveal Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-text.active {
    animation: reveal 1s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

.delay-1 {
    animation-delay: 0.2s !important;
}

.delay-2 {
    animation-delay: 0.4s !important;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-divider {
        display: none;
    }
}