/* ============================================================
   BIZ LIV 365 — Premium Financial Media Platform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --bg-base:        #07090f;
  --bg-surface:     #0d1117;
  --bg-elevated:    #111827;
  --bg-card:        #141d2b;
  --bg-card-hover:  #1a2438;
  --border:         #1e2d45;
  --border-bright:  #2a3f5f;

  --gold:           #d4920a;
  --gold-light:     #f0b429;
  --gold-pale:      #fcd97720;
  --gold-gradient:  linear-gradient(135deg, #d4920a 0%, #f0b429 50%, #d4920a 100%);

  --green:          #16c784;
  --red:            #ea3943;
  --cyan:           #38bdf8;

  --text-primary:   #f0f4f8;
  --text-secondary: #8ba0be;
  --text-muted:     #4a617e;
  --text-gold:      #f0b429;

  --nav-height:     64px;
  --ticker-height:  36px;

  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', system-ui, sans-serif;
  --font-mono:      'DM Mono', 'Courier New', monospace;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      16px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:    0 0 30px rgba(212,146,10,0.15);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 40px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.tag-gold { background: var(--gold-pale); color: var(--gold-light); border: 1px solid #f0b42940; }
.tag-red  { background: #ea394320; color: var(--red); border: 1px solid #ea394340; }
.tag-green{ background: #16c78420; color: var(--green); border: 1px solid #16c78440; }
.tag-blue { background: #38bdf820; color: var(--cyan); border: 1px solid #38bdf840; }
.tag-live { background: #ef444420; color: #ef4444; border: 1px solid #ef444440; animation: pulse-live 1.5s ease-in-out infinite; }

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}
.tag-live::before { content: '●'; margin-right: 4px; }

.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.section-heading {
  font-family: var(--font-serif); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.2; color: var(--text-primary);
  margin-bottom: 8px;
}
.section-subheading {
  font-size: 14px; color: var(--text-secondary); max-width: 520px;
}

.gold-text { color: var(--gold-light); }
.green-text { color: var(--green); }
.red-text { color: var(--red); }

.divider { height: 1px; background: var(--border); margin: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.2s ease;
}
.btn-gold {
  background: var(--gold-gradient); color: #000;
  box-shadow: 0 4px 15px rgba(212,146,10,0.35);
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,146,10,0.5); }

.btn-outline {
  border: 1px solid var(--border-bright); color: var(--text-secondary);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-ghost { color: var(--text-secondary); }
.btn-ghost:hover { color: var(--gold-light); }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }

/* ── BREAKING NEWS BANNER ─────────────────────────────────── */
.breaking-banner {
  background: linear-gradient(90deg, #d4920a, #f0b429, #d4920a);
  background-size: 200% auto;
  animation: shimmer-banner 3s linear infinite;
  height: 36px; display: flex; align-items: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  color: #000; overflow: hidden; position: relative; z-index: 100;
}
@keyframes shimmer-banner { to { background-position: 200% center; } }

.breaking-banner .label {
  background: #000; color: var(--gold-light);
  padding: 0 16px; height: 100%; display: flex; align-items: center;
  font-size: 10px; letter-spacing: 0.1em; white-space: nowrap; flex-shrink: 0;
}
.breaking-banner .marquee-wrap { overflow: hidden; flex: 1; }
.breaking-banner .marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee-fast 35s linear infinite;
}
.breaking-banner .marquee-track span { flex-shrink: 0; }

