/* =========================================================================
   SEIDR LABS — "The Seidr Tree" homepage · 2026-08-04
   -------------------------------------------------------------------------
   A full-viewport, living, bioluminescent WORLD-TREE (Yggdrasil by way of a
   night forest). WebGL scene behind, DOM overlay in front: glass panels,
   projected branch labels, a systems board. Subpages keep fable2.css — this
   sheet styles index.html ONLY and shares the same fonts + brass accent so
   the two worlds read as one studio.

   House-design standard, named on purpose (silence = slop):

   TYPE (two-font system, self-hosted; CSP is font-src 'self'):
     display  Crimson Pro    variable 400–700 (+italic)  headlines
     body     Manrope        variable 400–700            everything readable
     mono     JetBrains Mono 400/500                     kickers, tags, data

   COLOUR ROLES (night palette; AA-checked on their real surfaces):
     void        #04060d   page + scene base
     deep        #0a0f1e   raised dark surface
     glass       rgba(9,14,27,.72)  panel surface (effective ~#101626)
     ink         #ecf2ff   body text on glass    (13.9:1)
     ink-dim     #a9b7d0   secondary on glass    ( 7.2:1)
     line        rgba(146,196,255,.16)  hairlines on glass
     glow        #48e6cc   bioluminal teal — status/live + large accents (9.8:1)
     glow-soft   #9df2e2   small teal text on glass (11.6:1)
     violet      #a58bff   secondary bloom — "in dev" status (7.6:1)
     brass       #d9a75f   ACCENT + primary CTA fill
     brass-ink   #1c1206   text on brass buttons ( 8.7:1)
     danger      #ff8f7a   reserved, unused here

   SPACING: the same 8px scale as fable2 — 4/8/12/16/24/32/48/64.
   RADIUS:  sm 6 (chips) · md 10 (buttons) · lg 18 (panels). Nothing else.
   SHADOWS: ONE named panel shadow; labels/topbar are flat glass. Nowhere else.
   ICONS:   inline stroke SVGs (Lucide-style, 1.75). Zero emoji-as-UI.
   MOTION:  every animation gated behind prefers-reduced-motion; the scene
            itself honours it via JS (uMotion=0, no auto-orbit, instant grow).
   ========================================================================= */

/* ---------- fonts (same files the rest of the site uses) ---------------- */
@font-face {
    font-family: 'Crimson Pro';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/assets/fonts/crimson-pro-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Crimson Pro';
    font-style: italic;
    font-weight: 400 700;
    font-display: swap;
    src: url('/assets/fonts/crimson-pro-latin-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('/assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
}

/* ---------- tokens ------------------------------------------------------ */
:root {
    color-scheme: dark;

    --void:      #04060d;
    --deep:      #0a0f1e;
    --glass:     rgba(9, 14, 27, 0.72);
    --glass-hi:  rgba(13, 20, 38, 0.86);
    --ink:       #ecf2ff;
    --ink-dim:   #a9b7d0;
    --line:      rgba(146, 196, 255, 0.16);
    --line-hi:   rgba(146, 196, 255, 0.34);

    --glow:      #48e6cc;
    --glow-soft: #9df2e2;
    --violet:    #a58bff;
    --brass:     #d9a75f;
    --brass-hi:  #edc07a;
    --brass-ink: #1c1206;

    --space-1: 0.25rem;  /*  4px */
    --space-2: 0.5rem;   /*  8px */
    --space-3: 0.75rem;  /* 12px */
    --space-4: 1rem;     /* 16px */
    --space-6: 1.5rem;   /* 24px */
    --space-8: 2rem;     /* 32px */
    --space-12: 3rem;    /* 48px */
    --space-16: 4rem;    /* 64px */

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --shadow-panel: 0 24px 70px rgba(0, 0, 0, 0.55);

    --font-display: 'Crimson Pro', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- base --------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body {
    height: 100%;
    overflow: hidden;
    background: var(--void);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: var(--glow-soft); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; border-radius: var(--radius-sm); }

.skip-link {
    position: fixed; left: var(--space-3); top: -60px; z-index: 60;
    padding: var(--space-2) var(--space-4);
    background: var(--brass); color: var(--brass-ink);
    border-radius: var(--radius-md); font-weight: 700;
    transition: top 0.2s ease;
}
.skip-link:focus { top: var(--space-3); }

/* ---------- stage (WebGL canvas) ----------------------------------------- */
#stage { position: fixed; inset: 0; z-index: 0; }
#scene { width: 100%; height: 100%; display: block; touch-action: none; cursor: grab; }
#scene.is-dragging { cursor: grabbing; }

/* vignette so overlay text always sits on enough dark */
#stage::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(2, 4, 9, 0.55) 100%),
        linear-gradient(to top, rgba(2, 4, 9, 0.5), transparent 22%);
}

/* ---------- topbar ------------------------------------------------------- */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(to bottom, rgba(4, 6, 13, 0.78), rgba(4, 6, 13, 0));
    /* the strip itself must not swallow clicks meant for labels/canvas below it */
    pointer-events: none;
}
.topbar a, .topbar button { pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: var(--space-2); color: var(--ink); font-weight: 700; letter-spacing: 0.01em; }
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(72, 230, 204, 0.35)); }
.brand .brand-labs { color: var(--brass); }
.topnav { display: flex; align-items: center; gap: var(--space-2); }
.topnav a {
    color: var(--ink-dim); font-size: 0.9375rem; font-weight: 600;
    padding: var(--space-2) var(--space-3); border-radius: var(--radius-md);
}
.topnav a:hover { color: var(--ink); text-decoration: none; background: rgba(146, 196, 255, 0.08); }
.topnav .nav-cta {
    color: var(--brass-ink); background: var(--brass);
    margin-left: var(--space-2);
}
.topnav .nav-cta:hover { background: var(--brass-hi); color: var(--brass-ink); }
.topnav-calm {
    color: var(--ink-dim); font-size: 0.9375rem; font-weight: 600;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--line); border-radius: var(--radius-md);
    background: rgba(146, 196, 255, 0.04);
}
.topnav-calm:hover { color: var(--ink); border-color: var(--line-hi); background: rgba(146, 196, 255, 0.1); }

