/* ============================================================
   Nimbus Markets — Design System v2
   Trading-terminal dark theme, elevated: richer palette, glow
   accents, card depth, clearer visual hierarchy for breaking
   vs. older news, mobile-first responsive grid.
   ============================================================ */

:root {
  --bg: #0a0d14;
  --bg-alt: #0d1220;
  --bg-elevated: #11172a;
  --card: #131a2c;
  --card-hover: #161f36;
  --border: #22304a;
  --border-soft: #1a2338;
  --text: #eef1f8;
  --text-dim: #8b96b3;
  --text-faint: #5d6885;

  --accent: #22e0a8;       /* bullish green / brand primary */
  --accent-glow: rgba(34, 224, 168, 0.35);
  --accent-2: #4d9dff;     /* info blue */
  --accent-2-glow: rgba(77, 157, 255, 0.3);
  --purple: #a78bfa;       /* highlight accent for Trump Watch / special sections */
  --purple-glow: rgba(167, 139, 250, 0.3);
  --bear: #ff5c72;         /* bearish red */
  --bull: #22e0a8;
  --neutral: #ffc861;

  --gold: #f0b429;

  --max-width: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --mono: "SF Mono", "JetBrains Mono", "Consolas", monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -5%, rgba(34, 224, 168, 0.07), transparent),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(77, 157, 255, 0.06), transparent);
  background-repeat: no-repeat;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--accent-glow); }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--border-soft);
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
}
.logo-mark {
  color: var(--accent);
  font-size: 0.9em;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.logo:hover { text-decoration: none; color: var(--accent); }
.main-nav { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.navlink { color: var(--text-dim); font-weight: 600; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 4px 2px; position: relative; }
.navlink:hover { color: var(--accent); text-decoration: none; }
.navlink-tool { color: var(--accent-2); border: 1px solid rgba(77,157,255,0.35); padding: 6px 12px; border-radius: 100px; }
.navlink-tool:hover { color: #05131f; background: var(--accent-2); border-color: var(--accent-2); }
.navlink-trump { color: var(--purple); border: 1px solid rgba(167,139,250,0.4); padding: 6px 12px; border-radius: 100px; }
.navlink-trump:hover { color: #150e2b; background: var(--purple); border-color: var(--purple); }
.navlink-ig { display: inline-flex; align-items: center; gap: 5px; color: var(--text-dim); }
.navlink-ig svg { width: 15px; height: 15px; }
.navlink-ig:hover { color: #e1306c; }

/* ---------- Ticker strip (marquee, nav-level) ---------- */
.ticker-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 36px;
  animation: ticker-scroll 32s linear infinite;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.ticker-item { display: inline-flex; gap: 6px; align-items: center; padding-right: 8px; }
.ticker-item .up { color: var(--bull); }
.ticker-item .down { color: var(--bear); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Live Price Panel (homepage feature) ---------- */
.price-panel {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0 26px;
}
.price-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.price-panel-title {
  font-family: var(--mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-panel-title .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-dot 2s infinite;
  display: inline-block;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 6px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.price-panel-updated { font-family: var(--mono); font-size: 0.74rem; color: var(--text-faint); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.price-card:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.price-card .sym { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; display: block; }
.price-card .val { font-family: var(--mono); font-size: 1.28rem; font-weight: 700; color: var(--text); display: block; }
.price-card .chg { font-family: var(--mono); font-size: 0.8rem; font-weight: 600; margin-top: 4px; display: block; }
.price-card .chg.up { color: var(--bull); }
.price-card .chg.down { color: var(--bear); }
.price-card .chg.flat { color: var(--text-dim); }
.price-panel-note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-faint);
  font-family: var(--mono);
}

/* ---------- Hero ---------- */
.hero {
  padding: 52px 20px 32px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 40px 0 18px;
  letter-spacing: -0.01em;
  font-family: var(--mono);
  text-transform: uppercase;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-title .section-sub {
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.section-title.title-trump { border-left-color: var(--purple); }

/* ---------- Grid & Cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.grid-featured .card:first-child {
  grid-column: span 2;
}
@media (max-width: 760px) {
  .grid-featured .card:first-child { grid-column: span 1; }
}

.card {
  display: block;
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.5), 0 0 0 1px rgba(77,157,255,0.15);
  text-decoration: none;
}
.card:hover::before { opacity: 1; }
.card-cat {
  display: inline-block;
  background: rgba(77, 157, 255, 0.12);
  color: var(--accent-2);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  font-family: var(--mono);
}
.card h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.35;
}
.card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0 0 12px;
}
.card-meta {
  color: var(--text-faint);
  font-size: 0.74rem;
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
}
.card-breaking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff8a8a;
  background: rgba(255, 92, 108, 0.12);
  border: 1px solid rgba(255, 92, 108, 0.35);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.card-breaking::before { content: "●"; font-size: 0.6em; animation: pulse-dot 1.6s infinite; }
.card-pinned-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.35);
  padding: 3px 8px;
  border-radius: 100px;
}

/* ---------- Impact badges ---------- */
.impact-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.badge-bullish { background: rgba(34, 224, 168, 0.14); color: var(--bull); border: 1px solid rgba(34, 224, 168, 0.4); }
.badge-bearish { background: rgba(255, 92, 108, 0.14); color: var(--bear); border: 1px solid rgba(255, 92, 108, 0.4); }
.badge-mixed { background: rgba(255, 200, 97, 0.14); color: var(--neutral); border: 1px solid rgba(255, 200, 97, 0.4); }
.badge-neutral { background: rgba(139, 150, 179, 0.14); color: var(--text-dim); border: 1px solid var(--border); }

/* ---------- Instrument tags ---------- */
.instrument-tags { margin: 14px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 3px 10px;
  border-radius: 6px;
}

/* ---------- TL;DR box ---------- */
.tldr-box {
  background: linear-gradient(135deg, rgba(34,224,168,0.08), rgba(77,157,255,0.05));
  border: 1px solid rgba(34, 224, 168, 0.3);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 18px 0 24px;
}
.tldr-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tldr-box p { margin: 0; color: var(--text); font-size: 0.98rem; }

/* ---------- Impact box on article page ---------- */
.impact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0 30px;
}
.impact-box-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

/* ---------- Source box ---------- */
.source-box {
  margin-top: 30px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.timestamp-line {
  color: var(--text-faint);
  font-size: 0.8rem;
  font-family: var(--mono);
  margin-top: 14px;
}

/* ---------- Article ---------- */
.article {
  max-width: 780px;
  padding-top: 36px;
  padding-bottom: 40px;
}
.article-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article h1 {
  font-size: 2.05rem;
  line-height: 1.28;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.article-lede {
  color: var(--text-dim);
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.article-body h2 {
  font-size: 1.42rem;
  margin: 34px 0 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 26px 0 12px;
}
.article-body p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.02rem;
}
.article-body ul, .article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 24px 0;
  padding: 4px 20px;
  color: var(--text-dim);
  font-style: italic;
}
.table-wrap { overflow-x: auto; margin: 0 0 24px; }
table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
th, td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
th { background: var(--bg-alt); font-family: var(--mono); font-size: 0.85rem; text-transform: uppercase; }

.related-section { padding-bottom: 50px; }

/* ---------- Trump Watch section ---------- */
.trump-strip {
  background: linear-gradient(135deg, rgba(167,139,250,0.08), rgba(10,13,20,0));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 8px 0 36px;
}
.trump-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-elevated) 100%);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
}
.trump-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.trump-card h3 { font-size: 1.2rem; margin: 0 0 6px; color: var(--text); line-height: 1.35; }
.trump-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--purple);
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.4);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
}
.trump-quote {
  border-left: 3px solid var(--purple);
  margin: 14px 0;
  padding: 10px 18px;
  color: var(--text);
  font-style: italic;
  font-size: 1.02rem;
  background: rgba(167, 139, 250, 0.05);
  border-radius: 0 8px 8px 0;
}
.trump-source {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 10px 0 14px;
}
.summary-toggle-btn {
  background: rgba(77, 157, 255, 0.12);
  border: 1px solid rgba(77, 157, 255, 0.4);
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.summary-toggle-btn:hover { background: var(--accent-2); color: #05131f; }
.summary-panel {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
}
.summary-panel.show { display: block; }
.impact-section {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 200, 97, 0.06);
  border: 1px solid rgba(255, 200, 97, 0.25);
  border-radius: var(--radius);
}
.impact-section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral);
  font-weight: 700;
  margin-bottom: 8px;
}
.impact-section ul { margin: 8px 0 0; padding-left: 20px; }
.impact-section li { margin-bottom: 6px; font-size: 0.92rem; }
.impact-section .instrument-tags { margin: 4px 0 10px; }

/* ---------- Poll widget ---------- */
.poll-widget {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 20px 0 36px;
}
.poll-widget h3 {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  margin: 0 0 14px;
}
.poll-question { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.poll-option {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 0.96rem;
  font-family: var(--sans);
  transition: border-color 0.15s ease;
}
.poll-option:hover { border-color: var(--accent-2); }
.poll-result-bar-wrap { display: none; }
.poll-widget.voted .poll-option { display: none; }
.poll-widget.voted .poll-result-bar-wrap { display: block; }
.poll-result-row { margin-bottom: 12px; }
.poll-result-label { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 5px; color: var(--text-dim); }
.poll-result-bar-bg { background: var(--bg-alt); border-radius: 6px; height: 10px; overflow: hidden; }
.poll-result-bar-fill { background: linear-gradient(90deg, var(--accent), var(--accent-2)); height: 100%; border-radius: 6px; transition: width 0.4s ease; }
.poll-total { font-family: var(--mono); font-size: 0.76rem; color: var(--text-faint); margin-top: 8px; }

/* ---------- Static pages ---------- */
.static-page {
  max-width: 780px;
  padding: 36px 20px 60px;
}
.static-page h1 { font-size: 1.9rem; margin-bottom: 20px; }
.static-page h2 { font-size: 1.3rem; margin: 28px 0 12px; }
.static-page p, .static-page ul { color: var(--text); font-size: 1.01rem; }
.static-page ul { padding-left: 22px; }
.static-page li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-alt);
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 36px 20px;
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin: 0 0 12px;
  font-family: var(--mono);
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--text-dim); font-size: 0.88rem; }
.disclaimer { font-size: 0.78rem !important; margin-top: 10px; opacity: 0.75; }
.footer-ig {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: #e1306c !important;
  font-weight: 600;
}
.footer-ig svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 16px 20px;
  color: var(--text-faint);
  font-size: 0.8rem;
  text-align: center;
}

