:root {
    --bg: #070708;
    --panel: rgba(18, 18, 18, 0.92);
    --panel-soft: rgba(255, 255, 255, 0.035);
    --gold: #d4af37;
    --gold-bright: #f6d46a;
    --text: #f7f2df;
    --muted: #c7c0a8;
    --line: rgba(212, 175, 55, 0.22);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top center, rgba(212, 175, 55, 0.12), transparent 34rem),
        linear-gradient(180deg, #10100e 0%, var(--bg) 46%, #040404 100%);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.65;
}

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

.site-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    padding: 24px 0 10px;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.36);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.nav-links a:hover {
    color: var(--gold-bright);
}

.page-hero {
    padding: 78px 0 46px;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.055);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.08;
}

h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.hero-copy {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.content-band {
    padding: 34px 0 76px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 26px;
    align-items: start;
}

.content-main,
.support-panel {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.content-main {
    padding: clamp(26px, 4vw, 44px);
}

.support-panel {
    padding: 26px;
    position: sticky;
    top: 18px;
}

.content-main p,
.support-panel p {
    color: var(--muted);
}

.content-main p {
    margin: 0 0 18px;
}

.feature-list,
.footer-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
}

.feature-list i {
    color: var(--gold-bright);
    margin-top: 5px;
}

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

.faq-item {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.faq-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.faq-item h2,
.term-block h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.term-block {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.term-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.term-block-spaced {
    margin-top: 28px;
}

.cta-box {
    display: grid;
    gap: 14px;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #080808;
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.28);
}

.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.04);
}

.site-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding: 38px 0;
    background: rgba(0, 0, 0, 0.34);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 28px;
}

.footer-brand {
    display: grid;
    gap: 12px;
}

.footer-brand h2 {
    margin: 0;
}

.footer-brand p,
.footer-list {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 18px;
    color: var(--gold-bright);
    font-weight: 800;
}

.copyright {
    margin-top: 24px;
    color: rgba(247, 242, 223, 0.58);
    font-size: 0.9rem;
}

@media (max-width: 760px) {
    .nav-wrap,
    .nav-links,
    .footer-grid,
    .content-grid {
        display: grid;
    }

    .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .page-hero {
        padding: 46px 0 24px;
    }

    .support-panel {
        position: static;
    }
}
