:root {
  --bg: #eef3f9;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --surface-strong: #f8fbff;
  --border: #d5e0ee;
  --border-strong: #c4d5ea;
  --text: #102133;
  --muted: #5f7288;
  --accent: #1463e3;
  --accent-dark: #0d4597;
  --navy: #0f1f33;
  --ink-inverse: #f6f9fd;
  --hero-border: rgba(255, 255, 255, 0.14);
  --success: #16835f;
  --warning: #b97710;
  --danger: #c53a3a;
  --shadow: 0 22px 60px rgba(15, 31, 51, 0.09);
  --shadow-soft: 0 12px 32px rgba(15, 31, 51, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

body {
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

section[id] {
  scroll-margin-top: 116px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 20px 84px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 12px;
  z-index: 20;
  margin-bottom: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(213, 224, 238, 0.9);
  border-radius: 22px;
  background: rgba(248, 251, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.topbar-right {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 14px;
  border: 1px solid rgba(213, 224, 238, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.topbar-meta-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 99, 227, 0.1);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.topbar-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 131, 95, 0.12);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(20, 99, 227, 0.24);
}

.brand-name {
  font-size: 21px;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.topnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 6px;
  border: 1px solid rgba(213, 224, 238, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.topnav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.topnav a:hover {
  background: #edf4ff;
  color: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.topnav a.is-active {
  background: linear-gradient(135deg, rgba(20, 99, 227, 0.16), rgba(20, 99, 227, 0.06));
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 227, 0.12);
}

.nav-logout {
  border: 1px solid rgba(197, 211, 230, 0.95);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--danger);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.nav-logout:hover {
  border-color: rgba(197, 58, 58, 0.38);
  background: rgba(197, 58, 58, 0.08);
}

.price-ticker {
  overflow: hidden;
  margin: -4px 0 18px;
  border: 1px solid rgba(205, 168, 72, 0.38);
  border-radius: 8px;
  background: #111923;
  box-shadow: var(--shadow-soft);
}

.price-ticker-track {
  display: inline-flex;
  min-width: 100%;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  color: #f3c852;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 11px 16px;
  animation: ticker-scroll 38s linear infinite;
}

.price-ticker-track span {
  display: inline-flex;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.command-ribbon {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 20px;
  margin-bottom: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(205, 219, 236, 0.98);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.command-ribbon::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), #77acff);
}

.command-ribbon-copy {
  padding-left: 8px;
}

.command-ribbon h2 {
  max-width: 720px;
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.command-summary {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.command-metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.command-metric {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(205, 219, 236, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.command-metric-label,
.section-header h2,
.panel h2 {
  color: var(--navy);
}

.command-metric-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.command-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.command-metric-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.command-metric-live strong {
  color: var(--accent-dark);
}

.command-metric-alert strong {
  color: var(--danger);
}

.command-metric-success strong {
  color: var(--success);
}

.masthead-band {
  margin-bottom: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.98) 100%);
}

.signal-strip,
.department-grid {
  display: grid;
  gap: 14px;
}

.signal-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
}

.signal-card,
.department-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--surface-strong) 0%, rgba(244, 248, 252, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.signal-card {
  padding: 16px 18px 18px;
}

.signal-card::before,
.department-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #77acff);
}

.signal-card strong,
.department-card strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.signal-card p,
.department-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.desk-band-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 18px;
}

.department-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 16px;
}

.department-card {
  padding: 18px;
}

.department-card strong {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.department-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.department-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 99, 227, 0.08);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.department-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 131, 95, 0.12);
}

.department-metric {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel,
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.88fr);
  gap: 32px;
  padding: 42px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(103, 166, 255, 0.4), transparent 26%),
    radial-gradient(circle at bottom left, rgba(20, 99, 227, 0.18), transparent 30%),
    linear-gradient(135deg, #0b1728 0%, #112641 54%, #173862 100%);
  border-color: rgba(14, 36, 67, 0.52);
  box-shadow: 0 28px 80px rgba(10, 24, 45, 0.2);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-copy h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.panel h2 {
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy,
.hero-panel .side-rail {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
}

.hero-panel .eyebrow,
.hero-panel .section-kicker {
  color: rgba(246, 249, 253, 0.72);
}

.hero-text,
.meta-line,
.small-text {
  color: var(--muted);
}

.hero-panel .hero-text,
.hero-panel .meta-line,
.hero-panel .small-text {
  color: rgba(246, 249, 253, 0.72);
}

.hero-copy h1 {
  font-size: 54px;
  line-height: 0.98;
  max-width: 820px;
  color: var(--ink-inverse);
  letter-spacing: -0.03em;
}

.hero-text {
  font-size: 18px;
  line-height: 1.72;
  max-width: 680px;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-intelligence-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: start;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(11, 23, 40, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-brief {
  color: rgba(246, 249, 253, 0.9);
  font-size: 15px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 18, 31, 0.28);
  color: rgba(246, 249, 253, 0.9);
}

.hero-meta-chip strong {
  font-size: 12px;
  letter-spacing: 0.01em;
}

.hero-meta-label {
  color: rgba(246, 249, 253, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 30px rgba(20, 99, 227, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-inverse);
  border: 1px solid var(--hero-border);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-pulse {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-pulse-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--hero-border);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-pulse-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-inverse);
  font-size: 19px;
  line-height: 1.25;
}

.hero-pulse-label,
.hero-pulse-meta {
  color: rgba(246, 249, 253, 0.72);
  font-size: 12px;
}

.hero-pulse-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-pulse-meta {
  margin-top: 8px;
  line-height: 1.5;
}

.hero-feature-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 255, 0.95) 100%);
  border: 1px solid rgba(216, 229, 243, 0.9);
  box-shadow: 0 18px 36px rgba(8, 22, 42, 0.16);
}

.hero-panel .side-rail {
  align-content: start;
}

.hero-feature-card h2 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-alert-card {
  background:
    linear-gradient(180deg, rgba(20, 99, 227, 0.12), rgba(255, 255, 255, 0.98)),
    linear-gradient(180deg, rgba(248, 251, 255, 1) 0%, rgba(238, 244, 251, 0.94) 100%);
}

.hero-alert-card .top-alert-card {
  background: rgba(255, 255, 255, 0.74);
}

.lead-body {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 16px;
}

.lead-body p {
  margin: 0 0 12px;
}

.lead-body .rich-heading,
.rich-text .rich-heading {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-body ul,
.lead-body ol,
.rich-text ul,
.rich-text ol {
  margin: 12px 0;
  padding-left: 20px;
}

.lead-body li,
.rich-text li {
  margin: 0 0 8px;
}

.metric-strip {
  margin-top: 16px;
}

.metric-grid,
.summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card,
.summary-card,
.brief-card,
.report-card,
.alert-card,
.post-card,
.issue-card,
.top-alert-card,
.empty-state {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.metric-card,
.summary-card,
.brief-card,
.report-card,
.alert-card,
.post-card,
.issue-card,
.top-alert-card {
  box-shadow: var(--shadow-soft);
}

.metric-card strong,
.summary-card strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--hero-border);
  box-shadow: none;
}

.metric-card .small-text,
.metric-card strong {
  color: var(--ink-inverse);
}

.metric-card .small-text {
  opacity: 0.72;
}

.panel {
  padding: 28px;
  margin-bottom: 20px;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(213, 224, 238, 0.82);
}

.section-summary {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  justify-self: end;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 20px;
  margin-bottom: 20px;
}

.executive-band {
  margin-bottom: 20px;
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.98) 0%, rgba(239, 245, 253, 0.98) 100%);
}

.executive-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.executive-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(197, 211, 230, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.executive-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #73a5ff);
}

.executive-card-market::before {
  background: linear-gradient(90deg, #3559ff, #7f96ff);
}

.executive-card-output::before {
  background: linear-gradient(90deg, #16835f, #5ec49b);
}

.executive-card .small-text {
  display: block;
}

.executive-card strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.executive-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.live-feed-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feed-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.feed-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(197, 211, 230, 0.95);
  border-radius: 999px;
  background: rgba(244, 248, 252, 0.88);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.feed-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 99, 227, 0.28);
  background: #edf4ff;
}

.feed-filter.is-active {
  border-color: rgba(20, 99, 227, 0.32);
  background: linear-gradient(135deg, rgba(20, 99, 227, 0.16), rgba(20, 99, 227, 0.06));
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(20, 99, 227, 0.1);
}

.feed-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  font-size: 11px;
  font-weight: 700;
}

.feed-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
  box-shadow: var(--shadow-soft);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.feed-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #77acff);
}

.feed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 31, 51, 0.1);
  border-color: rgba(20, 99, 227, 0.22);
}

