/* New Modern, Premium About Page Styles */

.about-page-container {
    width: min(100% - 48px, 1200px);
    margin: 0 auto;
    padding-bottom: 48px;
    font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
}

/* Common Text Utilities */
.about-page-container h1,
.about-page-container h2,
.about-page-container h3,
.about-page-container h4,
.about-page-container h5,
.about-page-container h6 {
    text-wrap: balance;
}

.about-page-container p {
    text-wrap: pretty;
}

.section-label {
    display: inline-block;
    color: var(--victory-gold, #FACC15);
    font-size: 0.85rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* 1. Hero Section */
.about-hero-container {
    position: relative;
    overflow: hidden;
    padding: 80px 24px 48px;
    margin-bottom: 24px;
    text-align: center;
}

.about-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100vw, 800px);
    height: 400px;
    /* background: radial-gradient(circle, rgba(245, 197, 66, 0.05) 0%, rgba(15, 23, 42, 0) 70%); */
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-eyebrow {
    color: var(--victory-gold, #FACC15);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--ice-white, #F8FAFC);
}

.about-hero-lead {
    color: #9fb0c7;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.about-hero-actions .button {
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.about-hero-actions .button.primary {
    background: var(--victory-gold, #FACC15);
    color: #0b1220;
}

.about-hero-actions .button.primary:hover {
    background: #f5c542;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.2);
}

.about-hero-actions .button.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--ice-white, #F8FAFC);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-actions .button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.about-hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-pill {
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9fb0c7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.about-pill:hover {
    background: rgba(245, 197, 66, 0.05);
    border-color: rgba(245, 197, 66, 0.3);
    color: var(--ice-white, #F8FAFC);
}

/* General Section Head */
.about-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.about-section-head h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 850;
    margin-bottom: 16px;
    color: var(--ice-white, #F8FAFC);
    letter-spacing: -0.02em;
}

.about-section-head p {
    color: #9fb0c7;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-section {
    margin-bottom: 72px;
}
.about-section:last-of-type {
    margin-bottom: 0;
}

/* 2. Narrative Section */
.narrative-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.narrative-content-block .narrative-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--ice-white, #F8FAFC);
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.narrative-content-block .narrative-body {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 28px;
    color: #9fb0c7;
    text-align: center;
}

.narrative-tagline {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--victory-gold, #FACC15);
    letter-spacing: 0.12em;
    margin-top: 56px;
    text-transform: uppercase;
}


/* 3. System Architecture Section */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.arch-card {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-card:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(245, 197, 66, 0.25);
    transform: translateY(-4px);
}

.arch-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(245, 197, 66, 0.06);
    border: 1px solid rgba(245, 197, 66, 0.15);
    color: var(--victory-gold, #FACC15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.arch-card h3 {
    color: var(--ice-white, #F8FAFC);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.arch-card p {
    color: #9fb0c7;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* 4. Showcase Panel: Player Ratings */
.ratings-showcase-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(10, 15, 30, 0.95) 100%);
    border: 1px solid rgba(245, 197, 66, 0.15);
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1.0fr;
    gap: 48px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ratings-showcase-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--ice-white, #F8FAFC);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.ratings-showcase-content p {
    color: #9fb0c7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.ratings-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.rating-point svg {
    color: var(--victory-gold, #FACC15);
    flex-shrink: 0;
    margin-top: 2px;
}

.rating-point span {
    color: #c6d2e2;
    font-size: 1rem;
    line-height: 1.4;
}

/* Visual Mockup Card */
.ratings-visual-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.visual-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
    pointer-events: none;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 18px;
}

.visual-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--victory-gold, #FACC15);
    color: #0b1220;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.visual-user {
    display: flex;
    flex-direction: column;
}

.visual-user strong {
    color: var(--ice-white, #F8FAFC);
    font-size: 1.1rem;
    font-weight: 700;
}

.visual-user span {
    color: #64748b;
    font-size: 0.85rem;
}

.visual-rating-badge {
    margin-left: auto;
    background: rgba(245, 197, 66, 0.08);
    border: 1px solid rgba(245, 197, 66, 0.3);
    color: var(--victory-gold, #FACC15);
    font-size: 1.25rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 6px;
}

.visual-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 10px 4px;
}

.visual-stat span {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.visual-stat strong {
    color: var(--ice-white, #F8FAFC);
    font-size: 1.15rem;
    font-weight: 800;
}

.visual-chart-sim {
    display: flex;
    flex-direction: column;
}

.chart-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.chart-line {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px 3px 0 0;
    transition: height 0.3s ease;
}

.chart-bar.highlight {
    background: var(--victory-gold, #FACC15);
    box-shadow: 0 0 10px rgba(245, 197, 66, 0.3);
}

/* 5. Timeline Section */
.minimal-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.minimal-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 11px;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
}

.timeline-node {
    position: relative;
    padding-bottom: 40px;
}

.timeline-node:last-child {
    padding-bottom: 0;
}

.node-indicator {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0b1220;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--victory-gold, #FACC15);
    font-size: 0.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.timeline-node:hover .node-circle {
    border-color: var(--victory-gold, #FACC15);
    box-shadow: 0 0 8px rgba(245, 197, 66, 0.4);
}

.node-body h3 {
    color: var(--ice-white, #F8FAFC);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.node-body p {
    color: #9fb0c7;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* 6. Dual Column Details Section */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.details-column {
    display: flex;
    flex-direction: column;
}

.details-column-head {
    margin-bottom: 32px;
}

.details-column-head h2 {
    font-size: 1.8rem;
    font-weight: 850;
    color: var(--ice-white, #F8FAFC);
    margin-bottom: 12px;
}

.details-column-head p {
    color: #9fb0c7;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Schedule List */
.schedule-days-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.schedule-day-row {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
}

.schedule-day-row:hover {
    border-color: rgba(245, 197, 66, 0.2);
    background: rgba(15, 23, 42, 0.5);
}

.day-name {
    color: var(--ice-white, #F8FAFC);
    font-weight: 800;
    font-size: 1.1rem;
}

.day-times {
    color: var(--victory-gold, #FACC15);
    font-weight: 750;
    font-size: 0.95rem;
}

/* Pilot Details List */
.pilot-details-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pilot-detail-item {
    border-left: 2px solid rgba(245, 197, 66, 0.3);
    padding-left: 18px;
}

.pilot-detail-item:hover {
    border-left-color: var(--victory-gold, #FACC15);
}

.pilot-detail-item strong {
    color: var(--ice-white, #F8FAFC);
    font-size: 1.05rem;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
}

.pilot-detail-item p {
    color: #9fb0c7;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* 7. Call To Action Panel */
.about-cta-panel {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(10, 15, 26, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.04) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.about-cta-panel h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--ice-white, #F8FAFC);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.about-cta-panel p {
    color: #9fb0c7;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.about-cta-panel .button {
    position: relative;
    z-index: 1;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    background: var(--victory-gold, #FACC15);
    color: #0b1220;
    transition: all 0.2s ease;
    display: inline-block;
}

.about-cta-panel .button:hover {
    background: #f5c542;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 197, 66, 0.2);
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .architecture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ratings-showcase-panel {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 40px;
    }
    .details-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .mission-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-hero-container {
        padding: 80px 24px 60px;
    }
}

@media (max-width: 640px) {
    .about-page-container {
        width: min(100% - 32px, 1200px);
    }

    .about-hero-glow {
        left: 0;
        width: 100%;
        transform: translateY(-50%);
    }

    .architecture-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .about-hero-actions .button {
        width: 100%;
    }
    .schedule-day-row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px;
    }
    .about-cta-panel {
        padding: 48px 24px;
    }
}
