﻿:root {
    --bg: #0b1220;
    --text: #eaf0ff;
    --muted: #9fb0d0;
    --line: rgba(255,255,255,.08);
    --primary: #6ea8fe;
    --primary2: #3b82f6;
    --danger: #ff6b6b;
    --shadow: 0 30px 80px rgba(0,0,0,.35);
}

.about-shell {
    padding: 34px 0 26px;
    color: var(--text);
}

/* Hero layout */
.about-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
}

/* Sol panel (glass) */
.about-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: var(--shadow);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

    .about-panel::before {
        content: "";
        position: absolute;
        inset: -60px;
        background: radial-gradient(600px 300px at 20% 0%, rgba(110,168,254,.18), transparent 60%);
        pointer-events: none;
    }

.about-pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
}

.about-title {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: .2px;
    font-weight: 1000;
}

.underline {
    position: relative;
    z-index: 1;
    width: 92px;
    height: 4px;
    margin: 12px 0 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(110,168,254,.95), rgba(59,130,246,.55));
    box-shadow: 0 12px 30px rgba(110,168,254,.18);
}

.about-text {
    position: relative;
    z-index: 1;
    color: rgba(234,240,255,.84);
    line-height: 1.75;
    font-size: 15.5px;
    margin: 0 0 12px;
    max-width: 70ch;
}

    .about-text strong {
        color: var(--text);
    }

/* Buttons */
.about-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btnx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 900;
    transition: .15s ease;
}

    .btnx:hover {
        transform: translateY(-1px);
    }

.btnx-primary {
    color: var(--text);
    background: linear-gradient(180deg, rgba(110,168,254,.95), rgba(59,130,246,.85));
    border-color: rgba(110,168,254,.55);
}

.btnx-ghost {
    color: var(--muted);
    background: transparent;
}

    .btnx-ghost:hover {
        color: var(--text);
        border-color: rgba(110,168,254,.35);
        background: rgba(255,255,255,.03);
    }

/* Stats row */
.stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

@media (max-width: 520px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

.stat {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(10,16,28,.55);
    padding: 10px 12px;
}

.stat-k {
    color: rgba(159,176,208,.85);
    font-size: 12px;
}

.stat-v {
    margin-top: 4px;
    font-weight: 950;
    letter-spacing: .2px;
}

/* Right media */
.about-media {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.02);
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 450px at 18% 12%, rgba(110,168,254,.20), transparent 60%), linear-gradient(180deg, rgba(11,18,32,.20), rgba(11,18,32,.55));
    pointer-events: none;
}

/* Quote card */
.about-quote {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10,16,28,.55);
    padding: 14px 16px;
}

.quote-mark {
    font-size: 44px;
    line-height: 1;
    color: rgba(110,168,254,.8);
    font-weight: 1000;
}

.quote-text {
    margin-top: 6px;
    color: rgba(234,240,255,.82);
    line-height: 1.6;
}

/* Values */
.values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

@media (max-width: 992px) {
    .values {
        grid-template-columns: 1fr;
    }
}

.value-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    padding: 14px;
    transition: .15s ease;
}

    .value-card:hover {
        transform: translateY(-2px);
        border-color: rgba(110,168,254,.35);
    }

.value-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(110,168,254,.95);
    font-weight: 1000;
}

.value-title {
    margin-top: 10px;
    font-weight: 1000;
    letter-spacing: .2px;
}

.value-desc {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.45;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .about-title {
        font-size: 30px;
    }

    .about-image {
        height: 280px;
    }
}
