/* ==========================================
   SUPPLYCHAIN.WATCH - STYLES
   Scandinavian Playful Duotone Bento Design
   ========================================== */

/* CSS Variables */
:root {
    --color-indigo: #1e2a4a;
    --color-cream: #f5f0e8;
    --color-coral: #e8654a;
    --color-teal: #3a9e8f;
    --color-gold: #e8b84a;
    --color-slate: #8b92a0;
    --color-charcoal: #12182b;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-cream);
    color: var(--color-indigo);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    line-height: 1.65;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* ==========================================
   ENTRY SEQUENCE
   ========================================== */

.entry-sequence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
}

.entry-composition {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 80px;
}

/* Entry rectangles */
.entry-rect {
    position: absolute;
    background-color: var(--color-indigo);
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
}

.entry-rect-1 {
    width: 120px;
    height: 48px;
    animation: entry-rect-slide-1 0.6s ease-out forwards;
    animation-delay: 0.3s;
}

.entry-rect-2 {
    width: 120px;
    height: 48px;
    animation: entry-rect-slide-2 0.6s ease-out forwards;
    animation-delay: 0.45s;
}

.entry-rect-3 {
    width: 120px;
    height: 48px;
    animation: entry-rect-slide-3 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

.entry-rect-4 {
    width: 120px;
    height: 48px;
    animation: entry-rect-slide-4 0.6s ease-out forwards;
    animation-delay: 0.75s;
}

@keyframes entry-rect-slide-1 {
    0% {
        transform: translateX(-50%) translateY(-50%) translateX(-120px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-108px);
        opacity: 1;
    }
}

@keyframes entry-rect-slide-2 {
    0% {
        transform: translateX(-50%) translateY(-50%) translateX(-120px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-54px);
        opacity: 1;
    }
}

@keyframes entry-rect-slide-3 {
    0% {
        transform: translateX(-50%) translateY(-50%) translateX(-120px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0px);
        opacity: 1;
    }
}

@keyframes entry-rect-slide-4 {
    0% {
        transform: translateX(-50%) translateY(-50%) translateX(-120px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(54px);
        opacity: 1;
    }
}

/* Entry circles */
.entry-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-teal);
    opacity: 0;
    animation: entry-circle-fade 0.5s ease-out forwards;
}

.entry-circle-1 {
    width: 60px;
    height: 60px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 0.9s;
}

.entry-circle-2 {
    width: 40px;
    height: 40px;
    left: 10px;
    bottom: 60px;
    animation-delay: 1.1s;
}

.entry-circle-3 {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 40px;
    animation-delay: 1.3s;
}

@keyframes entry-circle-fade {
    0% {
        opacity: 0;
        transform: inherit scale(0.8);
    }
    100% {
        opacity: 1;
        transform: inherit scale(1);
    }
}

/* Entry triangles */
.entry-triangle {
    position: absolute;
    opacity: 0;
    animation: entry-triangle-rotate 0.6s ease-out forwards;
    animation-delay: 1.5s;
}

.entry-triangle-1,
.entry-triangle-2 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--color-coral);
}

.entry-triangle-1 {
    left: 20%;
    top: 30%;
    animation-delay: 1.5s;
}

.entry-triangle-2 {
    right: 30%;
    bottom: 20%;
    animation-delay: 1.7s;
}

@keyframes entry-triangle-rotate {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Entry title and subtitle */
.entry-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--color-indigo);
    text-align: center;
    opacity: 0;
    animation: entry-title-type 2s ease-out 0.3s forwards;
}

@keyframes entry-title-type {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.entry-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--color-slate);
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    animation: entry-subtitle-fade 0.8s ease-out 2.3s forwards;
}

@keyframes entry-subtitle-fade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Remove entry sequence after animation completes */
.entry-sequence.hidden {
    pointer-events: none;
    opacity: 0;
    animation: entry-sequence-hide 0.4s ease-out 2.8s forwards;
}

@keyframes entry-sequence-hide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        pointer-events: none;
    }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.content-wrapper {
    position: relative;
    z-index: 10;
}

