/* ==========================================================================
   TRUEDATA WORKSPACE - MASTER DEDUPLICATED CSS
   ========================================================================== */

/* --------------------------------------------------------------------------
   SECTION 1: ROOT VARIABLES (Deduplicated & Merged from 8 Repeated Blocks)
   -------------------------------------------------------------------------- */
:root {
  /* Core Brand Colors */
  --primary-color: #0d6efd;
  --primary-blue: #0284c7;
  --dark-bg: #0f172a;
  --card-bg: #ffffff;
  --bg-body: #f8fafc;
  --bg-sidebar: #ffffff;
  --border-color: #e2e8f0;

  /* Typography & Text Colors */
  --text-main: #0f172a;
  --text-muted: #64748b;

  /* Accent & Tier Badges */
  --accent-color: #10b981;
  --accent-green: #10b981;
  --accent-warning: #d97706;
  --accent-gold: #f59e0b;
  --accent-purple: #8b5cf6;
  --accent-danger: #ef4444;
  --accent-diamond: #0284c7;
  --accent-platinum: #475569;
}

/* --------------------------------------------------------------------------
   SECTION 2: BASE & TYPOGRAPHY STYLES
   -------------------------------------------------------------------------- */
/* Scoped to the auth panels on purpose: these pages render inside _MasterLayout,
   so a bare `body` rule here would restyle the shared site header and ticker. */
