:root {
    --bg-main: #050c16;
    --bg-secondary: #0b1521;
    --accent-gold: #a78254;
    --accent-gold-dark: #7b5b36;
    --accent-gold-soft: #c79a60;
    --text-main: #ffffff;
    --text-muted: #c5ceda;
    --font-main: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    color: var(--text-main);
    background: radial-gradient(circle at 80% 0, #3e2a18 0, transparent 60%),
                radial-gradient(circle at 0 90%, #3a2414 0, transparent 55%),
                #020812;
    scroll-behavior: smooth;
}

.page {
    min-height: 100vh;
}

/* Utilities */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 32px;
}

.section-title {
    font-weight: 600;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 46px;
    border-radius: 6px;
    background-image: linear-gradient(135deg, var(--accent-gold-soft), var(--accent-gold-dark));
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.button--small {
    padding: 10px 26px;
    font-size: 13px;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(5, 12, 22, 0.95), transparent);
    backdrop-filter: blur(8px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.logo__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 32px;
    border-radius: 6px;
    background-image: linear-gradient(135deg, #f6d08d, #94683a);
    font-weight: 700;
    color: #111318;
}

.logo__text {
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 24px;
    font-size: 13px;
}

.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.15s ease;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

.header__btn {
    font-size: 12px;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 140px;
    overflow: hidden;
}

.hero__overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(199, 154, 96, 0.35), transparent 55%),
        radial-gradient(circle at 10% 100%, rgba(199, 154, 96, 0.15), transparent 55%);
    opacity: 0.9;
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 40px;
}

.hero__left {
    z-index: 1;
}

.hero__title {
    margin: 0 0 32px;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__title--accent {
    color: var(--accent-gold-soft);
}

.hero__text {
    margin: 0 0 32px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.hero__button {
    font-size: 14px;
}

.hero__right {
    position: relative;
    height: 420px;
}

.coin {
    position: absolute;
    border-radius: 50%;
    background-image: radial-gradient(circle at 30% 20%, #ffe5b5, #c28e53 45%, #5c3d24 85%);
    box-shadow:
        0 35px 60px rgba(0, 0, 0, 0.7),
        inset 0 0 0 6px rgba(0, 0, 0, 0.2);
}

.coin::after {
    content: "";
    position: absolute;
    inset: 20%;
    border-radius: inherit;
    border: 3px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.45);
}

.coin--big {
    width: 260px;
    height: 260px;
    top: 40px;
    right: 0;
}

.coin--medium {
    width: 190px;
    height: 190px;
    bottom: 0;
    right: 70px;
}

.coin--small {
    width: 130px;
    height: 130px;
    top: 130px;
    right: 220px;
    opacity: 0.75;
}

/* WHY */

.why {
    padding-block: 100px 80px;
    background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.06), transparent 60%),
                var(--bg-secondary);
}

.why__text {
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.why__people {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.person {
    display: inline-block;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, #ffffff, #9c9ea8 60%, #424654 90%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.person--main {
    width: 120px;
    height: 120px;
}

.person--left,
.person--right {
    width: 70px;
    height: 70px;
}

.person--left {
    transform: translateY(26px);
}

.person--right {
    transform: translateY(26px);
}

.person--gold,
.person--gold2 {
    background: radial-gradient(circle at 30% 20%, #ffe5b5, #d39b52 55%, #774714 90%);
    width: 70px;
    height: 70px;
}

.person--gold {
    transform: translateY(30px);
}

.person--gold2 {
    transform: translateY(50px);
}

/* ADVANTAGES */

.advantages {
    padding-block: 90px 80px;
    background: radial-gradient(circle at 10% 0, rgba(199, 154, 96, 0.12), transparent 55%),
                var(--bg-main);
}

.advantages__title span {
    display: block;
}

.cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.card {
    border-radius: 18px;
    padding: 32px 30px 36px;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.06), transparent 70%),
                rgba(3, 11, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.card__icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background-image: linear-gradient(140deg, #f0d59f, #94663c);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.card__icon::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.18);
    mix-blend-mode: multiply;
}

/* Простые вариации, чтобы иконки отличались */
.card__icon--2 {
    border-radius: 50%;
}

.card__icon--3 {
    border-radius: 16px 32px 16px 32px;
}

.card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.card__subtitle {
    margin: 0;
    font-size: 15px;
    color: var(--accent-gold-soft);
}

/* Lists */

.lists {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    font-size: 14px;
    color: var(--text-muted);
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
}

.list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold-soft);
}

/* CTA */

.cta {
    position: relative;
    padding-block: 110px 80px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at 0 100%, rgba(199, 154, 96, 0.25), transparent 60%),
                var(--bg-secondary);
}

.cta__overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 80%, rgba(199, 154, 96, 0.16), transparent 55%);
    opacity: 0.9;
}

.cta__content {
    position: relative;
}

.cta__title {
    margin-bottom: 26px;
}

.cta__text {
    margin: 0 0 34px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta__button {
    font-size: 14px;
}

/* FOOTER */

.footer {
    padding-block: 30px 40px;
    background: #020812;
}

.footer__inner {
    display: flex;
    justify-content: center;
}

.footer__nav {
    display: flex;
    gap: 32px;
    font-size: 12px;
}

.footer__link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer__link:hover {
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .hero__content {
        grid-template-columns: 1fr;
    }

    .hero__right {
        order: -1;
        height: 320px;
        margin-bottom: 30px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .lists {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .header__inner {
        gap: 16px;
    }

    .nav {
        display: none; /* для простоты – без мобильного меню */
    }

    .hero {
        padding-top: 110px;
    }

    .section-title {
        letter-spacing: 0.14em;
    }

    .container {
        padding-inline: 20px;
    }
}
