/* ==========================================================================
   CryptoTradeForecast - Master Design System & Stylesheet
   Theme: Arctic Cyan & Monolith Slate with Refined Cool Grey Palette
   Inspired by High-Precision Quant & Modern Silicon Valley FinTech Platforms
   Compliant with YMYL E-E-A-T Quality Standards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Master Palette - Cool Slate Canvas, Pure White Cards & Monolith Slate-Navy */
  --bg-primary: #F8FAFC;        /* Clean Cool Slate-50 Canvas */
  --bg-secondary: #F1F5F9;      /* Refined Platinum Cool Slate-100 */
  --bg-tertiary: #E2E8F0;       /* Soft Slate-200 Section Sub-surface */
  --bg-light: #F8FAFC;          /* Clean Cool Slate Base */
  --bg-card: #FFFFFF;           /* Crisp Pure White Card Surface */
  --bg-card-subtle: #F1F5F9;     /* Platinum Slate Sub-Card */
  
  --text-main: #0F172A;         /* Deep Monolith Slate-Navy Heading/Body */
  --text-muted: #64748B;        /* Balanced Cool Slate-500 */
  --text-light: #94A3B8;        /* Steel Gray / Slate-400 */
  --text-inverse: #FFFFFF;
  --text-heading: #0F172A;

  --border-light: #E2E8F0;      /* Slate-200 Subtle Border */
  --border-subtle: #CBD5E1;     /* Slate-300 Medium Border */
  --border-dark: #1E293B;       /* Slate-800 Dark Border */

  /* Brand Accents - Electric Arctic Cyan & Sky Blue */
  --brand-primary: #0284C7;     /* Electric Arctic Cyan */
  --brand-hover: #0369A1;       /* Deep Ocean Cyan */
  --brand-light: #F0F9FF;       /* Ice Cyan Pill / Badge Fill */
  --brand-dark: #075985;        /* Deep Azure */
  --brand-accent: #0EA5E9;      /* Sky Blue Accent */
  --brand-tan: #94A3B8;         /* Cool Steel Slate */

  /* Indicators */
  --emerald-growth: #10B981;
  --emerald-bg: #ECFDF5;
  --emerald-border: #A7F3D0;
  
  --crimson-risk: #EF4444;
  --crimson-bg: #FEF2F2;
  --crimson-border: #FECACA;

  --amber-alert: #F59E0B;
  --amber-bg: #FFFBEB;
  --amber-border: #FDE68A;

  /* Typography */
  --font-main: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows with Cool Slate Undertone & Subtle Cyan Accent Glow */
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.10), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.22);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s ease;

  /* Layout */
  --container-width: 1280px;
  --header-height: 74px;
  --ticker-height: 40px;
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-feature-settings: 'cv08' 1, 'cv05' 1, 'calt' 1;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Top Header & Live Crypto Ticker Bar (Beige & Light Brown Theme)
   ========================================================================== */
.top-bar-ticker {
  background-color: #F8FAFC;
  color: #334155;
  font-size: 0.8125rem;
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
  height: var(--ticker-height);
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(2, 132, 199, 0.15);
  color: #0369A1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 1rem;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.ticker-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #16A34A;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.ticker-track-wrapper {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  position: relative;
}

.ticker-track {
  display: inline-flex;
  gap: 2rem;
  animation: tickerSlide 35s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #111827;
  font-weight: 600;
}

.ticker-item .coin-symbol {
  font-weight: 800;
  color: #0B0F19;
}

.ticker-item .coin-price {
  color: #475569;
}

.price-up {
  color: #15803D !important;
  font-weight: 700;
}

.price-down {
  color: #DC2626 !important;
  font-weight: 700;
}

/* ==========================================================================
   Main Navigation Header (Beige & Light Brown Style)
   ========================================================================== */
.main-header {
  background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.22rem;
  color: #133863;
  letter-spacing: -0.015em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 0.5rem;
  text-decoration: none;
}

.brand-logo-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.brand-logo:hover .brand-logo-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 14px rgba(56, 189, 248, 0.45));
}

