:root {
    --color-bg: #0e1217;
    --color-bg-soft: #151b23;
    --color-card: rgba(255, 255, 255, 0.08);
    --color-card-border: rgba(255, 255, 255, 0.14);

    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.68);

    --color-gold: #d9a85f;
    --color-gold-light: #f3cf8d;
    --color-dark: #111111;

    --container-width: 1180px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 16% 18%, rgba(217, 168, 95, 0.18), transparent 30%),
        radial-gradient(circle at 82% 24%, rgba(90, 135, 210, 0.16), transparent 34%),
        linear-gradient(135deg, #0e1217 0%, #151b23 48%, #0c1015 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 72%);
    pointer-events: none;
}

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

button,
input,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container-width), calc(100% - 40px));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    color: #17110a;
    background: linear-gradient(135deg, var(--color-gold-light), #b87932);
    box-shadow: 0 18px 42px rgba(217, 168, 95, 0.28);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(217, 168, 95, 0.4);
}

.btn--secondary {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn--secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
}

.section {
    padding: 110px 0;
}

.section__head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section__label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--color-gold-light);
    background: rgba(217, 168, 95, 0.12);
    border: 1px solid rgba(217, 168, 95, 0.24);
    font-size: 14px;
    font-weight: 700;
}

.section__title {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -1.6px;
    margin-bottom: 18px;
}

.section__text {
    color: var(--color-text-muted);
    font-size: 18px;
    line-height: 1.65;
}