/* ---------- intro lockup -------------------------------------------------- */
.intro {
    position: fixed; inset: 0; z-index: 20; pointer-events: none;
    place-content: center; text-align: center;
    padding: var(--space-6);
    transition: opacity 1.2s ease;
}
.intro.is-gone { opacity: 0; }
.intro .kicker { justify-content: center; }
.intro .intro-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.75rem, 7.5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-shadow: 0 0 60px rgba(72, 230, 204, 0.25), 0 2px 30px rgba(0, 0, 0, 0.8);
}
.intro .intro-title em { font-style: italic; color: var(--glow-soft); }
.intro .intro-sub {
    margin-top: var(--space-4);
    font-size: clamp(1rem, 2vw, 1.1875rem);
    color: var(--ink-dim);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.9);
}
.intro .intro-sub strong { color: var(--ink); font-weight: 600; }

/* ---------- shared bits --------------------------------------------------- */
.kicker {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-mono);
    font-size: 0.8125rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--glow);
}
.kicker::before { content: ""; width: 20px; height: 1px; background: var(--glow); opacity: 0.7; }

.sdot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.sdot-live  { background: var(--glow);   box-shadow: 0 0 10px rgba(72, 230, 204, 0.8); }
.sdot-field { background: var(--brass);  box-shadow: 0 0 10px rgba(217, 167, 95, 0.8); }
.sdot-dev   { background: var(--violet); box-shadow: 0 0 10px rgba(165, 139, 255, 0.8); }

.btn {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--line-hi);
    color: var(--ink); font-weight: 700; font-size: 0.9375rem;
    background: rgba(146, 196, 255, 0.06);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { text-decoration: none; background: rgba(146, 196, 255, 0.12); border-color: var(--line-hi); transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--brass); border-color: var(--brass); color: var(--brass-ink); }
.btn-primary:hover { background: var(--brass-hi); border-color: var(--brass-hi); }

.tag-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 10px; border-radius: 999px;
    border: 1px solid var(--line); color: var(--ink-dim);
    background: rgba(146, 196, 255, 0.05);
}

/* ---------- branch labels (projected) ------------------------------------ */
#labels { position: fixed; inset: 0; z-index: 10; pointer-events: none; overflow: hidden; }
.node-label {
    position: absolute; left: 0; top: 0;
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    background: rgba(6, 10, 20, 0.78);
    border: 1px solid var(--line);
    color: #f2f6ff; font-weight: 600; font-size: 0.875rem;
    letter-spacing: 0.01em;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.5s ease, background 0.15s ease, border-color 0.15s ease;
    will-change: transform;
    white-space: nowrap;
}
.node-label small {
    font-family: var(--font-mono); font-weight: 500; font-size: 0.6875rem;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim);
}
.node-label:hover, .node-label.is-active {
    background: var(--glass-hi); border-color: var(--line-hi); text-decoration: none;
}
.node-label.is-in { opacity: 1; }
/* branches on the far side of the trunk recede into the scene */
.node-label.is-far.is-in { opacity: 0.42; transform-origin: 50% 50%; }
.node-label.is-far small { opacity: 0; }
.node-label.is-far:hover { opacity: 1; }
.node-label.is-dim { opacity: 0.25; }
.node-label.is-hidden { opacity: 0; pointer-events: none; }
/* hairline from a displaced pill back to the node it names */
.node-leader {
    position: absolute; left: 0; top: 0; height: 1px;
    transform-origin: 0 50%;
    background: linear-gradient(90deg, rgba(120, 238, 214, 0.05), rgba(120, 238, 214, 0.5));
    pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
}
.node-leader.is-on { opacity: 1; }
.node-leader.is-dim { opacity: 0.12; }

