:root {
    --bg: #ffffff;
    --bg-soft: #f5f5f5;
    --fg: #0a0a0a;
    --fg-dim: #5a5a5a;
    --fg-faint: #aaaaaa;
    --accent: #fbd00f;
    --accent-ink: #0a0a0a;
    --line: rgba(0, 0, 0, 0.08);
}

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

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    min-height: 100dvh;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.stage {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo {
    height: auto;
    display: block;
}

/* Hero */
.hero {
    align-self: center;
    padding: clamp(2rem, 8vw, 5rem) 0;
    max-width: 780px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--fg);
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: var(--accent);
    padding: 0.35em 0.75em;
}

.headline {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #3a3a3a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lede {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    color: var(--fg-dim);
    max-width: 540px;
    line-height: 1.6;
    animation: rise 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.foot {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--fg-faint);
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    animation: rise 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.foot a {
    color: var(--fg-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.foot a:hover {
    color: var(--fg);
}

.dot {
    color: var(--fg-faint);
}

@media (max-width: 540px) {
    .logo {
        width: 110px;
        height: auto;
    }
    .foot {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}