/* ===== BOT-15M PAGE SPECIFIC STYLES ===== */
/* Green-dominant theme: black + neon green + electric blue accents */

:root {
  --g: #00f5a0;
  --b: #00aaff;
  --g-glow: rgba(0, 245, 160, 0.3);
  --b-glow: rgba(0, 170, 255, 0.3);
}

/* NAV BUTTON */
.btn-green { background: linear-gradient(135deg, #00f5a0, #00d9f5); color: #030a05; }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6vw 5rem;
  position: relative;
  overflow: hidden;
}
.ph-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,160,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,160,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.ph-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.3; animation: float 8s ease-in-out infinite;
}
.ph-orb-1 { width: 500px; height: 500px; background: radial-gradient(#00f5a0, transparent); top: -150px; right: -50px; }
.ph-orb-2 { width: 350px; height: 350px; background: radial-gradient(#00aaff, transparent); bottom: -100px; left: -50px; animation-delay: -4s; opacity: 0.2; }

.ph-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.ph-left { flex: 1; min-width: 320px; }
.ph-right { flex: 1; min-width: 300px; max-width: 520px; }

.back-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.back-link:hover { color: var(--g); }

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.green-tag {
  background: rgba(0,245,160,0.1);
  border: 1px solid rgba(0,245,160,0.3);
  color: var(--g);
}
.blue-tag {
  background: rgba(0,170,255,0.1);
  border: 1px solid rgba(0,170,255,0.3);
  color: var(--b);
}

.ph-left h1 { margin-bottom: 1.2rem; }

.grad-green {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-blue {
  background: linear-gradient(135deg, #00aaff, #a259ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.ph-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }

.ph-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.one-time-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g);
  opacity: 0.85;
}
.blue-badge { color: var(--b) !important; }

.btn-green-solid {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: #030a05;
  box-shadow: 0 4px 24px rgba(0,245,160,0.35);
}
.btn-green-solid:hover { box-shadow: 0 8px 40px rgba(0,245,160,0.55); transform: translateY(-2px); }

.btn-blue-solid {
  background: linear-gradient(135deg, #00aaff, #006eff);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,170,255,0.35);
}
.btn-blue-solid:hover { box-shadow: 0 8px 40px rgba(0,170,255,0.55); transform: translateY(-2px); }

.ph-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(0,245,160,0.08);
  border: 1px solid rgba(0,245,160,0.2);
  color: var(--g);
}

/* ===== BOT CARD ===== */
.bot-card {
  background: var(--surface);
  border: 1px solid rgba(0,245,160,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,245,160,0.1);
  animation: card-float 6s ease-in-out infinite;
}
.bc-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.bc-icon { font-size: 1.6rem; }
.bc-title { font-weight: 700; font-size: 0.95rem; }
.bc-sub { font-size: 0.75rem; color: var(--text-muted); }
.bc-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--g);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.green-dot { background: var(--g); box-shadow: 0 0 8px var(--g); animation: pulse-dot 2s ease infinite; }
.blue-dot { background: var(--b); box-shadow: 0 0 8px var(--b); animation: pulse-dot 2s ease infinite; }

.bc-chart { padding: 0.75rem 1rem 0; }
.bc-chart svg { width: 100%; height: auto; }

.bc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bc-stat {
  padding: 0.75rem 0.8rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  border-right: 1px solid var(--border);
}
.bc-stat:last-child { border-right: none; }
.bs-label { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.bs-val { font-size: 0.9rem; font-weight: 700; font-family: var(--font-mono); }
.bs-val.green { color: var(--g); }
.bs-val.blue { color: var(--b); }

.bc-terminal {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.bct-line { opacity: 0.85; }
.t-dim { color: var(--text-dim); }
.t-g { color: var(--g); }
.t-y { color: #ffd200; }
.t-b { color: var(--b); }

/* ===== AI SECTION ===== */
.ai-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ai-model-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.ai-model-card:hover { transform: translateY(-4px); }
.green-border { border-color: rgba(0,245,160,0.3); box-shadow: 0 0 30px rgba(0,245,160,0.08); }
.blue-border { border-color: rgba(0,170,255,0.3); box-shadow: 0 0 30px rgba(0,170,255,0.08); }
.ai-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.ai-model-card h4 { margin-bottom: 0.6rem; }
.ai-model-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.ai-connector {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  flex-shrink: 0; width: 80px;
}
.conn-label { font-size: 0.7rem; font-weight: 600; color: var(--g); text-align: center; line-height: 1.3; }

/* ===== FEATURES DEEP ===== */
.features-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.fd-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.fd-item:hover { border-color: rgba(0,245,160,0.2); transform: translateY(-3px); }
.fd-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.green-icon { background: rgba(0,245,160,0.1); }
.blue-icon { background: rgba(0,170,255,0.1); }
.fd-text h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.fd-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SETUP STEPS ===== */
.setup-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
}
.ss-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
}
.ss-step:hover { border-color: rgba(0,245,160,0.25); }
.ss-arrow { font-size: 1.5rem; color: var(--text-dim); padding: 0 0.5rem; flex-shrink: 0; margin-top: 2.5rem; }
.ss-num { font-size: 2.2rem; font-weight: 900; font-family: var(--font-mono); line-height: 1; margin-bottom: 0.7rem; }
.green-num {
  background: linear-gradient(135deg, var(--g), #00d9f5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ss-step h4 { margin-bottom: 0.4rem; font-size: 0.95rem; }
.ss-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SECTION LABELS ===== */
.green-label { color: var(--g) !important; }
.blue-label { color: var(--b) !important; }

/* ===== CTA SECTION ===== */
.page-cta { background: var(--bg2); position: relative; overflow: hidden; }
.cta-glow-green {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(#00f5a0, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06; filter: blur(60px); pointer-events: none;
}
.cta-glow-blue {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(#00aaff, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08; filter: blur(60px); pointer-events: none;
}
.cta-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--g), #00d9f5);
  color: #030a05;
  font-size: 1.1rem; font-weight: 800;
  padding: 0.5rem 1.5rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.blue-price-badge { background: linear-gradient(135deg, #00aaff, #006eff) !important; color: #fff !important; }

/* ===== LEADERBOARD (copy page) ===== */
.leaderboard {
  margin: 0.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.lb-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  padding: 0.4rem 1rem;
  color: var(--text-dim); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}
.lb-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: var(--transition);
}
.lb-row:last-child { border-bottom: none; }
.lb-row-active { background: rgba(0,170,255,0.05); }
.lb-addr { color: var(--text-muted); }
.lb-win { font-weight: 700; }
.blue-val { color: var(--b); }
.lb-vol { color: var(--text-muted); }
.lb-badge {
  display: inline-flex; padding: 0.2rem 0.6rem;
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
}
.copying { background: rgba(0,170,255,0.15); color: var(--b); border: 1px solid rgba(0,170,255,0.3); }
.watching { background: rgba(255,255,255,0.05); color: var(--text-dim); border: 1px solid var(--border); }

/* ===== SCORE GRID (copy page) ===== */
.score-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.score-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}
.score-card:hover { transform: translateY(-3px); border-color: rgba(0,170,255,0.3); }
.score-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.score-card h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.score-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.score-bar { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; margin-bottom: 0.4rem; }
.score-fill { height: 100%; border-radius: 2px; }
.blue-fill { background: linear-gradient(90deg, #00aaff, #006eff); }
.green-fill { background: linear-gradient(90deg, #00f5a0, #00d9f5); }
.score-min { font-size: 0.72rem; color: var(--text-dim); font-family: var(--font-mono); }

/* ===== PROTECTIONS GRID (copy page) ===== */
.prot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.prot-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}
.prot-card:hover { border-color: rgba(0,170,255,0.3); transform: translateY(-3px); }
.prot-num {
  font-size: 1.8rem; font-weight: 900; font-family: var(--font-mono);
  line-height: 1; margin-bottom: 0.7rem;
}
.blue-num {
  background: linear-gradient(135deg, #00aaff, #006eff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.prot-card h4 { margin-bottom: 0.4rem; font-size: 0.9rem; }
.prot-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CODE BLOCK (copy page) ===== */
.code-block {
  background: #060a10; border: 1px solid rgba(0,170,255,0.2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 0 40px rgba(0,170,255,0.08);
  margin: 2.5rem 0 1.5rem;
}
.code-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  background: rgba(0,170,255,0.05);
  border-bottom: 1px solid rgba(0,170,255,0.15);
}
.code-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.code-title { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-left: 0.5rem; font-family: var(--font-mono); }
.code-body {
  padding: 1.5rem 1.5rem;
  font-family: var(--font-mono); font-size: 0.85rem;
  color: #c9d4e8; line-height: 2;
  white-space: pre;
}
.c-dim { color: rgba(0,170,255,0.5); }
.deploy-note { font-size: 0.84rem; color: var(--text-dim); text-align: center; }

/* ===== COPY BOT CARD OVERRIDES ===== */
.copy-bot-card {
  border-color: rgba(0,170,255,0.2) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,170,255,0.1) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ph-inner { flex-direction: column; text-align: center; }
  .ph-desc { margin: 0 auto 2rem; }
  .ph-cta { justify-content: center; }
  .ph-pills { justify-content: center; }
  .ph-right { width: 100%; max-width: 100%; }
  .ai-grid { flex-direction: column; }
  .ai-connector { flex-direction: row; width: 100%; justify-content: center; }
  .features-deep { grid-template-columns: 1fr; }
  .setup-steps { flex-direction: column; }
  .ss-arrow { transform: rotate(90deg); align-self: center; margin: 0; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .prot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .score-grid { grid-template-columns: 1fr; }
  .prot-grid { grid-template-columns: 1fr; }
  .bc-stats { grid-template-columns: repeat(2, 1fr); }
}
