/* ================================================================
   hero.css — Hero section & phone mockup demo
   Includes: hero styling, phone chassis mockup, data table animation,
   floating chips, expand panel, apps showcase
   ================================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 48px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(139,92,246,.08) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 20% 70%, rgba(77,166,255,.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .12;
  background-image:
    linear-gradient(var(--hero-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(139,92,246,.3);
  background: rgba(139,92,246,.08);
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero h1 .line-accent {
  display: block;
  font-size: .72em;
  line-height: 1.12;
  margin-top: 4px;
  background: linear-gradient(130deg, var(--gold) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px; color: var(--text2);
  line-height: 1.72; margin-bottom: 38px;
  max-width: 100%; font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── HERO TRUST ROW ── */
.hero-trust {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text2);
}
.hero-trust-item i { color: var(--gold); font-size: 12px; }

/* ── HERO VISUAL — PHONE + FLOW ── */
.hvc-wrap {
  display: flex; align-items: flex-start; gap: 0; width: 100%;
  overflow: visible;
}
.hvc-phone-col {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hvc-store-badges {
  display: flex; gap: 8px;
}
.hvc-store-badge {
  display: flex; align-items: center; gap: 5px;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 20px; padding: 6px 12px;
  font-size: 11px; font-weight: 600; color: var(--text2);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  white-space: nowrap;
}
.hvc-store-badge i { font-size: 13px; }
.hvc-store-badge-apple i { color: var(--text); }
.hvc-store-badge-play i { color: #22c55e; }

/* ── PHONE CHASSIS ── */
.hvc-phone {
  flex-shrink: 0; width: 216px;
  background: linear-gradient(160deg, #2c2c3e 0%, #18181f 55%, #1d1d2a 100%);
  border-radius: 38px;
  padding: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(0,0,0,.55),
    0 32px 72px rgba(0,0,0,.5),
    0 8px 20px rgba(0,0,0,.3);
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
}
/* Volume buttons — left side */
.hvc-phone::before {
  content: '';
  position: absolute; left: -4px; top: 78px;
  width: 4px; height: 22px;
  background: linear-gradient(90deg, #232334, #2c2c40);
  border-radius: 3px 0 0 3px;
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,.07),
    0 0 0 1px rgba(0,0,0,.4),
    0 32px 0 0 #242436,
    0 32px 0 1px rgba(0,0,0,.4);
}
/* Power button — right side */
.hvc-phone::after {
  content: '';
  position: absolute; right: -4px; top: 96px;
  width: 4px; height: 38px;
  background: linear-gradient(90deg, #2c2c40, #232334);
  border-radius: 0 3px 3px 0;
  box-shadow:
    inset -1px 0 0 rgba(255,255,255,.07),
    0 0 0 1px rgba(0,0,0,.4);
}
/* Inner screen */
.hvc-phone-screen {
  background: var(--bg2);
  border-radius: 33px;
  overflow: hidden;
  display: flex; flex-direction: column;
  flex: 1;
}
/* Status bar */
.hvc-status-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 0;
  font-size: 7.5px; font-weight: 700;
  color: var(--text); font-family: var(--font-mono);
  flex-shrink: 0;
}
.hvc-status-icons { display: flex; align-items: center; gap: 4px; }
.hvc-status-bar i { font-size: 8px; }
/* Dynamic Island */
.hvc-dynamic-island {
  width: 82px; height: 24px;
  background: #000;
  border-radius: 14px;
  margin: 4px auto 8px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-shrink: 0;
}
.hvc-di-camera {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1a1a26;
  box-shadow: 0 0 0 1.5px #2d2d3e, inset 0 0 2px rgba(0,80,160,.5);
}
.hvc-di-sensor {
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a5a9a, #0a2040);
  box-shadow: 0 0 4px rgba(20,80,180,.55);
}
/* App content wrapper */
.hvc-phone-content { padding: 0 10px; flex: 1; overflow: hidden; }
/* Promo banner */
.hvc-promo-banner {
  background: linear-gradient(110deg, #7c3aed 0%, #6366f1 100%);
  border-radius: 8px; padding: 7px 9px;
  margin-bottom: 7px;
  display: flex; align-items: center; justify-content: space-between;
}
.hvc-promo-left { display: flex; flex-direction: column; gap: 1px; }
.hvc-promo-title { font-size: 8px; font-weight: 700; color: #fff; }
.hvc-promo-sub { font-size: 6px; color: rgba(255,255,255,.7); }
.hvc-promo-badge {
  background: rgba(255,255,255,.22); color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 3px 7px; border-radius: 5px; white-space: nowrap;
}
/* AD Banner styles */
.hvc-promo-ad {
  background: linear-gradient(110deg, #f97316 0%, #fb923c 100%);
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 8px;
}
.hvc-promo-label {
  font-size: 5px; font-weight: 900; color: rgba(255,255,255,.8);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 3px;
}
.hvc-promo-content {
  display: flex; align-items: center; justify-content: space-between; gap: 6px; width: 100%;
}
.hvc-promo-icon {
  font-size: 14px; color: #fff; font-weight: 900;
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.hvc-promo-text { flex: 1; }
.hvc-promo-cta {
  background: rgba(255,255,255,.25); color: #fff;
  font-size: 7px; font-weight: 800;
  padding: 4px 8px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
  text-align: center;
  border: 1px solid rgba(255,255,255,.3);
  transition: all 0.2s;
}
.hvc-promo-cta:active {
  background: rgba(255,255,255,.35);
  transform: scale(0.98);
}
/* Section label */
.hvc-section-label {
  font-size: 8.5px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.hvc-section-more { font-size: 7px; color: var(--gold); }
/* Bottom tab bar */
.hvc-tab-bar {
  display: flex; justify-content: space-around; align-items: flex-start;
  padding: 8px 4px 2px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  flex-shrink: 0;
}
.hvc-tab-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  flex: 1; position: relative;
}
.hvc-tab-item i { font-size: 12px; color: var(--text3); }
.hvc-tab-item.active i { color: var(--gold); }
.hvc-tab-item span { font-size: 5.5px; color: var(--text3); white-space: nowrap; }
.hvc-tab-item.active span { color: var(--gold); }
.hvc-tab-badge {
  position: absolute; top: -2px; right: calc(50% - 11px);
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e; animation: pulse-dot 1.5s infinite;
}
/* Home indicator */
.hvc-home-bar {
  width: 68px; height: 4px;
  background: rgba(128,128,160,.28);
  border-radius: 2px;
  margin: 6px auto 10px;
  flex-shrink: 0;
}
.hvc-app-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px;
}
.hvc-app-logo { font-size: 10px; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.hvc-app-icons { display: flex; gap: 3px; }
.hvc-app-icon-btn {
  width: 15px; height: 15px; border-radius: 3px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--text3);
}
.hvc-app-search {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; height: 20px;
  display: flex; align-items: center; padding: 0 6px; gap: 4px; margin-bottom: 7px;
}
.hvc-app-search-icon {
  width: 7px; height: 7px; border: 1.5px solid var(--text3);
  border-radius: 50%; flex-shrink: 0;
}
.hvc-app-search-bar { flex: 1; height: 5px; background: var(--border2); border-radius: 2px; }
.hvc-app-search-div { width: 1px; height: 10px; background: var(--border2); }
.hvc-app-search-label { font-size: 6.5px; color: var(--text3); }
.hvc-app-cats { display: flex; gap: 3px; margin-bottom: 8px; overflow: hidden; }
.hvc-app-cat {
  height: 15px; border-radius: 8px; padding: 0 7px; font-size: 6.5px;
  display: flex; align-items: center; white-space: nowrap; flex-shrink: 0;
}
.hvc-app-cat.active { background: var(--gold); color: #fff; font-weight: 600; }
.hvc-app-cat.inactive { background: var(--bg3); color: var(--text3); border: 1px solid var(--border); }
.hvc-app-products { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; position: relative; }
.hvc-app-product {
  background: var(--bg3); border-radius: 7px; padding: 5px;
  border: 1px solid transparent;
}
.hvc-app-product.active { border-color: rgba(139,92,246,.4); }
.hvc-app-product-img {
  height: 36px; border-radius: 5px; margin-bottom: 3px;
  display: flex; align-items: center; justify-content: center;
}
.hvc-app-product-img i { font-size: 13px; color: rgba(255,255,255,.85); }
.hvc-app-product-name {
  font-size: 6px; color: var(--text3); margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hvc-app-product-price { font-size: 7px; font-weight: 700; color: var(--gold); }
.hvc-app-product-price.alt { color: #f97316; }
.hvc-scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .8; animation: hvc-scan-sweep 2.4s ease-in-out infinite;
  pointer-events: none; z-index: 10; top: 50%;
}
@keyframes hvc-scan-sweep {
  0%   { top: 20%; opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .8; }
  100% { top: 88%; opacity: 0; }
}
.hvc-phone-foot {
  margin-top: 12px; text-align: center; font-size: 9px; color: var(--gold);
  font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.hvc-phone-foot-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e; animation: pulse-dot 1.5s infinite;
}
.hvc-flow {
  flex-shrink: 0; width: 54px; align-self: stretch;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.hvc-flow-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--border2), var(--gold));
  position: relative; overflow: hidden; border-radius: 1px;
}
.hvc-flow-line::after {
  content: ''; position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: hvc-flow-travel 1.4s linear infinite;
}
.hvc-flow-line:nth-child(2)::after { animation-delay: .35s; }
.hvc-flow-line:nth-child(3)::after { animation-delay: .7s; }
.hvc-flow-line:nth-child(4)::after { animation-delay: 1.05s; }
@keyframes hvc-flow-travel {
  0% { left: -40%; }
  100% { left: 120%; }
}
.hvc-flow-label {
  font-size: 9px; color: var(--gold); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; margin-top: 4px;
}
.hvc-flow-tag {
  font-size: 8px; font-family: var(--font-mono); font-weight: 700;
  letter-spacing: .06em; white-space: nowrap;
  padding: 2px 6px; border-radius: 4px; line-height: 1.4;
}
.hvc-flow-tag-api {
  background: rgba(139,92,246,.15); color: #a78bfa;
  border: 1px solid rgba(139,92,246,.3);
}
.hvc-flow-tag-ui {
  background: rgba(6,182,212,.12); color: var(--cyan);
  border: 1px solid rgba(6,182,212,.25);
}
.hvc-data {
  flex: 1; align-self: stretch; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: 0 20px 48px rgba(0,0,0,.18);
}
.hvc-data-head {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg3);
}
.hvc-data-head-left {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text2); font-weight: 600;
}
.hvc-data-head-left i { color: var(--gold); font-size: 10px; }
.hvc-row {
  display: grid; grid-template-columns: 1fr 68px 56px;
  align-items: center; gap: 8px; padding: 7px 14px;
  border-bottom: 1px solid var(--border); font-size: 12px;
  min-height: 32px;
}
.hvc-row:last-child { border-bottom: none; }
.hvc-row-ad {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.08), transparent);
  border-left: 3px solid #f97316;
}
.hvc-ad-badge {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff; font-size: 9px; font-weight: 900;
  padding: 2px 6px; border-radius: 4px;
  margin-right: 4px; letter-spacing: 0.5px;
  display: inline-block;
}
@keyframes hvc-row-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hvc-row-head { color: var(--text3); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; font-family: var(--font-mono); }
.hvc-row-head.right { text-align: right; }
.hvc-row-sku { display: none; }
.hvc-row-name { color: var(--text); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hvc-row-price { color: var(--gold); font-weight: 700; font-size: 12px; text-align: right; }
.hvc-row-stock { color: var(--text3); font-size: 11px; text-align: right; font-family: var(--font-mono); }
.hvc-data-foot {
  padding: 8px 14px; background: var(--bg3); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: var(--text3); font-family: var(--font-mono);
}
.hvc-data-foot-ok { color: #22c55e; font-weight: 600; }
.hdc-badge {
  font-family: var(--font-mono); font-size: 10px;
  background: rgba(48,213,200,.1); color: var(--cyan);
  padding: 3px 9px; border-radius: 4px;
}

/* ── FLOATING CHIPS ── */
.f-chip {
  position: absolute; background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.4); z-index: 3;
}
[data-theme="light"] .f-chip { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.f-chip.fc1 { top: -18px; right: -20px; animation: flt 3.2s ease-in-out infinite; }
.f-chip.fc2 { bottom: 44px; right: -24px; animation: flt 3.2s ease-in-out infinite 1.6s; }
.fc-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(139,92,246,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.fc-label { font-size: 10px; color: var(--text3); font-family: var(--font-mono); }
.fc-val { font-size: 14px; font-weight: 700; color: var(--text); }

/* Apps marquee preview */
.hero-visual {
  position: relative; cursor: zoom-in;
}
.hero.expanded .hero-visual { cursor: zoom-out; }
/* Expand hint badge */
.hvc-expand-hint {
  position: absolute; top: 10px; right: 10px; z-index: 20;
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: var(--text3); font-family: var(--font-mono);
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 20px; padding: 4px 10px;
  transition: opacity 0.3s ease; pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.hero.expanded .hvc-expand-hint { opacity: 0; }
/* Extra table columns — only shown in the expanded panel */
.hvc-extra { display: none; }
.hvc-row-brand { color: var(--text2); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hvc-row-delta { font-size: 11px; font-weight: 700; text-align: right; font-family: var(--font-mono); }
.hvc-row-delta.up { color: #22c55e; }
.hvc-row-delta.dn { color: #ef4444; }
.hvc-row-delta.fl { color: var(--text3); }
.hvc-row-rating { font-size: 11px; color: var(--text2); text-align: right; }
.hvc-row-rating .st { color: #f59e0b; }

/* ── HERO EXPAND PANEL ── */
.hero-epanel {
  position: absolute; inset: 0; z-index: 8;
  background: var(--bg);
  display: flex; align-items: center;
  padding: 120px 32px 80px;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.55s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hero.expanded .hero-epanel {
  clip-path: inset(0 0 0 0%);
  pointer-events: auto;
}
.hero-epanel-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; gap: 20px;
}
.hep-header {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.hep-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 800; letter-spacing: -.025em; color: var(--text);
}
.hep-collapse {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text3); font-family: var(--font-mono);
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 20px; padding: 6px 14px; cursor: pointer;
  transition: all .2s; white-space: nowrap; flex-shrink: 0; margin-left: 16px;
}
.hep-collapse:hover { color: var(--text2); border-color: rgba(255,255,255,.2); }
.hep-table {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
}
.hep-row {
  display: grid;
  grid-template-columns: 64px 1fr 100px 82px 56px 64px 86px 72px;
  align-items: center; gap: 10px;
  padding: 8px 16px; border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.hep-row:last-child { border-bottom: none; }
.hep-row.hep-head {
  background: var(--bg3);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text3); text-transform: uppercase; letter-spacing: .07em;
  padding-top: 9px; padding-bottom: 9px;
}
.hep-row.hep-head .r { text-align: right; }
.hep-sku { color: var(--text3); font-size: 10px; font-family: var(--font-mono); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hep-name { color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hep-brand { color: var(--text2); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hep-price { color: var(--gold); font-weight: 700; text-align: right; }
.hep-delta { font-size: 11px; font-weight: 700; text-align: right; font-family: var(--font-mono); }
.hep-delta.up { color: #22c55e; }
.hep-delta.dn { color: #ef4444; }
.hep-delta.fl { color: var(--text3); }
.hep-stock { color: var(--text3); font-size: 11px; text-align: right; font-family: var(--font-mono); }
.hep-rating { font-size: 11px; color: var(--text2); text-align: right; }
.hep-rating .st { color: #f59e0b; }
.hep-reviews { font-size: 11px; color: var(--text3); text-align: right; font-family: var(--font-mono); }
.hep-foot {
  padding: 9px 16px; background: var(--bg3); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: var(--text3); font-family: var(--font-mono);
}
.hep-foot-ok { color: #22c55e; font-weight: 600; }

.apps-showcase {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative; overflow: hidden;
}
.apps-showcase::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--cyan));
}
.showcase-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.showcase-title {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text3); text-transform: uppercase;
  letter-spacing: .1em;
}
.live-indicator {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; color: var(--cyan);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); animation: pulse-dot 1.5s infinite;
}
.apps-grid-mini {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.app-chip {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  cursor: default;
  transition: all .2s;
}
.app-chip:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.app-chip .app-icon {
  width: 36px; height: 36px; border-radius: 8px;
  margin: 0 auto 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}
.app-chip .app-name {
  font-size: 10px; color: var(--text2); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.data-stream {
  margin-top: 16px;
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text3);
  height: 80px;
  overflow: hidden;
  position: relative;
}
.data-stream::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 30px;
  background: linear-gradient(transparent, var(--bg));
}
.stream-line { margin-bottom: 4px; display: flex; gap: 8px; }
.stream-line .key { color: var(--text3); }
.stream-line .val { color: var(--cyan); }
.stream-line .val.gold { color: var(--gold); }
.stream-line .val.blue { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 20px 40px; }
  .hero-desc { font-size: 16px; max-width: 100%; }
}