/* ── STOCK TICKER ─────────────────────────────────────────── */
.ticker-bar {
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
  height: var(--ticker-height); display: flex; align-items: center;
  overflow: hidden; position: sticky; top: 0; z-index: 90;
}
.ticker-label {
  background: var(--gold); color: #000;
  padding: 0 14px; height: 100%; display: flex; align-items: center;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-scroll { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 20px; font-size: 12px; font-family: var(--font-mono);
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.ticker-symbol { font-weight: 600; color: var(--text-primary); }
.ticker-price  { color: var(--text-secondary); }
.ticker-change.up   { color: var(--green); }
.ticker-change.down { color: var(--red); }

@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-fast  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAVIGATION ───────────────────────────────────────────── */
.main-nav {
  background: rgba(7, 9, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height); display: flex; align-items: center;
  position: sticky; top: var(--ticker-height); z-index: 80;
}
.nav-inner {
  display: flex; align-items: center; gap: 0;
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: 36px; flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px; background: var(--gold-gradient);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #000; letter-spacing: -0.05em;
}
.nav-logo .logo-text {
  font-family: var(--font-serif); font-weight: 700; font-size: 18px;
  letter-spacing: 0.02em;
}
.nav-logo .logo-text span { color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: all 0.15s ease; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-elevated); }
.nav-link.active { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-time { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.market-status { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--green); }
.market-status::before { content: '●'; font-size: 8px; }

/* ── HERO / LIVE VIDEO ────────────────────────────────────── */
.hero-section { padding: 0; background: var(--bg-base); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
  min-height: 560px;
}

/* Left: main video */
.hero-main {
  background: var(--bg-surface);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-video-wrap {
  position: relative; background: #000;
  flex: 1; min-height: 380px;
}
.hero-video-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, #0f1a2e 0%, #07090f 70%);
  cursor: pointer; position: relative;
}
.hero-video-placeholder .play-btn {
  width: 72px; height: 72px; background: rgba(212,146,10,0.15);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
  transition: all 0.2s ease;
}
.hero-video-placeholder:hover .play-btn { background: var(--gold); }
.hero-video-placeholder .stream-label {
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase;
}

.hero-video-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 40px 24px 20px;
}
.hero-channel-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 4px 12px; border-radius: 3px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; line-height: 1.25; color: #fff;
  margin-bottom: 8px;
}
.hero-meta { font-size: 12px; color: rgba(255,255,255,0.5); }

/* Below video: featured stories row */
.hero-stories {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border);
}
.hero-story-card {
  background: var(--bg-surface); padding: 16px 20px;
  cursor: pointer; transition: background 0.15s ease;
}
.hero-story-card:hover { background: var(--bg-elevated); }
.hero-story-card .category { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-light); text-transform: uppercase; margin-bottom: 6px; }
.hero-story-card h4 { font-family: var(--font-serif); font-size: 14px; line-height: 1.35; color: var(--text-primary); }
.hero-story-card .impact { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* Right sidebar of hero */
.hero-sidebar {
  background: var(--bg-surface);
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-sidebar-header {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
}
.hero-sidebar-header a { font-size: 10px; color: var(--gold-light); letter-spacing: 0; }

.headline-feed { flex: 1; overflow-y: auto; }
.headline-item {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s ease;
}
.headline-item:hover { background: var(--bg-elevated); }
.headline-item .time { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); margin-bottom: 4px; }
.headline-item h5 { font-size: 13px; line-height: 1.4; color: var(--text-primary); margin-bottom: 4px; }
.headline-item .market-signal {
  font-size: 10px; color: var(--text-muted); display: flex; align-items: center; gap: 4px;
}
.headline-item .market-signal .arrow { font-size: 9px; }
.headline-item.hot h5 { color: var(--gold-light); }

/* ── MARKET DATA STRIP ────────────────────────────────────── */
.market-strip {
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
  padding: 0;
}
.market-strip-inner {
  display: flex; align-items: stretch;
  max-width: 1400px; margin: 0 auto;
  border-left: 1px solid var(--border);
}
.market-card {
  flex: 1; padding: 14px 20px; border-right: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s ease;
}
.market-card:hover { background: var(--bg-elevated); }
.market-card .label { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.market-card .value { font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: var(--text-primary); }
.market-card .change { font-family: var(--font-mono); font-size: 12px; margin-top: 2px; }
.market-card .mini-chart { height: 28px; margin-top: 6px; }

/* ── MAIN CONTENT GRID ────────────────────────────────────── */
.content-section { padding: 40px 0; border-bottom: 1px solid var(--border); }

.main-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}

.wide-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ── NEWS CARDS ───────────────────────────────────────────── */
.news-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  transition: all 0.2s ease; border: 1px solid var(--border);
}
.news-card:hover { background: var(--bg-card-hover); border-color: var(--border-bright); transform: translateY(-2px); box-shadow: var(--shadow-card); }

