/* ═══════════════════════════════════════════════
   ABOUT PAGE V2 (Premium Agency Layout)
   ═══════════════════════════════════════════════ */

.about-v2 {
    padding-top: 15vh;
    padding-bottom: var(--space-10);
    overflow: hidden;
}

/* 1. Hero Manifesto */
.about-v2__hero {
    margin-bottom: var(--space-8);
}
.about-v2__manifesto {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 1.05;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.about-v2__manifesto span {
    color: var(--text-secondary);
    display: inline-block;
    transition: color 0.4s ease;
}
.about-v2__manifesto span:hover {
    color: var(--accent);
}
.about-v2__lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

/* 2. Parallax Image */
.about-v2__image-container {
    width: 100%;
    height: clamp(400px, 60vh, 700px);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-8);
    border: 1px solid rgba(255,255,255,0.05);
}
.about-v2__image {
    width: 100%;
    height: 130%; /* Extra height for parallax */
    object-fit: cover;
    position: absolute;
    top: -15%; /* Start offset */
    left: 0;
    will-change: transform;
}

/* 3. Bento Grid */
.about-v2__bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}
.about-bento-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: var(--space-5);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}
.about-bento-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.about-bento-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

/* Specific Bento Cards */
.bento-location { grid-column: span 8; background-image: radial-gradient(circle at right bottom, rgba(39, 201, 63, 0.05) 0%, transparent 60%); }
.bento-focus { grid-column: span 4; }
.bento-education { grid-column: span 6; }
.bento-stack { grid-column: span 6; }

@media (max-width: 991px) {
    .bento-location, .bento-education, .bento-stack { grid-column: span 12; }
    .bento-focus { grid-column: span 12; }
}

.bento-value {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}
.bento-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* 4. Timeline (Experience/Education) */
.about-v2__timeline-section {
    margin-bottom: var(--space-10);
}
.timeline-container {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px; /* Center of the 16px dot */
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(20px);
}
.timeline-dot {
    position: absolute;
    left: -40px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.4);
}
.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.timeline-org {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.timeline-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* 5. Magnetic CV Button Area */
.about-v2__cv-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-6) 0;
}
.magnetic-cv-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
    overflow: hidden;
}
.magnetic-cv-btn:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--accent);
}
.magnetic-cv-btn span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.magnetic-cv-btn::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(39, 201, 63, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}
