@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

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

html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ── Grain overlay ── */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.35;
}

/* ── Nav ── */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 56px;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.topnav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: white;
    text-decoration: none;
    user-select: none;
}

.topnav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topnav-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.topnav-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

/* ── Hero ── */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 80px;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 28px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 11vw, 9.5rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin: 0 0 36px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-body {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin: 0;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.9s ease 0.5s forwards;
}

/* ── Steps ── */
.steps {
    padding: 40px 64px 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0 60px;
    padding: 72px 0;
    align-items: start;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.1);
    display: block;
    transition: color 0.3s ease;
}

.step:hover .step-number {
    color: rgba(255, 255, 255, 0.35);
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.03em;
    margin: 0 0 20px;
    color: white;
    line-height: 1.05;
}

.step-body {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 28px;
    max-width: 560px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-details li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
    padding-left: 18px;
    position: relative;
}

.step-details li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.2);
}

.step-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    width: 100%;
}

/* ── CTA ── */
.cta {
    padding: 100px 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    margin: 0 0 40px;
    max-width: 700px;
}

.cta-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: black;
    background: white;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: scale(1.03);
}

/* ── Animations ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }

    .topnav {
        padding: 0 18px;
        height: 50px;
    }

    .topnav-logo {
        font-size: 1.3rem;
    }

    .topnav-btn {
        font-size: 0.75rem;
        padding: 5px 10px;
        letter-spacing: 0.03em;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: 60vh;
    }

    .steps {
        padding: 20px 24px 80px;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 48px 0;
    }

    .step-number {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .cta {
        padding: 80px 24px;
    }
}