/* =============================================
   WHO INVENTED BITCOIN — DARK TECHY THEME
   ============================================= */

:root {
  --orange: #F7931A;
  --orange-dim: #c4741200;
  --orange-glow: rgba(247, 147, 26, 0.3);
  --orange-light: #ffb347;
  --bg-base: #0a0a0a;
  --bg-card: #111111;
  --bg-dark: #060606;
  --bg-section: #0e0e0e;
  --border: rgba(247, 147, 26, 0.15);
  --border-bright: rgba(247, 147, 26, 0.4);
  --text-primary: #e8e0d4;
  --text-secondary: #8a8078;
  --text-muted: #4a4540;
  --font-mono: 'Share Tech Mono', monospace;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Source Serif 4', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* TEXTURE OVERLAYS */
.scan-lines {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1000;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}
.grid-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 999; opacity: 0.025;
  background-image: linear-gradient(rgba(247,147,26,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(247,147,26,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--orange); text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo span { color: var(--text-secondary); }
.nav-links {
  display: flex; gap: 0.25rem; list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
  text-decoration: none; color: var(--text-secondary);
  padding: 0.4rem 0.85rem; border-radius: 3px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(247,147,26,0.07);
  border-color: var(--border);
}
.nav-price {
  background: var(--orange) !important;
  color: #000 !important; border-color: var(--orange) !important;
}
.nav-price:hover { background: var(--orange-light) !important; }
.hamburger {
  display: none; background: none; border: none;
  color: var(--orange); font-size: 1.5rem; cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(247,147,26,0.06);
  letter-spacing: 0.05em; pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero-content {
  max-width: 860px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before { content: '// '; opacity: 0.5; }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.01em;
  margin-bottom: 1.5rem; color: var(--text-primary);
}
.glow-text {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(247,147,26,0.6), 0 0 80px rgba(247,147,26,0.3);
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 640px;
  margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-sub strong { color: var(--text-primary); }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-top: 5rem; flex-wrap: wrap;
  position: relative; z-index: 2;
  animation: fadeUp 1.1s 0.2s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-display); font-size: 2.8rem;
  font-weight: 700; color: var(--orange); line-height: 1;
}
.stat-label {
  display: block; font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em;
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px; height: 50px; background: var(--border-bright);
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block; background: var(--orange); color: #000;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; padding: 0.8rem 2rem; border-radius: 3px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 0 20px rgba(247,147,26,0.3);
}
.btn-primary:hover {
  background: var(--orange-light); transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(247,147,26,0.5);
}
.btn-ghost {
  display: inline-block; color: var(--orange);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; padding: 0.8rem 2rem; border-radius: 3px;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid var(--border-bright);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(247,147,26,0.08); border-color: var(--orange); }

/* ===================== AD SLOTS ===================== */
.ad-slot {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); color: var(--text-muted);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em;
}
.ad-horizontal {
  min-height: 100px; padding: 1rem 2rem;
}
.ad-square { min-height: 250px; min-width: 300px; }

/* ===================== SECTIONS ===================== */
.section { padding: 5rem 0; }
.section--dark { background: var(--bg-section); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.2em;
  display: block; margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: var(--text-primary); margin-bottom: 1rem;
}
.section-header p { color: var(--text-secondary); max-width: 580px; margin: 0 auto; }

/* ===================== CARDS ===================== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem; text-decoration: none; color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: block;
}
.card:hover {
  border-color: var(--orange); transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(247,147,26,0.12);
}
.card--orange { border-color: rgba(247,147,26,0.3); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.75rem;
}
.card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.card-link {
  display: inline-block; margin-top: 1.2rem; color: var(--orange);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===================== FACTS ===================== */
.facts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
}
.fact-item {
  border-left: 2px solid var(--orange); padding-left: 1.5rem;
}
.fact-num {
  font-family: var(--font-mono); color: var(--orange);
  font-size: 0.85rem; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem;
}
.fact-item h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.fact-item p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===================== SUSPECTS ===================== */
.suspects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem;
}
.suspect-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.8rem; text-decoration: none; color: inherit;
  transition: border-color 0.3s, transform 0.3s;
}
.suspect-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.suspect-card--more { border-style: dashed; }
.suspect-initial {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(247,147,26,0.1); border: 1px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--orange); margin-bottom: 1rem;
}
.suspect-card h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.suspect-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, #0f0a00 0%, #1a0e00 50%, #0f0a00 100%);
  border-top: 1px solid var(--border-bright); border-bottom: 1px solid var(--border-bright);
  padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '₿'; position: absolute; font-family: var(--font-display);
  font-size: 20rem; color: rgba(247,147,26,0.04); top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem,3.5vw,2.5rem);
  font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem;
}
.cta-banner p { color: var(--text-secondary); margin-bottom: 2rem; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-dark); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.8rem; max-width: 280px; }
.footer-links h5, .footer-disclaimer h5 {
  font-family: var(--font-display); font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-disclaimer p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.78rem; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg);
  position: absolute; top: 50%; right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(247,147,26,0.05);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero p.eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem;
}
.page-hero p.eyebrow::before { content: '// '; opacity: 0.5; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.1; margin-bottom: 1.2rem;
}
.page-hero h1 span { color: var(--orange); }
.page-hero .lead { color: var(--text-secondary); max-width: 680px; font-size: 1.05rem; line-height: 1.8; }

