.about-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, #0a0c1b 0%, #151a35 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-terminal);
    font-size: 0.9rem;
    color: var(--flux-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 50px;
    background: rgba(157, 78, 221, 0.05);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-terminal);
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    color: var(--star-text);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--comet-text);
}

.origin-story {
    padding: 6rem 0;
    background: linear-gradient(180deg, #151a35 0%, #111428 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-terminal);
    font-size: 0.85rem;
    color: var(--pulse-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    background: rgba(0, 217, 255, 0.05);
}

.section-title {
    font-family: var(--font-interface);
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    color: var(--star-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--comet-text);
    margin-bottom: 1.2rem;
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.story-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-stats .stat-number {
    font-family: var(--font-terminal);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--portal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.story-stats .stat-label {
    font-family: var(--font-interface);
    font-size: 0.9rem;
    color: var(--comet-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.story-visual {
    position: relative;
    height: 400px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, transparent, var(--pulse-accent), transparent);
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--portal-gradient);
    transform: translate(-50%, -50%);
    animation: timelinePulse 2s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    left: 50%;
    animation-delay: 0.5s;
}

.dot-3 {
    top: 80%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes timelinePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

.core-principles {
    padding: 6rem 0;
    background: rgba(10, 12, 27, 0.5);
}

.principles-header {
    text-align: center;
    margin-bottom: 3rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle-card {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition-warp);
}

.principle-card:hover {
    border-color: var(--pulse-accent);
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-5px);
}

.principle-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.principle-icon i {
    font-size: 1.8rem;
    color: var(--pulse-accent);
}

.principle-title {
    font-family: var(--font-interface);
    font-size: 1.3rem;
    color: var(--star-text);
    margin-bottom: 1rem;
}

.principle-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--comet-text);
}

.technology-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #111428 0%, #151a35 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-content,
.tech-visual {
    width: 100%;
    max-width: 550px;
}

.tech-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--comet-text);
    margin-bottom: 2rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 8px;
}

.feature i {
    color: var(--pulse-accent);
    font-size: 1.2rem;
}

.feature span {
    font-size: 0.95rem;
    color: var(--comet-text);
}

.code-block {
    background: #0a0c1b;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.code-header {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 217, 255, 0.1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red {
    background: #FF6B6B;
}

.code-dot.yellow {
    background: #FFD93D;
}

.code-dot.green {
    background: #6BCB77;
}

.code-content {
    padding: 2rem;
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #8fa3c9;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.code-keyword {
    color: #FF6B9D;
}

.code-class {
    color: #00d9ff;
}

.code-function {
    color: #FFD93D;
}

.code-this {
    color: #9d4edd;
}

.code-number {
    color: #6BCB77;
}

.code-string {
    color: #FFA8A8;
}

.code-param {
    color: #A0E7E5;
}

.team-section {
    padding: 6rem 0;
    background: rgba(10, 12, 27, 0.5);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(157, 78, 221, 0.1);
    border-radius: 16px;
    transition: all var(--transition-quantum);
}

.team-card:hover {
    border-color: var(--flux-secondary);
    background: rgba(157, 78, 221, 0.1);
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-avatar i {
    font-size: 2.5rem;
    color: var(--flux-secondary);
}

.team-name {
    font-family: var(--font-interface);
    font-size: 1.3rem;
    color: var(--star-text);
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: var(--font-interface);
    font-size: 0.9rem;
    color: var(--pulse-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--comet-text);
}

.future-vision {
    padding: 6rem 0;
    background: linear-gradient(180deg, #151a35 0%, #0a0c1b 100%);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-roadmap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-quantum);
}

.roadmap-item:hover {
    border-color: var(--pulse-accent);
    background: rgba(0, 217, 255, 0.1);
}

.roadmap-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(0, 217, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roadmap-icon i {
    font-size: 1.5rem;
    color: var(--pulse-accent);
}

.roadmap-content h3 {
    font-family: var(--font-interface);
    font-size: 1.2rem;
    color: var(--star-text);
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--comet-text);
}

@media (max-width: 1024px) {
    .story-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-visual {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }
    
    .origin-story,
    .core-principles,
    .technology-section,
    .team-section,
    .future-vision {
        padding: 4rem 0;
    }

    .story-grid,
    .tech-grid {
        gap: 1rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .principles-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .section-title {
        font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
    }
    
    .code-content {
        max-width: 100%;
        overflow-x: auto;
        white-space: pre-wrap;
        word-break: break-word;
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
    }
    
    .roadmap-icon {
        margin: 0 auto;
    }
}