.brand-logo svg,
.brand-logo-icon svg,
.hero-logo-mark svg {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: block;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-logo span.highlight {
  color: #2F8FE3;
}

.brand-tagline {
  display: block;
  font-size: 0.62rem;
  color: #64748B;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  flex: 1;
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #1E293B;
  font-weight: 600;
  font-size: 0.865rem;
  padding: 0.45rem 0.15rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  letter-spacing: 0.005em;
  transition: color var(--transition-fast);
  cursor: pointer;
}

.nav-link i {
  font-size: 0.8rem;
  color: #64748B;
  transition: color var(--transition-fast);
}

.nav-link .dropdown-chevron {
  font-size: 0.6rem;
  margin-left: 0.2rem;
  color: #64748B;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #0284C7;
}

.nav-link:hover i, .nav-link.active i,
.nav-link:hover .dropdown-chevron, .nav-link.active .dropdown-chevron {
  color: #0284C7;
}

.nav-item-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0284C7;
  border-radius: 2px;
}

/* Dropdown Sub-Menu (Warm Cream & Light Beige Theme) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  padding: 0.5rem 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  color: #111827;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover {
  background: #F0F9FF;
  color: #0B0F19;
}

.dropdown-item i {
  font-size: 0.95rem;
  color: #0284C7;
  margin-top: 3px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-item .item-text {
  display: flex;
  flex-direction: column;
}

.dropdown-item .item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0B0F19;
  line-height: 1.3;
}

.dropdown-item .item-desc {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.3;
  margin-top: 2px;
}

.dropdown-item:hover .item-title {
  color: #0369A1;
}

.dropdown-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 0.4rem 0;
}

.dropdown-header {
  padding: 0.45rem 1.15rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.btn-search-trigger {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #334155;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.btn-search-trigger:hover {
  border-color: #0284C7;
  color: #0B0F19;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
}

.btn-search-trigger kbd {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  background: #F1F5F9;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #0B0F19;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: #0284C7;
  color: #FFFFFF;
  border: 1px solid #CCA34F;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background-color: #0369A1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.45);
}

.btn-secondary {
  background-color: #133863;
  color: #FFFFFF;
  border: 1px solid #1A4B80;
  box-shadow: 0 2px 8px rgba(19, 56, 99, 0.3);
}

.btn-secondary:hover {
  background-color: #1A4B80;
  color: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #0284C7;
  border-color: #0284C7;
}

.btn-outline:hover {
  background-color: #0284C7;
  color: #FFFFFF;
}

.btn-white {
  background-color: #FFFFFF;
  color: #0B0F19;
  border: 1px solid #E2E8F0;
}

.btn-white:hover {
  background-color: #FCFCFC;
  box-shadow: var(--shadow-md);
}



/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0A192F;
  border-left: 1px solid #1E3A8A;
  z-index: 9999;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 35px rgba(0,0,0,0.7);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #111827;
  padding-bottom: 0.85rem;
  margin-bottom: 0.5rem;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--transition-fast);
}

.mobile-drawer-close:hover {
  color: #FFFFFF;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.drawer-category-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748B;
  font-weight: 800;
  margin: 1rem 0 0.4rem;
  padding-left: 0.5rem;
  border-left: 2px solid #0284C7;
}

.mobile-nav-list a {
  color: #CBD5E1;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
  background: rgba(2, 132, 199, 0.15);
  color: #0284C7;
}

.mobile-nav-list a i {
  width: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #0284C7;
}

/* ==========================================================================
   Hero Section (Warm Medium Mocha / Roasted Sand Tone)
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 50% -20%, rgba(2, 132, 199, 0.12) 0%, transparent 70%), linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  color: #0F172A;
  padding: 2.5rem 0 2.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E2E8F0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-center {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-center .hero-description {
  max-width: 620px;
}


.hero-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  vertical-align: -10px;
  margin-right: 0.65rem;
  margin-bottom: 0.2rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hero-logo-mark:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 14px rgba(56, 189, 248, 0.5));
}

.hero-logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 640px) {
  .hero-logo-mark {
    width: 60px;
    height: 60px;
    vertical-align: -12px;
    margin-right: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo-mark {
    width: 66px;
    height: 66px;
    vertical-align: -14px;
    margin-right: 0.95rem;
  }
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: #0284C7;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
}

.hero-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin: 1.5rem auto;
  max-width: 1080px;
  text-align: left;
}

.hero-feature-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.14);
}

.hero-feature-item .hero-feature-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.hero-feature-item i {
  color: #0284C7;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-feature-item strong {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0F172A;
}

.hero-feature-item span {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero-feature-strip {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(2, 132, 199, 0.10);
  border: 1px solid rgba(2, 132, 199, 0.28);
  color: #0284C7;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
  color: #133863;
}

.hero-title .gradient-text { color: #0284C7 !important; background: none !important; -webkit-text-fill-color: #0284C7 !important; font-weight: 800; }

.hero-center .hero-title {
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  white-space: nowrap;
}

@media (max-width: 680px) {
  .hero-center .hero-title {
    font-size: 1.55rem;
    white-space: normal;
  }
}

.hero-description {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  max-width: 540px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid #E2E8F0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-item i {
  color: #0284C7;
  font-size: 0.85rem;
}

.hero-card-preview {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 14px 35px rgba(45, 30, 20, 0.12);
  max-width: 420px;
  margin-left: auto;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #E2E8F0;
}

.hero-card-title-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-card-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0F172A;
}

.market-status-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 4px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@keyframes priceFlashGreen {
  0% { color: #16A34A; transform: scale(1.04); }
  100% { color: #0F172A; transform: scale(1); }
}

@keyframes priceFlashRed {
  0% { color: #DC2626; transform: scale(1.04); }
  100% { color: #0F172A; transform: scale(1); }
}

.price-flash-up {
  animation: priceFlashGreen 0.75s ease-out;
}

.price-flash-down {
  animation: priceFlashRed 0.75s ease-out;
}

.hero-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.hero-card-sublabel {
  font-size: 0.72rem;
  color: #64748B;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  font-weight: 700;
}

.hero-card-price {
  font-size: 1.55rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #0F172A;
  line-height: 1.1;
}

.hero-card-change {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.price-badge-sm {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  background: #ECFDF5;
  color: #15803D !important;
  border: 1px solid #BBF7D0;
}

.hero-card-momentum {
  font-size: 0.68rem;
  color: #64748B;
  font-weight: 600;
}

.hero-card-levels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: #F8FAFC;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid #E2E8F0;
}

.hero-level-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-level-item .level-lbl {
  font-size: 0.68rem;
  color: #64748B;
  font-weight: 700;
}

.hero-level-item .level-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.hero-level-item .level-val.resistance {
  color: #DC2626;
  font-weight: 700;
}

.hero-level-item .level-val.support {
  color: #16A34A;
  font-weight: 700;
}

.hero-card-note {
  font-size: 0.72rem;
  color: #334155;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  background: #F8FAFC;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  border-left: 3px solid #0284C7;
}

.hero-card-note strong {
  color: #0F172A;
}

/* ==========================================================================
   Page Banners (Inner Pages Warm Light Header Banner)
   ========================================================================== */