/* ==========================================
   BENTO TRAY
   ========================================== */

.bento-tray {
    min-height: 100vh;
    padding: 60px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    width: 100%;
    max-width: 1400px;
    height: fit-content;
}

/* ==========================================
   BENTO MODULES
   ========================================== */

.bento-module {
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all 250ms var(--ease-out-back);
    position: relative;
    background-image:
        radial-gradient(circle at 12% 8%, rgba(0,0,0,0.01) 0%, transparent 1px),
        radial-gradient(circle at 68% 14%, rgba(0,0,0,0.01) 0%, transparent 1px),
        radial-gradient(circle at 23% 67%, rgba(0,0,0,0.01) 0%, transparent 1px),
        radial-gradient(circle at 77% 52%, rgba(0,0,0,0.01) 0%, transparent 1px),
        radial-gradient(circle at 45% 89%, rgba(0,0,0,0.01) 0%, transparent 1px),
        radial-gradient(circle at 88% 76%, rgba(0,0,0,0.01) 0%, transparent 1px);
    background-size: 100% 100%;
    background-repeat: repeat;
    box-shadow: none;
}

.bento-module:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(30, 42, 74, 0.12);
}

/* Hero Module */
.hero-module {
    grid-column: span 5;
    grid-row: span 3;
    background-color: var(--color-indigo);
    color: var(--color-cream);
}

.hero-module h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--color-cream);
}

.hero-module p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    line-height: 1.65;
    color: var(--color-cream);
}

/* Data Gem Modules */
.data-gem {
    grid-column: span 2;
    grid-row: span 1;
    background-color: var(--color-cream);
    border: 1px solid var(--color-slate);
    border-opacity: 0.2;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.data-gem:nth-child(even) {
    background-color: var(--color-indigo);
    color: var(--color-cream);
    border: none;
}

.gem-shape {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.02em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: var(--color-indigo);
    transition: transform 100ms ease-out 100ms;
}

.data-gem:nth-child(even) .gem-shape {
    color: var(--color-coral);
}

.data-gem:hover .gem-shape {
    transform: scale(1.15);
}

.gem-label {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-slate);
    margin: 0;
}

.data-gem:nth-child(even) .gem-label {
    color: var(--color-gold);
}

/* Illustration Module */
.illustration-module {
    grid-column: span 3;
    grid-row: span 2;
    background-color: var(--color-cream);
    border: 1px solid var(--color-slate);
    border-opacity: 0.15;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.illustration {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Grid Overlay Module */
.grid-overlay-module {
    grid-column: span 2;
    grid-row: span 2;
    background-color: var(--color-indigo);
    position: relative;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            var(--color-slate) 0,
            var(--color-slate) 1px,
            transparent 1px,
            transparent 20px
        ),
        repeating-linear-gradient(
            90deg,
            var(--color-slate) 0,
            var(--color-slate) 1px,
            transparent 1px,
            transparent 20px
        );
    background-size: 20px 20px;
    opacity: 0.3;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.coord-label {
    position: absolute;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.7;
}

.coord-label-2 {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: auto;
    color: var(--color-teal);
}

/* ==========================================
   GEOMETRIC SHAPES
   ========================================== */

/* Circles */
.circle {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background-color: var(--color-teal);
}

.data-gem .circle {
    width: 100%;
    max-width: 120px;
    height: 120px;
    background-color: var(--color-teal);
    color: var(--color-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 15px 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.data-gem:nth-child(even) .circle {
    background-color: var(--color-coral);
}

/* Triangles */
.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 87px solid var(--color-coral);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--color-cream);
    line-height: 1;
    margin: 0 0 15px 0;
}

.triangle::before {
    content: attr(data-value);
    position: absolute;
    bottom: 25px;
}

.data-gem .triangle {
    border-bottom-color: var(--color-coral);
}

.data-gem:nth-child(even) .triangle {
    border-bottom-color: var(--color-gold);
}

/* Hexagons */
.hexagon {
    width: 80px;
    height: 80px;
    background-color: var(--color-teal);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-cream);
    margin: 0 0 15px 0;
}

.data-gem .hexagon {
    width: 100%;
    max-width: 120px;
    height: 120px;
    background-color: var(--color-teal);
}

.data-gem:nth-child(even) .hexagon {
    background-color: var(--color-gold);
}

/* ==========================================
   ORIGIN SCENE ILLUSTRATION
   ========================================== */

.hexagon {
    position: relative;
}

#origin-scene .hexagon {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: pulse-hex 3s ease-in-out infinite;
}

