/* ============================================
   PURPOSE PAGE - Custom Styles
============================================ */

/* ============================================
   HERO SECTION
============================================ */
.purpose-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;
}

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

.purpose-hero-orb-1 {
    width: 700px;
    height: 700px;
    background: var(--gradient-diagonal);
    opacity: 0.1;
    top: -20%;
    left: -20%;
}

.purpose-hero-orb-2 {
    width: 600px;
    height: 600px;
    background: var(--gradient-main-reverse);
    opacity: 0.08;
    bottom: -20%;
    right: -20%;
    animation-delay: -7s;
}

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

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

.purpose-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);
}

.purpose-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    color: white;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-blue), var(--color-purple), var(--color-coral));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purpose-hero-visual {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    width: 100%;
    max-width: 550px;
}

.hero-earth-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 80px rgba(0, 102, 255, 0.2));
}

.purpose-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; }
}

/* ============================================
   MISSION SECTION
============================================ */
.purpose-mission {
    background: #0a0a0a;
}

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

.mission-block {
    text-align: center;
}

.mission-lead {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: white;
    margin-bottom: 2rem;
}

.mission-body {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   DECISION CODE SECTION
============================================ */
.purpose-decision {
    background: #0f0f0f;
}

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

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

.decision-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;
}

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

.decision-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

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

.decision-dna-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(0, 102, 255, 0.2));
}

.decision-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.decision-insight {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.decision-emphasis {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.7;
    color: white;
}

.decision-statement {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    padding-left: calc(2rem + 5px);
    background: rgba(139, 92, 246, 0.05);
    position: relative;
}

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

.statement-marker {
    font-family: monospace;
    font-size: 1.25rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.decision-statement p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: white;
    margin: 0;
}

/* ============================================
   BELIEFS SECTION
============================================ */
.purpose-beliefs {
    background: #0a0a0a;
}

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

.beliefs-intro {
    margin-bottom: 4rem;
    text-align: center;
}

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

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.belief-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.belief-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

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

.belief-number {
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
}

.belief-card .belief-number,
.belief-card[data-color="teal"] .belief-number {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.belief-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   HORIZON SECTION
============================================ */
.purpose-horizon {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.horizon-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.horizon-content {
    position: relative;
    padding: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

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

.horizon-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-main);
    opacity: 0.08;
    top: -10%;
    left: -10%;
}

.horizon-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-main-reverse);
    opacity: 0.06;
    top: 50%;
    right: -15%;
    animation-delay: -5s;
}

.horizon-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-diagonal);
    opacity: 0.05;
    bottom: -10%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes horizon-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.horizon-visual {
    position: relative;
    z-index: 2;
}

.horizon-cells-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(0, 102, 255, 0.2));
}

.horizon-text {
    position: relative;
    z-index: 2;
}

.horizon-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;
}

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

.future-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: 1rem;
}

.future-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.future-tag {
    padding: 0.6rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.future-tag:hover {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: rgba(159, 71, 219, 0.5);
}

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

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

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

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

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

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

.join-actions {
    display: flex;
    gap: 1rem;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-btn.primary {
    background: white;
    color: #0a0a0a;
}

.join-btn.primary:hover {
    background: var(--gradient-main);
    color: white;
}

.join-btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.join-btn.secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

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

    .mission-content,
    .decision-content,
    .beliefs-content,
    .horizon-content,
    .purpose-join {
        padding: 4rem 3rem;
    }

    .decision-grid,
    .horizon-content,
    .join-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .decision-visual,
    .horizon-visual,
    .join-visual {
        order: -1;
        justify-content: center;
    }

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

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

    .purpose-hero-title {
        font-size: 3rem;
    }

    .purpose-hero-visual {
        margin-top: 3rem;
    }

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

    .mission-content,
    .decision-content,
    .beliefs-content,
    .horizon-content,
    .purpose-join {
        padding: 3rem 1.5rem;
    }

    .mission-lead {
        font-size: 1.5rem;
    }

    .decision-dna-image {
        max-width: 250px;
    }

    .decision-statement {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .belief-card {
        padding: 2rem;
    }

    .horizon-cells-image {
        max-width: 300px;
    }

    .join-actions {
        flex-direction: column;
    }

    .join-btn {
        width: 100%;
        justify-content: center;
    }

    .join-hands-image {
        max-width: 300px;
    }
}
