/* ─── ABOUT PAGE STYLES ─────────────────────────────── */

/* ── Page Header ── */
.about-page-header {
    padding: 140px 5vw 80px;
    text-align: center;
    background: radial-gradient(circle at 50% -20%, rgba(164, 249, 63, 0.08), transparent 70%);
    position: relative;
}

/* ── Our Story ── */
.story-section {
    padding: 6rem 5vw;
    max-width: 1280px;
    margin: 0 auto;
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}

.story-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.story-eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.story-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 2rem;
}

.story-title span {
    color: var(--accent);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(240, 244, 255, 0.8);
}

.story-body strong {
    color: var(--accent);
    font-weight: 600;
}

.story-subheading {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
    margin-top: 0.5rem;
}

.story-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.story-list li {
    font-size: 1rem;
    color: rgba(240, 244, 255, 0.8);
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.story-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.story-closing {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(240, 244, 255, 0.9);
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
}

.story-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    background: var(--accent);
    color: #000;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.story-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(164, 249, 63, 0.3);
}

/* Stat cards */
.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    transition: border-color 0.25s;
}

.stat-card:hover {
    border-color: rgba(164, 249, 63, 0.35);
}

.stat-number {
    font-family: 'Oxanium', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ── Divider ── */
.section-divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5vw;
    border: none;
    border-top: 1px solid var(--border);
}

/* ── Team Section ── */
.team-section {
    padding: 6rem 5vw;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    margin-top: 0.75rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.team-card:hover {
    border-color: rgba(164, 249, 63, 0.3);
    transform: translateY(-6px);
}

.team-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
    display: block;
    background: var(--surface2);
}

.team-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 3rem;
}

.team-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.team-role-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(164, 249, 63, 0.1);
    border: 1px solid rgba(164, 249, 63, 0.25);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.75rem;
}

.team-name {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.team-location {
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.team-location i {
    width: 14px;
    height: 14px;
}

/* CEO Social links */
.team-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.team-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all 0.2s;
    text-decoration: none;
}

.team-social-btn:hover {
    background: rgba(164, 249, 63, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.team-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ── Careers Hint Section ── */
.careers-section {
    padding: 5rem 5vw;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.careers-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.careers-content .careers-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.careers-content h2 {
    font-family: 'Oxanium', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.careers-content p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.6;
}

.careers-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.careers-cta:hover {
    background: var(--accent);
    color: #000;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-inner {
        grid-template-columns: 1fr;
    }

    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .story-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .careers-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}
