/*
Theme Name: TradeInsight360
Theme URI: https://tradeinsight360.com
Author: TradeInsight360
Description: Professional dark crypto finance theme — Binance style, tools optimized.
Version: 4.0.0
Text Domain: tradeinsight360
*/

/* ============================================================
   VARIABLES — Binance Yellow + Dark
   ============================================================ */
:root {
  --black:   #0b0e11;
  --black2:  #12161c;
  --card:    #1a1f28;
  --card2:   #1e242f;
  --yellow:  #f0b90b;
  --yellow2: #d4a10a;
  --yellow3: #ffd140;
  --yellow-dim:    rgba(240,185,11,0.08);
  --yellow-border: rgba(240,185,11,0.2);
  --text:    #eaecef;
  --muted:   #848e9c;
  --border:  rgba(255,255,255,0.07);
  --red:     #f6465d;
  --green:   #0ecb81;
  --amber:   #f0b90b;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--yellow3); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--yellow2); border-radius: 2px; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.5rem; }
p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }

/* FULL WIDTH FIX */
.wp-site-blocks, #page, #content, .site, .site-content, #primary,
.entry-content, .wp-block-group { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(11,14,17,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-sizing: border-box;
}
.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo span { color: var(--yellow); }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* PRIMARY NAV */
.ti360-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.ti360-nav ul,
.ti360-navlist {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.15rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  position: static !important;
  border: none !important;
  box-shadow: none !important;
}
.ti360-nav ul li,
.ti360-navlist li {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  list-style: none !important;
  position: relative !important;
}
.ti360-nav ul li a,
.ti360-navlist li a {
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  padding: 6px 13px !important;
  white-space: nowrap !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  border-radius: 6px !important;
  transition: color 0.2s, background 0.2s !important;
}
.ti360-nav ul li a:hover,
.ti360-navlist li a:hover,
.ti360-navlist li.current-menu-item > a {
  color: var(--text) !important;
  background: var(--card) !important;
}
.ti360-nav ul li ul,
.ti360-navlist .sub-menu { display: none !important; }

/* TOOLS DROPDOWN BUTTON */
.tools-dropdown-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.tools-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tools-dropdown-btn:hover { background: var(--yellow3); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,185,11,0.3); }
.tools-dropdown-btn .arrow { font-size: 10px; transition: transform 0.2s; display: inline-block; }
.tools-dropdown-wrap.open .arrow { transform: rotate(180deg); }