/* ---------- hint ---------------------------------------------------------- */
.hint {
    position: fixed; left: 50%; bottom: var(--space-6); transform: translateX(-50%);
    z-index: 12; pointer-events: none;
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.06em;
    color: #c7d3e8;
    padding: var(--space-2) var(--space-4);
    border-radius: 999px;
    background: rgba(6, 10, 20, 0.6);
    border: 1px solid var(--line);
    opacity: 0; transition: opacity 0.8s ease;
}
.hint.is-in { opacity: 1; }
.hint .hint-short { display: none; }
.hint svg { width: 15px; height: 15px; color: var(--glow); }

/* ---------- panels -------------------------------------------------------- */
.panel {
    position: fixed; z-index: 30;
    top: 84px; right: var(--space-6);
    max-height: calc(100vh - 84px - var(--space-6));
    width: min(440px, calc(100vw - 2 * var(--space-6)));
    display: flex; flex-direction: column;
    background: var(--glass);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-panel);
    padding: var(--space-8);
    overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateX(24px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.panel.is-open {
    visibility: visible; opacity: 1; transform: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.panel-close {
    position: absolute; top: var(--space-4); right: var(--space-4);
    width: 36px; height: 36px; display: grid; place-items: center;
    border-radius: 50%; border: 1px solid var(--line); color: var(--ink-dim);
}
.panel-close:hover { color: var(--ink); border-color: var(--line-hi); background: rgba(146, 196, 255, 0.08); }
.panel-close svg { width: 16px; height: 16px; }
.panel h2 {
    font-family: var(--font-display); font-weight: 600;
    font-size: 2rem; line-height: 1.1; letter-spacing: -0.01em;
    margin: var(--space-3) 0 var(--space-4);
}
.panel p { color: var(--ink-dim); margin-bottom: var(--space-4); }
.panel p strong { color: var(--ink); font-weight: 600; }
.panel .tag-row { margin: var(--space-2) 0 var(--space-6); }
.panel .cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); padding-top: var(--space-2); }
.panel-foot {
    margin-top: var(--space-6); padding-top: var(--space-4);
    border-top: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em;
    color: var(--ink-dim);
    display: flex; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap;
}
.sysrows { display: flex; flex-direction: column; gap: var(--space-2); margin: 0 0 var(--space-4); list-style: none; }
.sysrows li {
    display: flex; align-items: center; gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--line); border-radius: var(--radius-md);
    background: rgba(146, 196, 255, 0.04);
}
.sysrows .sys { flex: 1; font-weight: 600; font-size: 0.9375rem; }
.sysrows .sys small { display: block; font-weight: 400; font-size: 0.8125rem; color: var(--ink-dim); }
.sysrows .st { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); }
.runic { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--brass); }
.runic .rune-word { width: 58px; height: 16px; }
.runic span { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--ink-dim); }

/* ---------- systems cluster (bottom-left board) --------------------------- */
#syscluster { position: fixed; left: var(--space-6); bottom: var(--space-6); z-index: 14; }
.sys-toggle {
    display: inline-flex; align-items: center; gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: 999px;
    background: rgba(6, 10, 20, 0.7);
    border: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.05em;
    color: #cfe0d9;
}
.sys-toggle:hover { border-color: var(--line-hi); color: var(--ink); }
.sys-toggle .live-pulse {
    width: 8px; height: 8px; border-radius: 50%; background: var(--glow);
    box-shadow: 0 0 12px rgba(72, 230, 204, 0.9);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.72); opacity: 0.6; } }
.sys-list {
    position: absolute; left: 0; bottom: calc(100% + var(--space-2));
    width: 300px; padding: var(--space-4); list-style: none;
    background: var(--glass); border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-panel);
    display: none;
}
#syscluster.is-open .sys-list { display: block; }
.sys-list li { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-2) 0; }
.sys-list li + li { border-top: 1px solid var(--line); }
.sys-list button, .sys-list a {
    flex: 1; display: flex; align-items: center; gap: var(--space-3);
    text-align: left; color: var(--ink); font-weight: 600; font-size: 0.875rem;
    padding: var(--space-1) 0;
}
.sys-list a:hover { text-decoration: none; }
.sys-list button:hover .sysname, .sys-list a:hover .sysname { color: var(--glow-soft); }
.sys-list .sysname { flex: 1; }
.sys-list .st { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); }

