/* TL;DR Filing — Premium Fintech Platform */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-base: #0c1222;
  --bg-surface: #151d2e;
  --bg-elevated: #1a2438;
  --bg-hover: #1e293b;
  --border: #1e293b;
  --border-subtle: #162032;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --green: #10b981;
  --green-dim: rgba(16,185,129,0.12);
  --green-border: rgba(16,185,129,0.25);
  --red: #ef4444;
  --red-dim: rgba(239,68,68,0.12);
  --blue: #3b82f6;
  --blue-dim: rgba(59,130,246,0.1);
  --amber: #f59e0b;
  --amber-dim: rgba(245,158,11,0.12);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1140px;
  --transition: 150ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: #60a5fa; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,18,34,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.nav-logo .logo-icon {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links .btn-sm {
  background: var(--green);
  color: var(--bg-base);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
}
.nav-links .btn-sm:hover { background: #0ea572; color: var(--bg-base); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  max-width: 680px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}
.hero h1 .accent { color: var(--green); }
.hero h1 .dim { color: var(--text-muted); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.trust-bar span { display: flex; align-items: center; gap: 0.4rem; }
.trust-bar .dot { width: 3px; height: 3px; background: var(--text-muted); border-radius: 50%; opacity: 0.5; }

/* ── SEARCH ──────────────────────────────────────── */
.search-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto 0.75rem;
}
.search-input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 1rem;
  padding: 16px 20px 16px 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-input::placeholder { color: var(--text-muted); font-family: var(--font-body); font-size: 0.9rem; }
.search-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim), 0 8px 32px rgba(0,0,0,0.3);
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.search-icon svg { width: 18px; height: 18px; }
.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: none;
  z-index: 50;
  max-height: 340px;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.search-results.active { display: block; }
