/* ============================================
   PEOPLE PAGE - Custom Styles
============================================ */

/* ============================================
   HERO SECTION
============================================ */
.people-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 5rem 4rem;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.people-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    animation: people-orb-pulse 15s ease-in-out infinite;
}

.people-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-diagonal);
    opacity: 0.1;
    top: -15%;
    right: -15%;
}

.people-hero-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-main-reverse);
    opacity: 0.08;
    bottom: -10%;
    left: -10%;
    animation-delay: -7s;
}

@keyframes people-orb-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.15;
    }
}

.people-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.people-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.people-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
}

.title-accent {
    color: rgba(255, 255, 255, 0.5);
}

.people-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.5; }
}

/* ============================================
   INTRO SECTION
============================================ */
.people-intro-section {
    background: #0a0a0a;
}

.intro-content {
    padding: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-block {
    margin-bottom: 4rem;
}

.intro-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 2rem;
}

.intro-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.intro-emphasis {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
}

.intro-hiring {
    padding: 2.5rem;
    padding-left: calc(2.5rem + 3px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    position: relative;
}

.intro-hiring::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-vertical);
}

.hiring-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hiring-text strong {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiring-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hiring-link:hover {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hiring-link svg {
    transition: transform 0.3s ease;
}

.hiring-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   VALUES SECTION
============================================ */
.people-values {
    background: #0f0f0f;
}

.values-content {
    padding: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    margin-bottom: 4rem;
}

.values-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.values-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.value-card:last-child {
    border-right: none;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card::before,
.value-card[data-color="teal"]::before,
.value-card[data-color="orange"]::before { background: var(--gradient-main); }

.value-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1rem;
}

.value-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   LEADERSHIP SECTION
============================================ */
.people-leadership {
    background: #0a0a0a;
}

.leadership-content {
    padding: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leadership-header {
    margin-bottom: 4rem;
}

.leadership-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-profile {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leader-profile:last-child {
    border-bottom: none;
}

.leader-image-wrapper {
    position: relative;
    width: 204px;
    height: 204px;
    border-radius: 50%;
    background: var(--gradient-main);
    padding: 2px;
}

.leader-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.leader-profile:hover .leader-image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.leader-profile:hover .leader-image {
    box-shadow: 0 0 40px rgba(159, 71, 219, 0.25);
}

.leader-header {
    margin-bottom: 1.5rem;
}

.leader-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0.25rem;
}

.leader-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.leader-title {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leader-bio {
    margin-bottom: 2rem;
}

.leader-bio p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.leader-bio p:last-child {
    margin-bottom: 0;
}

.leader-driver {
    padding: 1.5rem;
    padding-left: calc(1.5rem + 4px);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.leader-driver::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-vertical);
}

.driver-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.leader-driver p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

/* ============================================
   ADVISORS SECTION
============================================ */
.people-advisors {
    background: #0f0f0f;
}

.advisors-content {
    padding: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advisors-header {
    margin-bottom: 4rem;
}

.advisors-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advisor-profile {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advisor-profile:last-child {
    border-bottom: none;
}

.advisor-image-wrapper {
    position: relative;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    background: var(--gradient-main);
    padding: 2px;
}

.advisor-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.advisor-profile:hover .advisor-image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.advisor-profile[data-color="teal"]:hover .advisor-image {
    box-shadow: 0 0 30px rgba(0, 166, 156, 0.2);
}

.advisor-profile[data-color="orange"]:hover .advisor-image {
    box-shadow: 0 0 30px rgba(255, 149, 0, 0.2);
}

.advisor-header {
    margin-bottom: 1.25rem;
}

.advisor-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 0.25rem;
}

.advisor-credentials {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

.advisor-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.advisor-profile[data-color="teal"] .advisor-title,
.advisor-profile[data-color="orange"] .advisor-title {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advisor-bio {
    margin-bottom: 1.5rem;
}

.advisor-bio p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.advisor-bio p:last-child {
    margin-bottom: 0;
}

.advisor-driver {
    padding: 1.25rem;
    padding-left: calc(1.25rem + 4px);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.advisor-driver::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-vertical);
}

.advisor-driver p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

/* ============================================
   CTA SECTION
============================================ */
.people-cta {
    background: #0a0a0a;
    padding: 8rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-visual {
    display: flex;
    justify-content: center;
}

.cta-hands-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.15));
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--gradient-main);
    color: white;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .people-hero {
        padding: 6rem 3rem 4rem;
    }

    .intro-content,
    .values-content,
    .leadership-content,
    .advisors-content,
    .people-cta {
        padding: 4rem 3rem;
    }

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

    .value-card:nth-child(3) {
        border-right: none;
    }

    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .leader-profile,
    .advisor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leader-image-wrapper,
    .advisor-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .people-hero {
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
        padding-top: 8rem;
    }

    .people-hero-title {
        font-size: 2.25rem;
    }

    .people-hero-scroll {
        display: none;
    }

    .intro-content,
    .values-content,
    .leadership-content,
    .advisors-content,
    .people-cta {
        padding: 3rem 1.5rem;
    }

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

    .value-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .value-card:last-child {
        border-bottom: none;
    }

    .value-card:nth-child(3) {
        border-right: none;
    }

    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        border-top: none;
    }

    .leader-image-wrapper,
    .advisor-image-wrapper {
        width: 154px;
        height: 154px;
    }

    .leader-image,
    .advisor-image {
        width: 150px;
        height: 150px;
    }

    .intro-hiring {
        padding: 1.5rem;
    }

    .cta-hands-image {
        max-width: 250px;
    }
}
