:root {
    --color-bg: #000000;
    --color-text: #FFFFFF;
    --color-muted: #A8A8A8;
    --color-accent: #F5C400;
    --color-maroon: #5A1A1A;

    --font-sans: "Arial", "Helvetica Neue", Helvetica, sans-serif;

    --max-width: 640px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 2.75rem;
    --space-xl: 4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse at center, rgba(90, 26, 26, 0.18) 0%, rgba(0, 0, 0, 0) 55%),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
}

.corner {
    position: fixed;
    width: 44px;
    height: 44px;
    border-color: var(--color-accent);
    border-style: solid;
    border-width: 0;
    opacity: 0.55;
    z-index: 2;
}

.corner--tl {
    top: 28px;
    left: 28px;
    border-top-width: 1px;
    border-left-width: 1px;
}

.corner--tr {
    top: 28px;
    right: 28px;
    border-top-width: 1px;
    border-right-width: 1px;
}

.corner--bl {
    bottom: 28px;
    left: 28px;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.corner--br {
    bottom: 28px;
    right: 28px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.hero {
    width: 100%;
    max-width: var(--max-width);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
}

.logo-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(245, 196, 0, 0.08) 0%,
        rgba(245, 196, 0, 0) 65%);
    pointer-events: none;
    z-index: 0;
}

.logo {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 360px;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    mix-blend-mode: screen;
}

.brand {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-text);
    line-height: 1.1;
}

.divider {
    display: block;
    width: 64px;
    height: 1px;
    margin: var(--space-md) 0 var(--space-lg);
    background: linear-gradient(90deg,
        rgba(245, 196, 0, 0) 0%,
        rgba(245, 196, 0, 0.9) 50%,
        rgba(245, 196, 0, 0) 100%);
}

.status {
    margin: 0 0 var(--space-xl);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 400;
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

.contact {
    width: 100%;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__heading {
    margin: 0 0 var(--space-md);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--color-text);
}

.contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact__item {
    font-size: 0.95rem;
    color: var(--color-muted);
    letter-spacing: 0.03em;
}

.contact__item a {
    color: var(--color-muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 160ms ease, border-color 160ms ease;
    padding-bottom: 1px;
}

.contact__item a:hover,
.contact__item a:focus-visible {
    color: var(--color-accent);
    border-bottom-color: rgba(245, 196, 0, 0.6);
    outline: none;
}

.contact__item a:focus-visible {
    outline: 1px solid rgba(245, 196, 0, 0.6);
    outline-offset: 4px;
    border-bottom-color: transparent;
}

@media (max-width: 600px) {
    .page {
        padding: var(--space-lg) var(--space-sm);
    }

    .logo {
        max-width: 260px;
    }

    .brand {
        letter-spacing: 0.22em;
    }

    .contact__heading {
        letter-spacing: 0.36em;
    }

    .corner {
        width: 28px;
        height: 28px;
    }

    .corner--tl,
    .corner--tr {
        top: 16px;
    }

    .corner--bl,
    .corner--br {
        bottom: 16px;
    }

    .corner--tl,
    .corner--bl {
        left: 16px;
    }

    .corner--tr,
    .corner--br {
        right: 16px;
    }
}

@media (max-width: 360px) {
    .brand {
        font-size: 1.75rem;
        letter-spacing: 0.18em;
    }

    .contact__item {
        font-size: 0.88rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}