#origin-scene .hex-1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

#origin-scene .hex-2 {
    left: 30%;
    top: 35%;
    animation-delay: 0.3s;
}

#origin-scene .hex-3 {
    right: 25%;
    bottom: 30%;
    animation-delay: 0.6s;
}

@keyframes pulse-hex {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

.triangle-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--color-coral);
    opacity: 0.8;
}

#origin-scene .arrow-1 {
    left: 25%;
    top: 45%;
}

#origin-scene .arrow-2 {
    right: 35%;
    top: 30%;
    transform: rotate(45deg);
}

#origin-scene .arrow-3 {
    right: 20%;
    bottom: 35%;
    transform: rotate(-45deg);
}

/* ==========================================
   TRANSIT SCENE ILLUSTRATION
   ========================================== */

.transit-line {
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: var(--color-slate);
    top: 50%;
    left: 10%;
    opacity: 0.5;
}

.container-box {
    position: absolute;
    width: 80px;
    height: 32px;
    background-color: var(--color-indigo);
    top: 50%;
    transform: translateY(-50%);
    animation: transit-move 4s ease-in-out infinite;
}

.box-1 {
    left: 10%;
    animation-delay: 0s;
}

.box-2 {
    left: 10%;
    animation-delay: 0.2s;
}

.box-3 {
    left: 10%;
    animation-delay: 0.4s;
}

.box-4 {
    left: 10%;
    animation-delay: 0.6s;
}

@keyframes transit-move {
    0%, 100% {
        left: 10%;
    }
    50% {
        left: 70%;
    }
}

.direction-marker {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--color-coral);
    opacity: 0.6;
}

#transit-scene .marker-1 {
    top: 45%;
    left: 55%;
}

#transit-scene .marker-2 {
    bottom: 40%;
    left: 40%;
}

/* ==========================================
   NETWORK SCENE ILLUSTRATION
   ========================================== */

.network-line {
    position: absolute;
    background-color: var(--color-slate);
    opacity: 0.4;
}

#network-scene .line-1 {
    width: 2px;
    height: 60%;
    left: 30%;
    top: 20%;
}

#network-scene .line-2 {
    width: 70%;
    height: 2px;
    left: 15%;
    top: 50%;
}

#network-scene .line-3 {
    width: 2px;
    height: 50%;
    right: 25%;
    bottom: 15%;
}

.network-hexagon {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: var(--color-teal);
    opacity: 0.6;
    animation: network-pulse 2s ease-in-out infinite;
}

.net-hex-1 {
    width: 50px;
    height: 50px;
    left: 20%;
    top: 30%;
    animation-delay: 0s;
}

.net-hex-2 {
    width: 40px;
    height: 40px;
    left: 55%;
    top: 15%;
    animation-delay: 0.3s;
}

.net-hex-3 {
    width: 45px;
    height: 45px;
    right: 20%;
    top: 45%;
    animation-delay: 0.6s;
}

.net-hex-4 {
    width: 35px;
    height: 35px;
    left: 35%;
    bottom: 25%;
    animation-delay: 0.9s;
}

.net-hex-5 {
    width: 50px;
    height: 50px;
    right: 30%;
    bottom: 15%;
    animation-delay: 1.2s;
}

@keyframes network-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

/* ==========================================
   ARRIVAL SCENE ILLUSTRATION
   ========================================== */

.arrival-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--color-teal);
}

#arrival-scene .arrival-outer {
    width: 200px;
    height: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
}