.tools-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 310px;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 9999;
}
.tools-dropdown-wrap.open .tools-dropdown-menu { display: block; }
.tools-dropdown-section { margin-bottom: 8px; }
.tools-dropdown-section:last-child { margin-bottom: 0; }
.tools-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 8px 8px;
  display: block;
}
.tools-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}
.tools-dropdown-item:hover { background: var(--card); color: var(--text); }
.tools-dropdown-item .tdi {
  width: 26px; height: 26px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.tools-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 70% 50%, rgba(240,185,11,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(240,185,11,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,185,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.badge-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { margin-bottom: 1.25rem; }
.hero-title .accent { color: var(--yellow); }
.hero-desc { font-size: 17px; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; color: var(--muted); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--yellow3); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,185,11,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--yellow-border); color: var(--yellow); background: var(--yellow-dim); }

/* TICKER CARD */
.ticker-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; }
.ticker-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.ticker-title { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.live-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--yellow); font-weight: 600; }
.live-dot { width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; animation: pulse 1.5s infinite; }
.coin-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--card2); border-radius: 8px; border: 1px solid var(--border); margin-bottom: 8px; }
.coin-row:last-child { margin-bottom: 0; }
.coin-left { display: flex; align-items: center; gap: 10px; }
.coin-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: 'Syne', sans-serif; }
.coin-name { font-size: 14px; font-weight: 600; color: var(--text); }
.coin-sub { font-size: 11px; color: var(--muted); }
.coin-price { font-size: 15px; font-weight: 600; font-family: 'Syne', sans-serif; color: var(--text); }
.coin-change { font-size: 12px; font-weight: 500; }
.up { color: var(--green); }
.dn { color: var(--red); }
.btc-icon { background: rgba(247,147,26,0.15); color: #f7931a; }
.eth-icon { background: rgba(98,126,234,0.15); color: #627eea; }
.sol-icon { background: rgba(153,69,255,0.15); color: #9945ff; }
.wct-icon { background: var(--yellow-dim); color: var(--yellow); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 2.5rem; width: 100%; }
.stats-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--yellow); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.site-section { padding: 5rem 2.5rem; width: 100%; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-tag { font-size: 11px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 16px; max-width: 540px; line-height: 1.7; }

/* ============================================================
   TOOLS GRID
   ============================================================ */
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 2.5rem; }
.tool-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.22s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.tool-card:hover {
  border-color: var(--yellow-border);
  background: var(--card2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240,185,11,0.08);
}
.tool-icon {
  width: 42px; height: 42px;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 20px;
}
.tool-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.tool-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.tool-tag { display: inline-block; margin-top: 12px; font-size: 11px; color: var(--yellow); font-weight: 700; letter-spacing: 0.04em; }

.ecom-label {
  display: inline-flex; align-items: center;
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-border);
  border-radius: 5px; padding: 3px 10px;
  font-size: 10px; color: var(--yellow); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-top: 2.5rem; }
.news-main { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.news-thumb { width: 100%; height: 200px; object-fit: cover; }
.news-thumb-placeholder { height: 200px; background: linear-gradient(135deg,#151a22 0%,#0f1318 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.news-thumb-placeholder::before { content:''; position:absolute; inset:0; background-image:repeating-linear-gradient(45deg,rgba(240,185,11,0.03) 0,rgba(240,185,11,0.03) 1px,transparent 0,transparent 50%); background-size:20px 20px; }
.news-body { padding: 1.25rem; }
.news-cat { font-size: 11px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.news-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.news-meta { font-size: 12px; color: var(--muted); }
.news-side { display: flex; flex-direction: column; gap: 10px; }
.news-small { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; transition: all 0.2s; flex: 1; }
.news-small:hover { border-color: var(--yellow-border); }
.ns-cat { font-size: 10px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.ns-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 5px; }
.ns-meta { font-size: 11px; color: var(--muted); }

/* ============================================================
   TOOL PAGE
   ============================================================ */
.tool-page-wrap { padding-top: 64px; }
.tool-page-hero { background: var(--black2); border-bottom: 1px solid var(--border); padding: 3rem 2.5rem 2.5rem; }
.tool-page-hero-inner { max-width: 800px; margin: 0 auto; }
.tool-page-tag { font-size: 11px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.tool-page-hero h1 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 10px; }
.tool-page-hero p { color: var(--muted); font-size: 16px; max-width: 600px; margin: 0; }
.tool-page-content { max-width: 800px; margin: 0 auto; padding: 2.5rem; }
.tool-box { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 1.5rem; }
.tool-box-header { background: var(--black2); padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--border); }
.tool-box-header h2 { font-family: 'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.tool-box-header p { font-size: 13px; color: var(--muted); margin: 0; }
.tool-body { padding: 1.75rem; }

/* TOOL INPUTS */
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.row1 { margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.field input, .field select {
  height: 44px; padding: 0 14px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 8px; font-size: 15px;
  color: var(--text); background: var(--card2);
  width: 100%; font-family: 'DM Sans',sans-serif;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--yellow); }
.field input::placeholder { color: rgba(255,255,255,0.18); }
.field select option { background: var(--card2); }
.calc-btn {
  width: 100%; height: 48px;
  background: var(--yellow);
  color: var(--black);
  border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: 'Syne',sans-serif;
  letter-spacing: 0.02em; transition: all 0.2s; margin-top: 4px;
}
.calc-btn:hover { background: var(--yellow3); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,185,11,0.25); }
.calc-btn:active { transform: scale(0.98); }

/* RESULTS */
.results-box { margin-top: 1.25rem; display: none; }
.cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 12px; }
.cards2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 12px; }
.metric { background: var(--card2); border-radius: 10px; padding: 14px; text-align: center; border: 1px solid var(--border); }
.metric-label { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.metric-value { font-size: 19px; font-weight: 700; font-family: 'Syne',sans-serif; color: var(--text); }
.metric-value.up { color: var(--green); }
.metric-value.dn { color: var(--red); }
.metric-value.amber { color: var(--yellow); }
.bdown { background: var(--card2); border-radius: 10px; padding: 14px; margin-bottom: 12px; border: 1px solid var(--border); }
.bdown-title { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.brow { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.brow:last-child { border-bottom: none; }
.bl { color: var(--muted); }
.br { color: var(--text); font-weight: 600; }
.br.up { color: var(--green); }
.br.dn { color: var(--red); }
.br.amber { color: var(--yellow); }
.reset-btn { width: 100%; height: 36px; background: transparent; border: 1px solid var(--border); border-radius: 8px; color: var(--muted); font-size: 13px; cursor: pointer; margin-top: 8px; font-family: 'DM Sans',sans-serif; }
.reset-btn:hover { background: var(--card2); }
.info-box { background: var(--yellow-dim); border: 1px solid var(--yellow-border); border-radius: 8px; padding: 14px; margin-bottom: 12px; font-size: 14px; color: var(--text); line-height: 1.7; }
.warn-box { background: rgba(246,70,93,0.07); border: 1px solid rgba(246,70,93,0.2); border-radius: 8px; padding: 14px; margin-bottom: 12px; font-size: 14px; color: var(--text); }
.slider-wrap { margin-bottom: 14px; }
.slider-wrap label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; display: flex; justify-content: space-between; margin-bottom: 6px; }
.slider-wrap label span { color: var(--yellow); font-size: 13px; }
input[type=range] { width: 100%; height: 4px; -webkit-appearance: none; background: var(--card2); border-radius: 2px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--yellow); border-radius: 50%; cursor: pointer; }
.tabs-nav { display: flex; border-bottom: 1px solid var(--border); }
.tab-btn { flex: 1; padding: 12px; font-size: 14px; font-weight: 500; background: none; border: none; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent; transition: all 0.2s; font-family: 'DM Sans',sans-serif; }
.tab-btn.active { color: var(--text); border-bottom: 2px solid var(--yellow); }
.tsection { display: none; padding-top: 1.25rem; }
.tsection.active { display: block; }

/* FAQ */
.faq-section { margin-top: 2rem; }
.faq-section h2 { font-size: 20px; margin-bottom: 1rem; color: var(--text); }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 14px 18px; font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { background: var(--card2); }
.faq-arrow { color: var(--yellow); font-size: 18px; transition: transform 0.2s; }
.faq-a { padding: 0 18px; max-height: 0; overflow: hidden; transition: all 0.3s; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 18px 14px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* SINGLE POST */
.post-hero { padding: 8rem 2.5rem 4rem; background: var(--black2); border-bottom: 1px solid var(--border); }
.post-hero-inner { max-width: 820px; margin: 0 auto; }
.post-category { font-size: 11px; color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.post-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1rem; }
.post-meta { font-size: 13px; color: var(--muted); }
.post-content { max-width: 820px; margin: 0 auto; padding: 3rem 2.5rem; }
.post-content p { color: var(--muted); margin-bottom: 1.5rem; font-size: 16px; }
.post-content h2 { color: var(--text); margin: 2.5rem 0 1rem; }
.post-content h3 { color: var(--text); margin: 2rem 0 0.75rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-content li { color: var(--muted); margin-bottom: 0.5rem; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content blockquote { border-left: 3px solid var(--yellow); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--yellow-dim); border-radius: 0 8px 8px 0; }
.post-content blockquote p { color: var(--text); margin: 0; }
.post-content code { background: var(--card); color: var(--yellow); padding: 2px 8px; border-radius: 4px; font-size: 14px; }

/* FOOTER */
#site-footer { background: var(--black2); border-top: 1px solid var(--border); padding: 3rem 2.5rem 2rem; width: 100%; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer-col h4 { font-family: 'Syne',sans-serif; font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.footer-bottom span { color: var(--yellow); }

/* ANIMATIONS */
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
.animate-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px) {
  #site-header { padding: 0 1.5rem; }
  .hero-section, .site-section, #site-footer, .stats-bar { padding-left: 1.5rem; padding-right: 1.5rem; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ti360-nav { position: static; transform: none; }
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ticker-card { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .row3 { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .ti360-nav { display: none; }
  .menu-toggle { display: block; }
  .ti360-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--black2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 9998;
  }
  .ti360-nav.mobile-open ul { flex-direction: column !important; width: 100%; }
  .ti360-nav.mobile-open li { width: 100%; }
  .ti360-nav.mobile-open li a { width: 100%; padding: 10px 14px !important; }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cards3 { grid-template-columns: 1fr 1fr; }
  .row2, .row3 { grid-template-columns: 1fr; }
  .tool-page-content { padding: 1.5rem; }
  .post-content { padding: 1.5rem; }
  .hero-section { padding-top: 5rem; }
  .tools-dropdown-menu { width: 280px; right: -10px; }
}

/* ============================================================
   HIDE ALL WORDPRESS INJECTED MENUS — NUCLEAR FIX
   ============================================================ */
#site-header .main-navigation,
#site-header .nav-menu,
#site-header #site-navigation,
#site-header .site-navigation,
#site-header ul.menu,
#site-header ul.nav-menu,
#site-header div[class*="menu"],
#site-header div[id*="menu"],
#site-header nav[class*="nav"],
#site-header [class*="navigation"],
#site-header .menu-main-container,
#site-header .menu-primary-container,
#site-header .menu-header-container,
#site-header #primary-menu,
#site-header #main-menu,
#site-header .primary-menu,
#site-header .header-menu,
#site-header li.menu-item {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* ============================================================
   TOOL PAGE FULL WIDTH FIX
   ============================================================ */
.tool-page-content {
  max-width: 100% !important;
  padding: 2.5rem 3rem !important;
}
.tool-page-hero-inner {
  max-width: 100% !important;
}
.tool-page-hero {
  padding: 3rem !important;
}
.entry-content {
  max-width: 100% !important;
  width: 100% !important;
}
.post-content {
  max-width: 100% !important;
  padding: 3rem !important;
}
@media(max-width:600px) {
  .tool-page-content { padding: 1rem !important; }
  .tool-page-hero { padding: 1rem !important; }
  .post-content { padding: 1rem !important; }
}

/* ============================================================
   TOOL PAGE BALANCED WIDTH FIX
   ============================================================ */
.tool-page-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 2.5rem 3rem !important;
  width: 100% !important;
}
.tool-page-hero-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
}
.tool-page-hero {
  padding: 3rem !important;
}
.entry-content {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.post-content {
  max-width: 1200px !important;
  padding: 3rem !important;
  margin: 0 auto !important;
}
@media(max-width:1300px) {
  .tool-page-content { padding: 2rem !important; }
}
@media(max-width:600px) {
  .tool-page-content { padding: 1rem !important; }
  .tool-page-hero { padding: 1rem !important; }
  .post-content { padding: 1rem !important; }
}
