/* ============================================================
   Code Vault FX — Marketing Site v3
   Direction: Cyber (deep navy, #FFD700 gold, #00F5FF cyan)
   Fonts: Orbitron (headings) + Rajdhani (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:       #050B18;
  --surface:  #070D20;
  --surface2: #0A1428;
  --footer:   #030810;
  --gold:     #FFD700;
  --gold-dim: #FFE44D;
  --cyan:     #00F5FF;
  --green:    #22C55E;
  --border:   rgba(255,215,0,0.15);
  --border-c: rgba(0,245,255,0.2);
  --muted:    #e8eef5;
  --text:     #e5e7eb;
  --r:        0px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Orbitron', sans-serif;
  color: var(--gold);
  line-height: 1.1;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dim); }
img { max-width: 100%; display: block; }

/* ── Shared grid bg ─────────────────────────────────────── */
.grid-bg-cyan {
  position: absolute; inset: 0; pointer-events: none; opacity: .1;
  background-image:
    linear-gradient(rgba(0,245,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,.4) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-bg-gold {
  position: absolute; inset: 0; pointer-events: none; opacity: .1;
  background-image:
    linear-gradient(rgba(255,215,0,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Clip-path parallelogram helper */
.clip-btn { clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); }
.clip-btn-sm { clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
.clip-badge { clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); }
.clip-card { clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%); }

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(5,11,24,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-c);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-brand img { width: 40px; height: 40px; object-fit: contain; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .2em;
  color: var(--gold); line-height: 1;
}
.nav-brand-sub {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cyan); font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: #d1d5db;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }

.btn-nav-login {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s;
}
.btn-nav-login:hover { background: rgba(255,215,0,.1); color: var(--gold); }
.btn-nav-login svg { width: 14px; height: 14px; }

/* Mobile menu */
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--cyan); cursor: pointer; padding: .25rem;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 1rem;
  background: var(--bg); border-top: 1px solid var(--border-c);
  padding: 1.25rem 1.5rem;
}
.nav-mobile a {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #d1d5db; transition: color .2s;
}
.nav-mobile a:hover { color: var(--cyan); }
.nav-mobile .btn-nav-login { display: inline-flex; text-align: center; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #050B18 0%, #070D20 50%, #050B18 100%);
  overflow: hidden; padding-top: 64px;
}

/* HUD overlay text */
.hud-tl {
  position: absolute; top: 88px; left: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem; line-height: 1.6; letter-spacing: .12em;
  color: rgba(0,245,255,.4); pointer-events: none;
}
.hud-tr {
  position: absolute; top: 88px; right: 1.5rem; text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem; line-height: 1.6; letter-spacing: .12em;
  color: rgba(255,215,0,.4); pointer-events: none;
}

/* Corner brackets */
.corner {
  position: absolute; width: 32px; height: 32px; pointer-events: none;
}
.corner-tl { top: 80px; left: 1rem; }
.corner-tr { top: 80px; right: 1rem; transform: rotate(90deg); }
.corner-bl { bottom: 1rem; left: 1rem; transform: rotate(-90deg); }
.corner-br { bottom: 1rem; right: 1rem; transform: rotate(180deg); }
.corner::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 14px; height: 14px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}

.hero-radial {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(0,245,255,.08) 0%, transparent 70%);
}

.hero-inner {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1.5rem;
  max-width: 900px; width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 2rem;
  padding: .5rem 1.5rem;
  border: 1px solid rgba(0,245,255,.4);
  background: rgba(0,245,255,.05);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.hero-badge svg { width: 12px; height: 12px; color: var(--cyan); flex-shrink: 0; }
.hero-badge span {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cyan);
}

/* Main title */
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 900; letter-spacing: -.02em;
  line-height: .95; margin-bottom: 1rem;
}
.hero-title .t-white { color: #fff; }
.hero-title .t-gold {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255,215,0,.6), 0 0 60px rgba(255,215,0,.3);
}
.hero-logo {
  max-width: min(360px, 70vw);
  height: auto;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-tagline {
  font-size: clamp(.85rem, 2vw, 1.15rem);
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--cyan); font-weight: 400; margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0,245,255,.5);
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--muted); max-width: 620px; margin: 0 auto 3rem;
  line-height: 1.75; font-weight: 400;
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2rem;
  background: var(--gold); color: #050B18;
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(255,215,0,.35);
  transition: background .2s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold-dim); color: #050B18; box-shadow: 0 0 40px rgba(255,215,0,.5); }
