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

:root {
    --bg-1: #0a1a0f;
    --bg-2: #111111;
    --panel: rgba(255, 255, 255, 0.06);
    --text: #ffffff;
    --muted: #b6b6b6;
    --accent: #4ade80;
    --border: rgba(255, 255, 255, 0.10);
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
    color: var(--text);
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrapper {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
}

.brand-text {
    font-size: 1.05rem;
    font-weight: 600;
}

.site-nav {
    display: flex;
    gap: 18px;
}

.nav-link {
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
}

.site-main {
    flex: 1;
    display: flex;
}

.hero,
.content-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.hero-inner,
.content-box {
    width: 100%;
    max-width: 720px;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 24px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.25);
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo img {
    width: 150px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.lead,
.content-box p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
}

.lead {
    margin-bottom: 24px;
}

.contact-text {
    margin-bottom: 14px;
    color: var(--text);
    font-weight: 500;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.contact-links a {
    color: var(--accent);
    font-weight: 600;
}

.contact-links a:hover {
    text-decoration: underline;
}

.divider {
    color: var(--muted);
}

.content-box p + p {
    margin-top: 18px;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 700px) {
    .nav-wrap {
        flex-direction: column;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-inner,
    .content-box {
        padding: 36px 20px;
    }
}