/* ═══════════ CS2 SKIN TRACKER — Cyber-Tech HUD Rebrand ═══════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg: #071221;
  --bg2: #0A1622;
  --surface: #0F1A28;
  --surface2: #10181F;
  --surface3: #162230;
  --border: rgba(0,229,255,0.15);
  --border-hover: rgba(0,229,255,0.45);
  --primary: #00E5FF;
  --primary-dim: rgba(0,229,255,0.1);
  --primary-glow: rgba(0,229,255,0.25);
  --accent: #00E5FF;
  --accent2: #00C2F2;
  --accent-dim: rgba(0,229,255,0.1);
  --orange: #FF7A19;
  --orange-dim: rgba(255,122,25,0.12);
  --gold: #FFAE40;
  --gold-dim: rgba(255,174,64,0.12);
  --profit: #00E5FF;
  --profit-dim: rgba(0,229,255,0.1);
  --profit-glow: rgba(0,229,255,0.3);
  --loss: #FF7A19;
  --loss-dim: rgba(255,122,25,0.12);
  --text: #E9F8FF;
  --text2: #DDE6EA;
  --text3: #AFC6D0;
  --text4: #6B8A99;
  --radius: 12px;
  --radius-sm: 8px;
  --neon-glow: 0 0 20px rgba(0,229,255,0.4), 0 0 40px rgba(0,229,255,0.2);
  --orange-glow: 0 0 20px rgba(255,122,25,0.4), 0 0 40px rgba(255,122,25,0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,255,0.06);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.6), var(--neon-glow);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══ BG GRID PATTERN ═══ */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ═══ SCANLINES ═══ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  opacity: 0.4;
}

body > *:not(#nav) { position: relative; z-index: 1; }
#nav { position: relative; z-index: 200; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.4); }

a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

/* ═══ CURSOR GLOW ═══ */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, rgba(0,194,242,0.02) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: left 0.08s ease-out, top 0.08s ease-out;
}

/* ═══ TYPOGRAPHY ═══ */
.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }

h1, .h1 { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 64px; line-height: 1.05; letter-spacing: -1px; }
h2, .h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 40px; line-height: 1.1; letter-spacing: -0.5px; }
h3, .h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.3; }

/* ═══ LAYOUT ═══ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.page-content { padding-top: 80px; padding-bottom: 80px; min-height: 100vh; }

/* ═══ GLASS CARD ═══ */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
/* Tech notch corners */
.glass::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), transparent);
  pointer-events: none;
}
.glass:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.glass-static {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.glass-static::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.2), transparent);
  pointer-events: none;
}

/* ═══ TILT CARD (3D hover) ═══ */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease-out;
}

/* ═══ ANIMATED GRADIENT BORDER ═══ */
.gradient-border {
  position: relative; border-radius: var(--radius); padding: 2px;
  background: linear-gradient(135deg, #00E5FF, #FFAE40, #FF7A19, #00E5FF);
  background-size: 300% 300%;
  animation: border-flow 4s ease infinite;
}
.gradient-border-inner {
  background: var(--surface);
  border-radius: calc(var(--radius) - 2px);
}
@keyframes border-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ═══ GLOW RING ═══ */
.glow-ring::after {
  content: '';
  position: absolute; inset: -2px;
  background: conic-gradient(from 0deg, #00E5FF, #FFAE40, #FF7A19, #00E5FF);
  border-radius: inherit;
  z-index: -1;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s;
}
.glow-ring:hover::after { opacity: 0.4; }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #FF7A19, #FFAE40);
  color: #071221; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,122,25,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover {
  box-shadow: var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  background: transparent; color: var(--accent); font-weight: 600; font-size: 15px;
  border: 1px solid var(--accent); cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: rgba(0,229,255,0.08);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: transparent; color: var(--text3); cursor: pointer;
  transition: all 0.25s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-sm:hover { background: rgba(0,229,255,0.06); color: var(--accent); border-color: rgba(0,229,255,0.3); }
.btn-sm.active {
  background: rgba(0,229,255,0.12);
  color: var(--accent); border-color: var(--accent);
  box-shadow: var(--neon-glow);
}

/* ═══ BADGES ═══ */
.badge {
  padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.badge-strong-buy {
  background: rgba(0,229,255,0.15);
  color: var(--accent);
  border: 1px solid rgba(0,229,255,0.4);
  box-shadow: 0 0 10px rgba(0,229,255,0.2);
}
.badge-buy {
  background: var(--profit-dim); color: var(--profit);
  border: 1px solid rgba(0,229,255,0.25);
}
.badge-hold {
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid rgba(255,174,64,0.25);
}
.badge-sell {
  background: var(--loss-dim); color: var(--loss);
  border: 1px solid rgba(255,122,25,0.3);
}

/* ═══ NEON TEXT ═══ */
.neon-green {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,229,255,0.6), 0 0 30px rgba(0,229,255,0.3);
}
.neon-blue {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,229,255,0.5), 0 0 30px rgba(0,229,255,0.2);
}
.neon-gold {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255,174,64,0.5), 0 0 30px rgba(255,174,64,0.2);
}