.search-result-item {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--border-subtle);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg-hover); }
.search-result-item .ticker {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green);
  min-width: 60px;
  font-size: 0.85rem;
}
.search-result-item .name {
  color: var(--text-secondary);
  font-size: 0.82rem;
  flex: 1;
  margin-left: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-item .exchange {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ── SECTIONS ────────────────────────────────────── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section + .section { padding-top: 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.section-title .icon { color: var(--text-muted); display: flex; align-items: center; }
.section-title .icon svg { width: 16px; height: 16px; }
.section-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.section-link:hover { color: var(--green); }

/* ── LIVE PREVIEW (Landing Page) ─────────────────── */
.preview-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.preview-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.preview-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.preview-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.preview-ticker-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 3px 10px;
  border-radius: 5px;
}
.preview-company-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.preview-tag {
  font-size: 0.65rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.preview-metric {
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
}
.preview-metric:last-child { border-right: none; }
.preview-metric .pm-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.preview-metric .pm-value {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
}
.preview-metric .pm-change {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  margin-top: 0.15rem;
}
.preview-metric .pm-change.up { color: var(--green); }
.preview-metric .pm-change.down { color: var(--red); }
.preview-body {
  padding: 1.5rem;
}
.preview-body h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.preview-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}
.preview-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-top: 1px solid var(--border);
}
.preview-cta a {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── FILING BREAKDOWN TIMELINE ───────────────────── */
.breakdown-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.breakdown-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  position: relative;
}
.breakdown-line {
  position: absolute;
  left: 200px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.breakdown-item {
  display: contents;
}
.breakdown-part {
  padding: 1.25rem 1.5rem 1.25rem 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
}
.breakdown-content {
  padding: 1.25rem 0 1.25rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.breakdown-content::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 1.6rem;
  width: 8px;
  height: 8px;
  background: var(--bg-base);
  border: 2px solid var(--text-muted);
  border-radius: 50%;
}
.breakdown-item:last-child .breakdown-content { border-bottom: none; }
.breakdown-item.active .breakdown-content::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 8px var(--green-dim);
}
.breakdown-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.breakdown-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── TRENDING TICKERS ────────────────────────────── */
.tickers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.ticker-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.ticker-card:hover { border-color: var(--green-border); transform: translateY(-1px); color: inherit; }
.ticker-card .tc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticker-card .tc-ticker {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.ticker-card .tc-change {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}
.ticker-card .tc-change.up { color: var(--green); }
.ticker-card .tc-change.down { color: var(--red); }
.ticker-card .tc-name {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticker-card .tc-data {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Legacy ticker-chip support */
.tickers-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.ticker-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}
.ticker-chip:hover { border-color: var(--green); color: var(--text-primary); }
.ticker-chip .change { font-size: 0.75rem; font-weight: 500; }
.ticker-chip .change.up { color: var(--green); }
.ticker-chip .change.down { color: var(--red); }

/* ── RECENT FILINGS TABLE ────────────────────────── */
.filings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.filings-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.filings-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}
.filings-table tr:hover td { background: var(--bg-surface); }
.filings-table .mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.form-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}
.form-badge.tenk { background: var(--blue-dim); color: var(--blue); }
.form-badge.tenq { background: var(--green-dim); color: var(--green); }
.form-badge.eightk { background: var(--amber-dim); color: var(--amber); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-hover); }
.faq-question .chevron {
  transition: transform 200ms ease;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.faq-question .chevron svg { width: 16px; height: 16px; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.25rem 1rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 4rem auto 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand p { font-size: 0.78rem; color: var(--text-muted); max-width: 280px; margin-top: 0.5rem; line-height: 1.5; }
.footer-links h4 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.75rem; font-weight: 600; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.disclaimer {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 640px;
  opacity: 0.7;
}

/* ── COMPANY PAGE ────────────────────────────────── */
.company-header {
  padding: 1.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.company-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.company-ticker {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  padding: 4px 12px;
  border-radius: 6px;
}
.company-name {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.company-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.financials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 0.75rem;
}
.fin-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.fin-card .label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.fin-card .value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
}
.fin-card .change {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  margin-top: 0.25rem;
  font-weight: 500;
}
.fin-card .change.up { color: var(--green); }
.fin-card .change.down { color: var(--red); }

.summary-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.summary-block h2 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.summary-block h2 .s-icon { display: flex; align-items: center; color: var(--text-muted); }
.summary-block h2 .s-icon svg { width: 18px; height: 18px; }
.summary-block p, .summary-block li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.summary-block ul { padding-left: 1.25rem; }
.summary-block li { margin-bottom: 0.4rem; }

.risk-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.risk-item:last-child { border-bottom: none; }
.risk-severity {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.risk-severity.high { background: var(--red-dim); color: var(--red); }
.risk-severity.medium { background: var(--amber-dim); color: var(--amber); }
.risk-severity.low { background: var(--green-dim); color: var(--green); }

.no-red-flags {
  color: var(--green);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filing-history-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.filing-history-item:last-child { border-bottom: none; }
.filing-history-item .date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  min-width: 90px;
}

.chart-placeholder {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

.sec-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--blue);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ── SEARCH PAGE ─────────────────────────────────── */
.search-page { padding: 3rem 1.5rem; max-width: 680px; margin: 0 auto; }
.search-page h1 { font-size: 1.35rem; margin-bottom: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.search-page .search-wrapper { max-width: 100%; margin-bottom: 2rem; }
.results-list { display: flex; flex-direction: column; gap: 0.5rem; }
.result-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.result-card:hover { border-color: var(--green-border); color: inherit; }
.result-card .ticker {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  min-width: 65px;
}
.result-card .info { flex: 1; }
.result-card .name { font-weight: 600; font-size: 0.9rem; }
.result-card .detail { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── UTILITIES ───────────────────────────────────── */
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-amber { color: var(--amber); }
.text-muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 4rem 1rem 2rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 0.95rem; }
  .nav-links .hide-mobile { display: none; }
  .financials-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-metrics { grid-template-columns: repeat(2, 1fr); }
  .preview-metric { border-bottom: 1px solid var(--border); }
  .footer-inner { flex-direction: column; }
  .filings-table { font-size: 0.78rem; }
  .filings-table .hide-mobile { display: none; }
  .breakdown-grid { grid-template-columns: 1fr; }
  .breakdown-line { display: none; }
  .breakdown-part { text-align: left; padding: 0.75rem 0 0; }
  .breakdown-content { padding: 0.25rem 0 1.25rem 1.5rem; }
  .breakdown-content::before { left: 0; top: 0.5rem; }
  .tickers-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { flex-wrap: wrap; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .financials-grid { grid-template-columns: 1fr; }
  .preview-metrics { grid-template-columns: 1fr; }
  .tickers-grid { grid-template-columns: 1fr; }
}
/ *   f o r c e - b u s t   * /  
 