/* ============ HOME — R25 Exclusive Premium ============ */
@import url('./buttons-r25.css?v=3');

:root {
    --st-bg: #030304;
    --st-bg-2: #08080b;
    --st-card: rgba(255, 255, 255, 0.025);
    --st-card-solid: rgba(12, 12, 16, 0.92);
    --st-glass: rgba(255, 255, 255, 0.04);
    --st-line: rgba(255, 255, 255, 0.06);
    --st-line-gold: rgba(232, 185, 35, 0.22);
    --st-gold: #e8b923;
    --st-gold-2: #f5d061;
    --st-gold-3: #c99a1a;
    --st-gold-glow: rgba(232, 185, 35, 0.4);
    --st-gold-soft: rgba(232, 185, 35, 0.08);
    --st-text: #fafafa;
    --st-muted: #7a7a88;
    --st-green: #34d399;
    --st-red: #f87171;
    --st-purple: #a78bfa;
    --st-r: 16px;
    --st-r-lg: 22px;
    --st-r-xl: 28px;
    --st-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --st-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    --st-shadow-gold: 0 20px 50px rgba(232, 185, 35, 0.12);
}

/* ── Ambient ── */
body.home-page {
    background: var(--st-bg);
    overflow-x: hidden;
}

body.home-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 70% 45% at 50% -5%, rgba(232, 185, 35, 0.1) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

body.home-page::after {
    display: none;
}

body.home-page .header {
    height: var(--header-h, 72px);
    background: rgba(3, 3, 4, 0.94);
    border-bottom: 1px solid var(--st-line);
    padding: 0 clamp(12px, 4vw, 36px);
    position: fixed;
}

body.home-page .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--st-gold-glow), transparent);
    opacity: 0.55;
}

body.home-page .main {
    position: relative;
    z-index: 1;
    padding-top: var(--header-h, 72px);
}

/* ── Promo banner ── */
.st-promo-banner {
    padding: 0 clamp(16px, 4vw, 36px);
    margin-bottom: clamp(12px, 2vw, 20px);
}

.st-promo-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--st-r-lg);
    overflow: hidden;
    border: 1px solid var(--st-line-gold);
    background: var(--st-card-solid);
    box-shadow: var(--st-shadow-gold);
}

.st-promo-banner__link {
    display: block;
    line-height: 0;
    transition: opacity 0.25s var(--st-ease), transform 0.25s var(--st-ease);
}

.st-promo-banner__link:hover {
    opacity: 0.92;
}

a.st-promo-banner__link:hover {
    transform: scale(1.005);
}

.st-promo-banner__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(220px, 28vw);
    object-fit: cover;
    object-position: center;
}

@media (max-width: 640px) {
    .st-promo-banner__img {
        max-height: 140px;
    }
}

body.home-page .nav a {
    border: 1px solid transparent;
    transition: all 0.3s var(--st-ease);
}

body.home-page .nav a.active {
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.14), rgba(232, 185, 35, 0.06));
    color: var(--st-gold-2);
    border-color: rgba(232, 185, 35, 0.18);
    box-shadow: 0 0 20px rgba(232, 185, 35, 0.08);
}

body.home-page .logo img {
    background: transparent;
    object-fit: contain;
}

body.home-page .logo h1 {
    background: linear-gradient(135deg, var(--st-gold-2), var(--st-gold), var(--st-gold-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

body.home-page .footer {
    background: linear-gradient(to top, var(--st-bg), transparent);
    border-top: 1px solid var(--st-line);
    padding: 40px 24px 32px;
    position: relative;
}

body.home-page .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--st-gold-glow), transparent);
    opacity: 0.4;
}

/* ── Container ── */
.st-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

/* ── Hero — Split Panel ── */
.st-hero {
    padding: 36px 0 48px;
    position: relative;
}

.st-hero__panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    align-items: stretch;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 12, 0.92);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.st-hero__panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--st-gold-2), var(--st-gold), transparent);
    opacity: 0.7;
    z-index: 1;
}

.st-hero__content {
    padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    justify-content: center;
    gap: 0;
}

.st-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--st-gold-2);
    background: rgba(232, 185, 35, 0.08);
    border: 1px solid rgba(232, 185, 35, 0.2);
    padding: 7px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.st-hero__tag i {
    font-size: 0.68rem;
    color: var(--st-gold);
}

.st-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    color: var(--st-text);
}

.st-hero__desc {
    font-size: 0.98rem;
    color: var(--st-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 28px;
}

.st-hero__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    width: 100%;
}