/* ===================== PROSE CONTENT ===================== */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: var(--text-primary); margin: 3rem 0 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}
.prose h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--orange); margin: 2rem 0 0.75rem;
}
.prose p { color: var(--text-secondary); margin-bottom: 1.4rem; line-height: 1.85; }
.prose p strong { color: var(--text-primary); }
.prose blockquote {
  border-left: 3px solid var(--orange); padding: 1rem 1.5rem;
  margin: 2rem 0; background: var(--bg-card); border-radius: 0 4px 4px 0;
}
.prose blockquote p { color: var(--text-primary); font-style: italic; margin: 0; }
.prose ul, .prose ol { color: var(--text-secondary); padding-left: 1.5rem; margin-bottom: 1.4rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.75; }

/* ===================== TIMELINE ===================== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--orange), transparent);
}
.timeline-item {
  position: relative; padding: 0 0 3rem 2.5rem;
}
.timeline-item::before {
  content: ''; position: absolute; left: -6px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 12px rgba(247,147,26,0.6);
}
.timeline-date {
  font-family: var(--font-mono); color: var(--orange);
  font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.timeline-item h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.timeline-item p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.75; }

/* ===================== FAQ ===================== */
.faq-item {
  border: 1px solid var(--border); border-radius: 4px; margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: var(--bg-card); border: none; cursor: pointer;
  padding: 1.2rem 1.5rem; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--text-primary); transition: background 0.2s;
}
.faq-question:hover { background: rgba(247,147,26,0.06); }
.faq-question.open { color: var(--orange); }
.faq-chevron { color: var(--orange); transition: transform 0.3s; font-style: normal; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  background: var(--bg-dark); padding: 0 1.5rem;
}
.faq-answer.open { max-height: 400px; padding: 1.2rem 1.5rem; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin: 0; }

/* ===================== PRICE PAGE ===================== */
.price-widget {
  background: var(--bg-card); border: 1px solid var(--border-bright);
  border-radius: 8px; padding: 3rem; text-align: center; margin: 2rem 0;
  position: relative; overflow: hidden;
}
.price-widget::before {
  content: '₿'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: 15rem; font-weight: 700;
  color: rgba(247,147,26,0.04); pointer-events: none;
}
.price-label {
  font-family: var(--font-mono); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; margin-bottom: 0.5rem;
}
.price-value {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; color: var(--orange);
  text-shadow: 0 0 40px rgba(247,147,26,0.4);
  line-height: 1; margin-bottom: 0.5rem;
}
.price-change { font-family: var(--font-mono); font-size: 1.1rem; }
.price-change.positive { color: #22c55e; }
.price-change.negative { color: #ef4444; }
.price-meta {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem;
}
.price-meta-item { text-align: center; }
.price-meta-item .meta-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; display: block;
}
.price-meta-item .meta-val {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--text-primary); display: block; margin-top: 0.2rem;
}
.price-loading { color: var(--text-muted); font-family: var(--font-mono); }

/* ===================== NEWS ===================== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.5rem; transition: border-color 0.3s, transform 0.2s;
}
.news-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.news-source {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem;
}
.news-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.4;
}
.news-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
.news-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; }
.news-loading { text-align: center; padding: 3rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ===================== TABLE ===================== */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.data-table th {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.12em; padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border-bright); text-align: left;
}
.data-table td {
  padding: 0.9rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text-secondary); line-height: 1.6;
}
.data-table tr:hover td { background: rgba(247,147,26,0.03); }

