/* ─── ABOUT PAGE — inherits :root from style.css ────────── */

/* ─── PAGE ENTRANCE ─────────────────────────────────────── */
@keyframes pageSlideIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: none; }
}
@keyframes orb-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50%       { transform: translateX(-50%) scale(1.14); opacity: 1; }
}

/* ─── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    animation: pageSlideIn .7s cubic-bezier(.22,.68,0,1.2) both;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 0, rgba(143,0,0,0.18), transparent);
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143,0,0,0.1) 0%, transparent 70%);
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    animation: orb-pulse 4s ease-in-out infinite;
    pointer-events: none;
}
.page-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(143,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143,0,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.page-hero .rv {
    opacity: 0;
    animation: slideUpFade .75s cubic-bezier(.22,.68,0,1.2) .25s forwards;
}

/* ─── SECTIONS ───────────────────────────────────────────── */
section { padding: 100px 0; }

/* ─── TAG ────────────────────────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pur2);
    letter-spacing: .5px;
}
.tag-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--pur2);
    display: flex; align-items: center; justify-content: center;
}
.tag-dot::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--pur2);
}

/* ─── SECTION TITLE ──────────────────────────────────────── */
.sec-title {
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}
.sec-title .faint { color: rgba(255,255,255,0.2); }

/* ─── LINK ARROW ─────────────────────────────────────────── */
.link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--pur2); font-size: 14px; font-weight: 600;
    transition: gap .25s;
}
.link-arrow:hover { gap: 13px; color: var(--pur2); }
.link-arrow .arr2 {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--pur2);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
}

/* ─── BTN MAIN ───────────────────────────────────────────── */
.btn-main {
    display: inline-flex; align-items: center; gap: 0;
    background: var(--white); border-radius: 100px;
    overflow: hidden; transition: all .3s;
}
.btn-main span {
    padding: 14px 26px; font-size: 14px; font-weight: 700;
    color: #111; font-family: "Outfit", sans-serif;
}
.btn-main .arr {
    width: 44px; height: 50px; background: var(--pur); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; margin: 4px; transition: transform .3s;
}
.btn-main:hover .arr { transform: rotate(-45deg); }
.btn-main:hover { box-shadow: 0 8px 30px rgba(143,0,0,0.3); }

/* ─── STORY MOSAIC ───────────────────────────────────────── */
.story-mosaic {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.st-1 {
    grid-column: 1; grid-row: 1/3;
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--rimw); transition: border-color .3s;
}
.st-1:hover { border-color: var(--rim); }
.st-1 img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; transition: transform .5s; }
.st-1:hover img { transform: scale(1.03); }

.st-2 {
    grid-column: 2; grid-row: 1;
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--rimw); transition: border-color .3s;
}
.st-2:hover { border-color: var(--rim); }
.st-2 img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s; }
.st-2:hover img { transform: scale(1.03); }

.st-cta {
    grid-column: 2; grid-row: 2;
    background: var(--bg3); border: 1px solid var(--rim);
    border-radius: 16px; padding: 24px; transition: box-shadow .3s;
}
.st-cta:hover { box-shadow: 0 0 28px var(--purglow); }

/* ─── EXP CHECKLIST ──────────────────────────────────────── */
.exp-chk { list-style: none; padding: 0; margin: 22px 0 30px; }
.exp-chk li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 15px; color: var(--lite);
    border-bottom: 1px solid var(--rimw); transition: color .2s, padding-left .2s;
}
.exp-chk li:last-child { border-bottom: none; }
.exp-chk li:hover { color: var(--white); padding-left: 4px; }
.exp-chk li i { color: var(--pur2); font-size: 16px; flex-shrink: 0; }

/* ─── VALUES CARDS ───────────────────────────────────────── */
.vcard {
    background: var(--bg3); border: 1px solid var(--rimw);
    border-radius: 16px; padding: 32px; height: 100%;
    transition: all .3s; position: relative; overflow: hidden;
}
.vcard::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle, var(--purglow), transparent 70%);
    opacity: 0; transition: opacity .4s;
}
.vcard:hover { border-color: var(--rim); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(143,0,0,0.12); }
.vcard:hover::before { opacity: 1; }

.vic {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(143,0,0,0.12); border: 1px solid var(--rim);
    display: flex; align-items: center; justify-content: center;
    color: var(--pur2); font-size: 20px; margin-bottom: 18px;
    transition: background .3s, transform .3s;
}
.vcard:hover .vic { background: rgba(143,0,0,0.22); transform: scale(1.08); }
.vcard h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.vcard p  { font-size: 14px; color: var(--dim); line-height: 1.7; }

/* ─── TEAM CARDS ─────────────────────────────────────────── */
.tmcard {
    background: var(--bg3); border: 1px solid var(--rimw);
    border-radius: 16px; overflow: hidden; transition: all .3s;
}
.tmcard:hover { border-color: var(--rim); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(143,0,0,0.15); }

