/* ============================================================
   LogiSignals — Landing page styles
   Created: 2026-04-17 (session 115)
   Replaces inline styles across all landing components.
   ============================================================ */

/* ── Generic landing helpers ────────────────────────────── */
.ls-section-light { background: #fff; }
.ls-section-muted { background: #f0f4f8; }
.ls-section-blue  { background: #EDF5FF; }
.ls-section-dark  { background: #0f172a; color: #fff; }
.ls-section-darker{ background: #0a1628; color: #fff; }

.ls-section-pad   { padding: 60px 0; }
.ls-section-pad-lg{ padding: 80px 0; }

.ls-pill {
  display: inline-block;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.ls-pill-navy {
  background: rgba(0,61,102,0.1);
  color: #003D66;
}

.ls-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 14px;
}
.ls-heading-white { color: #fff; }

.ls-subtext {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}
.ls-subtext-lg { font-size: 16px; }
.ls-subtext-dark { color: #1e293b; }
.ls-note {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero-style1-custom {
  background-size: cover;
  background-position: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.hero-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(0,170,255,0.08);
  color: #0f172a;
  border-radius: 20px;
  border: 1px solid #00AAFF;
  white-space: nowrap;
}
.hero-card-wrap {
  background-image: url(/assets/img/bg-container-card.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,119,204,0.13);
  border: 1px solid rgba(0,170,255,0.18);
}

/* ── Header / Navigation ───────────────────────────────── */
.main-menu > ul > li > a {
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  transition: background 0.2s, color 0.2s !important;
  border-radius: 6px !important;
}
.main-menu > ul > li > a:hover {
  background: rgba(0,170,255,0.08) !important;
  color: var(--theme-color) !important;
}
.ls-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.ls-dropdown.ls-dropdown-right { left: auto; right: 0; }
.ls-dropdown li { display: block; width: 100%; }
.ls-dropdown a {
  padding: 10px 18px;
  display: block;
  font-size: 13px;
  color: var(--title-color);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
  text-transform: none !important;
  font-weight: 500 !important;
}
.ls-dropdown a:hover {
  background: rgba(0,170,255,0.06);
  color: var(--theme-color);
}
.ls-dropdown-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 4px 0;
  pointer-events: none;
}
.ls-dropdown-header {
  text-transform: uppercase;
  font-size: 0.7rem;
  opacity: 0.5;
  padding: 4px 18px;
  pointer-events: none;
  letter-spacing: 0.5px;
  color: #aaa;
}

/* ── Signal Example section ─────────────────────────────── */
.ls-signal-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.ls-sec-text-strong {
  color: #1e293b !important;
  font-weight: 500;
}

/* ── Asset Coverage (task 7: solid bg + white text) ─────── */
.ls-asset-card {
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  color: #fff;
  border: none;
}
.ls-asset-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.15);
}
.ls-asset-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ls-asset-icon i { color: #fff; }
.ls-asset-kind {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.ls-asset-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.ls-asset-coverage {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
}
.ls-asset-link { text-decoration: none; display: block; height: 100%; }
.ls-asset-header { display: flex; align-items: center; gap: 12px; }
.ls-asset-meta { flex: 1; }
.ls-asset-sample {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-style: italic;
}

/* ── Track Record table (task 8: striped rows) ──────────── */
.ls-tr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.ls-tr-table thead th {
  padding: 12px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.ls-tr-table tbody tr {
  transition: background 0.15s;
}
.ls-tr-table tbody tr:nth-child(odd) {
  background: #fff;
}
.ls-tr-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.ls-tr-table tbody tr:hover {
  background: #eef3ff !important;
}
.ls-tr-table td {
  padding: 14px 20px;
}
.ls-tr-td-pair  { font-weight: 700; color: #0f172a; font-family: 'DM Sans', sans-serif; }
.ls-tr-td-entry { font-family: monospace; color: #475569; font-weight: 600; }
.ls-tr-td-win   { font-weight: 700; color: #16a34a; }
.ls-tr-td-loss  { font-weight: 700; color: #dc2626; }

.ls-dir-badge {
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.ls-dir-badge-long  { background: #4ade80; }
.ls-dir-badge-short { background: #f87171; }

.ls-tp-badge {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.ls-tp3 { background: #dcfce7; color: #15803d; }
.ls-tp2 { background: #dbeafe; color: #1d4ed8; }
.ls-tp1 { background: #f0f9ff; color: #0369a1; }

/* ── Track Record section wrapper ──────────────────────── */
.ls-tr-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.ls-tr-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ls-tr-footer {
  padding: 14px 28px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ls-live-badge {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ls-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
}

.ls-subtitle-muted { background: #f0f4f8; border: none; }
.ls-tr-title { font-size: 15px; font-weight: 700; color: #0f172a; margin: 0; }
.ls-tr-sub   { font-size: 12px; color: #94a3b8; margin: 3px 0 0; }
.ls-tr-link  { font-size: 12px; font-weight: 700; color: #00AAFF; text-decoration: none; white-space: nowrap; }
.ls-sl-label { font-size: 12px; color: #dc2626; font-weight: 600; }
.ls-be-label { font-size: 12px; color: #92400e; font-weight: 600; }
.ls-tr-td-be { font-weight: 700; color: #92400e; }
.ls-table-scroll { overflow-x: auto; }

/* ── Intelligence Belt ─────────────────────────────────── */
.ls-belt-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.ls-belt-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.ls-belt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.ls-belt-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
  align-self: flex-start;
  letter-spacing: 0.05em;
}
.ls-belt-title { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0; }
.ls-belt-body  { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; flex-grow: 1; }
.ls-belt-cta   { font-size: 13px; font-weight: 600; }

/* ── How It Works ──────────────────────────────────────── */
.ls-hiw-section {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.ls-hiw-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  height: 100%;
}
.ls-hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,170,255,0.15);
  border: 1px solid rgba(0,170,255,0.3);
  font-size: 13px;
  font-weight: 800;
  color: #00AAFF;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.ls-hiw-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ls-hiw-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ls-hiw-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ls-hiw-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}
.ls-hiw-dot {
  flex-shrink: 0;
  margin-top: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00AAFF;
  display: inline-block;
}

/* ── Does It Work ──────────────────────────────────────── */
.ls-diw-section {
  background: #0f172a;
  padding: 60px 0;
}
.ls-diw-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.ls-diw-icon {
  background: rgb(42 69 99);
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

/* ── Features ──────────────────────────────────────────── */
.ls-feat-card {
  background: #fff;
  border: 1px solid #E8F0FE;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.ls-feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ls-feat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ls-feat-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.3;
}
.ls-feat-text {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ── Auth pages (login/register) ────────────────────────── */
.ls-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.ls-auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.ls-auth-logo-wrap {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ls-auth-subtitle {
  margin-top: 8px;
  color: #64748b;
}
.ls-social-btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.ls-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}
.ls-social-google {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #1e293b;
}
.ls-social-discord {
  background: #5865F2;
  border: none;
  color: #fff;
}
.ls-auth-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ls-auth-sep-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.ls-auth-sep-text {
  font-size: 13px;
  color: #94a3b8;
  flex-shrink: 0;
}
.ls-auth-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}
.ls-form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #374151;
}
.ls-form-group   { margin-bottom: 16px; }
.ls-form-group-lg{ margin-bottom: 24px; }
.ls-auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #64748b;
}
.ls-auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.ls-auth-terms label {
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  line-height: 1.5;
}

/* ── Misc ───────────────────────────────────────────────── */
.ls-link-theme { color: var(--theme-color); font-weight: 600; text-decoration: none; }
.ls-link-theme:hover { text-decoration: underline; }

.ls-forgot-row { text-align: right; margin-top: 6px; }
.ls-forgot-row a { font-size: 13px; color: var(--theme-color); text-decoration: none; }

/* ── Header extras ──────────────────────────────────────── */
.ls-nav-parent { position: relative; }
.ls-chevron-sm { font-size: 10px; margin-left: 4px; }
.ls-header-right { min-width: 160px; text-align: right; }
.ls-header-right .header-button { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.ls-header-right .th-btn { padding: 10px 16px; gap: 24px; font-size: 14px; }
.ls-header-right .th-btn.secondary .btn-text { padding: 9px 14px; font-size: 14px; }
.ls-header-right .th-btn.secondary .icon { width: 38px !important; padding: 9px 11px !important; }
.ls-mobile-dropdown-btn {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.ls-mobile-dropdown-btn i { margin-left: 6px; font-size: 11px; }
.ls-mobile-sub { padding-left: 18px; }
