:root {
    --ink: #fcfdff;
    --body: rgba(252, 253, 255, 0.86);
    --canvas: #000000;
    --surface-elevated: #101012;
    --hairline: rgba(255, 255, 255, 0.06);
    --rounded-full: 9999px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: Inter, sans-serif;
    background: var(--canvas);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--canvas);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to top, transparent 15%, #000 25%);
    mask-image: linear-gradient(to top, transparent 15%, #000 25%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 140px 32px 96px;
    text-align: center;
}

.badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 4px 10px;
    background: var(--surface-elevated);
    color: var(--body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: var(--rounded-full);
    border: 1px solid var(--hairline);
    animation: rise 0.7s ease both;
}

h1 {
    margin: 0 0 16px;
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(44px, 10vw, 76.8px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.768px;
    font-feature-settings: "ss01", "liga";
    background: linear-gradient(180deg, #ffffff 0%, #9ea3af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: rise 0.8s 0.06s ease both;
}

.subtitle {
    margin: 0 auto;
    max-width: 42ch;
    font-family: "Inter Tight", Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.3px;
    color: var(--body);
    animation: rise 0.85s 0.12s ease both;
}

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

@media (max-width: 767px) {
    .hero-content {
        padding: 100px 16px 64px;
    }

    h1 {
        letter-spacing: -0.5px;
    }

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

@media (max-width: 425px) {
    h1 {
        font-size: 44px;
    }
}
