:root {
    --bg: #000000;
    --fg: #ffffff;
    --muted: #9a9a9e;
    --accent: #e8341c;
    --accent-hover: #ff4326;
    --border: rgba(255, 255, 255, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

html, body {
    min-height: 100%;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.landing {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px 80px;
    max-width: 720px;
    margin: 0 auto;
}

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 36px;
}

.headline {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 24px;
}

.headline strong {
    color: var(--accent);
}

.description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 18px;
}

.description strong {
    color: var(--fg);
    font-weight: 600;
}

.actions {
    display: flex;
    gap: 14px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.06s ease, color 0.18s ease;
}

.button:active {
    transform: translateY(1px);
}

.button-large {
    font-size: 15px;
    padding: 14px 34px;
}

.button-apply {
    background: var(--accent);
    color: #fff;
}

.button-apply:hover {
    background: var(--accent-hover);
}

.button-login {
    background: transparent;
    color: var(--fg);
    border-color: var(--border);
}

.button-login:hover {
    border-color: var(--fg);
}

@media (max-width: 600px) {
    .logo {
        width: 170px;
        margin-bottom: 28px;
    }

    .headline {
        font-size: 22px;
    }

    .actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .actions .button {
        width: 100%;
    }
}
