/* ============================================================
   ABOUT US PAGE — about.css
   Cyberskins design language. --cs-* tokens from layout.css.
   Secondary page rules: no min-height, no label above headings,
   headings max 2 lines, centered hero.
   ============================================================ */


/* ── CYBERSKINS BUTTON — primary (red-orange, clip-path, shine) ── */
.btn-cs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--cs-red), var(--cs-orange));
    border: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow .3s ease, transform .15s ease;
}

.btn-cs::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left .5s ease;
}

.btn-cs:hover::after { left: 130%; }

.btn-cs:hover {
    box-shadow: 0 8px 40px rgba(245,34,45,0.5), 0 0 60px rgba(255,107,0,0.2);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.btn-cs:active { transform: translateY(1px); }


/* ── CYBERSKINS BUTTON — ghost / secondary ── */
.btn-cs-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 34px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cs-txt2);
    background: transparent;
    border: 1px solid var(--cs-bdr2);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color .3s ease, color .3s ease, background .3s ease;
    cursor: pointer;
}

.btn-cs-ghost:hover {
    border-color: rgba(255,255,255,0.28);
    color: var(--cs-txt);
    background: rgba(255,255,255,0.04);
    text-decoration: none;
}


/* ══════════════════════════════════════════════
   HERO — centered, no min-height, no label
   ══════════════════════════════════════════════ */
.about-hero {
    position: relative;
    background: var(--cs-bg-0) url('../img/other-hero-bg.png') center / cover no-repeat;
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 96px;
    overflow: hidden;
    text-align: center;
}

/* Red radial glow at top */
.about-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 460px;
    background: radial-gradient(ellipse at top, rgba(245,34,45,0.11) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle scan-line texture */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.010) 2px,
        rgba(255,255,255,0.010) 4px
    );
    pointer-events: none;
    z-index: 0;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero__heading {
    font-family: 'Barlow Condensed', 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: clamp(54px, 8vw, 100px);
    line-height: 0.88;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--cs-txt);
    margin-bottom: 32px;
}

.about-hero__heading em {
    color: var(--cs-red);
    font-style: normal;
}

.about-hero__text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--cs-txt2);
    max-width: 520px;
    margin: 0 auto 40px;
}

.about-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════
   WHY US — horizontal trust strip
   ══════════════════════════════════════════════ */
.about-why {
    background: var(--cs-bg-card);
    border-top: 1px solid var(--cs-bdr);
    border-bottom: 1px solid var(--cs-bdr);
}

.about-why__strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px 0;
}

.about-why__item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: center;
}

/* Circle icon — outlined, red accent */
.about-why__circle {
    width: 68px;
    height: 68px;
    border: 1.5px solid var(--cs-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-red);
    flex-shrink: 0;
    position: relative;
    transition: background .3s ease, box-shadow .3s ease;
}

/* Small red dot accent on circle (as in reference) */
.about-why__circle::after {
    content: '';
    position: absolute;
    top: 4px; right: 4px;
    width: 7px; height: 7px;
    background: var(--cs-red);
    border-radius: 50%;
    border: 1.5px solid var(--cs-bg-card);
}

.about-why__item:hover .about-why__circle {
    background: rgba(245, 34, 45, 0.07);
    box-shadow: 0 0 22px rgba(245, 34, 45, 0.22);
}

.about-why__item-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

/* White line */
.about-why__item-label {
    display: block;
    font-family: 'Barlow Condensed', 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cs-txt);
    line-height: 1.1;
}

/* Red accent line */
.about-why__item-sub {
    display: block;
    font-family: 'Barlow Condensed', 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cs-red);
    line-height: 1.1;
}

/* Separator dot */
.about-why__sep {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--cs-red);
    border-radius: 50%;
    opacity: 0.35;
    flex-shrink: 0;
}


/* ══════════════════════════════════════════════
   COMMUNITY — CTA section, no eyebrow
   ══════════════════════════════════════════════ */
.about-community {
    position: relative;
    padding: clamp(80px, 11vw, 130px) 0;
    background: var(--cs-bg-1);
    border-top: 1px solid var(--cs-bdr);
    overflow: hidden;
    text-align: center;
}

.about-community::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at top center, rgba(245,34,45,0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.about-community--wm::before {
    content: var(--about-wm, 'COMMUNITY');
}

.about-community::before {
    content: 'COMMUNITY';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(80px, 14vw, 180px);
    color: rgba(255,255,255,0.022);
    letter-spacing: 0.08em;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

.about-community__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.about-community__title {
    font-family: 'Barlow Condensed', 'Rajdhani', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(38px, 5.5vw, 68px);
    letter-spacing: 0.03em;
    color: var(--cs-txt);
    line-height: 0.95;
    margin-bottom: 28px;
}

.about-community__title em {
    color: var(--cs-red);
    font-style: normal;
}

.about-community__text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--cs-txt2);
    margin-bottom: 16px;
}

.about-community__sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--cs-txt3);
    margin-bottom: 44px;
}

.about-community__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .about-why__strip {
        flex-wrap: wrap;
        gap: 28px;
        padding: 32px 0;
    }
    .about-why__sep { display: none; }
    .about-why__item {
        flex: 1 1 calc(50% - 14px);
        min-width: calc(50% - 14px);
        justify-content: flex-start;
    }

    .about-hero__text { font-size: 15px; }
    .about-community__cta .btn-cs,
    .about-community__cta .btn-cs-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .about-why__item { flex: 1 1 100%; min-width: 100%; }
    .btn-cs, .btn-cs-ghost { padding: 12px 24px; font-size: 12px; }
}
