@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #0a0b0f;
    --bg-soft: #111318;
    --panel: rgba(17, 19, 24, 0.96);
    --panel-soft: rgba(24, 26, 32, 0.94);
    --line: rgba(201, 170, 104, 0.14);
    --line-strong: rgba(201, 170, 104, 0.28);
    --text-soft: #9c978c;
    --text-mid: #cfc8bb;
    --text-main: #f2eee7;
    --gold: #c9aa68;
    --gold-soft: #9d8352;
    --crimson: #7d2b2b;
    --green: #67b47a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(125, 43, 43, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(201, 170, 104, 0.08), transparent 20%),
        linear-gradient(180deg, #090a0d 0%, #0d1016 42%, #08090c 100%);
    color: var(--text-main);
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(201,170,104,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,170,104,0.018) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.background-orb {
    position: fixed;
    width: 26rem;
    height: 26rem;
    border-radius: 9999px;
    filter: blur(110px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.orb-one {
    top: -10rem;
    left: -8rem;
    background: rgba(125, 43, 43, 0.32);
}

.orb-two {
    right: -10rem;
    top: 6rem;
    background: rgba(201, 170, 104, 0.14);
}

main,
header,
footer {
    position: relative;
    z-index: 1;
}

.display-title,
h1,
h2,
h3 {
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.glass-card,
.content-panel,
.hero-panel,
.page-hero {
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background:
        linear-gradient(180deg, rgba(21, 24, 30, 0.96), rgba(12, 14, 18, 0.98));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.glass-card:hover {
    border-color: var(--line-strong);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.95rem;
    border: 1px solid rgba(201, 170, 104, 0.18);
    border-radius: 999px;
    background: rgba(201, 170, 104, 0.06);
    color: #e7d6ae;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--gold);
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
    background: linear-gradient(180deg, #c9aa68, #aa8b55);
    color: #17120b;
}

.button-secondary {
    border: 1px solid rgba(201, 170, 104, 0.22);
    background: rgba(201, 170, 104, 0.04);
    color: var(--text-main);
}

.button-primary:hover,
.button-secondary:hover {
    transform: translateY(-1px);
}

.button-secondary:hover {
    border-color: rgba(201, 170, 104, 0.34);
    background: rgba(201, 170, 104, 0.08);
}

.hero-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(19, 15, 14, 0.94), rgba(11, 13, 17, 0.96));
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(125, 43, 43, 0.2), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(201, 170, 104, 0.1), transparent 16%),
        linear-gradient(120deg, rgba(9, 10, 13, 0.66) 0%, rgba(9, 10, 13, 0.34) 52%, rgba(9, 10, 13, 0.82) 100%),
        url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    opacity: 0.23;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.headline {
    font-size: clamp(2.6rem, 5.4vw, 4.8rem);
    line-height: 0.95;
    color: var(--text-main);
}

.subheadline {
    max-width: 42rem;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.8;
    color: var(--text-mid);
}

.stat-grid {
    display: grid;
    gap: 1rem;
}

.stat-card {
    border: 1px solid rgba(201, 170, 104, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.05rem;
}

.stat-value,
.hero-rate-value {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.7rem;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: 0.03em;
}

.hero-rate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(201, 170, 104, 0.12);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.025);
    padding: 0.95rem 1.05rem;
}

.feature-tile,
.info-pill {
    border: 1px solid rgba(201, 170, 104, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.025);
    padding: 1rem 1.1rem;
}

.news-thumb {
    position: relative;
    overflow: hidden;
}

.news-thumb img {
    transition: transform 220ms ease;
}

.news-thumb:hover img {
    transform: scale(1.03);
}

input,
textarea,
select {
    color: #f8fafc;
}

input::placeholder,
textarea::placeholder {
    color: rgba(203, 213, 225, 0.55);
}