.tm-img { height: 250px; overflow: hidden; position: relative; }
.tm-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.tmcard:hover .tm-img img { transform: scale(1.05); }

.tm-soc {
    position: absolute; bottom: 12px; right: 12px;
    display: flex; gap: 6px;
    opacity: 0; transform: translateY(8px); transition: all .3s;
}
.tmcard:hover .tm-soc { opacity: 1; transform: none; }
.tm-soc a {
    width: 30px; height: 30px; border-radius: 7px;
    background: rgba(8,8,8,0.85); border: 1px solid var(--rimw);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 12px; transition: all .2s;
}
.tm-soc a:hover { background: var(--pur); color: #fff; border-color: var(--pur); }

.tm-body { padding: 22px; }
.tm-body h5 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.tm-role { font-size: 12px; color: var(--pur2); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.tm-body p { font-size: 13px; color: var(--dim); margin-top: 10px; line-height: 1.6; }

/* ─── TIMELINE ───────────────────────────────────────────── */
.tl { padding-left: 36px; position: relative; }
.tl::before {
    content: '';
    position: absolute; left: 7px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--pur), rgba(143,0,0,0.06));
}
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
    position: absolute; left: -35px; top: 0px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--pur); border: 2.5px solid var(--bg);
    box-shadow: 0 0 0 4px rgba(143,0,0,0.22); transition: box-shadow .3s;
}
.tl-item:hover .tl-dot { box-shadow: 0 0 0 8px rgba(143,0,0,0.16); }

.tl-yr { font-size: 11px; font-weight: 700; color: var(--pur2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; }
.tl-item h4 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.tl-item p  { font-size: 14px; color: var(--dim); line-height: 1.7; max-width: 400px; }

/* ─── AWARDS ─────────────────────────────────────────────── */
.awd-card {
    background: var(--bg3); border: 1px solid var(--rimw);
    border-radius: 14px; padding: 26px;
    display: flex; align-items: center; gap: 16px; transition: all .3s;
}
.awd-card:hover {
    border-color: var(--rim); transform: translateX(5px);
    box-shadow: 0 8px 32px rgba(143,0,0,0.12);
}
.awd-ic {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #f59e0b; font-size: 20px; flex-shrink: 0; transition: transform .3s;
}
.awd-card:hover .awd-ic { transform: scale(1.12) rotate(-5deg); }
.awd-card h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.awd-card p  { font-size: 13px; color: var(--dim); margin: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--rimw); padding-top: 80px; }
.ft-logo-ic {
    width: 36px; height: 36px; background: var(--pur); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.ft-logo-ic::before {
    content: ''; position: absolute;
    width: 16px; height: 16px; background: #fff;
    clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 40% 50%); left: 7px;
}
.ft-name { font-size: 18px; font-weight: 700; color: var(--white); }
.ft-sub  { font-size: 9px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; display: block; }
.ft-soc {
    width: 36px; height: 36px; border-radius: 8px; background: var(--bg3);
    border: 1px solid var(--rimw); display: flex; align-items: center;
    justify-content: center; color: var(--muted); font-size: 13px; transition: all .3s;
}
.ft-soc:hover { background: var(--pur); color: #fff; border-color: var(--pur); transform: translateY(-2px); }
.ft-bot {
    border-top: 1px solid var(--rimw); padding: 24px 0;
    display: flex; justify-content: center;
    align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 60px;
}
.ft-bot p { font-size: 13px; color: var(--muted); margin: 0; }
.ft-bot a { color: var(--muted); font-size: 13px; transition: color .2s; }
.ft-bot a:hover { color: var(--pur2); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.rv {
    opacity: 0; transform: translateY(26px);
    transition: opacity .65s cubic-bezier(.22,.68,0,1.2), transform .65s cubic-bezier(.22,.68,0,1.2);
}
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .32s; }

/* ─── STAT NUMBERS ───────────────────────────────────────── */
.about-stat-num {
    font-size: 54px; font-weight: 700; color: var(--pur2);
    line-height: 1; letter-spacing: -2px; display: inline-block;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .story-mosaic { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 767px) {
    section { padding: 70px 0; }
    .page-hero { padding: 120px 0 70px; }
    .story-mosaic { grid-template-columns: 1fr; }
    .st-1 { grid-column: 1; grid-row: 1; }
    .st-1 img { min-height: 240px; }
    .st-2 { grid-column: 1; grid-row: 2; }
    .st-cta { grid-column: 1; grid-row: 3; }
    .tl-item p { max-width: 100%; }
    .awd-card { flex-direction: column; text-align: center; align-items: flex-start; }
}

@media (max-width: 568px) {
    .page-hero { padding: 100px 0 60px; }
    section { padding: 50px 0; }
    .sec-title { letter-spacing: -1px; }
    .about-stat-num { font-size: 38px; }
    .btn-main span { padding: 12px 20px; font-size: 13px; }
    .btn-main .arr { width: 38px; height: 38px; }
}