.page-banner {
  background: radial-gradient(circle at 50% -20%, rgba(2, 132, 199, 0.12) 0%, transparent 70%), linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  color: #0F172A;
  padding: 2.25rem 0 2rem;
  border-bottom: 1px solid #E2E8F0;
}

.page-banner h1 {
  color: #0F172A !important;
}

.page-banner p {
  color: #334155 !important;
}

/* ==========================================================================
   Section Headers & Common Layout (Light Cream Backgrounds)
   ========================================================================== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: #FFFFFF;
}

.section-header {
  margin-bottom: 2.75rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: #0284C7;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: #0B0F19;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #64748B;
  line-height: 1.65;
}

/* ==========================================================================
   Automated Daily Forecast Grid & Cards
   ========================================================================== */
.forecast-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-pill.active, .filter-pill:hover {
  background: #133863;
  color: #FFFFFF;
  border-color: #1A4B80;
  box-shadow: 0 4px 12px rgba(19, 56, 99, 0.3);
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.forecast-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.forecast-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary);
}

.forecast-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FBF9F5;
}

.coin-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coin-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.coin-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0B0F19;
}

.coin-sub {
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 600;
}

.sentiment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sentiment-bullish {
  background-color: var(--emerald-bg);
  color: #15803D;
  border: 1px solid var(--emerald-border);
}

.sentiment-bearish {
  background-color: var(--crimson-bg);
  color: #DC2626;
  border: 1px solid var(--crimson-border);
}

.sentiment-neutral {
  background-color: var(--amber-bg);
  color: #0284C7;
  border: 1px solid var(--amber-border);
}

.forecast-card-body {
  padding: 1.5rem;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.current-price {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #0B0F19;
}

.price-change-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.price-change-badge.positive {
  background-color: #F0FDF4;
  color: #15803D;
}

.price-change-badge.negative {
  background-color: #FEF2F2;
  color: #DC2626;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: var(--bg-card-subtle);
  padding: 0.875rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.metric-val {
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-main);
}

.levels-section {
  margin-bottom: 1.25rem;
}

.levels-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.levels-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

.support-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #14532D;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.resistance-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.algorithmic-summary {
  font-size: 0.85rem;
  color: #4A3E39;
  line-height: 1.55;
  padding: 0.75rem;
  background: #FCFCFC;
  border-left: 3px solid var(--brand-primary);
  border-radius: 0 4px 4px 0;
  margin-bottom: 1.25rem;
}

