* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% 100%, #30251c 0%, #111 45%, #050505 80%);
    color: #f4f1ea;
    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.content {
    width: 100%;
    max-width: 900px;
}

.eyebrow {
    color: #d59b58;
    letter-spacing: 5px;
    font-size: 13px;
    margin-bottom: 25px;
}

h1 {
    font-family: Georgia, serif;
    font-size: clamp(70px, 12vw, 150px);
    font-weight: normal;
    line-height: .82;
    letter-spacing: -5px;
    margin: 0 0 40px;
}

.description {
    max-width: 600px;
    color: #aaa;
    font-size: 18px;
    line-height: 1.7;
}

.status {
    margin-top: 45px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #aaa;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #66d17a;
    border-radius: 50%;
    margin-right: 10px;
}

.links {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.links a {
    color: #d59b58;
    text-decoration: none;
    border-bottom: 1px solid #d59b58;
    padding-bottom: 5px;
}
