/* PAGE 3: JOURNEY */
.journey-page {
    background-color: var(--color-charcoal-black);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    z-index: 2;
}

.journey-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.journey-header p {
    color: var(--color-graphite-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    z-index: 2;
}

.timeline-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--color-white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-node:hover {
    background: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.3);
}

.timeline-node .node-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-electric-blue);
    border-radius: 50%;
}

.timeline-node:hover .node-dot {
    background-color: var(--color-white);
}

/* Connecting decorative lines */
.timeline-bg-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.timeline-bg-lines path {
    stroke: var(--color-electric-blue);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 4 4;
}