.card-disclaimer-box {
  font-size: 0.7rem;
  color: #64748B;
  line-height: 1.4;
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.5rem;
  background: #FBF9F5;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.card-disclaimer-box i {
  color: #0EA5E9;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   Article Grid & Cards (Blog Directory)
   ========================================================================== */
.article-categories-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.cat-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748B;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.cat-tab.active, .cat-tab:hover {
  color: #0284C7;
  border-color: #0284C7;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.article-card-thumb {
  height: 180px;
  background: #133863;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.article-card:hover .article-card-thumb img {
  transform: scale(1.06);
}

.article-card-thumb svg {
  width: 44px;
  height: 44px;
  opacity: 0.9;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-card-thumb svg {
  transform: scale(1.1);
}

.article-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(2, 132, 199, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.article-card-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  color: #64748B;
  margin-bottom: 0.5rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B0F19;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.article-card:hover .article-card-title {
  color: var(--brand-primary);
}

.article-excerpt {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #1E293B;
}

.author-avatar-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284C7;
  font-size: 0.7rem;
  border: 1px solid #CBD5E1;
}

.read-more-link {
  color: var(--brand-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
}

.read-more-link:hover {
  color: var(--brand-hover);
}

/* ==========================================================================
   Article Detail & Reader Page (High E-E-A-T Retention)
   ========================================================================== */
.article-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #0284C7, #0284C7);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  padding: 2.5rem 0;
}

.article-main-content {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748B;
  margin-bottom: 1.25rem;
}

.article-breadcrumb a:hover {
  color: var(--brand-primary);
}

.article-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0B0F19;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.article-eeat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #FCFCFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.author-credentials-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-photo-md {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0B0F19;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid #0284C7;
}

.author-info-text .author-name {
  font-weight: 700;
  color: #0B0F19;
  font-size: 0.9rem;
}

.author-info-text .author-title {
  font-size: 0.75rem;
  color: #64748B;
}

.fact-check-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #15803D;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

.article-vector-banner {
  width: 100%;
  height: 160px;
  background: #133863;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.article-vector-banner svg {
  max-height: 100%;
  max-width: 100%;
}

.key-takeaways-card {
  background: #FDF9F5;
  border: 1px solid #EFE4DA;
  border-left: 4px solid #0284C7;
  padding: 1.5rem 1.75rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.key-takeaways-card h4 {
  color: #075985;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-takeaways-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.key-takeaways-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #1E293B;
  line-height: 1.5;
}

.key-takeaways-card li i {
  color: #0284C7;
  margin-top: 4px;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1E293B;
}

.article-body h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0B0F19;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: -0.015em;
}

.article-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0B0F19;
  margin: 1.75rem 0 0.75rem;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.article-body ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
}

.article-infobox {
  background: #FCFCFC;
  border: 1px solid #E2E8F0;
  border-left: 4px solid var(--brand-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.article-infobox strong {
  color: #0B0F19;
  display: block;
  margin-bottom: 0.35rem;
}

.author-bio-footer {
  margin-top: 3.5rem;
  padding: 2rem;
  background: #FCFCFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0B0F19;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 3px solid #0284C7;
}

.author-bio-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0B0F19;
  margin-bottom: 0.25rem;
}

.author-bio-content .author-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0284C7;
  margin-bottom: 0.5rem;
}

.author-bio-content p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

