/* =========================================================================
   telomere.dev — Cellular Time, Made Visible
   ========================================================================= */

:root {
    /* Palette — pulled directly from DESIGN.md */
    --bg-primary:    #0A0F14;   /* Nuclear dark */
    --bg-secondary:  #111820;   /* Chromatin blue-black */
    --surface:       #1A2530;   /* Membrane blue */
    --text-primary:  #D4E4EC;   /* Chromosome pale */
    --text-secondary:#8A9BA8;   /* Cytoplasm gray */
    --accent-mitotic:#5B8A72;   /* Mitotic green */
    --accent-rose:   #7A5C6B;   /* Aged rose */
    --data-blue:     #3D7A9E;   /* Telomerase blue */
    --warn:          #9E5A3D;   /* Oxidative amber */

    /* Typography */
    --font-head: 'Inter', system-ui, sans-serif;
    --font-body: 'Source Sans 3', 'Inter', system-ui, sans-serif;
    --font-mono: 'Fira Code', 'SF Mono', monospace;
    --font-epi:  'Playfair Display', Georgia, serif;

    /* Telomere progression — JS sets these */
    --telomere-ratio: 1;
    --scroll-progress: 0;
    --saturate: 1;
    --vignette: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(61,122,158,0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(158,90,61,0.04) 0%, transparent 55%),
        linear-gradient(to bottom, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global desaturation cascade — driven by scroll */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(10,15,20,0.55) 100%);
    opacity: var(--vignette);
    transition: opacity 0.4s ease;
    mix-blend-mode: multiply;
}

/* Subtle scanline texture — clinical readout feel */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(212, 228, 236, 0.012) 0px,
            rgba(212, 228, 236, 0.012) 1px,
            transparent 1px,
            transparent 3px
        );
    mix-blend-mode: screen;
}

.svg-defs { position: absolute; width: 0; height: 0; }

/* =========================================================================
   HUD overlay
   ========================================================================= */

.hud-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hud-corner {
    position: absolute;
    color: var(--accent-mitotic);
    opacity: 0.78;
    padding: 22px 28px;
    line-height: 1.55;
    min-width: 160px;
}

.hud-tl { top: 0; left: 0; border-top: 1px solid rgba(91,138,114,0.18); border-left: 1px solid rgba(91,138,114,0.18); }
.hud-tr { top: 0; right: 0; text-align: right; border-top: 1px solid rgba(91,138,114,0.18); border-right: 1px solid rgba(91,138,114,0.18); }
.hud-bl { bottom: 0; left: 0; border-bottom: 1px solid rgba(91,138,114,0.18); border-left: 1px solid rgba(91,138,114,0.18); }
.hud-br { bottom: 0; right: 0; text-align: right; border-bottom: 1px solid rgba(91,138,114,0.18); border-right: 1px solid rgba(91,138,114,0.18); }

.hud-label {
    color: var(--text-secondary);
    opacity: 0.55;
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-top: 8px;
}
.hud-label:first-child { margin-top: 0; }

.hud-value {
    color: var(--accent-mitotic);
    font-size: 11px;
    margin-top: 2px;
    text-shadow: 0 0 8px rgba(91, 138, 114, 0.25);
}

#hud-phase { color: var(--data-blue); }
#hud-bp { color: var(--text-primary); }

/* Crosshair tick marks at corners */
.hud-tl::before, .hud-tr::before, .hud-bl::before, .hud-br::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid var(--accent-mitotic);
    opacity: 0.5;
}
.hud-tl::before { top: -3px; left: -3px; }
.hud-tr::before { top: -3px; right: -3px; }
.hud-bl::before { bottom: -3px; left: -3px; }
.hud-br::before { bottom: -3px; right: -3px; }

/* =========================================================================
   Telomere length gauge (right edge)
   ========================================================================= */

.telomere-gauge {
    position: fixed;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 70vh;
    pointer-events: none;
    font-family: var(--font-mono);
}

.gauge-cap {
    width: 22px;
    height: 6px;
    background: var(--data-blue);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(61, 122, 158, 0.5);
}

.gauge-cap-bottom { background: var(--warn); box-shadow: 0 0 12px rgba(158, 90, 61, 0.4); }

.gauge-track {
    position: relative;
    flex: 1;
    width: 6px;
    background: rgba(61, 122, 158, 0.08);
    border-left: 1px solid rgba(61, 122, 158, 0.2);
    border-right: 1px solid rgba(61, 122, 158, 0.2);
    margin: 6px 0;
    overflow: hidden;
}