/* ═══ ANIMATED GRADIENT TEXT ═══ */
.gradient-text {
  background: linear-gradient(90deg, #00E5FF, #FFAE40, #FF7A19, #00E5FF);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: grad-shift 4s ease infinite;
}
@keyframes grad-shift { 0%{background-position:0%} 50%{background-position:100%} 100%{background-position:0%} }

/* ═══ PULSE EFFECTS ═══ */
@keyframes pulse-glow { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(1.04)} }
.pulse-profit { animation: pulse-glow 2.5s ease-in-out infinite; }

@keyframes pulse-dot { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(0,229,255,0.5)} 50%{opacity:0.6;box-shadow:0 0 0 6px rgba(0,229,255,0)} }
.pulse-dot { animation: pulse-dot 2s infinite; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float { animation: float 3s ease-in-out infinite; }

/* ═══ SKIN IMAGES ═══ */
.skin-img {
  width: 110px; height: 82px; object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  padding: 8px;
  transition: transform 0.3s;
}
.skin-img:hover { transform: scale(1.08); }

.skin-img-lg {
  width: 280px; height: 210px; object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  padding: 16px;
  transition: transform 0.3s;
}
.skin-img-lg:hover { transform: scale(1.05) rotate(1deg); }

.skin-img-card {
  width: 100%; height: 200px; object-fit: contain;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  padding: 20px;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.glass:hover .skin-img-card { transform: scale(1.06) translateY(-4px); }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: #071221 !important;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(0,229,255,0.1);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-links { display: flex; gap: 8px; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text3); cursor: pointer; padding: 8px; }
.nav-tg-btn { padding: 10px 18px; font-size: 13px; gap: 7px; }
.nav-link {
  font-size: 14px; color: var(--text3); font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: all 0.25s;
}
.nav-link:hover { color: var(--accent); background: rgba(0,229,255,0.06); }
.nav-link { min-height: 44px; display: inline-flex; align-items: center; }
.nav-link.active {
  color: var(--accent);
  background: rgba(0,229,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(0,229,255,0.2);
}

/* ═══ TICKER ═══ */
.ticker-bar {
  position: relative; width: 100%; margin-top: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 48px;
  animation: scroll-left 50s linear infinite;
  white-space: nowrap;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══ SECTION UTILS ═══ */
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 40px; line-height: 1.08; margin-bottom: 14px; letter-spacing: -0.5px;
  text-shadow: 0 0 30px rgba(0,229,255,0.2);
}
.section-desc { color: var(--text3); font-size: 17px; max-width: 560px; line-height: 1.6; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(0,229,255,0.12) 30%, rgba(255,174,64,0.1) 70%, transparent 95%);
  margin: 0 32px;
}

/* ═══ TABLE ═══ */
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th {
  text-align: left; padding: 16px 20px; font-size: 12px; font-weight: 600;
  color: var(--text4); border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.8px;
  background: rgba(15,26,40,0.5);
}
.data-table tbody td {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  vertical-align: middle; font-size: 14px;
}
.data-table tbody tr {
  transition: all 0.2s; cursor: pointer;
}
.data-table tbody tr:hover {
  background: rgba(0,229,255,0.04);
  box-shadow: inset 3px 0 0 var(--accent);
}
.data-table tbody tr:last-child td { border-bottom: none; }

/* ═══ GRID ═══ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ═══ LIQUIDITY ═══ */
.liq-dots { display: flex; gap: 4px; }
.liq-dot { width: 8px; height: 8px; border-radius: 50%; transition: all 0.3s; }
.liq-high { background: var(--accent); box-shadow: 0 0 6px rgba(0,229,255,0.5); }
.liq-med { background: var(--gold); box-shadow: 0 0 6px rgba(255,174,64,0.3); }
.liq-low { background: var(--text4); }

/* ═══ CONFIDENCE BAR ═══ */
.conf-bar { height: 5px; border-radius: 3px; background: var(--surface2); overflow: hidden; }
.conf-fill { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }

/* ═══ SPARKLINE ═══ */
.sparkline { height: 56px; }
.sparkline svg { width: 100%; height: 100%; }

/* ═══ HIDDEN UTIL ═══ */
.hidden { display: none !important; }

/* ═══ MOBILE OVERLAY MENU ═══ */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 95;
  pointer-events: none; visibility: hidden; opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.open {
  pointer-events: auto; visibility: visible; opacity: 1;
}
.mobile-overlay-bg {
  position: absolute; inset: 0;
  background: rgba(7,18,33,0.9); backdrop-filter: blur(8px);
}
.mobile-overlay-panel {
  position: absolute; right: 0; top: 0; height: 100%; width: 280px;
  background: var(--surface); border-left: 1px solid var(--border);
  padding: 80px 24px 24px; box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.mobile-overlay.open .mobile-overlay-panel {
  transform: translateX(0);
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.5s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══ HERO ORBS ═══ */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: orb-float 6s ease-in-out infinite alternate;
}
@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

/* ═══ TYPING CURSOR ═══ */
.typing-cursor::after {
  content: '|';
  color: var(--accent);
  animation: blink 0.8s infinite;
  margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ═══ COUNTER BOX ═══ */
.counter-box {
  position: relative;
  padding: 24px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.counter-box:hover {
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 0 20px rgba(0,229,255,0.1);
}
/* Tech corner accent */
.counter-box::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 24px; height: 24px;
  border-top: 2px solid rgba(0,229,255,0.4);
  border-left: 2px solid rgba(0,229,255,0.4);
}

/* ═══ COLOR UTILS ═══ */
.text-profit { color: var(--accent); }
.text-loss { color: var(--loss); }
.text-gold { color: var(--gold); }
.text-primary { color: var(--accent); }
.text-muted { color: var(--text3); }
.text-secondary { color: var(--text2); }
.bg-profit-dim { background: var(--profit-dim); }
.bg-loss-dim { background: var(--loss-dim); }

/* ═══ SKELETON LOADING ═══ */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shine 1.5s infinite;
  border-radius: 8px;
}
@keyframes skeleton-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-card {
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.skeleton-img { width: 110px; height: 82px; border-radius: 8px; flex-shrink: 0; }
.skeleton-line { height: 14px; border-radius: 6px; margin-bottom: 10px; }
.skeleton-line-sm { height: 10px; border-radius: 5px; margin-bottom: 8px; }

/* ═══ PAGE TRANSITIONS ═══ */
.page-transition-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.page-transition-overlay.active { transform: translateY(0); }
body { opacity: 1; animation: page-in 0.4s ease; }
@keyframes page-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ MOBILE CARD (arbitrage on mobile) ═══ */
.deal-card-mobile {
  display: none;
  padding: 18px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
}

/* ═══ MOBILE RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  h1, .h1 { font-size: 40px; }
  .section-title { font-size: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex !important; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; }
  .nav-inner { height: 56px; }
  .nav-inner .btn-primary { padding: 10px !important; font-size: 12px !important; min-height: 44px; min-width: 44px; width: auto !important; }
  .nav-tg-label { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  h1, .h1 { font-size: 36px !important; line-height: 1.1; }
  h2, .h2 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .container { padding: 0 16px; }
  .skin-img { width: 72px; height: 54px; }
  .hide-mobile { display: none !important; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hero-right-mobile-hide { display: block !important; }
  .hero-right-mobile-hide > div { margin-left: 0 !important; }
  .hero-right-mobile-hide .glass { margin-bottom: 14px !important; }
  .page-content .btn-primary, .page-content .btn-ghost,
  .mobile-overlay-panel .btn-primary { width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column !important; gap: 12px !important; }
  .page-content .btn-primary, .page-content .btn-ghost { min-height: 48px; padding: 14px 24px; }
  .mobile-overlay-panel .btn-primary { min-height: 48px; padding: 14px 24px; }
  .btn-sm { min-height: 44px; padding: 10px 16px; }
  .nav-link { min-height: 44px; padding: 10px 14px; }
  .nav-tg-btn { padding: 8px !important; min-width: 40px; min-height: 40px; width: 40px; height: 40px; font-size: 0 !important; gap: 0 !important; display: inline-flex; align-items: center; justify-content: center; }
  .nav-tg-btn svg { width: 18px; height: 18px; }
  .data-table { display: none; }
  .deal-card-mobile { display: block; }
  .nav-inner { height: 56px; }
  .page-content { padding-top: 56px; }
  .hero-section {
    padding-top: 32px !important;
    padding-bottom: 48px !important;
    min-height: auto !important;
  }
  .counter-grid-mobile { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .counter-box { padding: 16px 12px; }
  .counter-box .font-mono { font-size: 22px !important; }
  section { padding: 60px 0 !important; }
  p { font-size: 15px !important; }
  .section-desc { font-size: 15px !important; }
  .comparison-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-wrapper table { min-width: 520px; font-size: 13px; }
  .comparison-wrapper table thead th, .comparison-wrapper table tbody td { padding: 12px 10px; }
  .hero-title { font-size: 38px !important; }
  .cursor-glow { display: none; }
  .sparkline { height: 56px; }
  .filter-btns { flex-wrap: wrap; gap: 8px; }
  .filter-btns .btn-sm { flex: 1 1 auto; min-width: 0; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  h1, .h1 { font-size: 36px !important; }
  .hero-title { font-size: 36px !important; }
  .section-title { font-size: 22px; }
  .nav-tg-label { display: none !important; }
}

footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
