/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

:root {
    --primary-cyan: #00d4ff;
    --primary-purple: #6366f1;
    --success-green: #10b981;
    --warning-yellow: #fbbf24;
    --danger-red: #ef4444;
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f2e;
    --bg-tertiary: #242938;
    --bg-card: rgba(26, 31, 46, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(148, 163, 184, 0.1);
}

.about-page-wrapper {
    min-height: 100vh;
    background: var(--bg-primary);
    padding-top: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── HERO ──────────────────────────────────────────── */

.about-hero {
    position: relative;
    padding: 0 40px 60px;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── MISSION SECTION ──────────────────────────────── */

.about-mission {
    padding: 80px 40px;
    position: relative;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12), transparent);
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
    line-height: 1.3;
}

.mission-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 16px;
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-stat-card {
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(36, 41, 56, 0.6));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
}

.mission-stat-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.08);
}

.mission-stat-card:nth-child(2) { transform: translateY(20px); }
.mission-stat-card:nth-child(2):hover { transform: translateY(16px); }
.mission-stat-card:nth-child(4) { transform: translateY(20px); }
.mission-stat-card:nth-child(4):hover { transform: translateY(16px); }

.mission-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(99, 102, 241, 0.12));
    color: var(--primary-cyan);
}

.mission-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mission-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── VALUES SECTION ────────────────────────────────── */

.about-values {
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.3) 0%, var(--bg-primary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 36px 30px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(36, 41, 56, 0.4));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 212, 255, 0.08);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.value-icon.cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    color: #00d4ff;
}
.value-icon.purple {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
    color: #6366f1;
}
.value-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}
.value-icon.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    color: #fbbf24;
}
.value-icon.red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    color: #ef4444;
}
.value-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ── TECHNOLOGY SECTION ────────────────────────────── */

.about-technology {
    padding: 80px 40px;
    position: relative;
}

.about-technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.12), transparent);
}

.tech-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(36, 41, 56, 0.4));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.tech-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.tech-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(99, 102, 241, 0.1));
    color: var(--primary-cyan);
    transition: all 0.4s ease;
}

.tech-card:hover .tech-card-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(99, 102, 241, 0.15));
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.tech-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.tech-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── TEAM SECTION ──────────────────────────────────── */

.about-team {
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.3) 0%, var(--bg-primary) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    padding: 36px 24px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(36, 41, 56, 0.4));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.team-avatar {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-avatar::after {
    opacity: 1;
}

.team-avatar.av-1 { background: linear-gradient(135deg, #00d4ff, #0099cc); }
.team-avatar.av-2 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.team-avatar.av-3 { background: linear-gradient(135deg, #10b981, #059669); }
.team-avatar.av-4 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.team-role {
    font-size: 0.875rem;
    color: var(--primary-cyan);
    font-weight: 600;
    margin: 0 0 14px;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.team-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-link:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.3);
}

/* ── TIMELINE SECTION ──────────────────────────────── */

.about-timeline {
    padding: 80px 40px;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.12), transparent);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 32px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 32px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), 0 0 16px rgba(0, 212, 255, 0.3);
    z-index: 2;
}

.timeline-content {
    padding: 24px;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(36, 41, 56, 0.4));
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 6px;
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ── SCROLL REVEAL ─────────────────────────────────── */

/* Content card: transition property applied always so it animates in */
.timeline-item .timeline-content {
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease,
                opacity 0.4s ease;
}

/* Hidden state: cleared once .is-visible is added by JS */
.timeline-item:not(.is-visible) .timeline-content {
    opacity: 0;
}

/* Desktop: slide from the side the content sits on */
@media (min-width: 769px) {
    /* even child = content on right side → enter from right */
    .timeline-item:nth-child(even):not(.is-visible) .timeline-content {
        transform: translateX(64px);
    }
    /* odd child = content on left side → enter from left */
    .timeline-item:nth-child(odd):not(.is-visible) .timeline-content {
        transform: translateX(-64px);
    }
}

/* Mobile: all items stack, slide up from below */
@media (max-width: 768px) {
    .timeline-item:not(.is-visible) .timeline-content {
        transform: translateY(44px);
    }
}

/* Dot: spring bounce-in */
.timeline-dot {
    transition: opacity 0.45s ease 0.12s,
                transform 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s,
                box-shadow 0.3s ease;
}

.timeline-item:not(.is-visible) .timeline-dot {
    opacity: 0;
    transform: translateX(-50%) scale(0.1);
}

/* Year label slides up with a slight delay after the card */
.timeline-content .timeline-year {
    transition: opacity 0.5s ease 0.28s, transform 0.5s ease 0.28s;
}
.timeline-item:not(.is-visible) .timeline-content .timeline-year {
    opacity: 0;
    transform: translateY(10px);
}
.timeline-item.is-visible .timeline-content .timeline-year {
    opacity: 1;
    transform: none;
}

/* Heading follows */
.timeline-content h4 {
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}
.timeline-item:not(.is-visible) .timeline-content h4 {
    opacity: 0;
    transform: translateY(8px);
}
.timeline-item.is-visible .timeline-content h4 {
    opacity: 1;
    transform: none;
}

/* Body text last */
.timeline-content p {
    transition: opacity 0.5s ease 0.52s, transform 0.5s ease 0.52s;
}
.timeline-item:not(.is-visible) .timeline-content p {
    opacity: 0;
    transform: translateY(5px);
}
.timeline-item.is-visible .timeline-content p {
    opacity: 1;
    transform: none;
}

/* Active milestone (current launch) */
.timeline-dot-active {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.25), 0 0 24px rgba(0, 212, 255, 0.6);
    animation: none; /* held until visible - started by .is-visible below */
}