.gauge-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--data-blue) 0%,
        var(--accent-mitotic) 45%,
        var(--warn) 95%
    );
    transform-origin: top center;
    transform: scaleY(var(--telomere-ratio, 1));
    transition: transform 0.18s linear;
    box-shadow: inset 0 0 6px rgba(212, 228, 236, 0.18);
}

.gauge-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(10, 15, 20, 0.35) 0px,
            rgba(10, 15, 20, 0.35) 2px,
            transparent 2px,
            transparent 9px
        );
    pointer-events: none;
}

.gauge-ticks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tick {
    position: absolute;
    right: 14px;
    transform: translateY(-50%);
    font-size: 8px;
    color: var(--text-secondary);
    opacity: 0.55;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.tick em {
    font-style: normal;
    color: var(--accent-mitotic);
}

.tick::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--accent-mitotic);
    opacity: 0.5;
}

.tick-100 { top: 0; }
.tick-75  { top: 25%; }
.tick-50  { top: 50%; }
.tick-25  { top: 75%; }
.tick-0   { top: 100%; }

.gauge-label {
    margin-top: 10px;
    font-size: 8px;
    letter-spacing: 0.28em;
    color: var(--accent-mitotic);
    opacity: 0.7;
    text-align: center;
    line-height: 1.5;
    text-transform: uppercase;
}

/* =========================================================================
   Chromosomal backbone + Double-helix SVG
   ========================================================================= */