.st-hero__features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--st-text);
    transition: border-color 0.25s, background 0.25s;
}

.st-hero__features li i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(232, 185, 35, 0.1);
    color: var(--st-gold-2);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.st-hero__features li:hover {
    border-color: rgba(232, 185, 35, 0.18);
    background: rgba(232, 185, 35, 0.04);
}

.st-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.st-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 40px);
    background: rgba(232, 185, 35, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.st-hero__logo-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.st-hero__logo-frame {
    width: clamp(120px, 18vw, 148px);
    height: clamp(120px, 18vw, 148px);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hero-logo-float 6s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.st-hero__logo-frame:hover {
    transform: scale(1.1) translateY(-6px);
}

.st-hero__logo {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
    display: block;
    background: transparent;
    animation: hero-logo-breath 5s ease-in-out infinite;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.st-hero__logo-frame:hover .st-hero__logo {
    filter: drop-shadow(0 0 25px rgba(232, 185, 35, 0.75))
            drop-shadow(0 0 8px rgba(232, 185, 35, 0.45));
    opacity: 1;
    animation-play-state: paused;
}

/* Animations for R25 Store Hero Logo */
@keyframes hero-logo-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes hero-logo-breath {
    0% {
        transform: scale(0.93);
        opacity: 0.35;
        filter: drop-shadow(0 0 5px rgba(232, 185, 35, 0.1));
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(232, 185, 35, 0.7))
                drop-shadow(0 0 8px rgba(232, 185, 35, 0.35));
    }
    100% {
        transform: scale(0.93);
        opacity: 0.35;
        filter: drop-shadow(0 0 5px rgba(232, 185, 35, 0.1));
    }
}

.st-hero__brand {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, var(--st-gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-hero__brand-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--st-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: -8px;
}

/* ── Stats — unified glass bar ── */
.st-stats {
    margin-bottom: 72px;
}

.st-stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(12, 12, 14, 0.95);
    border: 1px solid var(--st-line);
    border-radius: var(--st-r-xl);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.st-stats__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 185, 35, 0.35), transparent);
}

.st-stats__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    position: relative;
    transition: background 0.35s var(--st-ease);
}

.st-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--st-line), transparent);
}

.st-stats__item:hover {
    background: rgba(232, 185, 35, 0.04);
}

.st-stats__icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.14), rgba(232, 185, 35, 0.04));
    border: 1px solid rgba(232, 185, 35, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(232, 185, 35, 0.08);
}

.st-stats__icon {
    font-size: 1rem;
    color: var(--st-gold-2);
}

.st-stats__data {
    text-align: right;
    min-width: 0;
}

.st-stats__num {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(180deg, #fff 30%, var(--st-gold-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.st-stats__label {
    font-size: 0.78rem;
    color: var(--st-muted);
    font-weight: 600;
}

/* ── Section head ── */
.st-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--st-line);
    position: relative;
}

.st-head::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--st-gold), transparent);
    border-radius: 2px;
}

.st-head__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.st-head__accent {
    width: 4px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--st-gold-2), var(--st-gold), transparent);
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--st-gold-glow);
}

.st-head h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.st-head p {
    font-size: 0.88rem;
    color: var(--st-muted);
    margin-top: 4px;
}

.st-head__count {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--st-gold-2);
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.12), rgba(232, 185, 35, 0.04));
    border: 1px solid rgba(232, 185, 35, 0.22);
    padding: 9px 18px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ── Products — Exclusive Cards ── */
.st-catalog {
    margin-bottom: 72px;
}

.st-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
}

.st-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: rgba(12, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s var(--st-ease), box-shadow 0.3s var(--st-ease), border-color 0.25s;
    isolation: isolate;
    contain: layout style paint;
}

.st-card__frame {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(232, 185, 35, 0.35), rgba(255, 255, 255, 0.04) 35%, transparent 65%, rgba(232, 185, 35, 0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.45;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s;
}

.st-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 185, 35, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.st-card:hover .st-card__frame {
    opacity: 1;
}

.st-card--sale {
    border-color: rgba(248, 113, 113, 0.12);
}

.st-card--sale .st-card__frame {
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.35), rgba(255, 255, 255, 0.04) 40%, rgba(232, 185, 35, 0.1));
}

.st-card--sale:hover {
    border-color: rgba(248, 113, 113, 0.28);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(248, 113, 113, 0.08);
}

.st-card--soon {
    opacity: 0.92;
}

.st-card__media {
    position: relative;
    height: 196px;
    border-radius: 16px;
    background: #050507;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.st-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--st-ease);
}