.news-card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--text-muted);
}
.news-card-body { padding: 16px; }
.news-card-body .category { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-light); text-transform: uppercase; margin-bottom: 8px; }
.news-card-body h3 { font-family: var(--font-serif); font-size: 16px; line-height: 1.35; margin-bottom: 8px; }
.news-card-body p  { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 12px; }
.news-card-footer  { display: flex; align-items: center; justify-content: space-between; }
.news-card-footer .time { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
.news-card-footer .read-more { font-size: 11px; color: var(--gold-light); font-weight: 600; }

/* Wide card (featured) */
.news-card-wide {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 180px; border: none; border-radius: 0;
}
.news-card-wide .news-card-img { height: 100%; min-height: 160px; }
.news-card-wide .news-card-body { display: flex; flex-direction: column; justify-content: center; }
.news-card-wide .news-card-body h3 { font-size: 18px; }

/* ── MARKET DATA SECTION ──────────────────────────────────── */
.market-section { background: var(--bg-base); }

.market-tabs { display: flex; gap: 2px; margin-bottom: 20px; }
.market-tab {
  padding: 8px 18px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s; border: 1px solid transparent;
}
.market-tab.active { background: var(--bg-elevated); color: var(--gold-light); border-color: var(--border); }
.market-tab:hover { color: var(--text-primary); }

.market-table { width: 100%; border-collapse: collapse; }
.market-table th {
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-muted); padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--border); background: var(--bg-surface);
}
.market-table td { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--border); }
.market-table tr:hover td { background: var(--bg-elevated); cursor: pointer; }
.market-table .symbol { font-weight: 600; font-family: var(--font-mono); }
.market-table .name { color: var(--text-secondary); font-size: 12px; }
.market-table .price { font-family: var(--font-mono); font-weight: 500; }
.market-table .change { font-family: var(--font-mono); font-size: 12px; text-align: right; }
.market-table .change.up   { color: var(--green); }
.market-table .change.down { color: var(--red); }
.market-table .vol { color: var(--text-muted); font-size: 12px; font-family: var(--font-mono); }

/* Spark line (CSS only) */
.spark { height: 24px; width: 70px; display: inline-block; vertical-align: middle; }

/* ── SPONSORED / BUSINESS SPOTLIGHT ──────────────────────── */
.spotlight-section { background: linear-gradient(180deg, var(--bg-base) 0%, #080f1c 100%); }

.spotlight-featured {
  background: linear-gradient(135deg, #0d1a2e, #0a1422);
  border: 1px solid var(--gold-pale); border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden;
  margin-bottom: 32px;
}
.spotlight-featured::before {
  content: 'FEATURED PARTNER'; position: absolute; top: 20px; right: 20px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em; color: var(--gold);
  border: 1px solid var(--gold-pale); padding: 3px 8px; border-radius: 2px;
}
.spotlight-featured::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,146,10,0.08), transparent);
  border-radius: 50%;
}
.spotlight-featured .company-logo {
  font-family: var(--font-serif); font-size: 28px; font-weight: 800;
  color: var(--gold-light); margin-bottom: 12px; letter-spacing: 0.03em;
}
.spotlight-featured h2 { font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 12px; }
.spotlight-featured p  { color: var(--text-secondary); font-size: 15px; line-height: 1.7; max-width: 580px; }
.spotlight-featured .cta-row { display: flex; gap: 12px; margin-top: 24px; align-items: center; }
.spotlight-featured .investment-tag { font-size: 11px; color: var(--text-muted); }

.spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.spotlight-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; cursor: pointer; transition: all 0.2s ease; position: relative;
}
.spotlight-card:hover { border-color: var(--gold-pale); background: var(--bg-card-hover); }
.spotlight-card .sponsored-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase;
}
.spotlight-card .co-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.spotlight-card .sector { font-size: 11px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.spotlight-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }
.spotlight-card .metrics { display: flex; gap: 16px; }
.spotlight-card .metric { }
.spotlight-card .metric .val { font-family: var(--font-mono); font-size: 16px; font-weight: 600; }
.spotlight-card .metric .lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── GOVERNMENT / POLICY ──────────────────────────────────── */
.policy-section { }