.btn-gold svg { width: 16px; height: 16px; }

.btn-cyan {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2rem;
  border: 2px solid var(--cyan); color: var(--cyan); background: transparent;
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background .2s;
}
.btn-cyan:hover { background: rgba(0,245,255,.1); color: var(--cyan); }
.btn-cyan svg { width: 16px; height: 16px; }

/* ── Section shared ─────────────────────────────────────── */
.s-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 10; }

.s-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem 1rem; margin-bottom: 1.25rem;
  border: 1px solid;
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
}
.s-badge-gold { border-color: rgba(255,215,0,.4); background: rgba(255,215,0,.05); color: var(--gold); }
.s-badge-cyan  { border-color: rgba(0,245,255,.4);  background: rgba(0,245,255,.05);  color: var(--cyan); }

.s-heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; color: var(--gold); margin-bottom: 1rem;
}
.s-heading .t-gold {
  color: var(--gold); text-shadow: 0 0 20px rgba(255,215,0,.5);
}
.s-heading .t-cyan {
  color: var(--cyan); text-shadow: 0 0 20px rgba(0,245,255,.5);
}
.s-sub { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; line-height: 1.72; }

/* ── Products Section ────────────────────────────────────── */
.products-section { position: relative; padding: 7rem 0; background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}

.product-card {
  position: relative;
  background: var(--surface); padding: 1.75rem;
  border: 1px solid;
  clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
  transition: background .3s;
  overflow: hidden; cursor: pointer;
}
.product-card.gold-card { border-color: rgba(255,215,0,.3); }
.product-card.cyan-card { border-color: rgba(0,245,255,.3); }
.product-card:hover { background: var(--surface2); }

/* Top gradient line */
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 2rem; right: 2rem; height: 1px;
}
.product-card.gold-card::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.product-card.cyan-card::before {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* Hover radial glow */
.product-card-glow {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.product-card:hover .product-card-glow { opacity: 1; }
.product-card.gold-card .product-card-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,.12) 0%, transparent 70%);
}
.product-card.cyan-card .product-card-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,245,255,.12) 0%, transparent 70%);
}

.product-card-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.product-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid;
}
.product-icon.gold-icon {
  border-color: rgba(255,215,0,.4); background: rgba(255,215,0,.1);
  box-shadow: 0 0 15px rgba(255,215,0,.3); color: var(--gold);
}
.product-icon.cyan-icon {
  border-color: rgba(0,245,255,.4); background: rgba(0,245,255,.1);
  box-shadow: 0 0 15px rgba(0,245,255,.3); color: var(--cyan);
}
.product-icon svg { width: 22px; height: 22px; }

.product-tag {
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: .28rem .75rem; border: 1px solid;
  font-family: 'JetBrains Mono', monospace;
}
.product-tag.gold-tag { color: var(--gold); border-color: rgba(255,215,0,.4); background: rgba(255,215,0,.08); }
.product-tag.cyan-tag { color: var(--cyan); border-color: rgba(0,245,255,.4); background: rgba(0,245,255,.08); }

.product-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); margin-bottom: .6rem; position: relative; z-index: 1;
}
.product-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }

.product-card-footer {
  margin-top: 1.5rem; position: relative; z-index: 1;
  display: flex; align-items: center; gap: .75rem;
}
.product-divider { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, #374151, transparent); }
.product-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem;
}
.product-id.gold-id { color: rgba(255,215,0,.5); }
.product-id.cyan-id { color: rgba(0,245,255,.5); }