.login-container,
.signup-container,
.workspace-pricing {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  font-size: 13px;
  overflow-x: hidden;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.app-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --------------------------------------------------------------------------
   SECTION 3: TOP NAVBAR COMPONENTS
   -------------------------------------------------------------------------- */
.top-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.ticker-pill {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  /* font-weight: 700; */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.notif-btn {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-danger);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* --------------------------------------------------------------------------
   SECTION 4: LEFT SIDEBAR NAVIGATION
   -------------------------------------------------------------------------- */
.sidebar {
  width: 260px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  z-index: 1010;
  padding: 15px;
  padding-top: 79px;
  transition: transform 0.3s ease;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 13px;
  border-radius: 9px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-item-link:hover {
  background: #f1f5f9;
  color: var(--text-main);
}

.nav-item-link.active {
  background: #e0f2fe;
  color: var(--primary-blue);
}

.sidebar-upgrade-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #fef3c7 100%);
  border: 1px solid #bae6fd;
  border-radius: 9px;
  padding: 14px;
  margin-top: auto;
}

.vip-support-box {
  background: #0f172a;
  color: #ffffff;
  border-radius: 9px;
  padding: 14px;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   SECTION 5: PLAN BADGES & USER CARDS
   -------------------------------------------------------------------------- */
.user-card {
  background: #f1f5f9;
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #cbd5e1;
}

.plan-badge-free {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

.plan-badge-basic {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

.plan-badge-plus {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fcd34d;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

.plan-badge-pro {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #7dd3fc;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

.plan-badge-power {
  background: #0f172a;
  color: #fef08a;
  border: 1px solid #334155;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   SECTION 6: MAIN CANVAS & DASHBOARD CARDS
   -------------------------------------------------------------------------- */
.main-canvas {
  margin-left: 260px;
  flex: 1;
  padding: 24px;
  min-width: 0;
  transition: margin-left 0.3s ease;
}

.content-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  transition: all 0.2s ease;
  flex-direction: column;
}
.content-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
}

.theme-card{
border: 1px solid var(--border-color) !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
transition: all 0.2s ease;
border-radius: 9px !important;
}
.theme-card:hover{
   border-color: var(--primary-blue) !important;
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.08) !important;
  transform: translateY(-2px);
}

.resume-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.btn-resume {
  background: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.2s;
}

.btn-resume:hover {
  background: #1e293b;
  color: #ffffff;
}

.teaser-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 9px;
  padding: 20px;
}

.trial-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.trial-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 16px rgba(2, 132, 199, 0.08);
  transform: translateY(-2px);
}

.progress-thin {
  height: 6px;
  background-color: #e2e8f0;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   SECTION 7: TOP BANNERS & NOTIFICATIONS
   -------------------------------------------------------------------------- */


.top-realtime-bar {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  padding: 12px 20px;
  margin-bottom: 24px;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
}

.top-plus-bar {
  background: #fffbe3;
  border: 1px solid #fde68a;
  border-radius: 9px;
  padding: 12px 20px;
  margin-bottom: 24px;
  color: #92400e;
  font-size: 13px;
  font-weight: 600;
}

.top-pro-bar {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 9px;
  padding: 12px 20px;
  margin-bottom: 24px;
  color: #0369a1;
  font-size: 13px;
  font-weight: 600;
}

.top-power-bar {
  background: #0f172a;
  color: #ffffff;
  border-radius: 9px;
  padding: 12px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   SECTION 8: FEATURE TAGS & BADGES
   -------------------------------------------------------------------------- */
.unlocked-tag {
  font-size: 11px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 3px 6px;
  border-radius: 28px;
  margin-right: 3px;
  margin-bottom: 4px;
  display: inline-block;
  font-weight: 600;
}

.locked-tag {
  font-size: 11px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  color: var(--text-muted);
  padding: 3px 6px;
  border-radius: 28px;
  margin-right: 3px;
  margin-bottom: 4px;
  display: inline-block;
  cursor: pointer;
}

.locked-tag:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #f0f9ff;
}

.badge-active {
  background: #d1fae5;
  color: #065f46;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   SECTION 9: PRICING PAGE COMPONENTS
   -------------------------------------------------------------------------- */
.pricing-header {
  text-align: center;
  padding: 50px 15px 30px;
}

/* Dark section heading rows inside the feature comparison table. */
.workspace-pricing .compare-section td {
  background: #16233a;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 0;
}

.workspace-pricing .compare-section:hover td {
  background: #16233a;   /* table-hover must not lighten a section header */
}

/* Eyebrow pill above the pricing title.
   Colours are explicit rather than relying on Bootstrap's "bg-primary bg-opacity-10":
   if that opacity utility doesn't resolve, the pill renders solid blue and the blue
   text becomes invisible. */
.pricing-eyebrow {
  display: inline-block;
  background: rgba(13, 110, 253, 0.10);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-header h1 {
  font-weight: 800;
  color: var(--dark-bg);
}

.billing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  background: #e2e8f0;
  padding: 5px;
  border-radius: 50px;
  margin-top: 15px;
}

.billing-toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-toggle-btn.active {
  background: #ffffff;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.plan-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.plan-card.popular {
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

/* Border indicates the SELECTED card (not just the featured one). */
.plan-card.selected {
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* "Current plan" badge over the top edge of the subscribed card (absolute, so it never
   pushes the card down / breaks alignment - same technique as .popular-badge). */
.current-plan-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: #16a34a;
  border-radius: 20px;
  padding: 4px 14px;
  white-space: nowrap;
  z-index: 2;
}

.plan-card.is-current {
  border-color: #16a34a;
}

.plan-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
}

.plan-price-box {
  margin: 15px 0;
}

.plan-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--dark-bg);
}

.plan-period {
  font-size: 14px;
  color: var(--text-muted);
}

.segment-picker-box {
  background: #f1f5f9;
  border-radius: 9px;
  padding: 12px;
  margin: 15px 0;
  flex-grow: 1;
}

.segment-picker-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.segment-pill {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-main);
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.segment-pill:hover {
  border-color: var(--primary-color);
}

.segment-pill.active {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.segment-pill-price {
  float: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  font-size: 13px;
}

.card-features li {
  margin-bottom: 8px;
  color: #334155;
}

.card-features li i {
  color: var(--accent-color);
  margin-right: 6px;
}

.btn-select-plan {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-weight: 700;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   SECTION 10: COMPARISON TABLE & STICKY BAR
   -------------------------------------------------------------------------- */
.table-wrapper {
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid var(--border-color);
}

.table-cat-header {
  background: #0f172a;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  text-transform: uppercase;
}

.tablec th {
  background: #f8fafc;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  border-bottom: 2px solid var(--border-color);
}

.tablec td {
  vertical-align: middle;
  font-size: 13px;
  padding: 12px 16px;
}

.tablec td.feature-title {
  font-weight: 600;
  color: var(--dark-bg);
  background: #ffffff;
  width: 25%;
}

.tablec td.val-col {
  text-align: center;
  width: 15%;
}

.text-yes {
  color: #10b981;
  font-weight: 700;
}

.text-no {
  color: #cbd5e1;
}

.sticky-checkout-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #ffffff;
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.checkout-title {
  font-size: 14px;
  color: #94a3b8;
}

.checkout-details {
  font-size: 16px;
  font-weight: 700;
}

.checkout-price {
  font-size: 22px;
  font-weight: 900;
  color: #10b981;
}

/* --------------------------------------------------------------------------
   SECTION 11: CHECKOUT FORM COMPONENTS
   -------------------------------------------------------------------------- */
.text-td-blue {
  color: #0d6efd;
}

.bg-light-green {
  background-color: #f0fdf4;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.field-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.field-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.field-help {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.radio-card-custom {
  border: 2px solid #e2e8f0;
  border-radius: 9px;
  padding: 16px;
  background: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

input[type="radio"]:checked + .radio-card-custom {
  border-color: #0d6efd;
  background-color: #f0f7ff;
}

.btn-td-orange {
  background-color: #ff6b00;
  color: #ffffff;
  border: none;
  font-weight: 700;
  transition: background 0.2s ease;
}

.btn-td-orange:hover {
  background-color: #e05e00;
  color: #ffffff;
}

.price-profile-pic-text {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f2fe;
  color: #0284c7;
}

.accordion-button:not(.collapsed) {
  background-color: #f8fafc;
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   SECTION 12: SETTINGS, BILLING & SESSIONS MODULES
   -------------------------------------------------------------------------- */
.billing-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.expiry-countdown-box {
  background: linear-gradient(135deg, #fffbe3 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: 9px;
  padding: 15px;
}

.settings-tab-btn {
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.settings-tab-btn.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
  background: #ffffff;
}

.settings-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.session-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 9px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.current-device-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  padding: 20px;
}

.device-icon-box {
 width: 39px;
    height: 39px;
    border-radius: 29px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   SECTION 13: RESPONSIVE MEDIA QUERIES (Consolidated from 6 Repeated Blocks)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.show-mobile {
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .main-canvas {
    margin-left: 0 !important;
  }
}












/* Guided Tour Progress Dots */
.tour-dot {
  width: 18px;
  height: 6px;
  border-radius: 10px;
  background-color: #cbd5e1;
  transition: all 0.3s ease;
}

.tour-dot.active {
  background-color: #0284c7;
  width: 32px;
}

/* Tour Panes Transition */
.tour-step-pane {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}


.kpi-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}





.input-group.input-group-new {
    flex-wrap: nowrap;
}

















:root {
      --primary-blue: #0284c7;
      --primary-dark: #0f172a;
      --bg-body: #f8fafc;
      --border-color: #e2e8f0;
      --text-main: #0f172a;
      --text-muted: #64748b;
    }



    .font-mono {
      font-family: 'JetBrains Mono', monospace;
    }

    /* Split Screen Layout */
    .login-container {
      min-height: 100vh;
      display: flex;
    }

    /* Left Branding Sidebar Panel */
    .brand-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #ffffff;
      width: 45%;
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .brand-logo-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
      text-decoration: none;
    }

    .module-feature-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 16px;
      margin-bottom: 12px;
      transition: background 0.2s ease;
    }

    .module-feature-card:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    /* Right Login Form Panel */
    .form-section {
      flex: 1;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 24px;
    }

    .login-card-wrapper {
      width: 100%;
      max-width: 440px;
    }

    /* Form Controls */
    .form-label-custom {
      font-size: 13px;
      font-weight: 600;
      color: #334155;
      margin-bottom: 6px;
    }

    .form-control-custom {
      padding: 12px 16px;
      border-radius: 10px;
      border: 1px solid #cbd5e1;
      font-size: 14px;
      transition: all 0.2s ease;
    }

    .form-control-custom:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    }

    /* Social SSO Button */
    .btn-google-sso {
      background: #ffffff;
      border: 1px solid #cbd5e1;
      color: #334155;
      border-radius: 10px;
      padding: 11px;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.2s ease;
    }

    .btn-google-sso:hover {
      background: #f8fafc;
      border-color: #94a3b8;
    }

    .divider-line {
      display: flex;
      align-items: center;
      text-align: center;
      color: #94a3b8;
      font-size: 11px;
      font-weight: 700;
      margin: 20px 0;
      letter-spacing: 0.5px;
    }

    .divider-line::before,
    .divider-line::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #e2e8f0;
    }

    .divider-line::before {
      margin-right: 12px;
    }

    .divider-line::after {
      margin-left: 12px;
    }

    .btn-submit-login {
      background: var(--primary-blue);
      color: #ffffff;
      border: none;
      border-radius: 10px;
      padding: 12px;
      font-weight: 700;
      font-size: 15px;
      width: 100%;
      transition: background 0.2s ease;
    }

    .btn-submit-login:hover {
      background: #0369a1;
      color: #ffffff;
    }

    /* Method Tab Switcher (Password vs OTP) */
    .login-method-nav {
      background: #f1f5f9;
      padding: 4px;
      border-radius: 10px;
      display: flex;
      margin-bottom: 20px;
    }

    .login-method-btn {
      flex: 1;
      border: none;
      background: transparent;
      padding: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .login-method-btn.active {
      background: #ffffff;
      color: var(--primary-blue);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    /* Mobile Responsive */
    @media (max-width: 991.98px) {
      .brand-section {
        display: none;
      }

      .form-section {
        background: var(--bg-body);
      }

      .login-card-wrapper {
        background: #ffffff;
        padding: 32px 24px;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      }
    }











     :root {
      --primary-blue: #0284c7;
      --primary-dark: #0f172a;
      --bg-body: #f8fafc;
      --border-color: #e2e8f0;
      --text-main: #0f172a;
      --text-muted: #64748b;
    }



    .font-mono {
      font-family: 'JetBrains Mono', monospace;
    }

    /* Split Screen Layout */
    .signup-container {
      min-height: 100vh;
      display: flex;
    }

    /* Left Branding Sidebar Panel */
    .brand-section {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #ffffff;
      width: 45%;
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .brand-logo-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 800;
      color: #ffffff;
      text-decoration: none;
    }

    .module-feature-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 16px;
      margin-bottom: 12px;
      transition: background 0.2s ease;
    }

    .module-feature-card:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    /* Right Form Panel */
    .form-section {
      flex: 1;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 24px;
      overflow-y: auto;
    }

    .signup-card-wrapper {
      width: 100%;
      max-width: 480px;
    }

    /* Form Controls */
    .form-label-custom {
      font-size: 13px;
      font-weight: 600;
      color: #334155;
      margin-bottom: 6px;
    }

    .form-control-custom {
      padding: 11px 14px;
      border-radius: 10px;
      border: 1px solid #cbd5e1;
      font-size: 14px;
      transition: all 0.2s ease;
    }

    .form-control-custom:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    }

    /* Social SSO Button */
    .btn-google-sso {
      background: #ffffff;
      border: 1px solid #cbd5e1;
      color: #334155;
      border-radius: 10px;
      padding: 11px;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.2s ease;
    }

    .btn-google-sso:hover {
      background: #f8fafc;
      border-color: #94a3b8;
    }

    .divider-line {
      display: flex;
      align-items: center;
      text-align: center;
      color: #94a3b8;
      font-size: 11px;
      font-weight: 700;
      margin: 20px 0;
      letter-spacing: 0.5px;
    }

    .divider-line::before,
    .divider-line::after {
      content: '';
      flex: 1;
      border-bottom: 1px solid #e2e8f0;
    }

    .divider-line::before {
      margin-right: 12px;
    }

    .divider-line::after {
      margin-left: 12px;
    }

    .btn-submit-signup {
      background: var(--primary-blue);
      color: #ffffff;
      border: none;
      border-radius: 10px;
      padding: 12px;
      font-weight: 700;
      font-size: 15px;
      width: 100%;
      transition: background 0.2s ease;
    }

    .btn-submit-signup:hover {
      background: #0369a1;
      color: #ffffff;
    }

    /* Password Strength Indicator */
    .strength-meter-bar {
      height: 4px;
      border-radius: 4px;
      background-color: #e2e8f0;
      margin-top: 6px;
      transition: all 0.3s ease;
    }

    /* Mobile Responsive */
    @media (max-width: 991.98px) {
      .brand-section {
        display: none;
      }

      .form-section {
        background: var(--bg-body);
      }

      .signup-card-wrapper {
        background: #ffffff;
        padding: 32px 24px;
        border-radius: 20px;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      }
    }































    :root {
      --primary-color: #0284c7;
      --dark-bg: #0f172a;
      --card-bg: #ffffff;
      --accent-color: #10b981;
      --text-main: #0f172a;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --bg-body: #f8fafc;
    }


    .font-mono {
      font-family: 'JetBrains Mono', monospace;
    }

    /* GLOBAL WORKSPACE NAVBAR */
    .workspace-navbar {
      background: #ffffff;
      border-bottom: 1px solid var(--border-color);
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 1020;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .navbar-brand-logo {
      font-weight: 800;
      font-size: 18px;
      color: var(--dark-bg);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link-custom {
      font-weight: 600;
      color: var(--text-muted);
      font-size: 14px;
      padding: 6px 12px;
      border-radius: 8px;
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
      color: var(--primary-color);
      background: #f0f9ff;
    }

    /* HERO PRICING HEADER */
    .pricing-header {
      text-align: center;
      padding: 40px 15px 30px;
    }

    .pricing-header h1 {
      font-weight: 900;
      color: var(--dark-bg);
      letter-spacing: -0.5px;
    }

    /* Billing Toggle Switch */
    .billing-toggle-wrapper {
      display: inline-flex;
      align-items: center;
      background: #e2e8f0;
      padding: 4px;
      border-radius: 50px;
      margin-top: 20px;
    }

    .billing-toggle-btn {
      border: none;
      background: transparent;
      padding: 8px 24px;
      border-radius: 30px;
      font-weight: 700;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 13px;
    }

    .billing-toggle-btn.active {
      background: #ffffff;
      color: var(--primary-color);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* PLAN CARDS LAYOUT */
    .plan-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 24px 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    }

    .plan-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    }

    .plan-card.popular {
      box-shadow: 0 8px 20px rgba(2, 132, 199, 0.12);
    }

    .plan-card.selected {
      border: 2px solid var(--primary-color);
      box-shadow: 0 8px 20px rgba(2, 132, 199, 0.12);
    }

    .popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-color);
      color: #ffffff;
      font-size: 10px;
      font-weight: 800;
      padding: 3px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .plan-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 2px;
      color: var(--dark-bg);
    }

    .plan-price-box {
      margin: 12px 0;
    }

    .plan-price {
      font-size: 32px;
      font-weight: 900;
      color: var(--dark-bg);
    }

    .plan-period {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Dynamic Segment Pills */
    .segment-picker-box {
      background: #f8fafc;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 12px;
      margin: 12px 0;
      flex-grow: 1;
    }

    .segment-picker-title {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    .segment-pill {
      display: block;
      width: 100%;
      text-align: left;
      font-size: 11px;
      font-weight: 600;
      padding: 6px 10px;
      border-radius: 6px;
      border: 1px solid #cbd5e1;
      background: #ffffff;
      color: var(--text-main);
      margin-bottom: 6px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .segment-pill:hover {
      border-color: var(--primary-color);
      background: #f0f9ff;
    }

    .segment-pill.active {
      background: var(--primary-color);
      color: #ffffff;
      border-color: var(--primary-color);
    }

    .segment-pill-price {
      float: right;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
    }

    /* Features List Inside Cards */
    .card-features {
      list-style: none;
      padding: 0;
      margin: 15px 0;
      font-size: 12px;
    }

    .card-features li {
      margin-bottom: 8px;
      color: #334155;
    }

    .card-features li i {
      color: var(--accent-color);
      margin-right: 6px;
    }

    .btn-select-plan {
      width: 100%;
      border-radius: 10px;
      padding: 10px;
      font-weight: 700;
      margin-top: auto;
    }

    /* COMPARISON TABLE STYLING */
    .table-wrapper {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      margin-top: 30px;
      border: 1px solid var(--border-color);
    }

    .table-cat-header td {
      background: #0f172a !important;
      color: #ffffff !important;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.5px;
      padding: 12px 20px !important;
      text-transform: uppercase;
    }

    .table th {
      background: #f8fafc;
      font-weight: 700;
      text-align: center;
      padding: 14px;
      border-bottom: 2px solid var(--border-color);
      color: var(--dark-bg);
    }

    .table td {
      vertical-align: middle;
      font-size: 13px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-color);
    }

    .table td.feature-title {
      font-weight: 600;
      color: var(--dark-bg);
      background: #ffffff;
      width: 25%;
    }

    .table td.val-col {
      text-align: center;
      width: 15%;
    }

    /* STICKY BOTTOM CHECKOUT BAR */
    .sticky-checkout-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #0f172a;
      color: #ffffff;
      padding: 12px 24px;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .checkout-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .checkout-title {
      font-size: 12px;
      color: #94a3b8;
    }

    .checkout-details {
      font-size: 15px;
      font-weight: 700;
    }

    .checkout-price {
      font-size: 22px;
      font-weight: 900;
      color: #10b981;
    }






























     :root {
      --primary-color: #0284c7;
      --dark-bg: #0f172a;
      --card-bg: #ffffff;
      --accent-color: #10b981;
      --text-main: #0f172a;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --bg-body: #f8fafc;
    }

  

 
    /* GLOBAL WORKSPACE NAVBAR */
    .workspace-navbar {
      background: #ffffff;
      border-bottom: 1px solid var(--border-color);
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 1020;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .navbar-brand-logo {
      font-weight: 800;
      font-size: 18px;
      color: var(--dark-bg);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link-custom {
      font-weight: 600;
      color: var(--text-muted);
      font-size: 14px;
      padding: 6px 12px;
      border-radius: 8px;
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .nav-link-custom:hover,
    .nav-link-custom.active {
      color: var(--primary-color);
      background: #f0f9ff;
    }

    /* FORM & ACCORDION STYLING */
    .number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      background-color: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      font-size: 13px;
      font-weight: 800;
      margin-right: 12px;
      flex-shrink: 0;
    }

    .field-label {
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #334155;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }

    .field-input {
      width: 100%;
      padding: 10px 14px;
      border-radius: 10px;
      border: 1px solid #cbd5e1;
      font-size: 14px;
      outline: none;
      transition: all 0.2s ease;
    }

    .field-input:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    }

    .field-help {
      font-size: 11px;
      color: #64748b;
      margin-top: 4px;
    }

    .radio-card-custom {
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      padding: 16px;
      background: #ffffff;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .radio-card-custom:hover {
      border-color: #cbd5e1;
    }

    .btn-td-orange {
      background-color: #ff6b00;
      color: #ffffff;
      border: none;
      font-weight: 800;
      border-radius: 12px;
      transition: all 0.2s ease;
    }

    .btn-td-orange:hover {
      background-color: #e05e00;
      color: #ffffff;
      transform: translateY(-1px);
    }

    .price-profile-pic-text {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e0f2fe;
      color: #0284c7;
    }

    .accordion-button:not(.collapsed) {
      background-color: #ffffff;
      color: #0f172a;
    }

    .bg-light-green {
      background-color: #f0fdf4;
    }
/* --------------------------------------------------------------------------
   TrueData integration overrides
   These pages render inside _MasterLayout (site header + market ticker stay
   visible), so the designer's full-viewport assumptions are relaxed here and
   the few Tailwind-style utilities the markup relies on are supplied, since
   _MasterLayout does not load style1.css / sheets.css where they live.
   -------------------------------------------------------------------------- */
.login-container,
.signup-container {
  /* Inside _MasterLayout the site header/ticker sit above these panels, so a full
     100vh would push the page into a scrollbar. */
  min-height: 640px;
}

/* Login/SignUp render on _WorkspaceAuthLayout (no site header, no footer), so there
   the designer's full-viewport split-screen is restored. */
.ws-auth-standalone .login-container,
.ws-auth-standalone .signup-container {
  min-height: 100vh;
}

/* The project's local Bootstrap 5.1.0 is a customised build: it ships d-md-none and
   d-lg-block but NOT d-lg-none, so the designer's mobile-only header stayed visible on
   desktop. Supply the missing utility rather than editing the vendor file. */
@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
}

/* The sticky checkout bar is fixed to the bottom, so the page needs clearance or
   the last section sits underneath it. */
.workspace-pricing {
  padding-bottom: 110px;
}

.fw-black { font-weight: 900; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }

/* style.min.css sets h1-h6 to Gilroy with an element selector, which beats the
   DM Sans inherited from the container. Re-assert the design font on headings
   inside the auth panels only. */
.login-container h1, .login-container h2, .login-container h3,
.login-container h4, .login-container h5, .login-container h6,
.signup-container h1, .signup-container h2, .signup-container h3,
.signup-container h4, .signup-container h5, .signup-container h6,
.workspace-pricing h1, .workspace-pricing h2, .workspace-pricing h3,
.workspace-pricing h4, .workspace-pricing h5, .workspace-pricing h6 {
  font-family: 'DM Sans', sans-serif;
}

/* NOTE: .bg-opacity-20 is deliberately NOT defined. Bootstrap has no such class
   (it ships 10/25/50/75/100), so the designer's `bg-white bg-opacity-20` renders
   as a SOLID white circle - which is what the approved design shows. Defining it
   turned those module icon circles translucent grey. */