.policy-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.policy-main { background: var(--bg-surface); padding: 28px; }
.policy-sidebar { background: var(--bg-surface); }

.policy-article + .policy-article { border-top: 1px solid var(--border); margin-top: 24px; padding-top: 24px; }

.policy-article .meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.policy-article h3 { font-family: var(--font-serif); font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
.policy-article p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.policy-article .market-impact {
  margin-top: 12px; padding: 12px 14px; background: var(--bg-elevated);
  border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12px; color: var(--text-secondary);
}
.policy-article .market-impact strong { color: var(--gold-light); }

.policy-sidebar-header {
  padding: 16px; border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}
.regulation-item { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.regulation-item .reg-name { font-size: 12px; font-weight: 600; margin-bottom: 3px; }
.regulation-item .reg-sector { font-size: 10px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.regulation-item .reg-impact { font-size: 11px; }
.impact-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 6px; }
.impact-bar .fill { height: 100%; border-radius: 2px; }
.fill-red { background: var(--red); }
.fill-gold { background: var(--gold); }
.fill-green { background: var(--green); }

/* ── ECONOMIC PATTERNS ────────────────────────────────────── */
.economics-section { background: var(--bg-base); }

.econ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.econ-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; cursor: pointer; transition: all 0.2s ease;
}
.econ-card:hover { border-color: var(--border-bright); background: var(--bg-card-hover); }
.econ-card .icon { font-size: 24px; margin-bottom: 12px; }
.econ-card .econ-label { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.econ-card .econ-val { font-family: var(--font-mono); font-size: 28px; font-weight: 600; margin-bottom: 4px; }
.econ-card .econ-trend { font-size: 12px; display: flex; align-items: center; gap: 4px; }

.econ-analysis { display: grid; grid-template-columns: 3fr 2fr; gap: 24px; }
.analysis-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.analysis-block h4 { font-family: var(--font-serif); font-size: 16px; margin-bottom: 12px; }
.analysis-block p  { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.analysis-block .opportunity-box {
  margin-top: 16px; padding: 14px; background: var(--bg-elevated);
  border: 1px solid var(--gold-pale); border-radius: var(--radius-sm);
  font-size: 13px;
}
.analysis-block .opportunity-box .label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 6px; }

.rate-viz { margin-top: 16px; }
.rate-bar-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rate-bar-label { font-size: 12px; color: var(--text-secondary); width: 80px; flex-shrink: 0; }
.rate-bar-outer { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rate-bar-fill  { height: 100%; border-radius: 3px; background: var(--gold-gradient); }
.rate-bar-val   { font-family: var(--font-mono); font-size: 12px; color: var(--gold-light); width: 45px; text-align: right; }

/* ── SOCIAL / INFLUENCER TRENDS ───────────────────────────── */
.trends-section { background: linear-gradient(180deg, #07090f 0%, #0b0f1a 100%); }

.trends-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.trend-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; cursor: pointer; transition: all 0.2s ease; position: relative; overflow: hidden;
}
.trend-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.trend-card.hot::before { background: linear-gradient(90deg, var(--red), var(--gold)); }
.trend-card.rising::before { background: var(--green); }
.trend-card.watch::before { background: var(--cyan); }

.trend-card:hover { background: var(--bg-card-hover); transform: translateY(-2px); }
.trend-card .platform { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; }
.trend-card .trend-name { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.trend-card .trend-stats { display: flex; gap: 16px; margin-bottom: 12px; }
.trend-card .trend-stat .val { font-family: var(--font-mono); font-size: 14px; font-weight: 600; }
.trend-card .trend-stat .lbl { font-size: 10px; color: var(--text-muted); }
.trend-card .opportunity { font-size: 12px; color: var(--text-secondary); line-height: 1.5; padding-top: 12px; border-top: 1px solid var(--border); }
.trend-card .opportunity strong { color: var(--gold-light); }

/* ── LUXURY 1% SECTION ────────────────────────────────────── */
.luxury-section {
  background: linear-gradient(135deg, #070710 0%, #0c0c20 50%, #07090f 100%);
  position: relative; overflow: hidden;
}
.luxury-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4920a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.luxury-header { text-align: center; margin-bottom: 48px; position: relative; }
.luxury-crown { font-size: 36px; margin-bottom: 12px; }
.luxury-header h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: 0.02em; }
.luxury-header h2 em { font-style: italic; color: var(--gold-light); }
.luxury-header p { color: var(--text-secondary); font-size: 15px; max-width: 480px; margin: 12px auto 0; }

.luxury-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; position: relative; }

.luxury-card {
  background: linear-gradient(135deg, #0f1520, #0d1320);
  border: 1px solid #2a2040; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; transition: all 0.3s ease;
}
.luxury-card:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-glow); transform: translateY(-3px); }

.luxury-card-img {
  height: 200px; background: linear-gradient(135deg, #1a1030, #0d0c20);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
  position: relative; overflow: hidden;
}
.luxury-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, rgba(13,19,32,0.9));
}
.luxury-card-body { padding: 20px; }
.luxury-category { font-size: 9px; font-weight: 800; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.luxury-card h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.luxury-card p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.luxury-card .price-tag { margin-top: 14px; font-family: var(--font-mono); font-size: 14px; color: var(--gold-light); }

.luxury-card.featured-card {
  grid-column: span 1;
  border-color: #3a2040; background: linear-gradient(135deg, #120d24, #0e0b1e);
}

/* ── ADVERTISE / MEDIA PACKAGES ───────────────────────────── */
.advertise-section {
  background: linear-gradient(135deg, #050812 0%, #08101e 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

.advertise-hero {
  text-align: center; padding: 60px 24px; max-width: 720px; margin: 0 auto;
}
.advertise-hero .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.advertise-hero h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; line-height: 1.15; }
.advertise-hero p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }

.package-grid { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 20px; margin-top: 32px; }

.package-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden;
}
.package-card.featured-package {
  background: linear-gradient(135deg, #0f1a2e, #0c1525);
  border-color: var(--gold); box-shadow: var(--shadow-glow);
}
.featured-package::before {
  content: 'MOST POPULAR'; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold-gradient); color: #000;
  padding: 4px 16px; font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  border-radius: 0 0 8px 8px;
}

.package-name { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.package-price { font-family: var(--font-serif); font-size: 38px; font-weight: 800; margin-bottom: 4px; }
.package-price span { font-size: 16px; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; }
.package-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.package-features { list-style: none; margin-bottom: 24px; }
.package-features li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; }
.package-features li::before { content: '✓'; color: var(--gold-light); font-weight: 700; flex-shrink: 0; }
.featured-package .package-features li { color: var(--text-primary); }

/* ── NETWORK STRIP ────────────────────────────────────────── */
.network-strip {
  background: var(--bg-surface); border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.network-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 24px; gap: 24px;
}
.network-stat { text-align: center; }
.network-stat .val { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--gold-light); }
.network-stat .lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 2px; }
.network-divider { width: 1px; height: 40px; background: var(--border); }

