/* Color System */
:root {
    --tribee-dark: #11221C;
    --tribee-accent: #D0FFE5;
    --tribee-accent-2: #A3F3CF;
    --ink: #0B1713;
    --muted: #6C837A;
    --white: #FFFFFF;
}


/* Section Base */
.about-section {
    background: linear-gradient(180deg, var(--tribee-dark) 0%, #10261F 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle pattern using accent */
.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120px 120px at 10% 20%, rgba(208, 255, 229, 0.10) 0%, transparent 60%),
        radial-gradient(160px 160px at 80% 10%, rgba(208, 255, 229, 0.08) 0%, transparent 60%),
        radial-gradient(120px 120px at 20% 80%, rgba(163, 243, 207, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Eyebrow */
.eyebrow {
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--tribee-accent);
    border: 1px solid rgba(208, 255, 229, 0.5);
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(208, 255, 229, 0.06);
}

/* Headings */
.about-title {
    line-height: 1.2;
}

.about-title .accent {
    display: block;
    font-weight: 600;
    color: var(--tribee-accent);
}

.about-subtitle {
    color: #E9FFF5;
}

/* Pills */
.pill {
    background: rgba(208, 255, 229, 0.14);
    color: var(--tribee-accent);
    border: 1px solid rgba(208, 255, 229, 0.4);
    padding: .45rem .8rem;
    border-radius: 999px;
    font-size: .9rem;
}

/* Stat cards */
.stat-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(208, 255, 229, 0.25);
    border-radius: 14px;
    padding: .9rem .9rem;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(208, 255, 229, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tribee-accent);
    font-size: 20px;
}

.stat-number {
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-label {
    color: var(--tribee-accent);
    font-size: .85rem;
}

/* Buttons */
.btn-tribee-primary {
    background: var(--tribee-accent);
    color: var(--ink);
    border: none;
    border-radius: 12px;
    padding: .7rem 1.2rem;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-tribee-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    background: var(--tribee-accent-2);
    color: var(--ink);
}

.btn-tribee-outline {
    background: transparent;
    color: var(--tribee-accent);
    border: 1px solid rgba(208, 255, 229, 0.5);
    border-radius: 12px;
    padding: .7rem 1.2rem;
    font-weight: 600;
}

.btn-tribee-outline:hover {
    background: rgba(208, 255, 229, 0.12);
}

/* Visual panel */
.about-visual {
    position: relative;
    min-height: 360px;
}

.vector-bg {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(208, 255, 229, 0.12), rgba(208, 255, 229, 0.04));
    border: 1px solid rgba(208, 255, 229, 0.25);
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vector-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--tribee-accent);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.vector-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: rgba(208, 255, 229, 0.28);
    bottom: -30px;
    left: -20px;
}

.shape-2 {
    width: 140px;
    height: 140px;
    background: rgba(163, 243, 207, 0.22);
    top: 20%;
    right: -30px;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(208, 255, 229, 0.18);
    bottom: 20%;
    right: 30%;
}

/* About content card */
.about-card {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 520px);
    background: rgba(17, 34, 28, 0.9);
    border: 1px solid rgba(208, 255, 229, 0.25);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    backdrop-filter: blur(6px);
}

.about-card h5 {
    color: var(--tribee-accent);
    margin-bottom: .5rem;
}

.about-card .list-item {
    color: #E9FFF5;
    padding: .35rem 0;
    border-bottom: 1px dashed rgba(208, 255, 229, 0.18);
}

.about-card .list-item:last-child {
    border-bottom: none;
}

/* Partners */
.partners-label {
    color: #CFFFEA;
    opacity: .9;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.logo-dot {
    width: 64px;
    height: 28px;
    border-radius: 6px;
    background: rgba(208, 255, 229, 0.25);
    border: 1px solid rgba(208, 255, 229, 0.4);
}

/* Bootstrap Icon helpers (optional) */
.bi {
    font-size: 1.1rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .about-card {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 1rem;
    }
}