#arrival-scene .arrival-center {
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-teal);
    border: none;
}

.arrival-node {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-coral);
    cursor: pointer;
    transition: transform 250ms ease-out;
}

#arrival-scene .arrival-node-1 {
    left: 15%;
    top: 20%;
}

#arrival-scene .arrival-node-2 {
    right: 20%;
    top: 30%;
}

#arrival-scene .arrival-node-3 {
    left: 25%;
    bottom: 25%;
}

#arrival-scene .arrival-node-4 {
    right: 15%;
    bottom: 20%;
}

.arrival-node:hover {
    transform: scale(1.3);
}

.arrival-line {
    position: absolute;
    background-color: var(--color-slate);
    opacity: 0.5;
    animation: line-draw 2s ease-out infinite;
}

#arrival-scene .line-1 {
    width: 2px;
    height: 120px;
    left: 28%;
    top: 35%;
}

#arrival-scene .line-2 {
    width: 140px;
    height: 2px;
    right: 25%;
    top: 50%;
}

#arrival-scene .line-3 {
    width: 2px;
    height: 100px;
    left: 40%;
    bottom: 30%;
}

@keyframes line-draw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

/* ==========================================
   NARRATIVE STRIP
   ========================================== */

.narrative-strip {
    min-height: 80px;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 20px 30px;
    border-top: 6px solid var(--color-indigo);
    border-bottom: 6px solid var(--color-indigo);
}

.narrative-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    letter-spacing: 0.01em;
    color: var(--color-charcoal);
    line-height: 1.4;
    white-space: nowrap;
    animation: narrative-slide 6s linear infinite;
}

@keyframes narrative-slide {
    0% {
        transform: translateX(100%);
    }
    10% {
        transform: translateX(100%);
    }
    40% {
        transform: translateX(0);
    }
    60% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.narrative-strip.final-strip .narrative-text {
    animation: narrative-slide-final 5s linear forwards;
}

@keyframes narrative-slide-final {
    0% {
        transform: translateX(100%);
        opacity: 1;
    }
    10% {
        transform: translateX(100%);
        opacity: 1;
    }
    40% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* ==========================================
   NAVIGATION DOTS
   ========================================== */

.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-indigo);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 300ms var(--ease-out);
}

.nav-dot:hover {
    background-color: var(--color-slate);
    transform: scale(1.3);
}

.nav-dot.active {
    background-color: var(--color-coral);
    border-color: var(--color-coral);
    transform: scale(1.4);
}

/* ==========================================
   ANIMATIONS & TRANSITIONS
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .hero-module {
        grid-column: span 2;
        grid-row: span 2;
        padding: 30px;
    }

    .hero-module h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-module p {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }

    .data-gem {
        grid-column: span 1;
        grid-row: span 1;
        padding: 20px;
    }

    .illustration-module {
        grid-column: span 2;
        grid-row: span 2;
        padding: 20px;
    }

    .grid-overlay-module {
        grid-column: span 2;
        grid-row: span 1;
        padding: 20px;
    }

    .bento-tray {
        padding: 40px 20px;
        min-height: auto;
    }

    .narrative-strip {
        padding: 15px 20px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        min-height: 60px;
    }

    .narrative-text {
        font-size: clamp(1rem, 2vw, 1.4rem);
        white-space: normal;
    }

    @keyframes narrative-slide {
        0% {
            transform: translateX(0);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

    .nav-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .hero-module,
    .data-gem,
    .illustration-module,
    .grid-overlay-module {
        grid-column: span 1;
        grid-row: span 1;
        padding: 20px;
    }

    .hero-module h2 {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
    }

    .bento-tray {
        padding: 30px 15px;
    }

    .narrative-strip {
        padding: 12px 15px;
        min-height: 50px;
    }
}

/* Reduced motion support for animations */
@media (prefers-reduced-motion: reduce) {
    .bento-module {
        transition: none;
    }

    .entry-sequence {
        animation: none;
    }

    .narrative-text {
        animation: none;
        transform: translateX(0);
    }
}
