/* MOM Global - Global Styles */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Glassmorphism --- */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dark-glass {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- Typography Gradients --- */
.gradient-text-dark {
    background: linear-gradient(135deg, #0A0A0A 0%, #4B5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light,
.gradient-text {
    background: linear-gradient(to right, #ffffff, #a3a3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-gradient-text,
.gradient-text-orange {
    background: linear-gradient(135deg, #FF5A00 0%, #FF8A4C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Interactions & Effects --- */
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,1) 100%);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* --- SVG Paths & Specifics --- */
.line-svg {
    stroke: #E5E7EB;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

/* Timeline Connector */
.timeline-connector::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: -40px;
    left: 24px;
    width: 2px;
    background: #e5e7eb;
    z-index: 0;
}
@media (min-width: 768px) {
    .timeline-connector::before {
        left: 50%;
        transform: translateX(-50%);
    }
}
.timeline-item:last-child .timeline-connector::before {
    display: none;
}