.feed-card-alert::before {
  background: linear-gradient(90deg, #c53a3a, #f08a8a);
}

.feed-card-post::before {
  background: linear-gradient(90deg, #16835f, #5ec49b);
}

.feed-card-issue::before {
  background: linear-gradient(90deg, #b97710, #e5b35b);
}

.feed-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.feed-card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feed-kind {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(20, 99, 227, 0.1);
  color: var(--accent-dark);
}

.feed-kind-alert {
  background: rgba(197, 58, 58, 0.12);
  color: var(--danger);
}

.feed-kind-post {
  background: rgba(22, 131, 95, 0.12);
  color: var(--success);
}

.feed-kind-issue {
  background: rgba(185, 119, 16, 0.12);
  color: var(--warning);
}

.feed-signal {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.feed-signal-priority {
  background: rgba(197, 58, 58, 0.12);
  color: var(--danger);
}

.feed-signal-high {
  background: rgba(20, 99, 227, 0.12);
  color: var(--accent-dark);
}

.feed-signal-live {
  background: rgba(22, 131, 95, 0.12);
  color: var(--success);
}

.feed-signal-background {
  background: rgba(95, 114, 136, 0.14);
  color: var(--muted);
}

.feed-card-priority {
  border-color: rgba(197, 58, 58, 0.2);
  background: linear-gradient(180deg, rgba(255, 250, 250, 0.98) 0%, rgba(255, 244, 244, 0.98) 100%);
}

.feed-card-priority::before {
  background: linear-gradient(90deg, #c53a3a, #f0a35e);
}

.feed-card-high {
  border-color: rgba(20, 99, 227, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 255, 0.98) 100%);
}

.feed-card h3 {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.3;
}

.feed-link {
  margin-top: 14px;
}

.executive-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.executive-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(197, 211, 230, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.executive-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: #edf4ff;
  border-color: rgba(20, 99, 227, 0.28);
}

.secondary-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.side-rail {
  display: grid;
  gap: 18px;
}

.briefing-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.health-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.45fr);
}

.health-stat-grid,
.health-watchlist {
  display: grid;
  gap: 14px;
}

.health-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.health-stat-card,
.watchlist-card {
  border-radius: 20px;
  border: 1px solid rgba(197, 211, 230, 0.95);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.health-stat-card {
  padding: 20px;
}

.health-stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.health-stat-card p,
.watchlist-summary {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.watchlist-card {
  padding: 20px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.watchlist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 31, 51, 0.1);
  border-color: rgba(20, 99, 227, 0.22);
}

.watchlist-card h3 {
  margin: 10px 0 0;
  font-size: 21px;
  line-height: 1.3;
}

.watchlist-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.report-grid,
.alert-grid,
.stack {
  display: grid;
  gap: 14px;
}

.report-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.research-charts,
.research-reports {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.chart-date,
.report-date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.chart-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.chart-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.chart-img {
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(197, 211, 230, 0.9);
}

.chart-caption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.analyst-reports-container {
  display: grid;
  gap: 1.5rem;
}

.analyst-reports-container .report-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 1.5rem;
}

.gold-report {
  border-left: 4px solid #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.045) 0%, var(--surface) 44%);
}

.silver-report {
  border-left: 4px solid #c0c0c0;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.06) 0%, var(--surface) 44%);
}

.report-text {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.report-content {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.report-content h1 {
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.25;
  margin: 0.25rem 0 0.65rem;
}

.report-content h2 {
  border-bottom: 1px solid rgba(185, 119, 16, 0.22);
  color: #8a6500;
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 1.25rem 0 0.55rem;
  padding-bottom: 0.25rem;
}

.report-content h3 {
  color: var(--navy);
  font-size: 1rem;
  margin: 1rem 0 0.45rem;
}

.report-content p {
  margin: 0 0 0.75rem;
}

.report-content strong {
  color: #8a6500;
  font-weight: 900;
}

.report-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.report-content th {
  background: rgba(255, 215, 0, 0.12);
  border-bottom: 2px solid rgba(185, 119, 16, 0.28);
  color: #8a6500;
  font-weight: 900;
  padding: 0.55rem 0.7rem;
  text-align: left;
}

.report-content td {
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0.7rem;
}

.report-content tr:hover td {
  background: rgba(255, 215, 0, 0.035);
}

.report-content ul {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.report-content li {
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.report-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.35rem 0;
}

.report-content em {
  color: var(--muted);
}

.report-content blockquote {
  border-left: 3px solid #ffd700;
  color: var(--muted);
  margin: 1rem 0;
  padding-left: 1rem;
}

.sentiment-bullish,
.sentiment-neutral,
.sentiment-bearish {
  border-radius: 8px;
  font-weight: 900;
  margin-bottom: 1rem;
  padding: 0.65rem 0.8rem;
}

.sentiment-bullish {
  background: rgba(22, 131, 95, 0.11);
  border: 1px solid rgba(22, 131, 95, 0.28);
  color: var(--success);
}

.sentiment-neutral {
  background: rgba(255, 215, 0, 0.13);
  border: 1px solid rgba(185, 119, 16, 0.28);
  color: #8a6500;
}

.sentiment-bearish {
  background: rgba(197, 58, 58, 0.1);
  border: 1px solid rgba(197, 58, 58, 0.28);
  color: var(--danger);
}

.report-rendered h1 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.report-rendered h2 {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  color: #8a6500;
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
  padding-bottom: 0.25rem;
}

.report-rendered h3 {
  font-size: 1rem;
  margin: 1rem 0 0.4rem;
}

.report-rendered p {
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.report-rendered strong {
  color: #8a6500;
}

.report-rendered table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.report-rendered th {
  background: rgba(255, 215, 0, 0.1);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  color: #8a6500;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.report-rendered td {
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
}

.report-rendered ul {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.report-rendered li {
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.report-rendered hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.report-rendered em {
  color: var(--muted);
}

.report-sentiment-line {
  align-items: flex-start;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  margin: 0 0 1rem;
  padding: 0.75rem;
}

.sentiment-copy {
  color: var(--ink);
  flex: 1;
  line-height: 1.65;
}

.sentiment-badge {
  display: inline-block;
  border-radius: 6px;
  font-weight: 900;
  flex: 0 0 auto;
  padding: 0.3rem 0.75rem;
}

.sentiment-badge.bullish {
  background: rgba(22, 131, 95, 0.11);
  border: 1px solid rgba(22, 131, 95, 0.3);
  color: var(--success);
}

.sentiment-badge.neutral {
  background: rgba(255, 215, 0, 0.13);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #8a6500;
}

.sentiment-badge.bearish {
  background: rgba(197, 58, 58, 0.1);
  border: 1px solid rgba(197, 58, 58, 0.3);
  color: var(--danger);
}

.section-header-secondary {
  margin-top: 28px;
}

.x-draft-card p {
  color: var(--ink);
  line-height: 1.55;
}

.draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.intelligence-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.98) 100%);
}

.daily-snapshot-card {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 0 0 22px;
}

.daily-snapshot-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(197, 211, 230, 0.95);
  box-shadow: var(--shadow-soft);
  background: #0d0d1a;
}

.daily-snapshot-card figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.desk-lead {
  margin-bottom: 18px;
}

.desk-lead-card,
.desk-card,
.desk-row-card,
.checklist-row {
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.desk-lead-card {
  padding: 24px;
}

.desk-lead-card h3 {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.16;
  color: var(--navy);
}

.desk-lead-card p,
.desk-card p,
.desk-row-card p,
.desk-review-note {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.desk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-top: 18px;
}

.desk-layout-secondary {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.desk-column-title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--navy);
}

.desk-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desk-card,
.desk-row-card {
  padding: 18px;
}

.locked-teaser h3 {
  margin-top: 10px;
}

.desk-card h3,
.desk-row-card h3 {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.3;
}

.desk-card a,
.desk-row-card a {
  font-weight: 700;
}

.checklist-row {
  padding: 14px 16px;
  color: var(--text);
  line-height: 1.55;
}

.report-card,
.post-card,
.issue-card,
.brief-card,
.alert-card,
.desk-card,
.desk-row-card {
  height: 100%;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.report-card:hover,
.post-card:hover,
.issue-card:hover,
.brief-card:hover,
.alert-card:hover,
.summary-card:hover,
.desk-card:hover,
.desk-row-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 31, 51, 0.1);
  border-color: rgba(20, 99, 227, 0.22);
}

.rich-text {
  margin: 14px 0 0;
  line-height: 1.65;
  color: #17304c;
}

.rich-text p {
  margin: 0 0 12px;
}

.rich-text p:last-child,
.rich-text ul:last-child,
.rich-text ol:last-child {
  margin-bottom: 0;
}

.lead-body a,
.rich-text a {
  font-weight: 600;
}

.lead-body code,
.rich-text code {
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(20, 99, 227, 0.1);
  color: var(--accent-dark);
  font-size: 0.92em;
}

.report-card h3,
.brief-card h3,
.alert-card h3,
.post-card h3,
.issue-card h3,
.top-alert-card h3 {
  font-size: 21px;
  line-height: 1.3;
  margin-top: 6px;
}

.alert-card p,
.top-alert-card p {
  margin: 10px 0 0;
  line-height: 1.6;
  color: var(--muted);
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.mini-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f5f8fc;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.status-chip {
  font-weight: 700;
}

.status-running,
.status-done {
  color: var(--success);
}

.status-idle,
.status-paused,
.status-unknown {
  color: var(--muted);
}

.status-in_progress,
.status-monitor {
  color: var(--warning);
}

.status-error,
.status-blocked {
  color: var(--danger);
}

.empty-state {
  color: var(--muted);
}

.warnings {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.warning-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(197, 58, 58, 0.22);
  background: #fff2f2;
  color: var(--danger);
}

.launch-hero {
  position: relative;
  min-height: min(620px, calc(100vh - 150px));
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 48px;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(10, 18, 29, 0.88) 0%, rgba(10, 18, 29, 0.72) 42%, rgba(10, 18, 29, 0.22) 100%),
    url("/assets/intelligence-desk-hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.launch-hero-content {
  max-width: 720px;
  display: grid;
  gap: 20px;
}

.launch-hero .section-kicker,
.launch-hero .launch-hero-text {
  color: rgba(255, 255, 255, 0.82);
}

.launch-hero h1 {
  max-width: 680px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.launch-hero-text {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.65;
}

.hero-section .launch-hero-content {
  max-width: 820px;
  gap: 14px;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-headline {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.03;
}

.hero-accent {
  color: #ffd76a;
}

.hero-subtext {
  max-width: 720px;
}

.hero-live-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 2px;
}

.hero-price-card {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.gold-price-card {
  border-top: 3px solid #ffd76a;
}

.silver-price-card {
  border-top: 3px solid #d6dde8;
}

.premium-card {
  border-top: 3px solid #6fb0ff;
}

.hero-price-metal {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-price-usd {
  margin-top: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.hero-price-inr {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.hero-price-change {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.hero-price-change.is-up {
  color: #44e192;
}

.hero-price-change.is-down {
  color: #ff7272;
}

.hero-cta-row {
  align-items: center;
}

.hero-btn-primary {
  box-shadow: 0 18px 34px rgba(205, 168, 72, 0.22);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.hero-trust-row span::before {
  content: "✓";
  margin-right: 6px;
  color: #44e192;
}

.hero-disclaimer {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
}

.promo-video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: 22px;
  align-items: center;
  margin: 18px 0;
  padding: 24px;
  border: 1px solid rgba(199, 216, 235, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
  box-shadow: var(--shadow-soft);
}

.promo-video-copy {
  display: grid;
  gap: 10px;
}

.promo-video-copy h2 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.promo-video-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.promo-video-panel {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.promo-video-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.promo-language-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.promo-language-btn,
.promo-fullscreen-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.promo-language-btn {
  min-width: 86px;
  padding: 9px 14px;
}

.promo-language-btn.active {
  border-color: rgba(13, 96, 216, 0.24);
  background: #e9f2ff;
  color: var(--blue);
}

.promo-fullscreen-btn {
  padding: 10px 16px;
  border-color: var(--border);
  background: #fff;
}

.promo-video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(13, 96, 216, 0.22);
  border-radius: 8px;
  background: #0b1220;
  box-shadow: 0 18px 42px rgba(15, 42, 74, 0.16);
}

.promo-video-frame:fullscreen {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #050914;
}

.promo-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #0b1220;
  object-fit: contain;
}

.promo-video-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .promo-video-section {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .promo-video-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .promo-language-toggle {
    width: 100%;
  }

  .promo-language-btn {
    flex: 1;
    min-width: 0;
  }

  .promo-fullscreen-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .promo-video-section {
    margin-right: -6px;
    margin-left: -6px;
    padding: 14px;
  }

  .promo-video-copy h2 {
    font-size: 24px;
  }

  .promo-video-copy p:not(.section-kicker) {
    font-size: 14px;
  }

  .promo-video-frame {
    border-radius: 6px;
  }
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin-top: 6px;
}

.launch-proof-item {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.launch-proof-item strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.launch-proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.launch-band {
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.intelligence-showcase {
  margin: 18px 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.showcase-header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  text-align: center;
}

.showcase-header h2 {
  color: var(--navy);
  font-size: 24px;
}

.showcase-sub {
  color: var(--muted);
  font-size: 14px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.showcase-item {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-strong);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.showcase-item:hover {
  border-color: rgba(205, 168, 72, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.showcase-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 99, 227, 0.14), rgba(205, 168, 72, 0.16));
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.showcase-name {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.showcase-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.launch-layout {
  align-items: start;
}

.pricing-grid,
.launch-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-item {
  min-height: 100%;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.benefit-item span {
  color: var(--success);
  font-weight: 900;
}

.pricing-card,
.launch-post-card,
.sample-brief-card {
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-strong);
}

.pricing-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
}

.pricing-card h3,
.launch-post-card h3,
.sample-brief-card h3 {
  color: var(--navy);
  letter-spacing: 0;
}

.pricing-card strong {
  display: block;
  font-size: 30px;
  line-height: 1.05;
  color: var(--accent-dark);
}

.pricing-card p {
  color: var(--muted);
}

.pricing-card-featured {
  border-color: rgba(20, 99, 227, 0.5);
  background: #eef5ff;
}

.home-pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.home-pricing-cta .button {
  min-width: 220px;
}

.sample-brief-list {
  display: grid;
  gap: 12px;
}

.sample-brief-card {
  padding: 18px;
}

.sample-brief-card p {
  margin-top: 10px;
  color: var(--muted);
}

.sample-brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-honeypot {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
}

.lead-status.is-success {
  color: var(--success);
}

.lead-status.is-error {
  color: var(--danger);
}

.member-access-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(240px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.login-panel {
  min-height: 100%;
}

.member-form,
.member-status-panel {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-strong);
}

.auth-card {
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-strong);
}

.auth-field {
  display: grid;
  gap: 7px;
}

.auth-field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.auth-field input {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.auth-message {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
}

.auth-message.is-success {
  color: var(--success);
}

.auth-message.is-error {
  color: var(--danger);
}

.auth-links {
  font-size: 13px;
  font-weight: 700;
}

.member-form h3,
.member-status-panel h3 {
  color: var(--navy);
  letter-spacing: 0;
}

.member-status-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

.member-status-panel p:not(.section-kicker) {
  color: var(--muted);
}

.link-button {
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.link-button:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-google,
.btn-twitter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-google {
  border: 1px solid #d6dbe6;
  background: #fff;
  color: #263243;
}

.btn-google:hover {
  background: #f7f9fc;
  border-color: #bec7d8;
}

.btn-twitter {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

.btn-twitter svg {
  fill: currentColor;
}

.btn-twitter:hover {
  background: #333;
  border-color: #333;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.inline-action-button {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-left: 10px;
  border: 1px solid rgba(22, 131, 95, 0.28);
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
  color: var(--success);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.inline-action-button:hover {
  border-color: var(--success);
}

.muted-copy {
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.member-dashboard {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.96) 100%);
  box-shadow: var(--shadow-soft);
}

.member-dashboard[hidden] {
  display: none;
}

.member-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.member-dashboard-header h3 {
  margin-top: 2px;
  color: var(--navy);
  word-break: break-word;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(205, 168, 72, 0.45);
  border-radius: 999px;
  background: #fff8dc;
  color: #7a5a00;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-badge-free {
  border-color: var(--border-strong);
  background: var(--surface-soft);
  color: var(--muted);
}

.plan-badge-member,
.plan-badge-pro {
  border-color: rgba(205, 168, 72, 0.55);
  background: #fff8dc;
  color: #7a5a00;
}

.plan-badge-owner {
  border-color: rgba(205, 168, 72, 0.82);
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #07111f;
  font-weight: 900;
}

.member-alert {
  padding: 12px 14px;
  border: 1px solid rgba(185, 119, 16, 0.34);
  border-radius: 8px;
  background: rgba(255, 248, 220, 0.88);
  color: #7a4c00;
  font-weight: 700;
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.change-password-panel {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
}

.member-dashboard-section {
  display: grid;
  gap: 12px;
}

.member-report-grid {
  display: grid;
  gap: 14px;
}

.member-reports-with-charts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.member-report-actions {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
}

.export-note {
  color: var(--muted);
  font-size: 13px;
}

.report-video-panel {
  background: linear-gradient(135deg, #07101f, #111827);
  border: 1px solid rgba(205, 168, 72, 0.38);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 31, 51, 0.14);
  color: #f8fafc;
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 16px;
}

.report-video-pending {
  background: #fffaf0;
  color: var(--navy);
}

.report-video-header {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.report-video-header h4 {
  color: inherit;
  font-size: 18px;
  margin: 4px 0;
}

.report-video-header p {
  color: rgba(226, 232, 240, 0.78);
  font-size: 13px;
  margin: 0;
}

.report-video-pending p {
  color: var(--muted);
}

.report-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.report-video-player {
  aspect-ratio: 16 / 9;
  background: #050914;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: block;
  width: 100%;
}

.report-video-status {
  color: rgba(226, 232, 240, 0.72);
  font-size: 12px;
  margin: -4px 0 0;
}

.report-video-status.is-success {
  color: #9ae6b4;
}

.report-video-status.is-error {
  color: #fecaca;
}

.member-report-card {
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.research-pro-report {
  border-left: 4px solid #cda848;
}

.report-card-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.report-card-header h3 {
  margin: 0;
}

.report-date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.inline-charts-row {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  padding-top: 24px;
}

.inline-chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.inline-chart-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.inline-chart-img {
  border: 1px solid rgba(197, 211, 230, 0.9);
  border-radius: 6px;
  display: block;
  width: 100%;
}

.member-chart-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.member-chart-card {
  padding: 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.member-chart-card img {
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(197, 211, 230, 0.9);
}

.member-chart-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fear-greed-card,
.nifty-card,
.seasonal-card,
.earnings-card,
.warehouse-card,
.options-card,
.premium-card {
  display: grid;
  gap: 14px;
}

.fg-gauge-row {
  align-items: center;
  display: flex;
  gap: 16px;
}

.fg-score {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.fg-label {
  font-size: 16px;
  font-weight: 800;
}

.fg-context,
.nifty-context,
.nifty-portfolio,
.seasonal-text,
.module-disclaimer,
.earnings-disclaimer {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.fg-bar-outer {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  height: 13px;
  overflow: hidden;
}

.fg-bar-fill {
  display: block;
  height: 100%;
  transition: width 0.4s ease;
}

.fg-labels-row {
  color: var(--muted);
  display: flex;
  font-size: 11px;
  gap: 8px;
  justify-content: space-between;
}

.fg-components {
  display: grid;
  gap: 8px;
}

.fg-component {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 110px 1fr 44px;
}

.fg-comp-name,
.fg-comp-val {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.fg-comp-bar {
  background: var(--surface-soft);
  border-radius: 999px;
  display: block;
  height: 7px;
  overflow: hidden;
}

.fg-comp-bar span {
  background: #cda848;
  border-radius: inherit;
  display: block;
  height: 100%;
}

.fg-disclaimer,
.module-disclaimer,
.earnings-disclaimer,
.nifty-portfolio {
  font-style: italic;
}

.nifty-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nifty-stat {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 150px;
  padding: 12px;
}

.nifty-val {
  color: #9b781d;
  font-size: 22px;
  font-weight: 900;
}

.nifty-label,
.seasonal-metal,
.company-ticker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seasonal-month {
  color: #9b781d;
  font-size: 18px;
  font-weight: 900;
}

.seasonal-item,
.company-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.seasonal-events {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.seasonal-event {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-name {
  color: #9b781d;
  font-weight: 800;
}

.event-days,
.event-impact {
  color: var(--muted);
  font-size: 12px;
}

.earnings-summary {
  background: rgba(205, 168, 72, 0.08);
  border: 1px solid rgba(205, 168, 72, 0.2);
  border-radius: 8px;
  color: var(--muted);
  padding: 12px;
}

.earnings-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.warehouse-grid,
.premium-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.warehouse-metal-card,
.premium-metal,
.options-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface-soft);
}

.warehouse-metal-name,
.premium-title,
.options-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.warehouse-metric {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.warehouse-metric span,
.premium-metal span {
  color: var(--muted);
  font-size: 0.84rem;
}

.warehouse-source-note {
  background: rgba(191, 146, 46, .1);
  border: 1px solid rgba(191, 146, 46, .22);
  border-radius: 8px;
  color: #7a5b00;
  font-size: .78rem;
  line-height: 1.5;
  margin: .55rem 0;
  padding: .55rem .65rem;
}

.warehouse-summary {
  color: var(--ink);
  font-weight: 700;
  margin: 0;
}

.options-ratio-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.options-ratio {
  color: var(--accent-strong);
  font-size: 2rem;
  font-weight: 900;
}

.options-signal {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: capitalize;
}

.premium-metal strong {
  color: var(--ink);
  display: block;
  font-size: 1.1rem;
  margin: 6px 0;
}

.premium-explainer {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 14px 0 0;
}

.company-price {
  font-size: 18px;
  font-weight: 900;
  margin-top: 4px;
}

.company-change {
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.company-signal {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .report-video-header {
    align-items: stretch;
    flex-direction: column;
  }

  .report-video-actions {
    justify-content: stretch;
  }

  .report-video-actions .button {
    flex: 1;
    justify-content: center;
    min-width: 145px;
  }

  .inline-charts-row {
    grid-template-columns: 1fr;
  }

  .earnings-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-grid,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .fg-component {
    grid-template-columns: 1fr;
  }
}

.member-section {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}

.member-section h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0;
}

.referral-code-box {
  align-items: end;
  background: #fff8dc;
  border: 1px solid rgba(205, 168, 72, .35);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.4fr .8fr;
  margin-bottom: 18px;
  padding: 18px;
}

.referral-code-box h3 {
  color: var(--navy);
  margin: 0 0 4px;
}

.referral-code-box label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.referral-code-box input {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  padding: 12px;
  text-transform: uppercase;
}

.silver-sticky-bar {
  background: linear-gradient(90deg, #172033, #27354c);
  border-top: 1px solid rgba(205, 168, 72, .35);
  bottom: 0;
  box-shadow: 0 -8px 28px rgba(23, 32, 51, .18);
  left: 0;
  padding: 10px 18px;
  position: fixed;
  right: 0;
  z-index: 900;
}

.silver-sticky-content {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 12px;
  margin: 0 auto;
  max-width: 1180px;
}

.silver-sticky-text {
  flex: 1;
  font-size: 14px;
}

.silver-sticky-text strong,
.silver-sticky-value {
  color: #ffd76b;
}

.silver-sticky-btn,
.silver-banner-btn,
.silver-popup-cta {
  background: linear-gradient(135deg, #d8bd62, #fff0a8);
  border: 0;
  border-radius: 8px;
  color: #172033;
  cursor: pointer;
  font-weight: 900;
  padding: 10px 14px;
}

.silver-sticky-close,
.silver-popup-close {
  align-items: center;
  background: rgba(255, 255, 255, .12);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.silver-home-banner,
.silver-join-hero {
  background: linear-gradient(135deg, #fffdf4, #eef3fb);
  border: 1px solid rgba(205, 168, 72, .32);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin: 18px 0;
  padding: 18px;
}

.silver-home-banner {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.silver-banner-left,
.silver-banner-right,
.silver-join-content {
  align-items: center;
  display: flex;
  gap: 14px;
}

.silver-banner-icon,
.silver-trophy {
  font-size: 38px;
}

.silver-banner-text strong,
.silver-join-copy h3 {
  color: var(--navy);
  display: block;
}

.silver-banner-text span,
.silver-join-copy p {
  color: var(--muted);
}

.silver-banner-value {
  color: #8a6500;
  font-weight: 900;
}

.silver-join-badge {
  background: #172033;
  border-radius: 999px;
  color: #ffd76b;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.silver-join-copy h3 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.silver-join-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.silver-join-stat {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.silver-join-stat strong {
  color: #8a6500;
  display: block;
  font-size: 1.1rem;
}

.silver-join-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.silver-popup-overlay {
  align-items: center;
  background: rgba(9, 16, 30, .68);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow-y: auto;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  position: fixed;
  touch-action: manipulation;
  z-index: 1200;
}

.silver-popup-overlay[hidden] {
  display: none;
}

.silver-popup-card {
  background: linear-gradient(145deg, #182238, #263552);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
  color: #fff;
  max-height: calc(100dvh - max(40px, env(safe-area-inset-top)) - max(40px, env(safe-area-inset-bottom)));
  max-width: 440px;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  overscroll-behavior: contain;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  width: min(100%, 440px);
}

.silver-popup-close {
  align-items: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .22);
  color: #fff;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  min-height: 42px;
  min-width: 42px;
  position: sticky;
  right: 0;
  top: 0;
  width: 42px;
  z-index: 2;
}

.silver-popup-close:hover {
  background: rgba(255, 255, 255, .24);
}

.silver-popup-badge {
  background: rgba(255, 215, 107, .14);
  border: 1px solid rgba(255, 215, 107, .32);
  border-radius: 999px;
  color: #ffd76b;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 5px 10px;
  text-transform: uppercase;
}

.silver-coin-animation {
  margin: 18px auto 8px;
}

.silver-coin {
  align-items: center;
  background: radial-gradient(circle at 35% 35%, #fff, #cfd6df 42%, #858f9c);
  border: 3px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(255, 255, 255, .18);
  display: inline-flex;
  font-size: 42px;
  height: 86px;
  justify-content: center;
  width: 86px;
}

.silver-popup-title {
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 12px 0;
}

.silver-highlight,
.silver-popup-subtitle strong,
.value-number {
  color: #ffd76b;
}

.silver-popup-subtitle {
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.silver-popup-steps {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  text-align: left;
}

.silver-step {
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 10px;
}

.silver-step-num {
  align-items: center;
  background: #d8bd62;
  border-radius: 999px;
  color: #172033;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.silver-popup-value-bar {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  margin: 18px 0;
  padding: 12px;
}

.value-item {
  display: grid;
  gap: 3px;
}

.value-label {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  text-transform: uppercase;
}

.value-divider {
  background: rgba(255, 255, 255, .14);
  width: 1px;
}

.silver-popup-cta {
  width: 100%;
}

.silver-popup-note,
.silver-popup-disclaimer {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.5;
}

.silver-popup-note a {
  color: #ffd76b;
}

.silver-popup-disclaimer a {
  color: #c0c0c0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.referral-section {
  background: #fffdf5;
  border: 1px solid rgba(205, 168, 72, .35);
  border-radius: 8px;
  padding: 16px;
}

.referral-progress-card {
  display: grid;
  gap: 12px;
}

.referral-count {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.referral-progress {
  background: #eee5c8;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.referral-progress-fill {
  background: linear-gradient(90deg, #cda848, #8a6500);
  height: 100%;
  transition: width .25s ease;
}

.referral-link-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.referral-link-row code {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  display: block;
  font-size: 13px;
  overflow-x: auto;
  padding: 11px;
  white-space: nowrap;
}

.referral-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.referral-terms-link {
  border-bottom: 1px dotted rgba(17, 24, 39, .25);
  color: var(--muted);
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  margin-top: .4rem;
  text-decoration: none;
}

.referral-terms-link:hover {
  color: #8a6500;
}

.referral-terms-row {
  margin-top: .75rem;
  text-align: center;
}

.referral-two-sided-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.referral-two-sided-grid > div {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  padding: 12px;
}

.referral-two-sided-grid strong,
.referral-two-sided-grid span {
  display: block;
}

.referral-two-sided-grid strong {
  color: #ffd700;
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.referral-two-sided-grid span {
  color: rgba(248, 251, 255, .76);
  font-size: 12px;
  line-height: 1.45;
}

.referral-two-sided-grid-compact > div {
  background: #fffaf0;
  border-color: rgba(205, 168, 72, .35);
}

.referral-two-sided-grid-compact strong {
  color: #8a6500;
}

.referral-two-sided-grid-compact span {
  color: var(--muted);
}

.share-btn {
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  flex: 1;
  font-weight: 900;
  min-width: 150px;
  padding: 10px 12px;
}

.whatsapp-share {
  background: #128c7e;
}

.x-share {
  background: #111827;
}

.pricing-quarterly {
  background: rgba(200, 168, 72, .08);
  border: 1px solid rgba(200, 168, 72, .28);
  border-radius: 10px;
  margin: 14px 0;
  padding: 16px;
  text-align: center;
}

.pricing-quarterly-main {
  align-items: baseline;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.pricing-amount {
  color: var(--blue);
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-per {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.pricing-quarterly-sub {
  color: #0f9f6e;
  font-size: .86rem;
  font-weight: 900;
  margin-top: 5px;
}

.pricing-quarterly-how {
  color: var(--muted);
  font-size: .78rem;
  margin-top: 3px;
}

.founding-urgency-mini {
  background: rgba(255, 248, 225, .8);
  border: 1px solid rgba(205, 168, 72, .36);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  margin: 12px 0;
  padding: 10px 12px;
}

.founding-urgency-row {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .78rem;
  gap: 5px;
}

.founding-urgency-row strong {
  color: #8a6500;
}

.quarterly-explainer {
  background: #fffdf7;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  margin: 12px 0 14px;
  padding: 13px;
}

.qe-title {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qe-step {
  align-items: center;
  color: var(--text);
  display: flex;
  font-size: .82rem;
  gap: 8px;
}

.qe-num {
  align-items: center;
  background: linear-gradient(135deg, #c0c0c0, #ffd766);
  border-radius: 50%;
  color: #172033;
  display: inline-flex;
  flex: 0 0 22px;
  font-size: .72rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
}

.qe-locked {
  border-top: 1px solid var(--border);
  color: #0f9f6e;
  font-size: .8rem;
  font-weight: 900;
  margin-top: 4px;
  padding-top: 8px;
}

.popup-quarterly-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, .18), rgba(255, 255, 255, .08));
  border: 1px solid rgba(255, 215, 0, .32);
  border-radius: 10px;
  margin: 12px 0;
  padding: 14px;
  text-align: center;
}

.popup-qh-main {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: 900;
}

.popup-qh-sub {
  color: #5ff3a5;
  font-size: .88rem;
  font-weight: 900;
}

.popup-qh-note {
  color: rgba(255, 255, 255, .66);
  font-size: .76rem;
  margin-top: 3px;
}

.billing-card {
  display: grid;
  gap: 12px;
}

.founding-badge-banner,
.pro-free-banner {
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 900;
  padding: 12px;
  text-align: center;
}

.founding-badge-banner {
  background: rgba(255, 248, 225, .84);
  border: 1px solid rgba(205, 168, 72, .45);
  color: #8a6500;
}

.pro-free-banner {
  background: rgba(15, 159, 110, .08);
  border: 1px solid rgba(15, 159, 110, .24);
  color: #0f7a55;
}

.billing-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.billing-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.billing-label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.billing-value {
  color: var(--navy);
  font-weight: 900;
}

.founding-rate {
  color: #8a6500;
}

.rate-locked,
.covers-note {
  color: var(--muted);
  display: block;
  font-size: .72rem;
  font-weight: 700;
  margin-top: 3px;
}

.billing-savings {
  background: rgba(15, 159, 110, .08);
  border: 1px solid rgba(15, 159, 110, .2);
  border-radius: 8px;
  color: #0f7a55;
  font-size: .84rem;
  font-weight: 900;
  padding: 11px;
  text-align: center;
}

.billing-terms-link {
  font-size: .78rem;
  text-align: center;
}

.billing-terms-link a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.billing-terms-link a:hover {
  color: #8a6500;
}

@media (max-width: 760px) {
  .silver-popup-overlay {
    align-items: flex-start;
    padding: max(14px, env(safe-area-inset-top)) 12px max(14px, env(safe-area-inset-bottom));
  }

  .silver-home-banner,
  .silver-banner-left,
  .silver-banner-right,
  .silver-join-content,
  .silver-sticky-content {
    align-items: stretch;
    flex-direction: column;
  }

  .silver-sticky-content {
    gap: 8px;
  }

  .silver-join-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .referral-code-box,
  .referral-link-row {
    grid-template-columns: 1fr;
  }

  .silver-popup-card {
    border-radius: 14px;
    max-height: calc(100dvh - max(28px, env(safe-area-inset-top)) - max(28px, env(safe-area-inset-bottom)));
    padding: 10px 16px 18px;
    width: 100%;
  }

  .silver-popup-close {
    float: right;
    margin: 0 0 4px 8px;
    position: sticky;
    top: 0;
  }

  .silver-popup-badge {
    clear: both;
    margin-top: 2px;
  }

  .silver-coin-animation {
    margin: 10px auto 4px;
  }

  .silver-coin {
    font-size: 32px;
    height: 64px;
    width: 64px;
  }

  .silver-popup-title {
    font-size: 1.38rem;
    margin: 8px 0;
  }

  .silver-popup-subtitle,
  .silver-step,
  .popup-qh-note {
    font-size: 13px;
  }

  .silver-popup-steps {
    margin: 12px 0;
  }

  .silver-popup-value-bar {
    margin: 12px 0;
    padding: 10px;
  }
}

@media (max-width: 430px), (max-height: 760px) {
  .silver-popup-overlay {
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .silver-popup-card {
    max-height: calc(100dvh - 20px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .silver-popup-disclaimer {
    font-size: 11px;
  }
}

.etf-summary-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.etf-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.etf-unavailable {
  background: #fff8df;
  border: 1px solid rgba(212, 175, 55, .45);
  border-radius: 8px;
  color: var(--navy);
  line-height: 1.55;
  padding: 1rem;
}

.etf-unavailable p {
  color: var(--muted);
  margin: .35rem 0 0;
}

.etf-unavailable a {
  color: #8a6a14;
  font-weight: 800;
}

.gold-etf-summary {
  border-top: 3px solid #d4af37;
}

.silver-etf-summary {
  border-top: 3px solid #b8bcc4;
}

.etf-summary-title {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.etf-summary-signal {
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.45;
}

.etf-detail-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: .75rem;
}

.etf-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 112px;
  padding: .875rem;
  text-align: center;
}

.etf-detail-name {
  color: #9b781d;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: .35rem;
}

.etf-detail-price {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.etf-detail-signal {
  font-size: .76rem;
  line-height: 1.4;
}

.etf-footer {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
  margin-top: .5rem;
}

.context-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.context-card {
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.context-icon {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff8dc;
  color: #7a5a00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.context-title {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.context-body {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.context-body a {
  color: var(--accent);
  font-weight: 700;
}

.context-note {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  margin-top: 8px;
}

.watchlist-grid {
  display: grid;
  gap: 12px;
}

.watchlist-item {
  padding: 16px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.watchlist-metal {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.watchlist-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.watchlist-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  margin-top: 8px;
}

.glossary-details {
  border-radius: 8px;
  overflow: hidden;
}

.glossary-details summary {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  box-shadow: var(--shadow-soft);
}

.glossary-details summary::-webkit-details-marker {
  display: none;
}

.glossary-details[open] summary {
  border-radius: 8px 8px 0 0;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: var(--surface);
}

.glossary-item {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.glossary-item strong {
  display: block;
  color: #7a5a00;
  margin-bottom: 3px;
}

.launch-post-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.launch-post-card textarea {
  width: 100%;
  min-height: 148px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
}

.copy-post-button {
  justify-self: start;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px 14px;
  background: #fff;
  color: var(--accent-dark);
  font-weight: 700;
  cursor: pointer;
}

.copy-post-button:hover {
  border-color: var(--accent);
}

@media (max-width: 1120px) {
  .command-ribbon,
  .signal-strip,
  .hero-panel,
  .hero-intelligence-band,
  .executive-grid,
  .live-feed-grid,
  .content-layout,
  .desk-layout,
  .health-layout,
  .secondary-layout,
  .briefing-grid,
  .report-grid,
  .pricing-grid,
  .benefit-grid,
  .launch-post-grid,
  .hero-live-prices,
  .launch-proof-strip {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-pulse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .department-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .health-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding: 28px 20px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-price-card,
  .showcase-item {
    min-height: auto;
  }

  .hero-trust-row {
    display: grid;
    gap: 8px;
  }

  .topbar,
  .topbar-right {
    justify-items: start;
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
  }

  .section-summary {
    max-width: none;
    text-align: left;
  }

  .site-shell {
    padding: 16px 14px 56px;
  }

  .desk-band-header {
    display: grid;
  }

  .topbar {
    padding: 14px;
  }

  .topnav {
    border-radius: 20px;
  }

  .topbar-meta {
    flex-wrap: wrap;
    width: 100%;
    border-radius: 20px;
  }

  .topbar-status {
    width: 100%;
    justify-content: center;
  }

  .price-ticker-track {
    animation-duration: 26s;
  }

  .command-ribbon {
    padding: 22px;
  }

  .command-ribbon h2 {
    font-size: 30px;
  }

  .command-metrics {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .panel,
  .launch-band {
    padding: 22px;
  }

  .launch-hero {
    min-height: 560px;
    padding: 28px 22px;
    background-position: 58% center;
  }

  .launch-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .launch-hero-text {
    font-size: 17px;
  }

  .launch-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-intelligence-band {
    padding: 16px;
  }

  .hero-meta {
    justify-content: flex-start;
  }

  .hero-pulse {
    grid-template-columns: 1fr;
  }

  .live-feed-grid,
  .desk-card-grid,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .feed-toolbar {
    gap: 8px;
  }

  .feed-filter {
    width: 100%;
    justify-content: space-between;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .health-stat-grid,
  .watchlist-meta {
    grid-template-columns: 1fr;
  }

  .chart-gallery-grid {
    grid-template-columns: 1fr;
  }

  .member-access-grid,
  .member-chart-gallery,
  .etf-summary-cards,
  .etf-detail-row,
  .context-cards-grid,
  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .member-dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .watchlist-meta {
    display: grid;
    justify-content: stretch;
  }
}
/* ============================================================
   NOTIFICATIONS PANEL — append to end of styles.css
   ============================================================ */

.notif-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  vertical-align: middle;
  line-height: 1;
}

.notifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.notif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.notif-card:hover {
  box-shadow: var(--shadow-soft);
}

.notif-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
}

.notif-card.notif-success::before { background: var(--success); }
.notif-card.notif-warning::before { background: var(--warning); }
.notif-card.notif-alert::before   { background: var(--danger); }
.notif-card.notif-pending::before { background: var(--border-strong); }
.notif-card.notif-publish::before { background: var(--accent); }

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.notif-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.notif-status-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.notif-status-success {
  background: rgba(22, 131, 95, 0.12);
  color: var(--success);
}

.notif-status-warning {
  background: rgba(185, 119, 16, 0.12);
  color: var(--warning);
}

.notif-status-alert {
  background: rgba(197, 58, 58, 0.12);
  color: var(--danger);
}

.notif-status-pending {
  background: var(--surface-soft);
  color: var(--muted);
}

.notif-status-publish {
  background: rgba(20, 99, 227, 0.1);
  color: var(--accent);
}

.notif-message {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notif-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.notif-meta {
  font-size: 12px;
  color: var(--muted);
}

.notif-agent {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(20, 99, 227, 0.08);
  padding: 2px 8px;
  border-radius: 10px;
}

.notif-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.notif-link:hover {
  text-decoration: underline;
}

.notif-score {
  font-size: 12px;
  font-weight: 700;
  color: var(--danger);
}

.notif-refresh-note {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.site-footer-links a {
  font-weight: 700;
}

.legal-page {
  max-width: 980px;
}

.legal-panel {
  display: grid;
  gap: 18px;
}

.legal-panel h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-copy {
  display: grid;
  gap: 14px;
  max-width: 780px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

/* Clean public tab shell */
.tab-section[hidden],
#reset-password[hidden],
#admin-login-form[hidden],
#admin-dashboard-content[hidden] {
  display: none !important;
}

.clean-hero {
  min-height: min(560px, calc(100vh - 168px));
  align-items: center;
}

.launch-band .button-secondary,
.member-form .button-secondary,
.member-dashboard .button-secondary,
.brief-paywall .button-secondary,
.form-actions .button-secondary,
.pricing-card .button-secondary {
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--accent-dark);
}

.snapshot-section {
  padding: 18px;
}

.daily-snapshot-card {
  display: grid;
  gap: 10px;
  margin: 0;
}

.daily-snapshot-card img {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(197, 211, 230, 0.9);
  border-radius: 12px;
  background: #101820;
  box-shadow: var(--shadow-soft);
}

.daily-snapshot-card figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.live-price-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.global-markets-section {
  margin: 2rem 0 0;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.section-header-row h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin: 0;
}

.data-source-note {
  color: var(--muted);
  font-size: 0.75rem;
  font-style: italic;
}

.global-markets-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.market-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-soft);
}

.market-comex {
  border-top: 3px solid #4488ff;
}

.market-london {
  border-top: 3px solid #aa88ff;
}

.market-europe {
  border-top: 3px solid #4488aa;
}

.market-shanghai {
  border-top: 3px solid #ff8844;
}

.market-india {
  border-top: 3px solid #ffd700;
}

.market-name {
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.market-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.ml {
  color: var(--muted);
}

.mv {
  font-weight: 800;
  text-align: right;
}

.gold-text {
  color: #8a6500;
}

.silver-text {
  color: #747b85;
}

.market-note {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.7rem;
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.4rem;
}

.macro-indicators-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.macro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.macro-card strong {
  color: var(--navy);
  display: block;
  font-size: 20px;
  margin: 8px 0 6px;
}

.macro-summary {
  color: var(--muted);
  font-size: 13px;
  grid-column: 1 / -1;
  line-height: 1.5;
  margin: 0;
}

.other-metals-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.other-metals-label {
  color: var(--muted);
  font-weight: 900;
}

.other-metal-price,
.loading-text {
  color: var(--muted);
}

.loading-text {
  font-size: 0.9rem;
}

.brief-header-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.brief-live-badge {
  width: fit-content;
  border-radius: 999px;
  background: rgba(22, 131, 95, 0.12);
  color: var(--success);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.price-board-card,
.health-stat-card,
.member-lock-panel,
.brief-teaser-card {
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.price-board-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.price-board-card strong {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.price-board-card p {
  color: var(--muted);
  font-size: 13px;
}

.price-move {
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.price-move-up {
  background: rgba(22, 131, 95, 0.12);
  color: var(--success);
}

.price-move-down {
  background: rgba(197, 58, 58, 0.12);
  color: var(--danger);
}

.price-move-flat {
  background: var(--surface-soft);
  color: var(--muted);
}

.brief-teaser-card {
  padding: 20px;
}

.member-preview-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.brief-teaser-card p,
.brief-paywall p,
.member-lock-panel p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.brief-paywall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.brief-disclaimer {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 16px 0 0;
  text-align: center;
}

.member-lock-panel {
  padding: 22px;
}

.member-lock-panel .form-actions {
  margin-top: 16px;
}

.health-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.health-stat-card {
  padding: 18px;
}

.health-stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
}

.health-watchlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.report-text {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  color: var(--text);
  font: inherit;
  line-height: 1.65;
}

.gold-report {
  border-left: 5px solid #d4a017;
}

.silver-report {
  border-left: 5px solid #aab4c2;
}

@media (max-width: 1120px) {
  .live-price-board,
  .global-markets-grid,
  .macro-indicators-grid,
  .health-stat-grid,
  .health-watchlist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .live-price-board,
  .global-markets-grid,
  .macro-indicators-grid,
  .health-stat-grid,
  .health-watchlist {
    grid-template-columns: 1fr;
  }
}

/* Private owner admin dashboard */
.admin-login-card {
  max-width: 440px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.stat-card {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-strong);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.gold-stat {
  border-color: rgba(205, 168, 72, 0.75);
  background: #fff8dc;
}

.stat-number {
  color: #8a6500;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-section {
  margin-bottom: 30px;
}

.admin-section-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.admin-section h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.admin-composer-section {
  border: 1px solid rgba(205, 168, 72, .35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(205, 168, 72, .08), rgba(255, 255, 255, .8));
  padding: 16px;
}

.admin-tweet-composer-frame {
  width: 100%;
  height: min(1100px, 82vh);
  min-height: 760px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0a0a0a;
  box-shadow: var(--shadow-soft);
}

.admin-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table tr:hover td {
  background: rgba(20, 99, 227, 0.035);
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.referral-reward-grid {
  display: grid;
  gap: 14px;
}

.referral-reward-card {
  background: #fffdf5;
  border: 1px solid rgba(205, 168, 72, .35);
  border-left: 4px solid #cda848;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  padding: 16px;
}

.referral-reward-card.reward-sent {
  border-left-color: #16a34a;
  opacity: .82;
}

.referral-reward-card.reward-pending {
  border-left-color: #cda848;
}

.referral-reward-card strong {
  color: var(--navy);
}

.referral-reward-card p {
  color: var(--muted);
  margin: 0;
}

.reward-sent-info {
  color: #166534;
  font-size: 13px;
  font-weight: 800;
}

.tweet-queue-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.reddit-post-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.reddit-post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.reddit-post-card h4 {
  color: var(--navy);
  font-size: 16px;
  margin: 10px 0;
}

.reddit-post-body {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
  white-space: pre-wrap;
}

.analytics-reminder {
  background: rgba(20, 99, 227, 0.04);
  border: 1px solid rgba(20, 99, 227, 0.16);
  border-radius: 8px;
  padding: 16px;
}

.credit-info-bar {
  align-items: center;
  background: rgba(205, 168, 72, 0.08);
  border: 1px solid rgba(205, 168, 72, 0.24);
  border-radius: 8px;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 8px 16px;
  justify-content: space-between;
  margin: 10px 0 12px;
  padding: 10px 14px;
}

.credit-note {
  color: var(--muted);
  font-weight: 700;
}

.credit-note-text {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 12px;
}

.credit-note-text a,
.admin-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.font-bold {
  font-weight: 900;
}

.credit-input {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 38px;
  padding: 8px 10px;
}

#perf-tweet-id {
  width: 220px;
}

#perf-impressions,
#perf-clicks {
  width: 120px;
}

#perf-likes,
#perf-retweets {
  width: 80px;
}

.performance-add-form {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 16px;
}

.performance-add-form h4 {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 10px;
}

.perf-form-grid {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tweet-admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.tweet-card-topline,
.tweet-meta-row {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px;
  justify-content: space-between;
}

.tweet-description {
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  margin: 8px 0 10px;
}

.tweet-admin-text {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  margin: 12px 0;
}

.empty-row {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.mono-text {
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 12px;
}

.gold-text {
  color: #8a6500;
  font-weight: 900;
}

.plan-badge-sm,
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-badge-sm.member_brief {
  border: 1px solid rgba(205, 168, 72, 0.55);
  background: #fff8dc;
  color: #8a6500;
}

.plan-badge-sm.research_pro {
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #f1f5f9;
  color: #475569;
}

.plan-badge-sm.free,
.status-badge {
  border: 1px solid var(--border-strong);
  background: var(--surface-soft);
  color: var(--muted);
}

.status-dot.active {
  color: var(--success);
  font-weight: 900;
}

.status-dot.inactive {
  color: var(--danger);
  font-weight: 900;
}

.btn-sm {
  min-height: 36px;
  padding: 0 13px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-header {
    display: grid;
  }
}

@media (max-width: 480px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Market outlook teaser and member factor model */
.outlook-teaser-section {
  margin: 2rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.outlook-teaser-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  background: rgba(255, 215, 0, .05);
  border-bottom: 1px solid var(--border);
}

.outlook-teaser-label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: #8a6500;
  text-transform: uppercase;
}

.outlook-teaser-lock {
  font-size: .75rem;
  color: var(--muted);
}

.outlook-teaser-card {
  padding: 1.25rem;
}

.outlook-signals-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.outlook-signal-item {
  display: flex;
  flex: 1;
  min-width: 110px;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.outlook-metal-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 700;
}

.outlook-badge {
  display: inline-block;
  padding: .32rem .75rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.outlook-signal-divider {
  width: 1px;
  height: 42px;
  background: var(--border);
  flex-shrink: 0;
}

.outlook-factors-summary {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.outlook-positive {
  color: #067647;
}

.outlook-negative {
  color: #b42318;
}

.outlook-neutral {
  color: #8a6500;
}

.outlook-factors-label {
  font-size: .68rem;
  color: var(--muted);
}

.outlook-teaser-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: .8rem;
  background: rgba(205, 168, 72, .07);
  border-radius: 8px;
}

.outlook-teaser-blur-section {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: .75rem;
  border: 1px solid var(--border);
}

.outlook-blur-content {
  padding: 1rem;
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.outlook-blur-item {
  font-size: .85rem;
  color: var(--muted);
  padding: .36rem 0;
  border-bottom: 1px solid var(--border);
}

.outlook-blur-item:last-child {
  border-bottom: 0;
}

.outlook-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(2px);
}

.outlook-unlock-box {
  width: min(320px, calc(100% - 2rem));
  text-align: center;
  padding: 1.25rem;
}

.outlook-unlock-box strong {
  display: block;
  font-size: 1rem;
  color: #8a6500;
  margin-bottom: .4rem;
}

.outlook-unlock-box p {
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 .75rem;
}

.outlook-unlock-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #c8a951, #ffd700);
  color: #10131f;
  padding: .65rem 1rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: .88rem;
}

.outlook-disclaimer {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .5rem;
}

.outlook-date {
  font-size: .72rem;
  color: var(--muted);
  text-align: right;
  margin-top: .5rem;
}

.deep-teaser-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 1.5rem 0;
  overflow: hidden;
}

.deep-teaser-header {
  align-items: center;
  background: rgba(205, 168, 72, .07);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .85rem 1.25rem;
}

.deep-teaser-label {
  color: #8a6500;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.deep-teaser-lock {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.deep-teaser-body {
  padding: 1.25rem;
}

.deep-teaser-score {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .45rem;
}

.deep-teaser-bias {
  font-size: 1.1rem;
  font-weight: 900;
}

.deep-teaser-score-meta,
.deep-teaser-headline,
.deep-teaser-note {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.55;
}

.deep-teaser-headline {
  margin-bottom: 1rem;
}

.deep-teaser-what {
  display: grid;
  gap: .4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.15rem;
}

.deep-teaser-layer {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  padding: .48rem .65rem;
}

.deep-teaser-layer.blurred {
  color: transparent;
  filter: blur(3px);
  pointer-events: none;
  position: relative;
  user-select: none;
}

.deep-teaser-layer.blurred::after {
  color: var(--muted);
  content: "Members only";
  filter: none;
  left: .65rem;
  position: absolute;
  top: .48rem;
}

.deep-teaser-cta {
  background: linear-gradient(135deg, #c8a951, #ffdc73);
  border: 0;
  border-radius: 999px;
  color: #07111f;
  cursor: pointer;
  font-weight: 900;
  margin-bottom: .65rem;
  padding: .85rem 1.1rem;
  width: 100%;
}

.breaking-signals-section {
  border-color: rgba(20, 99, 227, .18);
}

.breaking-title-high {
  color: #c22727;
}

.breaking-title-medium {
  color: #b36b00;
}

.breaking-summary {
  background: rgba(20, 99, 227, .05);
  border: 1px solid rgba(20, 99, 227, .14);
  border-radius: 8px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
  margin-bottom: .75rem;
  padding: .875rem;
}

.breaking-summary.high-alert {
  background: rgba(194, 39, 39, .08);
  border-color: rgba(194, 39, 39, .28);
  color: #9f1f1f;
  font-weight: 800;
}

.breaking-summary.med-alert {
  background: rgba(179, 107, 0, .08);
  border-color: rgba(179, 107, 0, .26);
  color: #8a5200;
  font-weight: 800;
}

.breaking-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: .6rem;
  padding: .9rem;
}

.breaking-card.high {
  background: rgba(194, 39, 39, .04);
  border-left: 4px solid #c22727;
}

.breaking-card.medium {
  border-left: 4px solid #b36b00;
}

.breaking-source {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: .72rem;
  font-weight: 800;
  gap: .75rem;
  justify-content: space-between;
  margin-bottom: .4rem;
}

.breaking-level-badge {
  background: rgba(194, 39, 39, .1);
  border: 1px solid rgba(194, 39, 39, .22);
  border-radius: 999px;
  color: #9f1f1f;
  font-size: .68rem;
  font-weight: 900;
  padding: .15rem .5rem;
}

.breaking-title-text {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: .45rem;
}

.breaking-meta {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
  margin-bottom: .45rem;
}

.breaking-news-detail {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(191, 146, 46, .24);
  border-radius: 8px;
  color: var(--navy);
  font-size: .82rem;
  line-height: 1.6;
  margin: .55rem 0;
  padding: .65rem .75rem;
}

.breaking-gold,
.breaking-india {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.55;
  margin-top: .3rem;
}

.breaking-gold {
  color: #8a6500;
}

.breaking-source-link {
  color: var(--blue);
  display: inline-block;
  font-size: .8rem;
  font-weight: 900;
  margin-top: .55rem;
  text-decoration: none;
}

.breaking-source-link:hover {
  text-decoration: underline;
}

.breaking-disclaimer {
  color: var(--muted);
  font-size: .72rem;
  font-style: italic;
  line-height: 1.5;
  margin-top: .55rem;
}

.deep-analysis-section {
  background: linear-gradient(145deg, rgba(205, 168, 72, .05), var(--surface));
  border: 1px solid rgba(205, 168, 72, .24);
  border-radius: 12px;
  padding: 1rem;
}

.deep-verdict {
  border: 2px solid;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem;
  text-align: center;
}

.deep-verdict-label,
.deep-section-label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .55rem;
  text-transform: uppercase;
}

.deep-verdict-bias {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.2;
}

.deep-verdict-score {
  color: var(--muted);
  font-size: .82rem;
  margin: .35rem 0 .55rem;
}

.deep-headline {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.5;
}

.deep-synthesis {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.deep-synthesis-text {
  color: var(--text);
  font-size: .88rem;
  line-height: 1.75;
}

.deep-scores {
  margin-bottom: 1rem;
}

.deep-scores-grid {
  display: grid;
  gap: .5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deep-score-item {
  align-items: center;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  padding: .55rem .7rem;
}

.deep-score-name {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.deep-score-val {
  font-size: .78rem;
  font-weight: 900;
  text-align: right;
}

.deep-layer-tabs {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deep-layer-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem;
}

.deep-layer-header {
  align-items: center;
  display: flex;
  gap: .5rem;
  margin-bottom: .55rem;
}

.deep-layer-code {
  background: rgba(205, 168, 72, .16);
  border-radius: 5px;
  color: #8a6500;
  font-size: .68rem;
  font-weight: 900;
  padding: .16rem .45rem;
}

.deep-layer-name {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
}

.deep-layer-text {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}

.deep-sources-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1rem 0 .75rem;
}

.deep-sources-badge {
  background: rgba(20, 99, 227, .07);
  border: 1px solid rgba(20, 99, 227, .16);
  border-radius: 999px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  padding: .28rem .65rem;
}

.deep-disclaimer {
  color: var(--muted);
  font-size: .72rem;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .deep-teaser-header,
  .deep-teaser-score {
    align-items: flex-start;
    flex-direction: column;
  }

  .deep-teaser-what,
  .deep-scores-grid,
  .deep-layer-tabs {
    grid-template-columns: 1fr;
  }

  .deep-score-item {
    align-items: flex-start;
    flex-direction: column;
  }
}

.outlook-full-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.outlook-verdict {
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}

.outlook-verdict-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
  margin-bottom: .4rem;
}

.outlook-verdict-value {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: .3rem;
}

.outlook-verdict-score {
  font-size: .8rem;
  opacity: .75;
  margin-bottom: .75rem;
}

.outlook-verdict-summary {
  font-size: .85rem;
  line-height: 1.6;
  opacity: .9;
  max-width: 68ch;
  margin: 0 auto;
}

.outlook-silver-card {
  background: rgba(192, 192, 192, .07);
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 10px;
  padding: 1rem;
}

.outlook-silver-label {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .35rem;
  font-weight: 700;
}

.outlook-silver-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: .3rem;
}

.outlook-silver-note {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.outlook-factors-title {
  font-size: .9rem;
  margin: 0 0 .75rem;
  color: var(--muted);
  font-weight: 700;
}

.outlook-factors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.outlook-factor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .875rem;
}

.factor-header {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: center;
  margin-bottom: .4rem;
}

.factor-name {
  font-size: .8rem;
  font-weight: 800;
}

.factor-signal {
  font-size: .76rem;
  font-weight: 800;
  text-transform: capitalize;
  text-align: right;
}

.factor-reason {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
}

.outlook-methodology {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .875rem;
}

.outlook-methodology summary {
  cursor: pointer;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 800;
}

.outlook-methodology p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: .75rem;
}

.outlook-full-disclaimer {
  font-size: .75rem;
  color: var(--muted);
  background: rgba(205, 168, 72, .06);
  border: 1px solid rgba(205, 168, 72, .18);
  border-radius: 8px;
  padding: .875rem;
  line-height: 1.6;
}

.teaser-bias-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  flex-wrap: wrap;
}

.teaser-bias-label {
  font-size: .8rem;
  color: var(--muted);
}

.teaser-bias-value {
  font-size: .9rem;
}

.teaser-bias-lock {
  font-size: .75rem;
  color: var(--muted);
  margin-left: auto;
}

.pattern-bias-section {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
}

.pattern-bias-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: .4rem;
}

.pattern-bias-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #CDA848;
  margin-bottom: .5rem;
}

.pattern-bias-text {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.scenarios-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.scenario-card {
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.primary-scenario {
  border-top: 3px solid #00AA55;
  background: rgba(0, 170, 85, .05);
}

.alternate-scenario {
  border-top: 3px solid #D14343;
  background: rgba(209, 67, 67, .05);
}

.scenario-label {
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.primary-scenario .scenario-label {
  color: #007A3D;
}

.alternate-scenario .scenario-label {
  color: #B42318;
}

.scenario-text {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

.india-outlook-card {
  background: rgba(205, 168, 72, .06);
  border: 1px solid rgba(205, 168, 72, .22);
  border-radius: 10px;
  padding: 1.25rem;
}

.india-outlook-label {
  font-size: .78rem;
  font-weight: 800;
  color: #8A6D18;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.india-outlook-text {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

.catalysts-title {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 800;
  margin: 0 0 .75rem;
}

.catalysts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.catalyst-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .875rem;
}

.catalyst-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .4rem;
}

.catalyst-name {
  font-size: .82rem;
  font-weight: 700;
}

.catalyst-impact {
  font-size: .68rem;
  font-weight: 900;
  padding: .15rem .5rem;
  border-radius: 4px;
  letter-spacing: .06em;
}

.impact-high {
  background: rgba(209, 67, 67, .12);
  color: #B42318;
}

.impact-medium {
  background: rgba(205, 168, 72, .16);
  color: #8A6D18;
}

.impact-low {
  background: rgba(0, 170, 85, .12);
  color: #007A3D;
}

.catalyst-direction {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .3rem;
  line-height: 1.5;
}

.catalyst-why {
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .outlook-teaser-header,
  .outlook-signals-row {
    align-items: stretch;
    flex-direction: column;
  }

  .outlook-signal-divider {
    display: none;
  }

  .outlook-factors-grid {
    grid-template-columns: 1fr;
  }

  .scenarios-section,
  .catalysts-grid {
    grid-template-columns: 1fr;
  }
}

/* Join pricing cleanup - 20260606c */
#section-join .tab-content {
  display: grid;
  gap: 28px;
}

#section-join .silver-join-hero {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(205, 168, 72, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 215, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #0f1f33 0%, #162942 58%, #213650 100%);
  color: #f8fbff;
  box-shadow: var(--shadow);
}

#section-join .silver-join-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.13);
  color: #ffd700;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

#section-join .silver-join-content {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

#section-join .silver-join-left {
  display: grid;
  place-items: center;
}

#section-join .silver-trophy {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, #ffffff 0%, #e9eef6 34%, #aebccc 100%);
  color: #32445b;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.03em;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

#section-join .silver-join-right h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 12px;
}

#section-join .silver-join-right p {
  max-width: 760px;
  color: rgba(248, 251, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

#section-join .silver-join-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

#section-join .sjs {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

#section-join .sjs strong {
  display: block;
  color: #ffd700;
  font-size: 24px;
  line-height: 1.1;
}

#section-join .sjs span {
  display: block;
  margin-top: 4px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 12px;
}

#section-join .referral-code-entry {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 18px;
}

#section-join .referral-code-entry label {
  color: rgba(248, 251, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

#section-join .referral-code-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 215, 0, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#section-join .referral-code-field::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

#section-join .referral-code-note {
  color: rgba(248, 251, 255, 0.66);
  font-size: 12px;
}

#section-join .pricing-header {
  margin-bottom: 24px;
  text-align: center;
}

#section-join .pricing-header h2 {
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 6px;
}

#section-join .pricing-sub {
  color: var(--muted);
  font-size: 15px;
}

#section-join .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

#section-join .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

#section-join .featured-card {
  border: 2px solid #d7b847;
  box-shadow: 0 20px 55px rgba(205, 168, 72, 0.16);
  transform: translateY(-8px);
}

#section-join .pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c8a951, #ffd700);
  color: #0f1f33;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

#section-join .pricing-tier {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#section-join .pricing-name {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}

#section-join .pricing-price {
  color: var(--accent-dark);
  font-size: 34px;
  font-weight: 950;
  line-height: 1.08;
}

#section-join .member-card .pricing-price {
  color: #9f7b00;
}

#section-join .pricing-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

#section-join .pricing-desc {
  min-height: 38px;
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

#section-join .pricing-features {
  flex: 1;
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

#section-join .pricing-features li {
  padding: 8px 0;
  border-top: 1px solid rgba(213, 224, 238, 0.75);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

#section-join .pricing-btn {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#section-join .free-btn {
  background: #eef5ff;
  color: var(--accent-dark);
  border-color: rgba(20, 99, 227, 0.22);
}

#section-join .free-btn:hover {
  border-color: var(--accent);
}

#section-join .member-btn {
  background: linear-gradient(135deg, #c8a951, #ffd700);
  color: #0f1f33;
  box-shadow: 0 12px 28px rgba(205, 168, 72, 0.24);
}

#section-join .member-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(205, 168, 72, 0.32);
}

#section-join .pro-btn {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

#section-join .pro-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

#section-join .pricing-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

#section-join .pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 13px;
}

#section-join .join-features-section {
  margin: 4px 0 0;
}

#section-join .join-features-section h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 22px;
  text-align: center;
}

#section-join .join-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

#section-join .join-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

#section-join .jf-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(20, 99, 227, 0.12), rgba(205, 168, 72, 0.16));
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 950;
}

#section-join .jf-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

#section-join .jf-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 14px;
}

#section-join .founder-form-section {
  padding: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface-strong);
  text-align: center;
}

#section-join .founder-form-section h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 6px;
}

#section-join .founder-lead-sub {
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
}

#section-join .founder-form-card {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}

#section-join .founder-input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

#section-join .founder-input:focus {
  outline: 2px solid rgba(205, 168, 72, 0.45);
  border-color: #c8a951;
}

#section-join .founder-textarea {
  resize: vertical;
}

#section-join .founder-disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  #section-join .silver-join-content,
  #section-join .pricing-grid {
    grid-template-columns: 1fr;
  }

  #section-join .silver-join-left {
    justify-content: start;
  }

  #section-join .featured-card {
    transform: none;
  }
}

@media (max-width: 760px) {
  .admin-tweet-composer-frame {
    height: 82vh;
    min-height: 720px;
  }

  #section-join .silver-join-hero {
    padding: 22px;
  }

  #section-join .silver-join-stats,
  #section-join .join-features-grid,
  .referral-two-sided-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  #section-join .silver-join-stats,
  #section-join .join-features-grid,
  .referral-two-sided-grid,
  .billing-grid {
    grid-template-columns: 1fr;
  }

  #section-join .pricing-card,
  #section-join .founder-form-section {
    padding: 22px 18px;
  }
}

.pub-dash {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 42px;
}

.pub-hero,
.pub-section,
.pub-join-box {
  margin-bottom: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.pub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 24px;
}

.pub-kicker,
.pub-sec-title {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pub-hero h1 {
  max-width: 720px;
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.pub-hero-copy {
  max-width: 720px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.pub-hero-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}

.pub-hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pub-breaking {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(210, 55, 55, .35);
  border-radius: 9px;
  background: rgba(210, 55, 55, .08);
  color: #9f1515;
  font-size: 13px;
  font-weight: 850;
}

.pub-price-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.pub-price-card,
.pub-market-card,
.pub-co-card,
.pub-macro-card,
.pub-india-card {
  min-width: 0;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  background: var(--surface-strong);
}

.pub-price-card {
  padding: 15px;
}

.gold-card { border-top: 3px solid #c8a951; }
.silver-card { border-top: 3px solid #9ba7b7; }
.prem-card { border-top: 3px solid #0c9f66; }
.ratio-card { border-top: 3px solid #1463e3; }

.ppc-flag {
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}

.ppc-name {
  margin: 4px 0 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.ppc-usd {
  color: var(--navy);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.1;
}

.ppc-inr,
.ppc-chg,
.pmc-sub,
.pcc-label,
.pmc-note,
.pub-co-note,
.pub-macro-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.ppc-inr {
  margin-top: 5px;
}

.ppc-chg {
  margin-top: 8px;
  font-weight: 800;
}

.pub-positive { color: #07844d; font-weight: 900; }
.pub-negative { color: #bd2424; font-weight: 900; }
.pub-neutral { color: #9b7415; font-weight: 900; }

.pub-section,
.pub-join-box {
  padding: 18px;
}

.pub-sec-title {
  margin-bottom: 14px;
}

.pub-markets-grid,
.pub-co-grid,
.pub-macro-grid,
.pub-india-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pub-market-card,
.pub-co-card,
.pub-macro-card,
.pub-india-card {
  padding: 14px;
}

.pmc-flag,
.pcc-name,
.pmc-label,
.pic-title {
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pmc-val,
.pcc-price,
.pmc-value {
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 950;
}

.pub-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pub-chart-wrap {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface-strong);
}

.pub-chart-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #101828;
}

.pub-chart-label {
  padding: 10px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.pub-signal-box {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 14px;
}

.pub-signal-left,
.pub-signal-right,
.pub-brief-box {
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface-strong);
  padding: 16px;
}

.pub-signal-bias {
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.pub-signal-score {
  margin-top: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.pub-signal-note,
.pub-brief-date,
.pub-brief-footer,
.pub-article-body,
.pic-body,
.pjb-sub,
.pjb-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pub-locked-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.pub-locked-items,
.pjb-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.pub-locked-items span,
.pjb-feat {
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.pub-unlock-btn,
.pub-brief-cta,
.pub-read-more,
.pjb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1463e3;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.pub-brief-text {
  margin: 8px 0 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.pub-brief-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.pub-co-note,
.pub-macro-note {
  margin-top: 12px;
  font-style: italic;
}

.pic-total {
  display: inline-block;
  margin-top: 6px;
  color: var(--navy);
  font-weight: 950;
}

.pub-fg-score {
  margin-top: 4px;
  font-size: 28px;
  line-height: 1;
}

.pub-fg-label {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 900;
}

.pub-fg-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.pub-article-title {
  color: var(--navy);
  font-size: 20px;
  font-weight: 950;
}

.pub-article-body {
  margin: 10px 0 14px;
  max-width: 860px;
}

.pub-join-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 246, 216, .9), rgba(235, 245, 255, .95));
}

.pjb-title {
  color: var(--navy);
  font-size: 26px;
  font-weight: 950;
}

.pjb-sub {
  max-width: 760px;
  margin: 8px auto 16px;
}

.pjb-features {
  max-width: 840px;
  margin: 0 auto 18px;
  text-align: left;
}

.pjb-note {
  margin-top: 10px;
}

.pub-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 0;
}

.pub-footer-links a {
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .pub-hero,
  .pub-signal-box {
    grid-template-columns: 1fr;
  }

  .pub-hero-actions {
    justify-content: flex-start;
  }

  .pub-price-bar,
  .pub-markets-grid,
  .pub-co-grid,
  .pub-macro-grid,
  .pub-india-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pub-dash {
    padding: 12px 8px 36px;
  }

  .pub-hero,
  .pub-section,
  .pub-join-box {
    padding: 16px;
    border-radius: 9px;
  }

  .pub-hero-actions,
  .pub-brief-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .pub-charts-grid,
  .pub-locked-items,
  .pjb-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .pub-price-bar,
  .pub-markets-grid,
  .pub-co-grid,
  .pub-macro-grid,
  .pub-india-grid {
    grid-template-columns: 1fr;
  }

  .ppc-usd,
  .pmc-val,
  .pcc-price,
  .pmc-value {
    font-size: 20px;
  }
}

.report-refresh-indicator {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(12, 33, 66, 0.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.report-refresh-indicator.is-breaking {
  border-color: rgba(205, 168, 72, 0.55);
  background: rgba(255, 221, 103, 0.14);
  color: #7a5300;
}

.report-refresh-indicator.is-muted {
  color: var(--muted);
}
