/* ══════════════════════════════════════════════
   GoLive — About Page | Tech Design System
   ══════════════════════════════════════════════ */

/* ── Section Base ── */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.about-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}

/* Section header */
.about-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.about-section-title h2 {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
.about-section-title h2::before {
    content: '//';
    color: #26d300;
    margin-right: 12px;
    font-weight: 400;
}
.about-section-title .section-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #26d300, transparent);
    margin: 16px auto 0;
}
.about-section-title .section-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    font-style: italic;
}

/* ── Hero Section ── */
.about-hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 211, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38, 211, 0, 0.08);
    border: 1px solid rgba(38, 211, 0, 0.2);
    border-radius: 20px;
    padding: 6px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #26d300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.about-hero-title {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-hero-title .accent {
    color: #26d300;
    text-shadow: 0 0 30px rgba(38, 211, 0, 0.3);
}
.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.about-hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Stats Section ── */
.about-stats {
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(38, 211, 0, 0.12);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #26d300, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.stat-card:hover {
    border-color: rgba(38, 211, 0, 0.3);
    background: rgba(38, 211, 0, 0.03);
    transform: translateY(-4px);
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-icon {
    font-size: 28px;
    color: #26d300;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(38, 211, 0, 0.3);
}
.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number .suffix {
    color: #26d300;
    font-size: 32px;
}
.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Story Section ── */
.about-story {
    padding: 80px 0;
}
.story-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.story-content-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(38, 211, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
}
/* Corner brackets */
.story-content-inner::before,
.story-content-inner::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #26d300;
    border-style: solid;
    border-width: 0;
    pointer-events: none;
}
.story-content-inner::before {
    top: 8px;
    left: 8px;
    border-top-width: 2px;
    border-left-width: 2px;
}
.story-content-inner::after {
    bottom: 8px;
    right: 8px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}
.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}
.story-text p {
    margin-bottom: 16px;
}
.story-text p:last-child {
    margin-bottom: 0;
}

/* ── Mission / Vision Section ── */
.about-mission {
    padding: 80px 0;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.mission-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(38, 211, 0, 0.1);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}
.mission-card:hover {
    border-color: rgba(38, 211, 0, 0.25);
    transform: translateY(-2px);
}
.mission-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(38, 211, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.mission-card-icon i {
    font-size: 24px;
    color: #26d300;
}
.mission-card h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}
.mission-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ── Values Section ── */
.about-values {
    padding: 80px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #26d300, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.value-card:hover {
    border-color: rgba(38, 211, 0, 0.15);
    background: rgba(38, 211, 0, 0.02);
    transform: translateY(-3px);
}
.value-card:hover::after {
    opacity: 1;
}
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(38, 211, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}
.value-card:hover .value-icon {
    background: rgba(38, 211, 0, 0.15);
    box-shadow: 0 0 20px rgba(38, 211, 0, 0.15);
}
.value-icon i {
    font-size: 20px;
    color: #26d300;
}
.value-card h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ── Timeline Section ── */
.about-timeline {
    padding: 80px 0;
}
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}
/* Vertical line */
.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(38, 211, 0, 0.4), rgba(38, 211, 0, 0.1));
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
/* Timeline dot */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: #26d300;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(38, 211, 0, 0.4);
    z-index: 1;
}
/* Pulse ring */
.timeline-item::after {
    content: '';
    position: absolute;
    left: -36px;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(38, 211, 0, 0.2);
    border-radius: 50%;
    z-index: 0;
}
.timeline-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #26d300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(38, 211, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}
.timeline-content:hover {
    border-color: rgba(38, 211, 0, 0.2);
    background: rgba(38, 211, 0, 0.02);
}
.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.timeline-content h4 i {
    color: #26d300;
    font-size: 16px;
}
.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ── Technologies Section ── */
.about-technologies {
    padding: 80px 0;
}
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.tech-category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s;
}
.tech-category-card:hover {
    border-color: rgba(38, 211, 0, 0.15);
}
.tech-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.tech-category-header i {
    font-size: 22px;
    color: #26d300;
}
.tech-category-header h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tech-badge {
    background: rgba(38, 211, 0, 0.06);
    border: 1px solid rgba(38, 211, 0, 0.12);
    border-radius: 6px;
    padding: 5px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}
.tech-badge:hover {
    background: rgba(38, 211, 0, 0.12);
    border-color: rgba(38, 211, 0, 0.3);
    color: #26d300;
}

/* ── CTA Section ── */
.about-cta {
    padding: 80px 0;
}
.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(38, 211, 0, 0.03);
    border: 1px solid rgba(38, 211, 0, 0.15);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}
.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(38, 211, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.cta-container h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
}
.cta-container .cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    position: relative;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #26d300;
    color: #050505;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}
.cta-button:hover {
    background: #30e800;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(38, 211, 0, 0.3);
    color: #050505;
    text-decoration: none;
}
.cta-button i {
    font-size: 16px;
}

/* ── Grid Overlay (decoration) ── */
.about-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(38, 211, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 211, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* ── HUD Label ── */
.about-hud-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(38, 211, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}
.about-hud-label-left {
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
.about-hud-label-right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-title {
        font-size: 32px;
    }
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    .about-hero {
        padding: 60px 0 50px;
    }
    .about-hero-title {
        font-size: 26px;
    }
    .about-hero-subtitle {
        font-size: 16px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .stat-card {
        padding: 24px 16px;
    }
    .stat-number {
        font-size: 32px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .story-content-inner {
        padding: 24px;
    }
    .about-section-title h2 {
        font-size: 24px;
    }
    .timeline-container {
        padding-left: 30px;
    }
    .tech-categories {
        grid-template-columns: 1fr;
    }
    .cta-container {
        padding: 40px 24px;
    }
    .cta-container h2 {
        font-size: 22px;
    }
    .about-hud-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
