:root {
  --bg:        #060B14;
  --bg2:       #0A1020;
  --panel:     #0D1828;
  --border:    #0F2A44;
  --accent:    #00C8F0;
  --accent2:   #7B2FBE;
  --green:     #00E888;
  --red:       #FF3055;
  --orange:    #FFB020;
  --text:      #C8DFF0;
  --muted:     #4A6880;
  --white:     #E8F4FF;
  --scan:      rgba(0,200,240,0.03);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── SCANLINE OVERLAY ──────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── GRID BACKGROUND ───────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* ── NOISE TEXTURE ─────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── TOP BAR ───────────────────────────────────── */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 44px;
  background: rgba(6,11,20,0.95);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

#topbar .logo {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-decoration: none;
}

#topbar .status {
  display: flex;
  gap: 24px;
  font-size: 10px;
  color: var(--muted);
}

#topbar .status span { display: flex; align-items: center; gap: 6px; }
#topbar .status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

.topbar-nav {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
}
.topbar-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-nav a:hover { color: var(--accent); }

/* ── CONTAINER ─────────────────────────────────── */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 40px 100px;
  position: relative;
  z-index: 10;
}

/* ── HERO ──────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
}

.boot-line {
  font-size: 11px;
  color: var(--muted);
  opacity: 0;
  animation: fadein 0.3s forwards;
}
.boot-line:nth-child(1) { animation-delay: 0.1s; }
.boot-line:nth-child(2) { animation-delay: 0.4s; }
.boot-line:nth-child(3) { animation-delay: 0.7s; }
.boot-line:nth-child(4) { animation-delay: 1.0s; }
.boot-line:nth-child(5) { animation-delay: 1.3s; }
.boot-line.ok { color: var(--green); }
.boot-line.warn { color: var(--orange); }

@keyframes fadein {
  from { opacity:0; transform: translateX(-8px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 28px 0;
  opacity: 0;
  animation: fadein 0.5s 1.6s forwards;
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: titleReveal 0.8s 1.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes titleReveal {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-top: 12px;
  opacity: 0;
  animation: fadein 0.5s 2.3s forwards;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  opacity: 0;
  animation: fadein 0.5s 2.6s forwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-item .label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-meta-item .value {
  font-size: 13px;
  color: var(--accent);
}

.abstract-box {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--panel);
  padding: 24px 28px;
  opacity: 0;
  animation: fadein 0.6s 2.9s forwards;
  position: relative;
  overflow: hidden;
}
.abstract-box::before {
  content: 'ABSTRACT';
  position: absolute;
  top: 12px; right: 16px;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.2em;
}
.abstract-box p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
}

/* ── KEYWORD ROW ───────────────────────────────── */
.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
  animation: fadein 0.5s 3.2s forwards;
}
.kw-tag {
  font-size: 9px;
  padding: 3px 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.kw-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── SECTION LAYOUT ────────────────────────────── */
.section {
  margin-top: 80px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.visible {
  opacity: 1;
  transform: none;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.section-num {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2em;
  min-width: 40px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 40%, transparent 100%);
  margin-bottom: 24px;
}

.sub-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 24px 0 8px;
}

p { margin-bottom: 12px; font-size: 13.5px; line-height: 1.8; }

.ref-note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 12px;
  margin: 8px 0 16px;
}

/* ── PANEL / BOX ───────────────────────────────── */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin: 20px 0;
  position: relative;
}
.panel.accent  { border-left: 3px solid var(--accent); }
.panel.green   { border-left: 3px solid var(--green); }
.panel.orange  { border-left: 3px solid var(--orange); }
.panel.red     { border-left: 3px solid var(--red); }
.panel.purple  { border-left: 3px solid var(--accent2); }

.panel-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.panel.accent  .panel-label { color: var(--accent); }
.panel.green   .panel-label { color: var(--green); }
.panel.orange  .panel-label { color: var(--orange); }
.panel.purple  .panel-label { color: var(--accent2); }

.quote {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  line-height: 1.5;
  padding: 8px 0;
  letter-spacing: 0.02em;
}