/* ---------- corner foot ---------------------------------------------------- */
.corner-foot {
    position: fixed; right: var(--space-6); bottom: var(--space-6); z-index: 12;
    pointer-events: none;
    display: inline-flex; align-items: center; gap: var(--space-3);
    font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em;
    color: var(--ink-dim);
}
.corner-foot .rune-word { width: 52px; height: 14px; color: var(--brass); }

/* ---------- calm/flat fallback --------------------------------------------- */
/* content-first: the calm view renders by DEFAULT, so a failed module script
   still shows the studio instead of a black void; a successful scene boot
   adds body.tree-on and takes over */
#fallback {
    position: fixed; inset: 0; z-index: 18;
    overflow-y: auto;
    background:
        radial-gradient(90% 60% at 50% 0%, rgba(30, 77, 56, 0.35), transparent 70%),
        radial-gradient(60% 40% at 80% 100%, rgba(72, 230, 204, 0.08), transparent 70%),
        var(--void);
    display: block;
    padding: 110px var(--space-6) var(--space-16);
}
body.tree-on:not(.is-flat) #fallback { display: none; }
.intro { display: none; }
body.tree-on:not(.is-flat) .intro { display: grid; }
#syscluster { display: none; }
body.tree-on #syscluster, body.is-flat #syscluster { display: block; }
body.is-flat #stage, body.is-flat #labels, body.is-flat .hint { display: none; }
.fb-wrap { max-width: 1060px; margin: 0 auto; }
.fb-head h1 {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.08; letter-spacing: -0.01em;
    margin: var(--space-3) 0 var(--space-4);
}
.fb-head h1 em { font-style: italic; color: var(--glow-soft); }
.fb-head .lead { color: var(--ink-dim); max-width: 62ch; }
.fb-head .cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin: var(--space-6) 0 var(--space-12); }
.fb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-4); }
.fb-card {
    display: flex; flex-direction: column; gap: var(--space-2);
    padding: var(--space-6);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    background: rgba(10, 15, 30, 0.55); color: var(--ink);
    transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}
.fb-card:hover { text-decoration: none; border-color: var(--line-hi); background: rgba(13, 20, 38, 0.7); transform: translateY(-2px); }
.fb-card .fb-status { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); }
.fb-card h3 { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; }
.fb-card p { font-size: 0.9375rem; color: var(--ink-dim); }
.fb-foot {
    margin-top: var(--space-12); padding-top: var(--space-6);
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: var(--space-6); justify-content: space-between;
    color: var(--ink-dim); font-size: 0.875rem;
}
.fb-foot ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* ---------- responsive ----------------------------------------------------- */
@media (max-width: 900px) {
    .topnav a:not(.nav-cta) { display: none; }
    .panel {
        top: auto; left: var(--space-3); right: var(--space-3); bottom: var(--space-3);
        width: auto; max-height: min(72vh, 620px);
        padding: var(--space-6);
        transform: translateY(24px);
    }
    /* on a phone the pills must read as small tags ON the tree, never as a
       menu covering it — they were 11 full-size chips stacked in a column */
    .node-label { padding: 3px 9px 3px 7px; font-size: 0.6875rem; gap: 5px; border-radius: 999px; }
    .node-label small { display: none; }
    .node-label .sdot { width: 6px; height: 6px; }
    .intro { place-content: end center; padding-bottom: 140px; }
    .intro .intro-title { font-size: clamp(2rem, 11vw, 2.75rem); }
    .intro .intro-sub { font-size: 0.9375rem; }
    /* header controls must never wrap to two lines */
    .topbar { padding: var(--space-2) var(--space-3); gap: var(--space-2); }
    .topnav .nav-cta, .topnav-calm { white-space: nowrap; font-size: 0.8125rem; padding: var(--space-2) var(--space-3); }
    .brand span { font-size: 0.9375rem; }
    .brand img { width: 26px; height: 26px; }
    .hint { font-size: 0.6875rem; padding: 6px var(--space-3); max-width: 88vw; white-space: nowrap; }
    .hint .hint-long { display: none; }
    .hint .hint-short { display: inline; }
    .sys-toggle { font-size: 0.6875rem; padding: 6px var(--space-3); }
    .panel.is-open { transform: none; }
    #syscluster { left: var(--space-3); bottom: var(--space-3); }
    .corner-foot { display: none; }
    .hint { bottom: var(--space-16); }
    .sys-list { width: min(300px, calc(100vw - 2 * var(--space-3))); }
}

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

@media print {
    body { overflow: visible; }
    #stage, #labels, .hint, .intro, #syscluster, .corner-foot, .topbar { display: none !important; }
    #fallback { display: block !important; position: static; background: #fff; color: #000; }
}