.backbone {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.helix-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.backbone-spine {
    stroke: var(--data-blue);
    stroke-width: 0.6;
    opacity: 0.18;
    fill: none;
}

.helix-strand {
    fill: none;
    stroke: url(#helix-gradient);
    stroke-width: 1.5;
    stroke-linecap: round;
    filter: drop-shadow(0 0 1.5px rgba(61, 122, 158, 0.45));
}

.helix-rungs line {
    stroke: var(--accent-mitotic);
    stroke-width: 0.8;
    opacity: 0.35;
}

.helix-endpoint {
    fill: var(--warn);
    opacity: 0.7;
}

/* =========================================================================
   TTAGGG ribbons (vertical, fixed)
   ========================================================================= */

.ttaggg-ribbon {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 22px;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 10px;
    line-height: 1.65;
    color: var(--accent-mitotic);
    opacity: 0.18;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.05em;
    user-select: none;
    white-space: nowrap;
    padding: 28px 0;
    text-align: center;
}

.ttaggg-left  { left: 6px;  }
.ttaggg-right { right: 6px; opacity: 0.12; }

.ttaggg-ribbon span.faded { opacity: 0; transition: opacity 0.4s ease; }

/* =========================================================================
   Cellular bodies (organic blobs)
   ========================================================================= */

.cell-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.cell {
    position: absolute;
    background: radial-gradient(ellipse at 30% 30%, rgba(122, 92, 107, 0.18) 0%, rgba(122, 92, 107, 0.05) 60%, transparent 100%);
    opacity: 0.55;
    filter: blur(1.5px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    will-change: transform;
}

.cell-1 { top:  6%; left:  8%; width: 380px; height: 320px; animation: cellDrift 28s ease-in-out infinite; }
.cell-2 { top: 22%; right: 12%; width: 280px; height: 240px; animation: cellDrift 34s -8s ease-in-out infinite reverse; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.cell-3 { top: 48%; left:  4%; width: 420px; height: 360px; animation: cellDrift 40s -14s ease-in-out infinite; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.cell-4 { top: 60%; right:  8%; width: 320px; height: 280px; animation: cellDrift 32s -4s ease-in-out infinite reverse; }
.cell-5 { top: 78%; left: 30%; width: 480px; height: 400px; animation: cellDrift 44s -22s ease-in-out infinite; border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%; }
.cell-6 { top: 88%; right: 28%; width: 260px; height: 220px; animation: cellDrift 26s -2s ease-in-out infinite; }

@keyframes cellDrift {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    33%      { transform: translate3d(28px, -22px, 0) rotate(60deg) scale(1.06); }
    66%      { transform: translate3d(-18px, 32px, 0) rotate(-45deg) scale(0.96); }
}

/* =========================================================================
   Page stage (the scrolling timeline)
   ========================================================================= */

.page-stage {
    position: relative;
    width: 100%;
    z-index: 2;
    padding-top: 8vh;
    padding-bottom: 8vh;
    filter: saturate(var(--saturate, 1));
    transition: filter 0.25s linear;
}

/* Each "stage" represents one phase of telomere life */
.stage {
    position: relative;
    min-height: 100vh;
    padding: 14vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-inner {
    position: relative;
    width: calc(var(--telomere-ratio, 1) * 78vw);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    transition: width 0.18s linear;
}

/* Stage marker tag (top-left of each section) */
.stage-marker {
    position: absolute;
    top: -2vh;
    left: 32px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--accent-mitotic);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
}

.marker-num {
    color: var(--data-blue);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 500;
}

.marker-label {
    border-left: 1px solid rgba(91,138,114,0.35);
    padding-left: 14px;
}

/* Stage-specific filters and tone shifts */
.stage-1 { }
.stage-2 .stage-inner { filter: url(#turb-1); }
.stage-3 .stage-inner { filter: url(#turb-2); }
.stage-4 .stage-inner { filter: url(#turb-3); }
.stage-5 .stage-inner { filter: url(#turb-5); }

/* Each stage subtly cools and dims as we descend */
.stage-2 { background: linear-gradient(to bottom, transparent, rgba(17,24,32,0.18) 50%, transparent); }
.stage-3 { background: linear-gradient(to bottom, transparent, rgba(17,24,32,0.32) 50%, transparent); }
.stage-4 { background: linear-gradient(to bottom, transparent, rgba(10,15,20,0.45) 50%, transparent); }
.stage-5 { background: linear-gradient(to bottom, transparent, rgba(10,15,20,0.6) 50%, rgba(10,15,20,0.85)); }

/* =========================================================================
   Hero (Stage 1)
   ========================================================================= */

.hero {
    text-align: center;
    margin-bottom: 8vh;
}

.kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-mitotic);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kicker.dashed {
    border-top: 1px dashed rgba(158,90,61,0.4);
    border-bottom: 1px dashed rgba(158,90,61,0.4);
    padding: 6px 14px;
    color: var(--warn);
}

.kicker .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-mitotic);
    box-shadow: 0 0 8px var(--accent-mitotic);
    animation: pulse 2.4s ease-in-out infinite;
}

.kicker .dot.warn {
    background: var(--warn);
    box-shadow: 0 0 8px var(--warn);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(48px, 9vw, 124px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 28px;
    text-shadow: 0 0 40px rgba(61, 122, 158, 0.18);
}

.hero-title .dot-glyph {
    color: var(--data-blue);
    display: inline-block;
    margin: 0 0.04em;
    animation: caretBlink 1.8s steps(2) infinite;
}

@keyframes caretBlink {
    0%, 50%   { opacity: 1; }
    50.01%, 100% { opacity: 0.3; }
}

.type-stagger span {
    display: inline-block;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
}

.bp-readout {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-mitotic);
    opacity: 0.55;
    letter-spacing: 0.12em;
}

.bp-token {
    padding: 4px 10px;
    border: 1px solid rgba(91,138,114,0.18);
    border-radius: 2px;
    background: rgba(91,138,114,0.04);
    transition: opacity 0.4s ease, color 0.4s ease;
}

.bp-token.faded { opacity: 0.18; color: var(--text-secondary); }

/* =========================================================================
   Branches (left/right cards along backbone)
   ========================================================================= */

.branches {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: start;
    margin-top: 6vh;
}

.branches-symmetric .branch-left  { grid-column: 1; padding-right: 18px; text-align: right; }
.branches-symmetric .branch-right { grid-column: 3; padding-left: 18px; }

.branches-asymmetric .branch-left  { grid-column: 1; padding-right: 30px; text-align: right; transform: translateY(20px); }
.branches-asymmetric .branch-right { grid-column: 3; padding-left: 30px; transform: translateY(-12px); }

.branch {
    position: relative;
}

.branch-stem {
    position: absolute;
    top: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--data-blue));
    opacity: 0.5;
    width: 80px;
}

.branch-left .branch-stem  { right: -80px; background: linear-gradient(90deg, var(--data-blue), transparent); }
.branch-right .branch-stem { left: -80px; }

.branch-stem::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid var(--data-blue);
    background: var(--bg-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.branch-left .branch-stem::before  { right: -2px; }
.branch-right .branch-stem::before { left: -2px; }

.branch-card {
    background: rgba(26, 37, 48, 0.55);
    border: 1px solid rgba(61, 122, 158, 0.18);
    border-radius: 2px;
    padding: 22px 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: border-color 0.4s ease, transform 0.6s ease;
}

.branch-card:hover {
    border-color: rgba(91, 138, 114, 0.45);
    transform: translateY(-2px);
}

.card-head {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--data-blue);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.branch-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.branch-card em {
    font-style: normal;
    color: var(--text-primary);
    font-weight: 500;
}

/* =========================================================================
   Block heads & bodies (Stages 2–4)
   ========================================================================= */

.block-head {
    text-align: left;
    max-width: 720px;
    margin-bottom: 4vh;
}

.block-title {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: clamp(28px, 4.4vw, 56px);
    line-height: 1.18;
    letter-spacing: -0.012em;
    color: var(--text-primary);
    margin-top: 18px;
}

.block-title.sparse {
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.005em;
}

.block-body {
    max-width: 640px;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.75;
    color: var(--text-secondary);
}

.block-body p + p { margin-top: 16px; }

.block-body em {
    font-style: normal;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(61,122,158,0.35);
    padding-bottom: 1px;
}

.block-body .muted { color: var(--text-secondary); opacity: 0.65; }

.block-body.sparse {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-secondary);
    border-left: 1px dashed rgba(158,90,61,0.4);
    padding-left: 18px;
}

/* =========================================================================
   Data strip (Stage 3)
   ========================================================================= */

.data-strip {
    margin-top: 5vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    border-top: 1px solid rgba(91, 138, 114, 0.15);
    border-bottom: 1px solid rgba(91, 138, 114, 0.15);
    padding: 26px 0;
}

.datum { padding: 0 18px; }
.datum + .datum { border-left: 1px dashed rgba(91, 138, 114, 0.18); }

.datum-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--accent-mitotic);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.datum-value {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.4vw, 30px);
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: -0.005em;
}

.datum-value .unit {
    font-size: 0.55em;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    margin-left: 4px;
    letter-spacing: 0.1em;
}

/* =========================================================================
   Epigraphs (Playfair)
   ========================================================================= */

.epigraph {
    font-family: var(--font-epi);
    font-style: italic;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.55;
    color: var(--accent-rose);
    text-align: center;
    margin: 7vh auto 0;
    max-width: 580px;
    opacity: 0.85;
    letter-spacing: 0.005em;
}

.epigraph::before, .epigraph::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent-rose);
    opacity: 0.4;
    margin: 18px auto;
}

/* =========================================================================
   Stage 5 (terminal / senescence)
   ========================================================================= */

.stage-5 .stage-inner {
    text-align: center;
    width: calc(var(--telomere-ratio, 1) * 70vw);
    max-width: 480px;
}

.terminal-line {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    text-transform: lowercase;
}

.terminal-tag {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--warn);
    letter-spacing: 0.18em;
    margin-bottom: 36px;
    min-height: 1.5em;
}

.terminal-epi {
    margin-top: 4vh;
    color: var(--accent-rose);
    opacity: 0.7;
}

.terminal-mark {
    margin-top: 8vh;
    display: flex;
    justify-content: center;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warn);
    filter: blur(2px);
    box-shadow: 0 0 22px var(--warn), 0 0 50px var(--warn);
    animation: terminalPulse 3.6s ease-in-out infinite;
}

@keyframes terminalPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50%      { opacity: 1;   transform: scale(1.15); }
}

/* =========================================================================
   Blur-focus depth effect (stages above/below current viewport)
   ========================================================================= */

.stage[data-distance="far"]   { filter: blur(8px); opacity: 0.45; }
.stage[data-distance="mid"]   { filter: blur(3px); opacity: 0.7; }
.stage[data-distance="near"]  { filter: blur(0.5px); opacity: 0.92; }
.stage[data-distance="here"]  { filter: blur(0); opacity: 1; }

.stage { transition: filter 0.5s ease, opacity 0.5s ease; }

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 900px) {
    .branches {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .branches-symmetric .branch-left,
    .branches-symmetric .branch-right,
    .branches-asymmetric .branch-left,
    .branches-asymmetric .branch-right {
        grid-column: 1;
        text-align: left;
        padding: 0;
        transform: none;
    }
    .branch-stem { display: none; }

    .telomere-gauge { right: 12px; height: 60vh; }
    .gauge-label { font-size: 7px; }
    .tick { font-size: 7px; }

    .hud-corner { padding: 12px 14px; min-width: 0; font-size: 9px; }
    .stage-inner { padding: 0 18px; }
    .stage-marker { left: 18px; font-size: 9px; }

    .data-strip { grid-template-columns: 1fr; }
    .datum + .datum { border-left: none; border-top: 1px dashed rgba(91, 138, 114, 0.18); padding-top: 14px; margin-top: 14px; }
}

@media (max-width: 600px) {
    .hud-tl, .hud-tr, .hud-bl, .hud-br { padding: 10px 12px; }
    .hud-value { font-size: 10px; }
    .telomere-gauge { display: none; }
    .ttaggg-ribbon { display: none; }
    .stage-inner { width: calc(var(--telomere-ratio, 1) * 92vw) !important; }
}