.st-card:hover .st-card__media img {
    transform: scale(1.04);
}

.st-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 8, 11, 0.92) 0%, rgba(8, 8, 11, 0.25) 38%, transparent 68%),
        linear-gradient(135deg, rgba(232, 185, 35, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.st-card__badges {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.st-card__badge,
.st-card__off {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.st-card__badge i,
.st-card__off i {
    font-size: 0.62rem;
}

.st-card__badge--ok {
    margin-right: auto;
    background: rgba(8, 20, 14, 0.72);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.st-card__badge--wait {
    margin-right: auto;
    background: rgba(20, 16, 8, 0.72);
    color: var(--st-gold-2);
    border: 1px solid rgba(232, 185, 35, 0.35);
}

.st-card__off {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(153, 27, 27, 0.92));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.st-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 6px 6px;
    gap: 14px;
}

.st-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
}

.st-card__name {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--st-text);
    word-break: break-word;
}

.st-card__type {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--st-gold-2);
    padding: 5px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.14), rgba(232, 185, 35, 0.04));
    border: 1px solid rgba(232, 185, 35, 0.22);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.st-card__desc {
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--st-muted);
    margin: -4px 0 4px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.st-card__foot {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.st-card__price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.st-card__price-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--st-muted);
    letter-spacing: 0.04em;
}

.st-card__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.st-card__old {
    font-size: 0.8rem;
    color: var(--st-muted);
    text-decoration: line-through;
    opacity: 0.75;
}

.st-card__price {
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #6ee7b7, var(--st-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.15));
}

.st-card--sale .st-card__price {
    background: linear-gradient(135deg, #fca5a5, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-card__actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.st-card__buy {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #0c0a04;
    background: linear-gradient(135deg, #f8df7a 0%, var(--st-gold-2) 35%, var(--st-gold) 70%, var(--st-gold-3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 6px 22px rgba(232, 185, 35, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.3s var(--st-ease), box-shadow 0.3s var(--st-ease);
    position: relative;
    overflow: hidden;
}

.st-card__buy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 55%);
    pointer-events: none;
}

.st-card__buy-text {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.st-card__buy:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px rgba(232, 185, 35, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.st-card__buy--off {
    background: rgba(255, 255, 255, 0.04);
    color: var(--st-muted);
    border: 1px solid var(--st-line);
    box-shadow: none;
    pointer-events: none;
    gap: 7px;
}

.st-card__buy--off::before {
    display: none;
}

.st-card__yt {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--st-muted);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s var(--st-ease);
}

.st-card__yt:hover {
    color: #ff5555;
    border-color: rgba(255, 85, 85, 0.35);
    background: rgba(255, 85, 85, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 85, 85, 0.12);
}

/* Empty */
.st-empty {
    text-align: center;
    padding: 80px 24px;
    border: 1px dashed rgba(232, 185, 35, 0.18);
    border-radius: var(--st-r-xl);
    background: rgba(255, 255, 255, 0.02);
}

.st-empty i {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--st-gold);
    opacity: 0.35;
}

.st-empty h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.st-empty p {
    color: var(--st-muted);
    font-size: 0.9rem;
}

/* ── Perks ── */
.st-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 72px;
}

.st-perk {
    position: relative;
    padding: 28px 24px;
    background: rgba(12, 12, 14, 0.92);
    border: 1px solid var(--st-line);
    border-radius: var(--st-r-lg);
    transition: border-color 0.25s, transform 0.25s var(--st-ease);
    overflow: hidden;
}

.st-perk::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232, 185, 35, 0.06), transparent 70%);
    pointer-events: none;
}

.st-perk:hover {
    border-color: var(--st-line-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.st-perk__num {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(232, 185, 35, 0.08);
    letter-spacing: -0.04em;
    pointer-events: none;
}

.st-perk__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 185, 35, 0.16), rgba(232, 185, 35, 0.04));
    border: 1px solid rgba(232, 185, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--st-gold-2);
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(232, 185, 35, 0.1);
}

.st-perk h3 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.st-perk p {
    font-size: 0.84rem;
    color: var(--st-muted);
    line-height: 1.7;
}

/* ── Discord ── */
.st-discord {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(232, 185, 35, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.22);
    border-radius: var(--st-r-xl);
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.st-discord::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 50%, rgba(88, 101, 242, 0.12), transparent 55%),
        radial-gradient(circle at 100% 50%, rgba(232, 185, 35, 0.06), transparent 50%);
    pointer-events: none;
}