/* ===================== WHITEPAPER ===================== */
.wp-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 2rem; margin-bottom: 1.5rem;
}
.wp-number {
  font-family: var(--font-mono); color: var(--orange); font-size: 0.8rem;
  letter-spacing: 0.15em; display: block; margin-bottom: 0.4rem;
}
.wp-section h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.8rem;
}
.wp-section p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* ===================== EPSTEIN BANNER ===================== */
.epstein-banner {
  position: relative; overflow: hidden;
  border: 1px solid var(--border-bright);
  border-radius: 8px; padding: 4rem 3rem;
  text-align: center;
}
.epstein-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(247,147,26,0.06);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.epstein-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.epstein-content h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--text-primary); line-height: 1.1; margin-bottom: 1rem;
}
.epstein-content p {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.8; max-width: 560px; margin: 0 auto;
}

/* ===================== HOME PRICE WIDGET ===================== */
.home-price-widget {
  max-width: 780px; margin: 0 auto;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-bright);
  border-radius: 12px; overflow: hidden;
}
.home-price-main {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--border);
}
.home-price-label {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.home-price-value {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--orange);
  text-shadow: 0 0 30px rgba(247,147,26,0.5);
}
.home-price-change { font-family: var(--font-mono); font-size: 1rem; font-weight: 600; }
.home-price-change.up { color: #22c55e; }
.home-price-change.down { color: #ef4444; }
.home-price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-bottom: 1px solid var(--border);
}
.home-price-stat {
  padding: 1rem 1.5rem; border-right: 1px solid var(--border);
  text-align: center;
}
.home-price-stat:nth-child(3), .home-price-stat:nth-child(6) { border-right: none; }
.home-price-stat:nth-child(4), .home-price-stat:nth-child(5), .home-price-stat:nth-child(6) {
  border-top: 1px solid var(--border);
}
.home-price-stat-label {
  display: block; font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.3rem;
}
.home-price-stat-val {
  display: block; font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--text-primary);
}
.home-price-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem; flex-wrap: wrap; gap: 0.5rem;
}
@media(max-width:600px) {
  .home-price-grid { grid-template-columns: repeat(2,1fr); }
  .home-price-stat:nth-child(3) { border-right: 1px solid var(--border); }
  .home-price-stat:nth-child(2), .home-price-stat:nth-child(4), .home-price-stat:nth-child(6) { border-right: none; }
}

/* ===================== TICKER BAR ===================== */
.ticker-bar {
  background: #0f0a00;
  border-bottom: 1px solid var(--border-bright);
  padding: 0.55rem 2rem;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono); font-size: 0.8rem;
  flex-wrap: wrap;
}
.ticker-label {
  color: var(--orange); font-weight: 700; letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.4rem;
}
.ticker-label::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(247,147,26,0.8);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.ticker-divider { color: var(--text-muted); }
.ticker-price {
  color: var(--text-primary); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.03em;
}
.ticker-change { font-size: 0.82rem; font-weight: 600; }
.ticker-change.up { color: #22c55e; }
.ticker-change.down { color: #ef4444; }
.ticker-meta { color: var(--text-secondary); font-size: 0.75rem; }
.ticker-link {
  color: var(--orange); text-decoration: none; font-size: 0.75rem;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.ticker-link:hover { color: var(--orange-light); }
.ticker-updated { color: var(--text-muted); font-size: 0.7rem; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 8px rgba(247,147,26,0.4); }
  50% { box-shadow: 0 0 20px rgba(247,147,26,0.8); }
}
.pulse { animation: pulse-orange 2s infinite; }

/* ===================== SIDEBAR LAYOUT ===================== */
.content-with-sidebar {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start;
}
.sticky-sidebar { position: sticky; top: 80px; }
.sidebar-ad {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; min-height: 600px; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-muted); font-family: var(--font-mono); font-size: 0.75rem;
  flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem;
}
.sidebar-nav {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-nav h5 {
  font-family: var(--font-display); font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem; margin-bottom: 1rem;
}
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 0.4rem; }
.sidebar-nav a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.sidebar-nav a:hover { color: var(--orange); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: rgba(10,10,10,0.98);
    padding: 1rem; gap: 0; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; border-radius: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .stat-divider { display: none; }
  .price-meta { gap: 1.5rem; }
}
