/* =============================================
   ABOUT PAGE — Premium Styles
   ============================================= */

/* --- About Hero --- */
.about-hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 163, 115, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 163, 115, 0.06) 0%, transparent 50%),
        #0A0A0A;
    z-index: 0;
}

.about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 1;
    pointer-events: none;
}

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

.about-hero-title {
    font-family: var(--header-font);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    letter-spacing: -2px;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--accent-color);
    opacity: 0.4;
}

/* --- Company Story --- */
.about-story-section {
    background: #000;
    padding: 5rem 10%;
    position: relative;
    min-height: auto;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(212, 163, 115, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.story-container {
    display: flex;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.story-left {
    flex: 1;
    position: sticky;
    top: 120px;
}

.story-title {
    font-family: var(--header-font);
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.story-right {
    flex: 1;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    opacity: 0.85;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.story-text.secondary {
    opacity: 0.6;
    font-size: 1.05rem;
}

/* --- Founders --- */
.founders-section {
    background: #000;
    padding: 5rem 10%;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 30%, rgba(212, 163, 115, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 70%, rgba(212, 163, 115, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.founders-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.founders-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-weight: 300;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Founder Card */
.founder-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 163, 115, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 163, 115, 0.05);
    transform-style: flat;
}

/* Founder Image */
.founder-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2.5rem;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: grayscale(20%) contrast(1.05);
    transition: all 0.6s ease;
}

.founder-card:hover .founder-image {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.03);
}

.founder-image-border {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(212, 163, 115, 0.2);
    z-index: 1;
    transition: all 0.6s ease;
}

.founder-card:hover .founder-image-border {
    border-color: rgba(212, 163, 115, 0.5);
    inset: -6px;
}

.founder-image-glow {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.founder-card:hover .founder-image-glow {
    opacity: 1;
}

/* Founder Info */
.founder-name {
    font-family: var(--header-font);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.founder-role {
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.founder-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin: 1.5rem auto;
    opacity: 0.5;
}

.founder-bio {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto;
}

.founder-social {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 163, 115, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* --- Values --- */
.values-section {
    background: #000;
    padding: 5rem 10%;
    position: relative;
    min-height: auto;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 163, 115, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.values-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-color);
    transform: translateY(-8px);
}

.value-icon {
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-family: var(--header-font);
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 400;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* --- Timeline --- */
.timeline-section {
    background: #000;
    padding: 5rem 10% 3rem;
    position: relative;
    min-height: auto;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 163, 115, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.timeline-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3rem 4rem;
}

.timeline-item.left {
    padding-right: 4rem;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 4rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
    z-index: 3;
}

.timeline-item.left .timeline-dot {
    right: -6px;
}

.timeline-item.right .timeline-dot {
    left: -6px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.6s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 163, 115, 0.2);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.timeline-content h3 {
    font-family: var(--header-font);
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin: 0.5rem 0;
    font-weight: 400;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* --- CTA --- */
.about-cta-section {
    background: #000;
    padding: 3rem 10% 5rem;
    position: relative;
    min-height: auto;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(212, 163, 115, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--header-font);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--body-font);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 100px;
    z-index: -1;
}

.cta-button:hover {
    color: #0A0A0A;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.2);
}

.cta-button:hover::before {
    opacity: 1;
}

/* Active nav link */
.nav-active {
    color: var(--accent-color) !important;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 4rem;
    }

    .story-container {
        flex-direction: column;
        gap: 2rem;
    }

    .story-left {
        position: static;
    }

    .story-title {
        font-size: 2.5rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
    }

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

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-dot {
        left: 14px !important;
        right: auto !important;
    }
}

/* =============================================
   RESPONSIVE — PHONE (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
    .about-hero-section {
        min-height: 70vh;
        padding-top: 6rem;
    }

    .about-hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-story-section {
        padding: 4rem 5%;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .founders-section {
        padding: 4rem 5%;
    }

    .founder-card {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .founder-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .founder-name {
        font-size: 1.6rem;
    }

    .values-section {
        padding: 4rem 5%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .timeline-section {
        padding: 4rem 5%;
    }

    .timeline-line {
        left: 12px;
    }

    .timeline-item {
        padding-left: 40px !important;
    }

    .timeline-dot {
        left: 6px !important;
        width: 10px;
        height: 10px;
    }

    .timeline-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .about-cta-section {
        padding: 4rem 5%;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 0.8rem;
    }
}

/* =============================================
   RESPONSIVE — SMALL PHONE (≤ 380px)
   ============================================= */
@media (max-width: 380px) {
    .about-hero-title {
        font-size: 2.2rem;
    }

    .story-title {
        font-size: 1.7rem;
    }

    .founder-image-wrapper {
        width: 130px;
        height: 130px;
    }

    .founder-name {
        font-size: 1.4rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}