/* ── SIDEBAR WIDGETS ──────────────────────────────────────── */
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 20px;
}
.widget-header {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; justify-content: space-between;
}
.widget-header a { font-size: 10px; color: var(--gold-light); text-transform: none; letter-spacing: 0; }
.widget-body { padding: 16px; }

.mover-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mover-item:last-child { border-bottom: none; }
.mover-item .sym { font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.mover-item .name-s { font-size: 11px; color: var(--text-muted); }
.mover-item .chg { font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.mover-item .chg.up   { color: var(--green); }
.mover-item .chg.down { color: var(--red); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #04060b; border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1400px; margin: 0 auto; padding: 0 24px; margin-bottom: 48px;
}
.footer-brand .logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-brand .tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; max-width: 260px; line-height: 1.6; }
.footer-brand .social-links { display: flex; gap: 10px; }
.social-link { width: 32px; height: 32px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.15s; cursor: pointer; }
.social-link:hover { border-color: var(--gold); color: var(--gold-light); }

.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--text-secondary); transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1400px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom .legal { font-size: 11px; color: var(--text-muted); }
.footer-bottom .disclaimer { font-size: 10px; color: var(--text-muted); max-width: 500px; line-height: 1.5; }

/* ── MINI CHARTS (canvas) ─────────────────────────────────── */
canvas.spark-canvas { display: block; }

