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

:root {
    --brand-orange: #c55414;
    --brand-orange-dim: rgba(197, 84, 20, 0.35);
    --bg: #0d0d0d;
    --text-muted: #888;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--bg);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
}

.logo {
    width: min(340px, 88vw);
    height: auto;
    display: block;
}

.slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
    font-size: clamp(1.4rem, 5.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.slogan-orange { color: var(--brand-orange); }
.slogan-white  { color: #fff; }

.about {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-title {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand-orange);
}

.about-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.65;
    color: #ccc;
    max-width: 380px;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--brand-orange-dim);
    border-radius: 6px;
    background: rgba(197, 84, 20, 0.04);
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.social-btn:hover,
.social-btn:focus-visible {
    background: rgba(197, 84, 20, 0.12);
    border-color: var(--brand-orange);
    transform: translateY(-2px);
    outline: none;
}

.social-btn:active {
    transform: translateY(0);
}

.social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--brand-orange);
}
