    .tranvia-story-page {
        background:
            radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 35%),
            linear-gradient(180deg, #f8fafc 0%, #f7f4ec 48%, #ffffff 100%);
        color: #1e293b;
        font-family: var(--font-secondary);
    }
    .tranvia-story-page .story-shell {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    .tranvia-story-page .hero-grid {
        display: grid;
        gap: 2rem;
        align-items: center;
    }
    .tranvia-story-page .story-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.45rem 0.9rem;
        border-radius: 9999px;
        border: 1px solid rgba(245, 158, 11, 0.25);
        background: rgba(255, 255, 255, 0.9);
        color: #b45309;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .tranvia-story-page .hero-visual-stack {
        display: grid;
        gap: 1rem;
    }
    .tranvia-story-page .story-photo-frame {
        position: relative;
        overflow: hidden;
        border-radius: 1.75rem;
        border: 1px solid rgba(148, 163, 184, 0.18);
        background: #ffffff;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    }
    .tranvia-story-page .story-photo-frame img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .tranvia-story-page .story-photo-main {
        aspect-ratio: 1 / 1;
    }
    .tranvia-story-page .story-photo-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: stretch;
    }
    .tranvia-story-page .story-photo-secondary {
        aspect-ratio: 1 / 1;
    }
    .tranvia-story-page .metric-card,
    .tranvia-story-page .value-card,
    .tranvia-story-page .phase-card {
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(148, 163, 184, 0.18);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    }
    .tranvia-story-page .metric-card {
        padding: 1.25rem 1.35rem;
    }
    .tranvia-story-page .metric-number {
        font-family: var(--font-primary);
        font-size: 2.2rem;
        line-height: 1;
        color: #0f172a;
    }
    .tranvia-story-page .route-line {
        position: relative;
        padding-left: 1.6rem;
    }
    .tranvia-story-page .route-line::before {
        content: '';
        position: absolute;
        left: 0.3rem;
        top: 0.2rem;
        bottom: 0.2rem;
        width: 2px;
        background: linear-gradient(180deg, #f59e0b, #facc15, rgba(251, 191, 36, 0.1));
    }
    .tranvia-story-page .route-stop {
        position: relative;
        padding-bottom: 1.6rem;
    }
    .tranvia-story-page .route-stop:last-child {
        padding-bottom: 0;
    }
    .tranvia-story-page .route-stop::before {
        content: '';
        position: absolute;
        left: -1.48rem;
        top: 0.2rem;
        width: 0.8rem;
        height: 0.8rem;
        border-radius: 9999px;
        background: #ffffff;
        border: 3px solid #f59e0b;
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
    }
    .tranvia-story-page .value-card,
    .tranvia-story-page .phase-card {
        padding: 1.6rem;
        height: 100%;
    }
    .tranvia-story-page .value-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(245, 158, 11, 0.12);
        color: #b45309;
        margin-bottom: 1rem;
    }
    .tranvia-story-page .signal-board {
        border-radius: 1.75rem;
        background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
        color: #f8fafc;
        padding: 1.8rem;
        box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
    }
    .tranvia-story-page .signal-board a {
        color: #fcd34d;
    }
    @media (min-width: 960px) {
        .tranvia-story-page .hero-grid {
            grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
            gap: 3rem;
        }
    }