/* ---------- SL Calculator specific ---------- */
.calc-wrap { max-width: 720px; margin: 0 auto; padding: 40px 20px 60px; }
.calc-card {
  background: linear-gradient(180deg, var(--card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 22px;
}
.calc-card h2 { font-family: var(--mono); font-size: 1.05rem; text-transform: uppercase; margin: 0 0 18px; color: var(--accent-2); }
.calc-field { margin-bottom: 16px; }
.calc-field label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 6px; font-family: var(--mono); }
.calc-field input, .calc-field select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--mono);
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--accent-2); }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05131f;
  font-weight: 700;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.calc-btn:hover { opacity: 0.9; }
.calc-results { display: none; }
.calc-results.show { display: block; }
.result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
}
.result-row:last-child { border-bottom: none; }
.result-label { color: var(--text-dim); font-size: 0.88rem; }
.result-value { font-weight: 700; font-size: 1.05rem; }
.result-value.highlight { color: var(--accent); font-size: 1.2rem; }
.calc-disclaimer {
  background: rgba(255, 200, 97, 0.08);
  border: 1px solid rgba(255, 200, 97, 0.3);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-top: 20px;
}
.calc-disclaimer strong { color: var(--neutral); }

/* ---------- Disclaimer modal ---------- */
.disclaimer-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.disclaimer-modal-overlay[hidden] { display: none; }
.disclaimer-modal {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6);
}
.disclaimer-modal h2 {
  font-family: var(--mono);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neutral);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.disclaimer-modal p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0 0 20px;
}
.disclaimer-modal-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05131f;
  font-weight: 700;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 0.98rem;
  cursor: pointer;
  font-family: var(--sans);
}
.disclaimer-modal-btn:hover { opacity: 0.92; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .calc-row { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .trump-card-head { flex-direction: column; }
}