/* Start pulsing only after the dot has bounced in */
.timeline-item.is-visible .timeline-dot-active {
    animation: timelinePulse 2.4s ease-in-out 0.75s infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.25), 0 0 24px rgba(0, 212, 255, 0.6); }
    50%       { box-shadow: 0 0 0 7px rgba(0, 212, 255, 0.1),  0 0 40px rgba(0, 212, 255, 0.9); }
}

.timeline-content-active {
    border-color: rgba(0, 212, 255, 0.35);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(168, 85, 247, 0.06));
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.12);
}

.timeline-content-active .timeline-year {
    color: #00d4ff;
}

.timeline-content-active h4 {
    color: #f8fafc;
}

/* Future milestones (roadmap items) */
.timeline-future .timeline-dot-future {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(168, 85, 247, 0.4));
    border-color: rgba(15, 23, 42, 0.6);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 10px rgba(0, 212, 255, 0.15);
}

.timeline-future .timeline-content {
    opacity: 0.75;
    border-style: dashed;
    border-color: rgba(0, 212, 255, 0.15);
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.4), rgba(36, 41, 56, 0.25));
}

.timeline-future .timeline-content:hover {
    opacity: 1;
    border-style: solid;
    border-color: rgba(0, 212, 255, 0.25);
}

.timeline-future .timeline-year {
    color: rgba(0, 212, 255, 0.65);
}

/* ── CTA SECTION ───────────────────────────────────── */

.about-cta {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.cta-container p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.35);
    color: #fff;
    text-decoration: none;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--primary-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    color: var(--primary-cyan);
    text-decoration: none;
}

/* ── RESPONSIVE ────────────────────────────────────── */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 0 20px 60px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .about-hero-subtitle {
        font-size: 1rem;
    }
    .about-mission,
    .about-values,
    .about-technology,
    .about-team,
    .about-timeline,
    .about-cta {
        padding: 50px 20px;
    }
    .section-header h2,
    .mission-content h2,
    .cta-container h2 {
        font-size: 1.75rem;
    }
    .values-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .mission-visual {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-stat-card:nth-child(2),
    .mission-stat-card:nth-child(4) {
        transform: none;
    }
    .mission-stat-card:nth-child(2):hover,
    .mission-stat-card:nth-child(4):hover {
        transform: translateY(-4px);
    }

    /* Timeline mobile */
    .timeline-line {
        left: 16px;
    }
    .timeline-dot {
        left: 16px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 48px;
        text-align: left;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   ABOUT ONLY - RESPONSIVE OVERRIDES
   ========================================== */

/* Base - fluid typography (overrides fixed px values) */
.tp-about .about-hero h1 { font-size: clamp(1.75rem, 6vw, 3rem); }
.tp-about .about-hero-subtitle { font-size: clamp(0.9375rem, 2.5vw, 1.2rem); }
.tp-about .section-header h2,
.tp-about .mission-content h2,
.tp-about .cta-container h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

/* 1440px+ - wider breathing room on large displays */
@media (min-width: 1440px) {
    .tp-about .about-hero { padding: 40px 80px 60px; }
    .tp-about .about-mission,
    .tp-about .about-values,
    .tp-about .about-technology,
    .tp-about .about-team,
    .tp-about .about-timeline,
    .tp-about .about-cta { padding-left: 80px; padding-right: 80px; }
}

/* 480px - tighter than the existing 768px defaults */
@media (max-width: 480px) {
    .tp-about .about-hero { padding: 40px 16px 56px; }
    .tp-about .about-mission,
    .tp-about .about-values,
    .tp-about .about-technology,
    .tp-about .about-team,
    .tp-about .about-timeline,
    .tp-about .about-cta { padding: 40px 16px; }

    .tp-about .section-header { margin-bottom: 32px; }

    /* Mission stat cards */
    .tp-about .mission-visual { gap: 12px; }
    .tp-about .mission-stat-card { padding: 20px 14px; }
    .tp-about .mission-stat-value { font-size: 1.5rem; }

    /* Value / tech / team cards */
    .tp-about .value-card { padding: 28px 20px; }
    .tp-about .tech-card { padding: 24px 16px; }
    .tp-about .team-card { padding: 28px 16px; }

    /* Social links - meet 44px tap-target minimum */
    .tp-about .team-social-link { width: 44px; height: 44px; }

    /* Timeline */
    .tp-about .timeline-content { padding: 16px; }
    .tp-about .timeline-item { margin-bottom: 32px; }

    /* CTA buttons - full-width on narrow screens */
    .tp-about .btn-cta-primary,
    .tp-about .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* 360px - narrowest phones */
@media (max-width: 360px) {
    .tp-about .about-hero { padding: 32px 12px 48px; }
    .tp-about .about-mission,
    .tp-about .about-values,
    .tp-about .about-technology,
    .tp-about .about-team,
    .tp-about .about-timeline,
    .tp-about .about-cta { padding: 36px 12px; }

    .tp-about .section-header { margin-bottom: 24px; }

    /* Mission stat cards */
    .tp-about .mission-visual { gap: 10px; }
    .tp-about .mission-stat-card { padding: 16px 12px; }
    .tp-about .mission-stat-value { font-size: 1.4rem; }
    .tp-about .mission-stat-icon { width: 40px; height: 40px; font-size: 18px; }

    /* Value / tech / team cards */
    .tp-about .value-card { padding: 24px 16px; }
    .tp-about .tech-card { padding: 20px 14px; }
    .tp-about .team-card { padding: 24px 14px; }

    /* Timeline - tighten left-rail layout */
    .tp-about .timeline-item:nth-child(odd),
    .tp-about .timeline-item:nth-child(even) { padding-left: 40px; }
    .tp-about .timeline-content { padding: 14px 12px; }
}