/* ── Features Section ────────────────────────────────────── */
.features-section { position: relative; padding: 7rem 0; background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.feature-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid #1f2937; background: var(--surface);
  transition: border-color .3s;
}
.feature-card:hover { border-color: #374151; }
.feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; border: 1px solid;
}
.feature-icon.gold-icon {
  border-color: rgba(255,215,0,.4); background: rgba(255,215,0,.1);
  box-shadow: 0 0 15px rgba(255,215,0,.2); color: var(--gold);
}
.feature-icon.cyan-icon {
  border-color: rgba(0,245,255,.4); background: rgba(0,245,255,.1);
  box-shadow: 0 0 15px rgba(0,245,255,.2); color: var(--cyan);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); margin-bottom: .4rem;
}
.feature-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── CTA box ─────────────────────────────────────────────── */
.cta-box {
  margin-top: 5rem; position: relative;
  border: 1px solid rgba(255,215,0,.3);
  background: var(--surface);
  padding: 3.5rem 2rem; text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-box-radial {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,215,0,.06) 0%, transparent 70%);
}
.cta-box-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem; position: relative; z-index: 1;
}
.cta-box h3 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900; color: #fff; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-box h3 .t-gold {
  color: var(--gold); text-shadow: 0 0 15px rgba(255,215,0,.5);
}
.cta-box p {
  color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem;
  font-size: 1rem; line-height: 1.72; position: relative; z-index: 1;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: .75rem; position: relative; z-index: 1;
  padding: 1rem 2.5rem;
  background: var(--gold); color: #050B18;
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(255,215,0,.4);
  transition: background .2s, box-shadow .2s;
}
.btn-cta:hover { background: var(--gold-dim); color: #050B18; box-shadow: 0 0 40px rgba(255,215,0,.55); }
.btn-cta svg { width: 16px; height: 16px; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--footer);
  border-top: 1px solid var(--border-c);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .2em; color: var(--gold);
}
.footer-brand-sub {
  font-size: .5rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(0,245,255,.6); font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.footer-links {
  display: flex; align-items: center; gap: 1.5rem; list-style: none;
}
.footer-links a {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: #b8c6d4; transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; color: #8fa0b2;
}

/* ── Env bar ─────────────────────────────────────────────── */
.env-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  text-align: center; padding: .3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  color: #fff;
}

