/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:           #ffffff;
  --text:         #111111;
  --muted:        #666666;
  --border:       #d9d9d9;
  --border-dark:  #999999;
  --positive:     #16a34a;
  --negative:     #dc2626;
  --font-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-width:    640px;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ─── Brand + hero ───────────────────────────────────────────────────────── */
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  padding: 3rem 0 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.site-logo {
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.wordmark {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.tagline {
  font-size: 1rem;
  color: var(--muted);
}

/* ─── Main ───────────────────────────────────────────────────────────────── */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── Search section ─────────────────────────────────────────────────────── */
.search-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

#ticker-input {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color 0.15s;
}

#ticker-input:focus {
  border-color: var(--text);
}

#ticker-input::placeholder {
  color: var(--border-dark);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ─── Timeframe buttons ──────────────────────────────────────────────────── */
.timeframe-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeframe-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  white-space: nowrap;
}

.timeframe-btn:hover {
  border-color: var(--border-dark);
  color: var(--text);
}

.timeframe-btn.active {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

/* ─── Explain button ─────────────────────────────────────────────────────── */
.explain-btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--text);
  border-radius: 4px;
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  align-self: flex-start;
}

.explain-btn:hover {
  background: transparent;
  color: var(--text);
}

.explain-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ─── Results section ────────────────────────────────────────────────────── */
.results-section {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.confidence-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}
.confidence-badge .confidence-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.confidence-badge--high   { color: var(--positive); }
.confidence-badge--high   .confidence-dot { background: var(--positive); }
.confidence-badge--medium { color: #d97706; }
.confidence-badge--medium .confidence-dot { background: #d97706; }
.confidence-badge--low    { color: var(--muted); }
.confidence-badge--low    .confidence-dot { background: var(--border-dark); }

.clarity-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}
.clarity-badge .confidence-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.clarity-badge--high   { color: var(--positive); }
.clarity-badge--high   .confidence-dot { background: var(--positive); }
.clarity-badge--medium { color: #d97706; }
.clarity-badge--medium .confidence-dot { background: #d97706; }
.clarity-badge--low-medium    { color: #92400e; }
.clarity-badge--low-medium    .confidence-dot { background: #92400e; }
.clarity-badge--low    { color: var(--muted); }
.clarity-badge--low    .confidence-dot { background: var(--border-dark); }

/* ─── Move significance ──────────────────────────────────────────────────── */
.move-significance {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.move-significance--high   { color: var(--negative); }
.move-significance--medium { color: #d97706; }
.move-significance--low    { color: var(--muted); }

/* ─── Asset profile (sector / ETF holdings / crypto stats) ───────────────── */
.asset-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0 0.25rem;
}
.asset-profile-label {
  font-size: 0.72rem;
  color: var(--muted);
  align-self: center;
  margin-right: 0.15rem;
}
.asset-profile-tag {
  font-size: 0.72rem;
  background: #f3f4f6;
  color: #555;
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
}
.asset-profile--etf { align-items: center; }
.etf-holding {
  font-size: 0.72rem;
  background: #f3f4f6;
  color: #333;
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
}
.etf-holding-pct { color: var(--muted); margin-left: 0.2rem; }

/* ─── Primary catalyst block ─────────────────────────────────────────────── */
.primary-catalyst {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--text);
}

.primary-catalyst-headline {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

.primary-catalyst-time {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── Dominant driver ────────────────────────────────────────────────────── */
.dominant-driver {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.dominant-driver-label {
  color: var(--muted);
  font-weight: 500;
}

.dominant-driver-value {
  font-weight: 700;
  color: var(--text);
}

/* ─── Move type + confidence row ─────────────────────────────────────────── */
.result-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.move-type-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  background: #f3f3f3;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.result-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 1.75rem;
}

.result-ticker {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.result-change {
  font-size: 1.5rem;
  font-weight: 600;
}

.result-change.negative { color: var(--negative); }
.result-change.positive { color: var(--positive); }
.result-change.flat     { color: var(--muted); }

.result-timeframe {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

/* Result content blocks */
.result-block {
  margin-bottom: 1.5rem;
}

.result-block-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.result-block p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.result-block ul {
  list-style: none;
  padding: 0;
}

.result-block ul li {
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.result-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text);
}

.result-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.result-sources {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Loading & error states ─────────────────────────────────────────────── */
.loading-text {
  font-size: 0.9375rem;
  color: var(--muted);
  font-style: italic;
  animation: fade-pulse 1.4s ease-in-out infinite;
}

@keyframes fade-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.error-text {
  font-size: 0.9375rem;
  color: var(--negative);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}

/* ─── Chart ──────────────────────────────────────────────────────────────── */
.chart-container {
  position: relative; /* anchor for the absolutely-positioned tooltip */
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.chart-type-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.chart-type-btn:hover {
  border-color: var(--border-dark);
  color: var(--text);
}

.chart-expand-btn {
  position: absolute;
  top: 8px;
  right: 72px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.chart-expand-btn:hover {
  border-color: var(--border-dark);
  color: var(--text);
}

.chart-container--expanded {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  z-index: 990;
  border-radius: 0 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.chart-expanded-open {
  overflow: hidden;
}

.chart-watermark {
  position: absolute;
  bottom: 4px;
  left: 6px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 6;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.9);
  padding: 1px 4px;
  border-radius: 2px;
  white-space: nowrap;
}

.chart-tooltip {
  position: absolute;
  z-index: 10;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.45rem 0.65rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s ease;
  max-width: 210px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.chart-tooltip-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.chart-tooltip-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text);
}

.chart-legend {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--earnings  { background: #7c3aed; }
.legend-dot--news      { background: #dc2626; }
.legend-dot--macro     { background: #2563eb; }
.legend-dot--technical { background: #d97706; }

/* ─── Recent News ────────────────────────────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.news-item {
  display: flex;
  gap: 0.875rem;
  align-items: baseline;
}

.news-item--hidden {
  display: none;
}

.news-item--visible {
  display: flex;
}

.news-time {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 4.5rem;
}

.news-headline {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
}

.news-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s;
}

.news-link:hover {
  border-bottom-color: var(--text);
}

.news-expand-btn {
  margin-top: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.news-expand-btn:hover {
  color: var(--text);
}

/* ─── Technicals — compact single-line bullets ───────────────────────────── */
.technicals-compact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.tech-line {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.tech-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.tech-line--bearish { color: var(--negative); }
.tech-line--bearish::before { background: var(--negative); }
.tech-line--bullish { color: var(--positive); }
.tech-line--bullish::before { background: var(--positive); }
.tech-line--neutral { color: var(--text); }
.tech-line--neutral::before { background: var(--border-dark); }
.tech-line--watch   { color: #2563eb; }
.tech-line--watch::before   { background: #2563eb; }

/* ─── What usually happens next ─────────────────────────────────────────── */
.what-next-block {
  border-left: 3px solid #2563eb;
  padding-left: 1rem;
}

.what-next-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

/* ─── Pro status line ────────────────────────────────────────────────────── */
.pro-status-line {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
}

.free-counter { color: var(--muted); }

.upgrade-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--border-dark);
}
.upgrade-link:hover { text-decoration-color: var(--text); }

.account-nav-link,
.signin-link {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.account-nav-link:hover,
.signin-link:hover { color: var(--text); text-decoration-color: var(--text); }

/* ─── Locked timeframe buttons ───────────────────────────────────────────── */
.timeframe-btn--locked {
  opacity: 0.55;
}

.lock-icon {
  font-size: 0.7em;
  margin-left: 0.3em;
  vertical-align: middle;
}

/* ─── Upgrade modal ──────────────────────────────────────────────────────── */
.upgrade-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.upgrade-modal-overlay--visible { opacity: 1; }

.upgrade-modal {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  max-width: 400px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.upgrade-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.upgrade-modal-close:hover { color: var(--text); }

.upgrade-modal-icon {
  font-size: 1.75rem;
  color: #b45309;
  margin-bottom: 0.5rem;
}

.upgrade-modal-title {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.upgrade-reason {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.upgrade-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  text-align: left;
}

.upgrade-tier {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
}

.upgrade-tier--pro {
  border-color: #b45309;
  background: #fffbf0;
}

.upgrade-tier-name {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.upgrade-price {
  font-weight: 600;
  font-size: 0.8125rem;
  color: #b45309;
}

.upgrade-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.upgrade-tier--pro ul { color: #78350f; }

.upgrade-cta-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 0.65rem;
}
.upgrade-cta-btn:hover:not(:disabled) { background: #333; }
.upgrade-cta-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.upgrade-maybe-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}
.upgrade-maybe-btn:hover { color: var(--text); }

/* ─── Today catalyst banner ─────────────────────────────────────────────── */
#today-catalyst-banner {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-left: 3px solid #111;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
#today-catalyst-date {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
}
#today-catalyst-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
#today-catalyst-btn:hover { background: #333; }

/* ─── SEO content block ──────────────────────────────────────────────────── */
.seo-content {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.seo-content h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.seo-content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.seo-content p { margin-bottom: 0.5rem; }

.seo-content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.seo-content li { margin-bottom: 0.2rem; }

/* ─── Webull affiliate CTA ───────────────────────────────────────────────── */
.webull-cta {
  display: inline-block;
  margin-left: auto;
  padding: 0.3rem 0.75rem;
  border: 1px solid #e86452;
  border-radius: 6px;
  color: #e86452;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.webull-cta:hover {
  background: #e86452;
  color: #fff;
}

/* ─── Share row ──────────────────────────────────────────────────────────── */
.share-row {
  display:     flex;
  flex-wrap:   wrap;
  gap:         0.4rem;
  margin-bottom: 0.75rem;
}
.share-btn {
  display:       inline-flex;
  align-items:   center;
  padding:       0.35rem 0.8rem;
  border-radius: 6px;
  font-size:     0.775rem;
  font-weight:   600;
  cursor:        pointer;
  border:        1px solid transparent;
  text-decoration: none;
  transition:    background 0.15s, color 0.15s;
  white-space:   nowrap;
}
.share-btn--x {
  background: #000;
  color:      #fff;
}
.share-btn--x:hover { background: #222; }
.share-btn--reddit {
  background: #ff4500;
  color:      #fff;
}
.share-btn--reddit:hover { background: #e03d00; }
.share-btn--facebook {
  background: #1877f2;
  color:      #fff;
}
.share-btn--facebook:hover { background: #0f65d9; }
.share-btn--copy {
  background:   transparent;
  color:        #555;
  border-color: #ddd;
}
.share-btn--copy:hover { background: #f5f5f5; }

/* ─── Ticker price widget ────────────────────────────────────────────────── */
.ticker-price-widget {
  display:     flex;
  align-items: baseline;
  gap:         0.5rem;
  min-height:  1.75rem;
  margin-bottom: 1.25rem;
}
.tpw-price {
  font-size:      1.25rem;
  font-weight:    700;
  letter-spacing: -0.02em;
  color:          #111;
}
.tpw-change {
  font-size:   0.9375rem;
  font-weight: 600;
}
.tpw-change.positive { color: #16a34a; }
.tpw-change.negative { color: #dc2626; }
.tpw-status {
  font-size: 0.8125rem;
  color:     #999;
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-stack { gap: 2rem; padding: 2rem 0; }
  .site-logo  { width: 44px; height: 44px; }
  .wordmark   { font-size: 1.4rem; }
  .tagline    { font-size: 0.9rem; }

  #ticker-input  { font-size: 1.1rem; }
  .result-ticker { font-size: 1.5rem; }
  .result-change { font-size: 1.2rem; }
  .explain-btn   { width: 100%; text-align: center; }
}
