/* The Mom Views — full-page AI Research polish */

body.tmv-fullpage {
  min-height: 100vh;
  background: #070b12;
}

.tmv-site-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(7, 11, 18, 0.95) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
}

.tmv-site-chrome a {
  color: #e2e8f0;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.tmv-site-chrome a:hover {
  color: #d4af37;
}

.tmv-site-chrome .tmv-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tmv-site-chrome .tmv-chrome-title {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}

.tmv-site-chrome .tmv-chrome-mark {
  color: #d4af37;
}

.tmv-site-chrome .tmv-home {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(17, 24, 39, 0.8);
}

.tmv-disclaimer {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #cbd5e1;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(15, 23, 42, 0.9));
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
}

.tmv-disclaimer strong {
  color: #fde68a;
  font-weight: 700;
}

.tmv-disclaimer-banner {
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.78rem;
}

.tmv-disclaimer-inline {
  margin: 1rem 0 0.25rem;
}

.tmv-disclaimer-report {
  margin: 0 0 1rem;
  border-color: rgba(248, 113, 113, 0.35);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.1), rgba(15, 23, 42, 0.92));
}

body.tmv-fullpage .topbar {
  top: 0;
  position: sticky;
  z-index: 100;
}

body.tmv-fullpage main {
  max-width: min(1680px, 100%);
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem) 4rem;
  margin: 0 auto;
}

body.tmv-fullpage .hero-search {
  border-radius: 18px;
  padding: 2rem clamp(1.25rem, 2.5vw, 2.25rem);
}

body.tmv-fullpage .hero-search h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

body.tmv-fullpage .search-box input[type="text"] {
  font-size: 1.05rem;
  padding: 1rem 1rem 1rem 2.85rem;
}

body.tmv-fullpage .verdict-panel,
body.tmv-fullpage .brief-panel,
body.tmv-fullpage .card {
  border-radius: 16px;
}

body.tmv-fullpage .channel-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

body.tmv-fullpage .llm-key-panel {
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(26, 35, 50, 0.9));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

body.tmv-fullpage .brand h1::after {
  content: " · The Mom Views";
  font-weight: 600;
  font-size: 0.72rem;
  color: #64748b;
  margin-left: 0.35rem;
}

body.tmv-fullpage .report-panel,
body.tmv-fullpage .report-hero,
body.tmv-fullpage .verdict-banner {
  width: 100%;
}

body.tmv-fullpage .verdict-banner {
  grid-template-columns: 1.2fr minmax(220px, 0.8fr);
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
}

body.tmv-fullpage .verdict-word {
  font-size: clamp(3rem, 5vw, 4.75rem);
}

body.tmv-fullpage .llm-key-panel {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
}

body.tmv-fullpage .llm-key-head strong {
  font-size: 1rem;
  color: #f8fafc;
}

body.tmv-fullpage .search-options {
  gap: 0.85rem 1rem;
}

body.tmv-fullpage .topbar {
  padding: 1rem clamp(1rem, 3vw, 2rem);
}

html.tmv-fullpage-root {
  scroll-behavior: smooth;
}

/* Safety net if HTML stripping is bypassed */
body.tmv-fullpage #summary,
body.tmv-fullpage #channels,
body.tmv-fullpage #finance-links,
body.tmv-fullpage #quick-links,
body.tmv-fullpage .cli-grid,
body.tmv-fullpage main > footer,
body.tmv-fullpage .topbar-actions {
  display: none !important;
}

body.tmv-fullpage .brief-links {
  display: none !important;
}

@media (min-width: 1200px) {
  body.tmv-fullpage .summary {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .tmv-site-chrome {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .tmv-site-chrome .tmv-chrome-title {
    order: -1;
    width: 100%;
  }
}
