/* ===================================================
   DON'T SAY GAME STUDIO - About Us Page Stylesheet
   CA-238
   =================================================== */

/* --- ABOUT HERO BANNER --- */
.about-hero {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        135deg,
        rgba(9, 12, 20, 1) 0%,
        rgba(18, 24, 39, 1) 30%,
        rgba(255, 138, 42, 0.05) 50%,
        rgba(18, 24, 39, 1) 70%,
        rgba(9, 12, 20, 1) 100%
    );
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 42, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 77, 255, 0.04) 0%, transparent 70%);
    transform: translate(50%, -50%);
    border-radius: 50%;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(9, 12, 20, 0.3) 0%,
        rgba(9, 12, 20, 0.5) 60%,
        rgba(9, 12, 20, 1) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(255, 138, 42, 0.2);
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 16px;
}

.about-hero-description {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* --- WHO WE ARE --- */
.about-who-we-are {
    padding: 100px 48px;
}

.who-we-are-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.who-we-are-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-accent-line {
    width: 60px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 24px;
}

.section-accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

.who-we-are-text p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
}

.who-we-are-text .highlight-text {
    color: var(--orange);
    font-weight: 500;
    font-size: 1rem;
    font-style: italic;
}

.who-we-are-artwork {
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-placeholder {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artwork-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 138, 42, 0.3) 25%,
        transparent 50%,
        rgba(255, 138, 42, 0.15) 75%,
        transparent 100%
    );
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.who-we-are-logo {
    width: 160px;
    height: auto;
    position: relative;
    z-index: 1;
}

/* --- OUR PHILOSOPHY --- */
.about-philosophy {
    padding: 80px 48px;
}

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

.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(255, 138, 42, 0.1);
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 12px;
    background: rgba(255, 138, 42, 0.08);
    border: 1px solid rgba(255, 138, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.philosophy-icon-img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    max-width: none;
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

/* --- WHAT WE BUILD --- */
.about-what-we-build {
    padding: 80px 48px;
}

.build-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.build-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.build-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 138, 42, 0.12);
}

.build-card-artwork {
    width: 100%;
    aspect-ratio: 2.5 / 1;
    overflow: hidden;
}

.build-card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.build-card:hover .build-card-artwork img {
    transform: scale(1.03);
}

.build-card-body {
    padding: 24px;
}

.build-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.build-card-body p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 12px;
}

.build-card-highlight {
    color: var(--orange) !important;
    font-weight: 400 !important;
    font-style: italic;
}

/* --- OUR MISSION --- */
.about-mission {
    position: relative;
    padding: 100px 48px;
    text-align: center;
    overflow: hidden;
}

.mission-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--orange) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, var(--orange) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, var(--orange) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}

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

.mission-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.mission-text p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 4px;
}

.mission-emphasis {
    color: var(--orange) !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-top: 8px !important;
}

.mission-quote {
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    padding: 24px 32px;
    border-left: 4px solid var(--orange);
    background: rgba(255, 138, 42, 0.04);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: left;
    text-shadow: 0 0 30px rgba(255, 138, 42, 0.15);
}

/* --- OUR JOURNEY / TIMELINE --- */
.about-journey {
    padding: 80px 48px;
}

.timeline {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 32px 0;
}

.timeline-line {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--orange) 15%,
        var(--orange) 85%,
        transparent
    );
}

.timeline-item {
    position: relative;
    padding-left: 48px;
    padding-bottom: 36px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.timeline-node {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--orange);
    box-shadow: 0 0 12px rgba(255, 138, 42, 0.4);
}

.timeline-node.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 138, 42, 0.4); }
    50% { box-shadow: 0 0 24px rgba(255, 138, 42, 0.8); }
}

.timeline-content {
    padding-top: 0;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.timeline-content p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

.timeline-future {
    color: var(--orange) !important;
    font-style: italic;
    font-weight: 400 !important;
}

/* --- WHY "DON'T SAY GAME"? --- */
.about-name {
    padding: 80px 48px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.about-name-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-name-container h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.about-name-text p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 12px;
}

.name-emphasis {
    color: var(--orange) !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    margin-top: 8px !important;
}

/* --- JOIN OUR COMMUNITY --- */
.about-community {
    padding: 80px 48px;
    text-align: center;
}

.about-community h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.community-subtitle {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 36px;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.community-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: transform 0.3s, border-color 0.3s;
    min-width: 140px;
}

.community-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
}

.community-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.community-card span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 1px;
}

.community-card:hover span {
    color: var(--orange);
}

.community-newsletter {
    max-width: 500px;
    margin: 0 auto;
}

.community-newsletter p {
    font-family: var(--font-body);
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.community-email-form {
    display: flex;
    gap: 12px;
}

.community-email-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.community-email-form input::placeholder {
    color: var(--gray);
}

.community-email-form input:focus {
    border-color: var(--orange);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .who-we-are-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .section-accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .build-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 400px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .community-links {
        flex-direction: column;
        align-items: center;
    }

    .community-email-form {
        flex-direction: column;
    }

    .mission-quote {
        font-size: 1.1rem;
        padding: 20px 24px;
    }
}
