/* ============================================
   ABOUT PAGE PREMIUM STYLES
   ============================================ */

/* ABOUT HERO */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

.hero-label {
    display: block;
    color: var(--accent-science);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-science);
    line-height: 1;
    font-family: 'Space Grotesk', monospace;
}

.stat-symbol {
    font-size: 2rem;
    color: var(--accent-science);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.3), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.5;
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-science), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* SECTION LAYOUT */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--accent-science);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* MISSION SECTION */
.mission-section {
    padding: 8rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.mission-text .large-text {
    font-size: 1.3rem;
    color: #ddd;
    font-weight: 500;
}

/* CIRCULAR DIAGRAM */
.circular-diagram {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.circle-layer {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.layer-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 240, 255, 0.2);
    animation: rotate 30s linear infinite;
}

.layer-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(0, 240, 255, 0.3);
    animation: rotate 20s linear infinite reverse;
}

.layer-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 240, 255, 0.4);
    border-style: dashed;
    animation: rotate 15s linear infinite;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-science);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

/* VALUES SECTION */
.values-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 240, 255, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-science);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #999;
    line-height: 1.6;
}

/* PROJECT SECTION */
.project-section {
    padding: 8rem 0;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.project-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-science);
}

/* CODE WINDOW */
.code-window {
    background: #1a1a1a;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.window-header {
    background: #0a0a0a;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.window-dot:nth-child(1) {
    background: #ff5f56;
}

.window-dot:nth-child(2) {
    background: #ffbd2e;
}

.window-dot:nth-child(3) {
    background: #27c93f;
}

.window-title {
    margin-left: auto;
    font-size: 0.85rem;
    color: #666;
    font-family: 'Share Tech Mono', monospace;
}

.window-content {
    padding: 1.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-comment {
    color: #6a9955;
}

.code-keyword {
    color: #569cd6;
}

.code-class {
    color: #4ec9b0;
}

.code-function {
    color: #dcdcaa;
}

.code-param {
    color: #9cdcfe;
}

.code-var {
    color: #9cdcfe;
}

/* CONTACT SECTION */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03) 0%, transparent 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #999;
    margin: 2rem 0 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-science);
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.method-value {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-science);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: gap 0.3s;
}

.btn-animated:hover {
    gap: 1.2rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .mission-content,
    .project-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .circular-diagram {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}