body {
    background-color: black;
    color: #FFCA02;
    margin: 0;
}

.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.95), #000000);
}

.home-wrapper{
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 4rem 1.5rem;
    position: relative;
}

.home-logo {
    width: max(10%, 150px);
    /* margin: 0 auto 1.5rem; */
}

.home-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}

.home-links a {
    text-decoration: none;
}

.home-button {
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(120deg, #ffca02, #f97316);
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.home-button:focus-visible {
    outline: 3px solid rgba(255, 202, 2, 0.6);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid rgba(255, 202, 2, 0.3);
    backdrop-filter: blur(6px);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-pill {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFCA02;
}

.brand-tagline {
    margin: 0;
    font-size: 0.9rem;
    color: #facc15;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-nav a {
    text-decoration: none;
    font-weight: 600;
    color: #FFCA02;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: #FFCA02;
    color: #050505;
    border-color: #FFCA02;
}

@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
    }
}

.section-page {
    min-height: calc(100vh - 80px);
    padding: 4rem 1.5rem 3rem;
    background: radial-gradient(circle at top, rgba(15, 15, 15, 0.9), #020202);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-shell {
    width: 100%;
    max-width: 720px;
    padding: 2.5rem;
    border-radius: 32px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 202, 2, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.link-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffca02;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.section-page h2 {
    margin: 0 0 1rem;
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-page p {
    line-height: 1.7;
    margin: 0 auto;
    max-width: 560px;
}