.transparency-page {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 4.5rem 1.25rem 4rem;
    color: #f8fafc;
}

.transparency-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 92, 0, 0.07), transparent 62%),
        linear-gradient(180deg, #171a27 0%, #171a27 100%);
}

@keyframes tr-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tr-soft-glow {
    0%, 100% {
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), 0 0 0 rgba(255, 92, 0, 0);
    }
    50% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26), 0 0 24px rgba(255, 92, 0, 0.08);
    }
}

.tr-reveal {
    opacity: 0;
    animation: tr-rise 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.tr-delay-1 { animation-delay: 0.08s; }
.tr-delay-2 { animation-delay: 0.16s; }
.tr-delay-3 { animation-delay: 0.24s; }
.tr-delay-4 { animation-delay: 0.32s; }

.tr-hero {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.tr-hero-copy,
.tr-metrics article,
.tr-story,
.tr-roadmap {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(20, 24, 35, 0.8);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.tr-hero-copy {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.tr-kicker {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: #ff5c00;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tr-hero h1,
.tr-story h2,
.tr-roadmap h2 {
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.tr-hero h1 {
    font-size: clamp(2.1rem, 4.8vw, 3.7rem);
    line-height: 1.02;
}

.tr-hero p,
.tr-story p,
.tr-roadmap p,
.tr-footnote {
    color: #c4ccda;
    line-height: 1.68;
}

.tr-hero p {
    max-width: 720px;
    margin: 1rem 0 0;
}

.tr-updated {
    justify-content: center;
    color: #ffb46b !important;
    font-weight: 700;
}

.tr-metrics span {
    color: #9fa9ba;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tr-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.tr-metrics article {
    min-height: 176px;
    padding: 1.15rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tr-metrics article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 92, 0, 0.3);
    background: rgba(23, 28, 41, 0.86);
}

.tr-metrics strong {
    display: block;
    margin: 0.55rem 0 0.45rem;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.3vw, 1.9rem);
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.tr-metrics strong.tr-value-neutral {
    color: #ffffff;
}

.tr-metrics strong.tr-value-positive {
    color: #42d392;
}

.tr-metrics strong.tr-value-negative {
    color: #ff5d5d;
}

.tr-metrics p {
    margin: 0;
    color: #aeb8c8;
    line-height: 1.55;
}

.tr-story,
.tr-roadmap {
    padding: clamp(1.4rem, 3vw, 2rem);
    margin-top: 1rem;
}

.tr-story {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.tr-section-heading {
    margin-bottom: 1.1rem;
}

.tr-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tr-roadmap-grid article {
    min-height: 190px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.tr-roadmap-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 92, 0, 0.3);
}

.tr-roadmap-grid span {
    color: rgba(255, 92, 0, 0.65);
    font-size: 1.7rem;
    font-weight: 950;
}

.tr-roadmap-grid h3 {
    margin: 0.5rem 0;
    color: #ffffff;
}

.tr-roadmap-grid p {
    margin: 0;
}

.tr-footnote {
    max-width: 820px;
    margin: 1.2rem auto 0;
    text-align: center;
    color: #9fa9ba;
}

@media (max-width: 980px) {
    .tr-story {
        grid-template-columns: 1fr;
    }

    .tr-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tr-roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .transparency-page {
        padding: 2rem 0.85rem 3rem;
    }

    .tr-metrics,
    .tr-roadmap-grid {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: reduce) {
    .tr-reveal,
    .tr-hero-card {
        opacity: 1;
        animation: none;
        transform: none;
    }

    .tr-metrics article,
    .tr-roadmap-grid article {
        transition: none;
    }
}