/* ── Arsenal image cards ─────────────────────────────────── */
.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.arsenal-card {
  background: rgba(5,11,24,.7);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.arsenal-card:hover {
  border-color: rgba(255,215,0,.55);
  transform: translateY(-4px);
}
.arsenal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.arsenal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.85);
  transition: filter .35s, transform .4s;
}
.arsenal-card:hover .arsenal-img {
  filter: brightness(1);
  transform: scale(1.05);
}
.arsenal-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.arsenal-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .5rem;
}
.arsenal-name {
  font-family: 'Orbitron', sans-serif;
  font-size: .88rem; font-weight: 700;
  color: var(--gold); margin: 0; line-height: 1.3;
}
.arsenal-desc {
  font-size: .78rem; color: #e0e8f0;
  line-height: 1.6; margin: 0 0 .9rem;
  flex: 1;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .arsenal-grid  { grid-template-columns: repeat(2, 1fr); }
  .arsenal-img-wrap { height: 190px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile.open { display: flex; }
  .arsenal-grid  { grid-template-columns: 1fr; }
  .arsenal-img-wrap { height: 240px; }
  .hero-title { font-size: 3rem; }
  .hud-tl, .hud-tr { display: none; }
  .corner { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ── Lang switcher ─────────────────────────────────────────── */
.lang-switcher {
  display: inline-flex; align-items: center; gap: .3rem;
}
.ls-btn {
  font-family: 'Orbitron', 'JetBrains Mono', monospace;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  color: var(--muted, #9ca3af); text-decoration: none;
  padding: .2rem .4rem;
  transition: color .2s;
}
.ls-btn:hover { color: var(--cyan, #00F5FF); }
.ls-btn.ls-active { color: var(--gold, #FFD700); }
.ls-sep { color: var(--border-c, rgba(0,245,255,.2)); font-size: .7rem; }
.nav-lang-mobile { margin: .5rem 0; }

/* ── Reporter / Live Performance Widget ─────────────────── */
.reporter-section {
  background: #060d1a;
  border-top: 1px solid rgba(0,245,255,.15);
  padding: 4rem 1.5rem;
}
.reporter-inner { max-width: 1400px; margin: 0 auto; }

.reporter-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.reporter-title {
  font-family: 'Orbitron', sans-serif; font-size: 1.6rem;
  color: #FFD700; letter-spacing: .06em; margin: 0 0 .25rem;
}
.reporter-sub { color: rgba(255,255,255,.88); font-size: .85rem; margin: 0; }

.reporter-live-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(0,245,255,.07); border: 1px solid rgba(0,245,255,.2);
  padding: .4rem .9rem; border-radius: 4px;
}
.reporter-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #00F5FF;
  animation: rpt-pulse 1.4s ease-in-out infinite;
}
@keyframes rpt-pulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(0,245,255,.5); }
  50%      { opacity:.7; box-shadow: 0 0 0 5px rgba(0,245,255,0); }
}
.reporter-live-label { font-family: 'Orbitron',sans-serif; font-size: .7rem; color:#00F5FF; letter-spacing:.1em; }
.reporter-update-time { font-size: .75rem; color: rgba(255,255,255,.75); }

/* KPIs */
.reporter-kpis {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.reporter-kpi {
  flex: 1 1 140px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,245,255,.12);
  border-radius: 6px; padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.reporter-kpi-label { font-size: .72rem; color: rgba(255,255,255,.82); text-transform: uppercase; letter-spacing: .08em; }
.reporter-kpi-value { font-family:'Orbitron',sans-serif; font-size: 1.35rem; font-weight: 700; color: #fff; }

/* Tabs */
/* Filter bar */
.reporter-filter-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.25rem 0 1rem;
}
.reporter-filter-label {
  font-family: 'Orbitron', sans-serif;
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  white-space: nowrap;
}
.reporter-filter-select {
  background: rgba(0,245,255,.05);
  border: 1px solid rgba(0,245,255,.25);
  color: #e5e7eb;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  padding: .3rem .75rem;
  outline: none;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  min-width: 220px;
}
.reporter-filter-select:hover,
.reporter-filter-select:focus {
  border-color: #00F5FF;
  background: rgba(0,245,255,.1);
}
.reporter-filter-select option {
  background: #070D20;
  color: #e5e7eb;
}

.reporter-tabs { display: flex; gap: .5rem; margin-bottom: 0; border-bottom: 1px solid rgba(0,245,255,.15); }
.reporter-tab {
  background: none; border: none; border-bottom: 2px solid transparent;
  color: rgba(255,255,255,.45); font-family: 'Rajdhani',sans-serif;
  font-size: .9rem; font-weight: 600; padding: .6rem 1.2rem;
  cursor: pointer; letter-spacing: .04em; transition: color .2s, border-color .2s;
}
.reporter-tab:hover  { color: #00F5FF; }
.reporter-tab.active { color: #FFD700; border-bottom-color: #FFD700; }

/* Panels */
.reporter-panel { display: none; padding-top: 1rem; }
.reporter-panel.active { display: block; }

/* Tables */
.reporter-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0,245,255,.12);
  border-radius: 6px;
}
.reporter-table {
  width: 100%; border-collapse: collapse;
  font-family: 'JetBrains Mono', monospace; font-size: .78rem;
}
.reporter-table thead th {
  background: rgba(0,245,255,.07);
  color: rgba(255,255,255,.6); font-weight: 500;
  padding: .6rem .9rem; text-align: right; white-space: nowrap;
  border-bottom: 1px solid rgba(0,245,255,.15);
}
.reporter-table thead th:first-child { text-align: left; }
.reporter-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; }
.reporter-table tbody tr:last-child { border-bottom: none; }
.reporter-table tbody tr:hover { background: rgba(0,245,255,.04); }
.reporter-table tbody td {
  padding: .55rem .9rem; color: rgba(255,255,255,.8);
  text-align: right; white-space: nowrap;
}
.reporter-table tbody td:first-child { text-align: left; }
.rpt-empty  { text-align: center !important; color: rgba(255,255,255,.3); padding: 2rem !important; }
.rpt-loading { color: rgba(0,245,255,.5) !important; }
.rpt-label  { display: block; color: #fff; font-weight: 600; font-family: 'Rajdhani',sans-serif; font-size: .88rem; }
.rpt-magic  { display: block; color: rgba(255,255,255,.3); font-size: .7rem; }

/* Colour helpers */
.clr-green  { color: #00d97e !important; }
.clr-red    { color: #ff4d6d !important; }
.clr-orange { color: #ffa94d !important; }

/* ── Bot overview cards ─────────────────────────────────────── */
.bot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 .75rem;
}
@media (max-width: 1100px) {
  .bot-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 750px) {
  .bot-grid { grid-template-columns: repeat(2, 1fr); }
}
.bot-card {
  background: rgba(0,245,255,.025);
  border: 1px solid rgba(0,245,255,.12);
  padding: 1.1rem 1.15rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  position: relative;
}
.bot-card:hover  { border-color: rgba(0,245,255,.35); background: rgba(0,245,255,.05); transform: translateY(-2px); }
.bot-card.selected { border-color: rgba(0,245,255,.6); background: rgba(0,245,255,.08); }
.bot-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .6rem;
  gap: .5rem;
}
.bot-type-badge {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: .56rem;
  letter-spacing: .12em;
  padding: .1rem .45rem;
  border: 1px solid;
  margin-bottom: .3rem;
  text-transform: uppercase;
}
.bot-type-badge.grid  { color: #00F5FF; border-color: rgba(0,245,255,.45); }
.bot-type-badge.hedge { color: #FFD700; border-color: rgba(255,215,0,.45); }
.bot-type-badge.scalp { color: #22C55E; border-color: rgba(34,197,94,.45); }
.bot-type-badge.other { color: #9ca3af; border-color: rgba(156,163,175,.35); }
.bot-name { font-family: 'Orbitron', sans-serif; font-size: .95rem; font-weight: 700; color: var(--gold); margin: 0 0 .15rem; line-height: 1.2; letter-spacing: .02em; }
.bot-magic-num { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.bot-pnl { font-family: 'Orbitron', sans-serif; font-size: 1.35rem; font-weight: 800; text-align: right; white-space: nowrap; letter-spacing: .01em; }
.bot-card-id { display: flex; flex-direction: column; gap: .1rem; }

/* New simplified bot-stats grid (replaces .bot-metrics on homepage) */
.bot-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.2rem;
  padding: 1rem 0 .25rem;
  margin-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bot-stats:has(.bot-stat:only-child) { grid-template-columns: 1fr; }
.bot-stat { display: flex; flex-direction: column; gap: .15rem; }
.bot-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .14em;
}
.bot-stat-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem; font-weight: 600; color: #e5e7eb; letter-spacing: .01em;
}
.bot-footline {
  display: flex; justify-content: space-between; gap: .5rem;
  margin-top: .9rem; padding-top: .65rem;
  border-top: 1px dashed rgba(255,255,255,.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* Legacy classes kept for any non-homepage consumers */
.bot-symbols { font-size: .72rem; color: rgba(255,255,255,.7); letter-spacing: .05em; margin-bottom: .7rem; }
.bot-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .6rem; }
.bot-metric { display: flex; flex-direction: column; }
.bot-metric-label { font-size: .62rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; }
.bot-metric-val { font-family: 'Rajdhani', sans-serif; font-size: .88rem; font-weight: 600; color: #e5e7eb; }
.bot-selected-bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .75rem;
  background: rgba(0,245,255,.07);
  border: 1px solid rgba(0,245,255,.28);
  font-size: .77rem;
  margin-bottom: .6rem;
  color: #00F5FF;
}
.bot-selected-bar button {
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-left: auto;
  padding: 0;
}
.bot-selected-bar button:hover { color: #fff; }
@media (max-width: 480px) {
  .bot-grid { grid-template-columns: 1fr; }
}

.reporter-disclaimer {
  text-align: center; color: rgba(255,255,255,.55);
  font-size: .72rem; margin-top: 2rem;
}