.st-discord::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4), rgba(232, 185, 35, 0.2), rgba(88, 101, 242, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.st-discord__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(88, 101, 242, 0.22);
    border: 1px solid rgba(88, 101, 242, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #a5b4fc;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.15);
}

.st-discord__text {
    flex: 1;
    min-width: 180px;
    position: relative;
    z-index: 1;
}

.st-discord__text h3 {
    font-size: 1.12rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.st-discord__text p {
    font-size: 0.86rem;
    color: var(--st-muted);
    line-height: 1.6;
}

.st-discord .st-btn {
    position: relative;
    z-index: 1;
    margin-right: auto;
}

/* ── Footer ── */
.st-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.st-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.st-footer__brand:hover {
    transform: scale(1.05);
}

.st-footer__brand img {
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: none;
    background: transparent;
    object-fit: contain;
    box-shadow: none;
    transition: filter 0.4s ease, opacity 0.4s ease;
    animation: header-logo-breath 4s ease-in-out infinite;
}

.st-footer__brand:hover img {
    filter: drop-shadow(0 0 8px rgba(232, 185, 35, 0.65))
            drop-shadow(0 0 2px rgba(232, 185, 35, 0.35));
    opacity: 1;
    animation-play-state: paused;
}

.st-footer__copy {
    font-size: 0.8rem;
    color: var(--st-muted);
}

.st-footer__links {
    display: flex;
    gap: 10px;
}

.st-footer__links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--st-line);
    border-radius: 12px;
    color: var(--st-muted);
    font-size: 0.95rem;
    transition: all 0.3s var(--st-ease);
    background: var(--st-glass);
}

.st-footer__links a:hover {
    color: var(--st-gold-2);
    border-color: var(--st-line-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 185, 35, 0.12);
}

/* Reveal */
.st-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--st-ease), transform 0.7s var(--st-ease);
}

.st-fade.show {
    opacity: 1;
    transform: none;
}

.st-grid .st-fade:nth-child(2) { transition-delay: 0.05s; }
.st-grid .st-fade:nth-child(3) { transition-delay: 0.1s; }
.st-grid .st-fade:nth-child(4) { transition-delay: 0.15s; }
.st-grid .st-fade:nth-child(5) { transition-delay: 0.2s; }
.st-grid .st-fade:nth-child(6) { transition-delay: 0.25s; }

/* Responsive */
@media (max-width: 900px) {
    .st-hero__panel {
        grid-template-columns: 1fr;
    }

    .st-hero__visual {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        order: -1;
        padding: 32px 24px 28px;
    }

    .st-hero__content {
        align-items: center;
        text-align: center;
        padding: 28px 24px 32px;
    }

    .st-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .st-hero__features {
        justify-content: center;
    }

    .st-hero__btns {
        justify-content: center;
    }

    .st-stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .st-stats__item:nth-child(2)::after {
        display: none;
    }

    .st-stats__item:nth-child(odd)::after {
        display: none;
    }

    .st-stats__item:nth-child(1)::after,
    .st-stats__item:nth-child(3)::after {
        display: block;
    }
}

@media (max-width: 768px) {
    .st-hero {
        padding: 24px 0 36px;
    }

    .st-hero__panel {
        border-radius: 22px;
    }

    .st-perks {
        grid-template-columns: 1fr;
    }

    .st-discord {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .st-discord .st-btn {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .st-footer {
        flex-direction: column;
        text-align: center;
    }

    .st-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .st-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .st-stats__item {
        padding: 18px 14px;
    }

    .st-stats__num {
        font-size: 1.35rem;
    }

    .st-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 540px) {
    .st-stats__inner {
        grid-template-columns: 1fr;
    }

    .st-stats__item::after {
        display: none !important;
    }

    .st-stats__item {
        border-bottom: 1px solid var(--st-line);
    }

    .st-stats__item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .st-grid {
        grid-template-columns: 1fr;
    }

    .st-hero__btns {
        flex-direction: column;
        width: 100%;
    }

    .st-hero__btns .st-btn {
        width: 100%;
        justify-content: center;
    }

    .st-hero__features {
        flex-direction: column;
        align-items: stretch;
    }

    .st-hero__features li {
        justify-content: flex-start;
    }

    .st-btn {
        width: 100%;
        justify-content: center;
    }

    .st-card__foot {
        flex-direction: column;
        align-items: stretch;
    }

    .st-card__actions {
        width: 100%;
    }

    .st-card__buy {
        flex: 1;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .st-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
