/* ═══════════════════════════════════════════════════════════
   Bravo Lima Trading — Global Stylesheet
   Palette: #0a0e1a (bg) · #111827 (surface) · #1e2a3a (card)
            #00d4aa (accent) · #0099cc (accent2) · #f0f4f8 (text)
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg:        #0a0e1a;
  --surface:   #111827;
  --card:      #1a2234;
  --border:    #2a3a50;
  --accent:    #00d4aa;
  --accent2:   #0099cc;
  --danger:    #ef4444;
  --warn:      #f59e0b;
  --text:      #e8edf5;
  --muted:     #8a9bb0;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --glow:      0 0 20px rgba(0,212,170,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a   { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ───────────────────────────────────────────────── */
header {
  background: rgba(10,14,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 5%;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  flex-wrap: wrap;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img {
  height: 36px;
  width: auto;
}

.nav-brand span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
  flex-wrap: wrap;
}

nav ul a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

nav ul a:hover { color: var(--text); background: rgba(255,255,255,0.05); text-decoration: none; }
nav ul a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #0a0e1a !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  transition: opacity .2s, transform .2s !important;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); background: none; text-decoration: none; }

/* ── Main wrapper ─────────────────────────────────────────── */
main { flex: 1; }

.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 28px;
  color: var(--muted);
  font-size: 14px;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--accent); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 100px 5% 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,170,0.08) 0%, transparent 70%);
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(0,212,170,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn, .btn-outline {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-align: center;
  white-space: nowrap;
}

.btn {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0a0e1a;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,212,170,0.3); text-decoration: none; opacity: .92; }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.btn-full { width: 100%; }

.btn-discord {
  background: #5865F2;
  color: white;
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: opacity .2s;
}
.btn-discord:hover { opacity: .85; text-decoration: none; }

/* ── Cards grid ───────────────────────────────────────────── */
.cards { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover { border-color: var(--accent); box-shadow: var(--glow); transform: translateY(-3px); }

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface);
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a2234, #0f1826);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.card-body { padding: 22px; }
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card-text  { color: var(--muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

/* ── Pricing ──────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}

.plan-card.featured {
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0e1a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-label { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.plan-price { font-size: 38px; font-weight: 800; color: var(--text); letter-spacing: -1px; margin-bottom: 4px; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.plan-desc  { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

.plan-perks { list-style: none; margin-bottom: 28px; flex: 1; }
.plan-perks li { font-size: 14px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.plan-perks li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── Form ─────────────────────────────────────────────────── */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 480px;
  margin: 40px auto;
}

.form-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; text-align: center; }
.form-sub   { color: var(--muted); font-size: 14px; margin-bottom: 28px; text-align: center; }

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 7px;
}

.required-star { color: var(--danger); margin-left: 3px; }

.form-input, .form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-input::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.12);
}
.form-input:disabled, .form-select:disabled { opacity: .5; cursor: not-allowed; }

.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238a9bb0'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-select option { background: var(--surface); }

.form-input.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }

.field-error { color: var(--danger); font-size: 13px; margin-top: 5px; display: none; }
.field-error.show { display: block; }

/* ── Banners ──────────────────────────────────────────────── */
.banner { padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; font-weight: 500; }
.banner-success  { background: rgba(0,212,170,0.1);  border: 1px solid rgba(0,212,170,0.3);  color: var(--accent); }
.banner-referral { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: var(--warn); }
.banner-error    { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: var(--danger); }

/* ── Result pages ─────────────────────────────────────────── */
.result-box {
  text-align: center;
  padding: 80px 30px;
  max-width: 520px;
  margin: 0 auto;
}
.result-icon { font-size: 64px; margin-bottom: 24px; }
.result-box h2 { font-size: 26px; margin-bottom: 12px; }
.result-box p  { color: var(--muted); margin-bottom: 10px; }
.result-actions { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Section headings ─────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.section-head p  { color: var(--muted); max-width: 500px; margin: 0 auto; }

/* ── Indicator detail ─────────────────────────────────────── */
.indicator-detail { max-width: 820px; margin: 0 auto; }
.indicator-detail h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.indicator-tagline   { color: var(--accent); font-size: 18px; margin-bottom: 28px; }
.indicator-desc      { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

.feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.feature-list li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-size: 14px; display: flex; gap: 10px; align-items: center;
}
.feature-list li::before { content: '↗'; color: var(--accent); }

.media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.media-item img { width: 100%; border-radius: 8px; border: 1px solid var(--border); }
.media-caption  { font-size: 12px; color: var(--muted); margin-top: 6px; text-align: center; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; margin-bottom: 10px; overflow: hidden;
}
details[open] { border-color: var(--accent); }
summary {
  padding: 18px 20px; cursor: pointer; font-weight: 600;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--accent); font-size: 20px; flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.faq-body { padding: 0 20px 18px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ── Stats strip ──────────────────────────────────────────── */
.stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 52px 0; }
.stat { flex: 1; padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num  { font-size: 28px; font-weight: 800; color: var(--accent); }
.stat-label{ font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.back-link { color: var(--muted); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px; }
.back-link:hover { color: var(--accent); }

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { height: auto; padding: 14px 0; gap: 12px; }
  nav ul { gap: 2px; }
  nav ul a { font-size: 13px; padding: 5px 8px; }
  .nav-brand span { font-size: 15px; }
  .hero { padding: 60px 5% 52px; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .feature-list, .media-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .form-wrap { padding: 28px 20px; }
  .container { padding: 40px 0; }
}