/* Sidebar Widgets */
.sidebar-sticky {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-widget {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B0F19;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title i {
  color: var(--brand-primary);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-link {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.4;
  padding: 0.25rem 0;
  transition: all var(--transition-fast);
  display: block;
}

.toc-link:hover, .toc-link.active {
  color: var(--brand-primary);
  font-weight: 600;
  padding-left: 0.35rem;
}

.related-articles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-article-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.related-article-item a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
}

.related-article-item a:hover {
  color: var(--brand-primary);
}

.related-article-meta {
  font-size: 0.72rem;
  color: #94A3B8;
}

/* ==========================================================================
   Interactive Tools & Financial Calculators
   ========================================================================== */
.calculators-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.calc-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.calc-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.calc-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0B0F19;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.calc-header h3 i {
  color: var(--brand-primary);
}

.calc-header p {
  font-size: 0.875rem;
  color: #64748B;
  margin-top: 0.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 0.95rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background-color: #FFFFFF;
  color: #0B0F19;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.input-with-addon {
  display: flex;
}

.input-addon {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  background-color: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: #64748B;
  font-size: 0.9rem;
  font-weight: 600;
}

.input-with-addon .form-control {
  border-radius: 0 6px 6px 0;
}

.calc-result-box {
  background: #FCFCFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.calc-result-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0.5rem;
}

.calc-result-value {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #0B0F19;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E2E8F0;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Analytics Dashboard & Fear/Greed Index
   ========================================================================== */
.analytics-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0B0F19;
  font-family: var(--font-mono);
}

.stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.fear-greed-meter-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.meter-gauge-wrapper {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meter-score-display {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #0B0F19;
}

.meter-status-text {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   E-E-A-T Authority Showcase (About & Editorial Team)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.team-photo-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #0B0F19;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  border: 4px solid #F8FAFC;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B0F19;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0284C7;
  margin-bottom: 0.75rem;
}

.team-credentials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.cred-badge {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #4A3E39;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.team-bio {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: #94A3B8;
  font-size: 1.1rem;
}

.team-socials a:hover {
  color: var(--brand-primary);
}

/* ==========================================================================
   Compliance & Policy Standards Box
   ========================================================================== */
.policy-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.policy-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0B0F19;
  margin-bottom: 1rem;
}

.policy-card p {
  color: #4A3E39;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}


/* ==========================================================================
   Footer Structure (Rich Espresso & Warm Tan)
   ========================================================================== */
.main-footer {
  background-color: #0A192F;
  color: #94A3B8;
  padding-top: 4.5rem;
  border-top: 1px solid #1E293B;
  margin-top: auto;
}

.main-footer .brand-logo {
  color: #FFFFFF !important;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.main-footer .brand-logo span.highlight {
  color: #0284C7 !important;
}

.main-footer .brand-tagline {
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #CBD5E1;
}

.footer-trust-badge i {
  color: var(--brand-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5mm;
  transition: color var(--transition-fast);
}

.footer-links a i {
  color: #F59E0B;
  font-size: 0.72rem;
  margin-right: 0.5mm;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
  color: #0284C7;
  padding-left: 2px;
}

.footer-links a:hover i {
  color: #38BDF8;
  transform: translateX(1.5px);
}

.footer-bottom-disclaimer {
  background-color: #071324;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid #111827;
}

.disclaimer-text {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  text-align: justify;
}

.disclaimer-text strong {
  color: #94A3B8;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #111827;
  font-size: 0.8125rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  font-size: 1.1rem;
}

.social-links a {
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: #0284C7;
}

/* ==========================================================================
   Modals, Search & Cookie Consent
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  background: #133863;
  border: 1.5px solid #0284C7;
  color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(19, 56, 99, 0.35);
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent-content p {
  font-size: 0.8125rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

/* Search Modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 1.5rem;
}

.search-modal.active {
  display: flex;
}

.search-dialog {
  background: #FFFFFF;
  border-radius: 12px;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.search-input-wrapper {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.search-input-wrapper i {
  color: #94A3B8;
  font-size: 1.2rem;
}

.search-input {
  border: none;
  font-size: 1.1rem;
  width: 100%;
  outline: none;
  color: #0B0F19;
}

.search-results {
  max-height: 380px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-result-item {
  padding: 0.75rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: #F8FAFC;
}

.search-result-item .res-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0B0F19;
}

/* ==========================================================================
   Newsletter Subscription Banner (Light Warm Cream Theme)
   ========================================================================== */
.newsletter-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  color: #0B0F19;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 3.5rem 0;
}

.newsletter-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0B0F19;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.newsletter-section p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.newsletter-input {
  flex: 1;
  min-width: 260px;
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #0B0F19 !important;
  border-radius: 8px;
  padding: 0.75rem 1.15rem;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.newsletter-input:focus {
  border-color: #0284C7 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15) !important;
}

.newsletter-disclaimer {
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 0.85rem;
}

.newsletter-disclaimer a {
  color: #0284C7;
  font-weight: 600;
  text-decoration: underline;
}

.search-result-item .res-cat {
  font-size: 0.72rem;
  color: #0284C7;
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-sticky {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .analytics-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calculators-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .forecast-grid, .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .analytics-stats-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .article-main-content {
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Live Navigation Badges & Ticker Pulses
   ========================================================================== */
.nav-pill-live {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: #10B981;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  margin-left: 0.35rem;
  vertical-align: middle;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.price-tick-up {
  color: #10B981 !important;
  transition: color 0.15s ease;
}

.price-tick-down {
  color: #EF4444 !important;
  transition: color 0.15s ease;
}

/* ==========================================================================
   Live Crypto Signals Grid & Cards
   ========================================================================== */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.signal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.signal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #0284C7;
}

.signal-card-header {
  padding: 1.25rem 1.5rem;
  background: #FCFCFC;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.signal-coin-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.signal-coin-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-xs);
}

.signal-action-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.signal-strong-buy {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.signal-buy {
  background: #F0FDF4;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.signal-caution {
  background: #FFFBEB;
  color: #0284C7;
  border: 1px solid #FDE68A;
}

.signal-neutral {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #CBD5E1;
}

.signal-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.signal-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.signal-spot-val {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #0B0F19;
}

.signal-targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.signal-target-box {
  background: #FCFCFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 0.65rem;
  text-align: center;
}

.signal-target-lbl {
  font-size: 0.68rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.signal-target-val {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.signal-target-val.target-green {
  color: #15803D;
}

.signal-target-val.target-red {
  color: #991B1B;
}

.signal-confidence-wrapper {
  margin-bottom: 1.25rem;
}

.signal-conf-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4A3E39;
  margin-bottom: 0.35rem;
}

.signal-conf-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.signal-conf-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284C7, #10B981);
  border-radius: 3px;
}

.signal-rationale-box {
  background: #FDFBF7;
  border-left: 3px solid #0284C7;
  padding: 0.75rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.8125rem;
  color: #4A3E39;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.signal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: #64748B;
}

.signal-disclaimer-card {
  background: #FCFCFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.6;
}

/* ==========================================================================
   Calculator Hero Capsule Navigation Buttons
   ========================================================================== */
.calculator-capsule-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.calc-capsule-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #111827;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.calc-capsule-btn i {
  color: #0284C7;
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.calc-capsule-btn:hover {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.calc-capsule-btn:hover i {
  color: #FFFFFF;
  transform: scale(1.1);
}

.calc-capsule-btn:active {
  transform: translateY(0);
}




/* ==========================================================================
   Luxury Gold & Crisp White Utility Classes (GoldTradeForecast Inspired)
   ========================================================================== */
.hero-title .gradient-text,
.gradient-text,
.cyan-gradient-text,
.gold-gradient-text,
.brand-gradient-text {
  color: #0284C7 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #0284C7 !important;
  font-weight: 800;
  display: inline;
}

.gold-gradient-bg {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
}

.gold-border-glow {
  border: 1px solid rgba(2, 132, 199, 0.35);
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.15);
}

.gold-card-glow {
  box-shadow: 0 4px 20px -2px rgba(2, 132, 199, 0.12), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
}

.bg-gold-light {
  background-color: #F0F9FF;
}

.text-gold-main {
  color: #0284C7;
}

.text-gold-accent {
  color: #CCA34F;
}

.border-gold-subtle {
  border-color: rgba(2, 132, 199, 0.25);
}

/* .gold-btn and .card-elevated are referenced across the forecast pages,
   signals.php, forecasts.php, calculators.php, article pages, and several
   admin pages, but were never actually defined here — every one of those
   buttons/cards was rendering with zero custom styling. Gradient stops
   match .cyan-gradient-text, .gold-gradient-text above for a consistent metallic gold identity. */
.gold-btn {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  border: 1px solid #0284C7;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all var(--transition-normal);
}

.gold-btn:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.card-elevated {
  background-color: #FFFFFF;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.card-elevated:hover {
  border-color: rgba(2, 132, 199, 0.55) !important;
  box-shadow: 0 12px 28px -6px rgba(2, 132, 199, 0.18), 0 4px 10px -2px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

html.dark .card-elevated,
.dark .card-elevated {
  background-color: #0F172A;
}

/* Animated brand mark — sequential bar-chart reveal (header/footer/mobile drawer) */
@keyframes ctf-bar1seq{0%,5%{transform:scaleY(0)}15%,80%{transform:scaleY(1)}90%,100%{transform:scaleY(0)}}
@keyframes ctf-bar2seq{0%,25%{transform:scaleY(0)}35%,80%{transform:scaleY(1)}90%,100%{transform:scaleY(0)}}
@keyframes ctf-bar3seq{0%,45%{transform:scaleY(0)}55%,80%{transform:scaleY(1)}90%,100%{transform:scaleY(0)}}
.ctf-bar {
  transform-box: fill-box;
  transform-origin: bottom;
}
