@font-face {
    font-family: 'Evolventa';
    src: url('fonts/Evolventa-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Evolventa';
    src: url('fonts/Evolventa-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg: #0b0b0b;
    --panel: #141414;
    --panel-border: rgba(229, 179, 70, 0.22);
    --text: #f4faff;
    --muted: rgba(244, 250, 255, 0.72);
    --accent: #e5b346;
    --accent-soft: rgba(229, 179, 70, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Evolventa', Arial, sans-serif;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78)),
        url('User_image/_34.webp') center/cover fixed no-repeat;
    color: var(--text);
}

a {
    color: inherit;
}

.page-shell {
    min-height: 100vh;
    padding: 32px 20px 64px;
    background: rgba(0, 0, 0, 0.58);
}

.page-container {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.brand-link {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--accent);
}

.top-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-link,
.cta-link {
    text-decoration: none;
    border: 1px solid var(--panel-border);
    background: rgba(20, 20, 20, 0.72);
    color: var(--text);
    padding: 12px 18px;
    border-radius: 999px;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.cta-link:hover {
    background: rgba(229, 179, 70, 0.14);
    border-color: rgba(229, 179, 70, 0.5);
    transform: translateY(-1px);
}

.hero {
    padding: 36px;
    border: 1px solid var(--panel-border);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.9), rgba(11, 11, 11, 0.88));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    line-height: 1.15;
}

h1 {
    font-size: clamp(34px, 5vw, 60px);
    max-width: 900px;
}

h2 {
    font-size: clamp(26px, 3.2vw, 38px);
}

h3 {
    font-size: 22px;
}

.hero-lead,
.section-lead,
.text-block p,
.faq-answer,
.cta-card p,
.meta-line,
li {
    color: var(--muted);
    line-height: 1.7;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.cta-link.primary {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.card,
.faq-item,
.cta-card,
.text-block {
    padding: 26px;
    border-radius: 22px;
    border: 1px solid var(--panel-border);
    background: rgba(20, 20, 20, 0.82);
}

.page-section {
    margin-top: 28px;
}

.section-lead {
    max-width: 820px;
}

.check-list,
.meta-list {
    margin: 0;
    padding-left: 20px;
}

.meta-list li,
.check-list li {
    margin-bottom: 10px;
}

.highlight {
    color: var(--text);
}

.inline-link {
    color: var(--accent);
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-question {
    margin-bottom: 10px;
    color: var(--text);
}

.cta-card {
    margin-top: 32px;
}

.site-footer {
    margin-top: 28px;
    color: var(--muted);
    font-size: 15px;
}

.site-footer a {
    text-decoration: none;
    color: var(--accent);
}

.site-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 840px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 28px 22px;
    }

    .card,
    .faq-item,
    .cta-card,
    .text-block {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        padding: 20px 14px 44px;
    }

    .hero-lead,
    .section-lead,
    .text-block p,
    .faq-answer,
    .cta-card p,
    .meta-line,
    li {
        font-size: 16px;
    }

    .nav-link,
    .cta-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