/* ── BULLET LIST ───────────────────────────────── */
.bl { list-style: none; padding: 0; margin: 8px 0; }
.bl li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid rgba(15,42,68,0.5);
}
.bl li:last-child { border-bottom: none; }
.bl li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── DATA TABLE ────────────────────────────────── */
.dt-wrap { overflow-x: auto; margin: 16px 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
thead tr {
  background: var(--panel);
  border-bottom: 1px solid var(--accent);
}
thead th {
  padding: 10px 14px;
  text-align: left;
  color: var(--accent);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
tbody tr:hover { background: rgba(0,200,240,0.04); }
tbody td {
  padding: 9px 14px;
  color: var(--text);
  vertical-align: top;
}
tbody tr:last-child {
  background: rgba(0,232,136,0.04);
  border-top: 1px solid var(--green);
}
tbody tr:last-child td { color: var(--green); font-weight: 700; }

.td-red   { color: var(--red)    !important; }
.td-green { color: var(--green)  !important; }
.td-acc   { color: var(--accent) !important; }
.td-ora   { color: var(--orange) !important; }

/* ── FIGURE: BRAINWAVE SPECTRUM ────────────────── */
.spectrum-fig {
  margin: 24px 0 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px 20px 16px;
}
.spectrum-fig .fig-title {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.spectrum-track {
  display: flex;
  height: 48px;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
}
.spectrum-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: filter 0.2s;
  cursor: default;
}
.spectrum-band:hover { filter: brightness(1.3); }
.band-delta { flex: 3.5; background: rgba(59,13,181,0.6); color: #a090ff; }
.band-theta { flex: 4; background: rgba(0,200,240,0.5); color: #00C8F0; border: 2px solid #00C8F0; }
.band-alpha { flex: 5; background: rgba(0,232,136,0.3); color: #00E888; }
.band-beta  { flex: 17; background: rgba(255,176,32,0.3); color: #FFB020; }
.band-gamma { flex: 15; background: rgba(255,48,85,0.35); color: #FF3055; }
.band-name { font-size: 10px; }
.band-hz   { font-size: 8px; opacity: 0.7; }
.spectrum-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 9px;
  color: var(--muted);
}
.target-arrow {
  text-align: center;
  font-size: 10px;
  color: var(--accent);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* ── FIGURE: YERKES-DODSON ─────────────────────── */
.yd-fig {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px 20px 16px;
  margin: 24px 0 8px;
}
.yd-fig .fig-title {
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.15em; margin-bottom: 16px; text-transform: uppercase;
}
.yd-canvas-wrap { position: relative; height: 200px; }
canvas#ydCanvas {
  width: 100%; height: 100%;
  display: block;
}
.yd-zones {
  display: flex;
  margin-top: 10px;
  font-size: 10px;
  gap: 4px;
}
.yd-zone {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
  font-size: 9px;
  letter-spacing: 0.05em;
}
.yd-zone.under { background: rgba(59,13,181,0.2); color: #a090ff; border: 1px solid rgba(59,13,181,0.4); }
.yd-zone.optimal { background: rgba(0,232,136,0.15); color: var(--green); border: 1px solid rgba(0,232,136,0.4); }
.yd-zone.over { background: rgba(255,48,85,0.15); color: var(--red); border: 1px solid rgba(255,48,85,0.4); }

/* ── FIGURE: PROTOCOL GANTT ────────────────────── */
.gantt-fig {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px 20px 16px;
  margin: 24px 0 8px;
}
.gantt-fig .fig-title {
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.15em; margin-bottom: 20px; text-transform: uppercase;
}
.gantt-track {
  height: 56px;
  display: flex;
  border: 1px solid var(--border);
  overflow: hidden;
}
.gantt-phase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 4px;
  border-right: 1px solid rgba(0,0,0,0.3);
  transition: filter 0.2s;
  cursor: default;
  text-align: center;
}
.gantt-phase:hover { filter: brightness(1.2); }
.gantt-p1 { flex: 90; background: rgba(255,48,85,0.45); color: #FF3055; }
.gantt-p2 { flex: 60; background: rgba(255,176,32,0.45); color: #FFB020; }
.gantt-p3 { flex: 150; background: rgba(0,200,240,0.4); color: #00C8F0; }
.gantt-phase .ph-name { font-size: 9px; }
.gantt-phase .ph-time { font-size: 8px; opacity: 0.75; margin-top: 2px; }
.gantt-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 9px;
  color: var(--muted);
  padding: 0 2px;
}

/* ── FIGURE: TRIPLE STACK BARS ─────────────────── */
.stack-fig {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px 20px 20px;
  margin: 24px 0 8px;
}
.stack-fig .fig-title {
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.15em; margin-bottom: 20px; text-transform: uppercase;
}
.stack-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.stack-label {
  font-size: 11px;
  width: 160px;
  min-width: 160px;
  color: var(--text);
  line-height: 1.3;
}
.stack-bar-wrap {
  flex: 1;
  height: 28px;
  background: rgba(15,42,68,0.8);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stack-bar {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 11px;
  font-weight: bold;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.stack-row:nth-child(1) .stack-bar { background: rgba(0,200,240,0.55); color: var(--accent); }
.stack-row:nth-child(2) .stack-bar { background: rgba(123,47,190,0.55); color: #b070e8; }
.stack-row:nth-child(3) .stack-bar { background: rgba(0,232,136,0.45); color: var(--green); }
.stack-total {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.stack-total .stack-label { color: var(--orange); font-weight: bold; }
.stack-total .stack-bar-wrap { border-color: var(--orange); }
.stack-total .stack-bar { background: rgba(255,176,32,0.55); color: var(--orange); }
.stack-ref { font-size: 10px; color: var(--muted); font-style: italic; min-width: 80px; text-align: right; }

/* ── FIGURE: CORTISOL COMPARISON ───────────────── */
.cortisol-fig {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 24px 20px 16px;
  margin: 24px 0 8px;
}
.cortisol-fig .fig-title {
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.15em; margin-bottom: 16px; text-transform: uppercase;
}
.cortisol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cortisol-chart-wrap { position: relative; }
.cortisol-chart-label {
  font-size: 10px; font-weight: bold; letter-spacing: 0.1em;
  margin-bottom: 8px; text-transform: uppercase;
}
.cortisol-chart-label.stim { color: var(--red); }
.cortisol-chart-label.reset { color: var(--accent); }
canvas.crtCanvas { width: 100%; height: 130px; display: block; }

/* ── SPECS TABLE ───────────────────────────────── */
.spec-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12.5px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  width: 180px; min-width: 180px;
  color: var(--accent);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.spec-val { flex: 1; color: var(--text); }
.spec-note { width: 220px; min-width: 220px; color: var(--muted); font-size: 11px; text-align: right; }

/* ── PRODUCT SUITE CARDS ───────────────────────── */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.suite-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.suite-card:hover {
  border-color: var(--accent);
  background: rgba(0,200,240,0.04);
}
.suite-card .sc-dur {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.suite-card .sc-unit { font-size: 10px; color: var(--muted); }
.suite-card .sc-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin: 8px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.suite-card .sc-desc { font-size: 11px; color: var(--muted); }

/* ── CTA BLOCK ─────────────────────────────────── */
.cta-block {
  margin-top: 60px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(0,200,240,0.06), transparent);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(0,200,240,0.03) 20px, rgba(0,200,240,0.03) 21px
  );
}
.cta-block * { position: relative; }
.cta-price-old { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.cta-price {
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 8px 0;
}
.cta-price .cents { font-size: 26px; }
.cta-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 40px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover {
  background: #00e8ff;
  transform: translateY(-1px);
}

/* ── REFERENCES ────────────────────────────────── */
.ref-list { margin: 0; padding: 0; list-style: none; }
.ref-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.6;
}
.ref-list li:last-child { border-bottom: none; }
.ref-num {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: var(--accent);
  min-width: 32px;
  padding-top: 2px;
}
.ref-author { color: var(--accent); font-weight: bold; }

/* ── FOOTER ────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 80px;
}

/* ── ANIMATED COUNTER ──────────────────────────── */
.counter { color: var(--accent); font-family: 'Orbitron', monospace; }

.green { color:var(--green); }
.accent { color:var(--accent); }
.red { color:var(--red); }
.orange { color:var(--orange); }
.bold { font-weight:bold; }
.font1 { font-size:8px;opacity:0.7; }
.marginTop6px { margin-top:6px; }
.marginTop16px { margin-top:16px; }
.marginTop12px { margin-top:12px; }
.marginTop24px { margin-top:24px; }
.margin0 { margin:0; }
.width0 { width:0%; }
.fontSize13 { font-size:13px; }
.color1 { color:#b070e8; }
.sp1 { border-color:var(--border);padding:0 0 0 0;overflow:hidden; }
.sp2 { margin-top:20px;font-size:11px;color:var(--muted); }
.pad { padding:10px 20px; }
.bbNone { border-bottom:none;}


/* ── SCROLL TO TOP ─────────────────────────────── */
#scrolltop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 40px; height: 40px;
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}
#scrolltop.visible { opacity: 1; }
#scrolltop:hover { background: var(--accent); color: var(--bg); }

@media (max-width: 640px) {
  main { padding: 44px 20px 80px; }
  .hero-title { font-size: 36px; }
  .cortisol-grid { grid-template-columns: 1fr; }
  .spec-key { width: 120px; min-width: 120px; }
  .spec-note { display: none; }
  .stack-label { width: 110px; min-width: 110px; }
  .stack-ref { display: none; }
  #topbar .status { display: none; }
}
