/* ============================================================
   CS2 About Us — redesign in the site's new design system
   ------------------------------------------------------------
   Scoped under .cs2-about. Accent #cde738, strong rounding, glow.
   Buttons reproduce the home component (.mush-btn-shop): pill, Bebas,
   accent, glossy inset shadow, hover scale. No emoji (SVG icons only).
   Content-focused layout — deliberately NOT a copy of the home page.
   Width is unified with the other secondary pages via --cs2-page-max.
   ============================================================ */

.cs2-about {
    --cs2-accent: #cde738;
    --cs2-text: #f6f4f9;
    --cs2-muted: rgba(246, 244, 249, 0.62);
    --cs2-panel: rgba(255, 255, 255, 0.035);
    --cs2-border: rgba(255, 255, 255, 0.08);
    --cs2-title-grad: radial-gradient(ellipse at 30% 45%, #fff152 0%, #cfe636 45%, #9edb1a 100%);
    max-width: var(--cs2-page-max, 1400px);
    margin: 0 auto;
    padding: clamp(16px, 4vw, 40px);
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--cs2-text);
}

.cs2-about h1, .cs2-about h2, .cs2-about h3 { margin: 0; }

/* ── Shared button = home .mush-btn-shop component ── */
.cs2-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 42px;
    background: var(--cs2-accent);
    color: #000;
    border-radius: 999px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow:
        inset 0 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.24),
        inset 0 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.34),
        inset 0 12px 31.2px -1px rgba(255, 255, 255, 0.8),
        0 8px 30px -8px rgba(205, 231, 56, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cs2-about-btn:hover {
    transform: scale(1.02);
    color: #000;
    text-decoration: none;
    box-shadow:
        inset 0 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.24),
        inset 0 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.34),
        inset 0 12px 31.2px -1px rgba(255, 255, 255, 0.8),
        0 12px 38px -8px rgba(205, 231, 56, 0.7);
}
.cs2-about-btn:active { transform: scale(0.98); }
.cs2-about-btn:focus-visible { outline: 2px solid var(--cs2-accent); outline-offset: 4px; }

/* ── 1. Compact hero (no min-height:100vh, no label, title ≤2 lines) ── */
.cs2-about-hero {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: clamp(36px, 6vw, 76px) clamp(24px, 5vw, 64px);
    margin-bottom: clamp(28px, 4vw, 52px);
    background:
        radial-gradient(120% 130% at 8% 0%, rgba(205, 231, 56, 0.14) 0%, transparent 55%),
        linear-gradient(135deg, #0e1606 0%, #070a02 60%, #05040a 100%);
    border: 1px solid var(--cs2-border);
}
.cs2-about-hero__glow {
    position: absolute;
    left: -10%; top: -40%;
    width: 60%; height: 140%;
    background: radial-gradient(circle, rgba(205, 231, 56, 0.18) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.cs2-about-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.cs2-about-hero__title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(42px, 6.4vw, 88px);
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    max-width: 18ch;                 /* keeps the title to ~2 lines */
    margin-bottom: 18px;
    background: var(--cs2-title-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cs2-about-hero__desc {
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 1.55;
    color: var(--cs2-muted);
    max-width: 620px;
    margin-bottom: 28px;
}

/* ── 2. Short intro ── */
.cs2-about-intro {
    max-width: 760px;
    margin: 0 auto clamp(32px, 5vw, 64px);
    text-align: center;
    padding: 0 8px;
}
.cs2-about-intro__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cs2-about-intro__text {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
    color: var(--cs2-muted);
    max-width: 60ch;
    margin: 0 auto;
}

/* ── 3. Advantages grid ── */
.cs2-about-adv { margin-bottom: clamp(28px, 4vw, 56px); }
.cs2-about-adv__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
}
.cs2-about-card {
    background: var(--cs2-panel);
    border: 1px solid var(--cs2-border);
    border-radius: 24px;
    padding: clamp(22px, 2.4vw, 32px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.cs2-about-card:hover {
    border-color: rgba(205, 231, 56, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(205, 231, 56, 0.35);
}
.cs2-about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 18px;
    color: var(--cs2-accent);
    background: rgba(205, 231, 56, 0.1);
    border: 1px solid rgba(205, 231, 56, 0.25);
}
.cs2-about-card__icon svg { width: 24px; height: 24px; }
.cs2-about-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}
.cs2-about-card__text { font-size: 14.5px; line-height: 1.55; color: var(--cs2-muted); }

/* ── 4. Speed / Security split ── */
.cs2-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 1.5vw, 20px);
    margin-bottom: clamp(28px, 4vw, 56px);
}
.cs2-about-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(28px, 3.4vw, 48px);
    border: 1px solid var(--cs2-border);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(205, 231, 56, 0.1) 0%, transparent 55%),
        linear-gradient(135deg, #0d1206 0%, #070a03 70%);
}
.cs2-about-panel__icon {
    display: inline-flex;
    color: var(--cs2-accent);
    margin-bottom: 16px;
}
.cs2-about-panel__icon svg { width: 30px; height: 30px; }
.cs2-about-panel__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.cs2-about-panel__text { font-size: 15px; line-height: 1.6; color: var(--cs2-muted); max-width: 46ch; }

/* ── 5. Stat / trust row ── */
.cs2-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
    margin-bottom: clamp(28px, 4vw, 56px);
    padding: clamp(24px, 3vw, 40px);
    border-radius: 28px;
    border: 1px solid var(--cs2-border);
    background: var(--cs2-panel);
}
.cs2-about-stat { text-align: center; }
.cs2-about-stat__num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    background: var(--cs2-title-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cs2-about-stat__label {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cs2-muted);
}

/* ── 6. Small CTA ── */
.cs2-about-cta {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: clamp(36px, 5vw, 64px);
    text-align: center;
    border: 1px solid rgba(205, 231, 56, 0.3);
    background:
        radial-gradient(100% 140% at 50% 0%, rgba(205, 231, 56, 0.16) 0%, transparent 60%),
        linear-gradient(135deg, #0e1606 0%, #060902 70%);
}
.cs2-about-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4.5vw, 58px);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cs2-about-cta__text {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--cs2-muted);
    max-width: 48ch;
    margin: 0 auto 26px;
}

/* ════════════ Responsive ════════════ */
@media (max-width: 900px) {
    .cs2-about-adv__grid { grid-template-columns: repeat(2, 1fr); }
    .cs2-about-split { grid-template-columns: 1fr; }
    .cs2-about-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
}
@media (max-width: 520px) {
    .cs2-about-adv__grid { grid-template-columns: 1fr; }
    .cs2-about-hero__title { font-size: clamp(38px, 11vw, 56px); }
    .cs2-about-btn { width: 100%; }
}
