@font-face {
    font-family: 'FK Screamer';
    src: url('/assets/fonts/FKScreamer/FKScreamer-Bold.woff2') format('woff2'),
         url('/assets/fonts/FKScreamer/FKScreamer-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter/Inter-Variable.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #ffffff;
    --color-fg: #000000;
    --color-fg-subdued: #4a4a4a;
    --color-fg-muted: #767676;
    --color-accent: #ffe943;
    --color-border: #e6e6e6;

    --font-display: 'FK Screamer', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --max-width: 1200px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-fg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    position: relative;
}

.monogram-bg {
    position: fixed;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}

.monogram-bg img {
    width: 800px;
    height: 800px;
    max-width: 90vw;
    max-height: 90vw;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50%      { transform: translateY(-48%) rotate(3deg); }
}

.site-header,
.hero,
.site-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.site-header {
    padding-top: 32px;
    padding-bottom: 32px;
}

.logo-link {
    display: inline-flex;
    text-decoration: none;
}

.logo-link img {
    height: 32px;
    width: auto;
    display: block;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 32px;
    padding-bottom: 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-accent);
    color: var(--color-fg);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border-radius: 9999px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-fg);
    border-radius: 9999px;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(72px, 14vw, 200px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 32px;
    color: var(--color-fg);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-fg-subdued);
    margin: 0;
    max-width: 560px;
}

.site-footer {
    padding-top: 24px;
    padding-bottom: 32px;
    border-top: 1px solid var(--color-border);
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    color: var(--color-fg-muted);
}

@media (max-width: 640px) {
    .site-header,
    .hero,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-header {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .logo-link img {
        height: 28px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .monogram-bg {
        right: -150px;
        opacity: 0.05;
    }
}

@media (prefers-reduced-motion: reduce) {
    .monogram-bg,
    .badge-dot {
        animation: none;
    }
}
