/* QuickQ - Bloomberg Style Shared CSS */
:root {
  --brand: #e4002b;
  --brand-dark: #b80022;
  --brand-light: #ff3355;
  --accent: #ffcc00;
  --bg: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-soft: #222222;
  --text: #ffffff;
  --text-soft: #cccccc;
  --text-mute: #888888;
  --border: #333333;
  --border-strong: #555555;
  --radius: 4px;
  --radius-lg: 8px;
  --nav-h: 56px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}
a { color: var(--brand-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
/* Top Bar - Bloomberg Ticker Style */
.topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
}
.topbar-inner { display: flex; align-items: center; height: 36px; overflow: hidden; }
.ticker {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  color: var(--text-soft);
}
.ticker .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  margin-right: 8px;
  display: inline-block;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-bottom: 2px solid var(--brand);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.brand-mark svg { width: 20px; height: 20px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg-soft);
}
.nav-cta {
  padding: 10px 24px;
  background: var(--brand);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--brand-dark); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; font-size: 24px; }
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--border-strong); color: var(--text); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-light); }
/* Section Base */
.section { padding: 64px 0; }
.section-head { margin-bottom: 40px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-mute);
  max-width: 600px;
}
/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  color: var(--text-mute);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 13px;
  color: var(--text-mute);
  transition: color .2s;
}
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--text-mute);
}
/* Live Clock Bar - Real-time */
.live-clock-bar {
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.live-clock-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.live-clock-inner .lc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .9;
}
.live-clock-inner .lc-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.live-clock-inner .lc-time {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--brand);
}
.live-clock-inner .lc-ver {
  color: var(--brand-light);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
/* Steps Guide - Quick Start */
.steps-guide {
  padding: 60px 0;
  background: var(--bg-card);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step-card p {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.6;
}
.step-card::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 40px;
  font-size: 24px;
  color: var(--border-strong);
  z-index: 1;
}
.step-card:last-child::after { display: none; }
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}
/* Animations */
.fade-up { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 28px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }
}
