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

:root {
    --bg: #2b2d31;
    --bg-deep: #1e2023;
    --surface: rgba(255, 255, 255, 0.04);
    --orange: #f5622a;
    --orange-light: #ff8050;
    --white: #f0ede8;
    --white-soft: rgba(240, 237, 232, 0.78);
    --white-faint: rgba(240, 237, 232, 0.16);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
            radial-gradient(circle at top, rgb(245 98 42 / 35%), transparent 34%),
            linear-gradient(135deg, #4c2e23 0%, #2c2926 58%, #423324 100%);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    overflow: auto;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(240, 237, 232, 0.22) 1px, transparent 0);
    background-size: 42px 42px;
    opacity: 0.09;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: min(46vw, 680px);
    height: min(46vw, 680px);
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(245, 98, 42, 0.16) 0%, transparent 68%);
    filter: blur(18px);
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        opacity: 0.75;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -52%) scale(1.06);
    }
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    isolation: isolate;
}

.hero {
    width: min(100%, 980px);
    text-align: center;
    display: grid;
    gap: 40px;
    justify-items: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.logo-wrap {
    padding: 26px 34px;
    border: 1px solid var(--white-faint);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.logo {
    width: clamp(240px, 34vw, 370px);
    height: auto;
    display: block;
}

.copy {
    display: grid;
    gap: 24px;
    justify-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(245, 98, 42, 0.34);
    background: rgba(245, 98, 42, 0.1);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 16px rgba(245, 98, 42, 0.55);
}

h1 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.7rem, 5.5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 800;
    text-wrap: balance;
}

h1 span {
    color: var(--orange);
}

.lead {
    margin: 0;
    max-width: 760px;
    font-size: clamp(1.08rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: var(--white-soft);
    text-wrap: balance;
}

.lead strong {
    color: var(--white);
    font-weight: 700;
}

.actions {
    display: flex;
    justify-content: center;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 26px;
    border-radius: 18px;
    border: 0;
    background: var(--orange);
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(245, 98, 42, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
    background: var(--orange-light);
    box-shadow: 0 22px 42px rgba(245, 98, 42, 0.34);
}

.cta:focus-visible {
    outline: 3px solid rgba(240, 237, 232, 0.3);
    outline-offset: 4px;
}

.cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

footer {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    text-align: center;
    z-index: 1;
}

footer p {
    margin: 0;
    color: rgba(240, 237, 232, 0.54);
    font-size: 0.92rem;
}

@media (max-width: 720px) {
    body {
        overflow: auto;
    }

    .page {
        justify-content: center;
        padding: 20px 18px 96px;
    }

    .hero {
        gap: 32px;
    }

    .logo-wrap {
        width: 100%;
        padding: 22px 20px;
        border-radius: 22px;
        display: flex;
        justify-content: center;
    }

    .lead {
        max-width: 32ch;
    }

    .cta {
        width: 100%;
    }

    footer {
        bottom: 20px;
    }
}