/* ── CRYPTO TICKERS ───────────────────────────────────────── */
.crypto-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 30px; font-size: 12px; font-family: var(--font-mono);
  transition: all 0.15s; cursor: pointer;
}
.crypto-pill:hover { border-color: var(--gold-pale); }
.crypto-pill .sym { font-weight: 600; color: var(--text-primary); }
.crypto-pill .price { color: var(--text-secondary); }
.crypto-pill .chg { font-size: 11px; }
.crypto-pill .chg.up { color: var(--green); }
.crypto-pill .chg.down { color: var(--red); }

.crypto-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }

/* ── MOBILE NAV ───────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); border: 1px solid var(--border);
  cursor: pointer; flex-shrink: 0;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-secondary); transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: calc(var(--ticker-height) + var(--nav-height));
  left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(7,9,15,0.98); backdrop-filter: blur(20px);
  flex-direction: column; padding: 24px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mobile-link {
  padding: 16px 0; font-size: 20px; font-family: var(--font-serif); font-weight: 600;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-menu .mobile-link:hover { color: var(--gold-light); }
.mobile-menu .mobile-cta { margin-top: 28px; }
.mobile-menu .mobile-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-top: 20px;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 56px 0 40px; border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0b0f1a 0%, var(--bg-base) 100%);
}
.page-hero .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(28px, 5vw, 52px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.page-hero p  { font-size: 16px; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }

/* ── DATA TABLE FULL ──────────────────────────────────────── */
.data-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 24px;
}
.data-card-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 700;
}
.data-card-header .title { display: flex; align-items: center; gap: 8px; }

/* ── STAT GRID ────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-block {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
}
.stat-block .label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.stat-block .value { font-family: var(--font-serif); font-size: 30px; font-weight: 800; line-height: 1; }
.stat-block .sub   { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; text-align: center;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gold-gradient);
  margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #000; font-family: var(--font-serif);
}
.team-card .name  { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.team-card .role  { font-size: 12px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card .bio   { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
}
.value-card .icon  { font-size: 28px; margin-bottom: 12px; }
.value-card h4     { font-family: var(--font-serif); font-size: 17px; margin-bottom: 8px; }
.value-card p      { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--border));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold); border: 2px solid var(--bg-base);
}
.timeline-item .year { font-family: var(--font-mono); font-size: 11px; color: var(--gold-light); font-weight: 700; margin-bottom: 4px; }
.timeline-item h4 { font-family: var(--font-serif); font-size: 16px; margin-bottom: 4px; }
.timeline-item p  { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 300px; }
  .econ-grid  { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .package-card.featured-package { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .hero-stories { grid-template-columns: 1fr 1fr; }
  .main-content-grid { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr 1fr; }
  .luxury-grid { grid-template-columns: 1fr 1fr; }
  .wide-content-grid { grid-template-columns: 1fr; }
  .trends-grid { grid-template-columns: 1fr 1fr; }
  .econ-analysis { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .market-status { display: none; }
  .nav-time { display: none; }
}

@media (max-width: 640px) {
  .hero-stories { grid-template-columns: 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .luxury-grid { grid-template-columns: 1fr; }
  .trends-grid { grid-template-columns: 1fr; }
  .econ-grid { grid-template-columns: 1fr 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .featured-package { grid-column: span 1; }
  .market-strip-inner { overflow-x: auto; }
  .market-card { min-width: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .network-strip-inner { flex-wrap: wrap; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .news-card-wide { grid-template-columns: 1fr; }
  .news-card-wide .news-card-img { min-height: 160px; }
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease forwards; }

.number-flash { animation: flash 0.3s ease; }
@keyframes flash {
  0%   { color: var(--gold-light); }
  100% { color: inherit; }
}
