* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #05080d;
  --secondary-dark: #0b1118;
  --tertiary-dark: #17202a;
  --accent-green: #3fcf9b;
  --accent-green-light: #8de3bb;
  --accent-green-glow: rgba(63, 207, 155, 0.22);
  --accent-gold: #d0b06a;
  --accent-gold-glow: rgba(208, 176, 106, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.028);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(211, 223, 236, 0.1);
  --text-light: #edf3f8;
  --text-muted: #8a98a8;
  --border-color: rgba(255, 255, 255, 0.1);
  --warning-color: #ff6b35;
  --success-color: #00c896;
  --danger-color: #ff4757;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(0, 200, 150, 0.12);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(63, 207, 155, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(109, 168, 255, 0.07), transparent 22%),
    linear-gradient(180deg, #04070c 0%, #081019 38%, #05080d 100%);
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(0, 200, 150, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(0, 200, 150, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gradient-bg {
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.98) 0%, rgba(9, 16, 24, 0.96) 44%, rgba(5, 8, 13, 1) 100%);
  position: relative;
}

.gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(ellipse 80% 50% at 18% 36%, rgba(63, 207, 155, 0.11) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 82% 68%, rgba(106, 166, 255, 0.07) 0%, transparent 50%);
  background-size: 80px 80px, 80px 80px, auto, auto;
  pointer-events: none;
  animation: ambientPulse 12s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(0, 200, 150, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 200, 150, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================
   NAVBAR - Modern sleek design
   ============================================ */
.navbar {
  padding: 0.9rem 0;
  background: rgba(5, 9, 14, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(222, 233, 245, 0.08);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.navbar-compact {
  background: rgba(5, 9, 14, 0.93);
  border-bottom: 1px solid rgba(222, 233, 245, 0.08);
}

.navbar-compact .navbar-collapse {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-compact .nav-primary,
.navbar-compact .nav-secondary {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.navbar-compact .nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-left: auto;
}

.navbar-compact .nav-cta {
  padding: 0.55rem 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 182, 133, 0.25);
}

.nav-more-menu {
  position: relative;
}

.nav-more-menu summary {
  list-style: none;
  cursor: pointer;
}

.nav-more-menu summary::-webkit-details-marker {
  display: none;
}

.nav-more-panel {
  position: absolute;
  right: 0;
  top: 130%;
  min-width: 180px;
  background: var(--secondary-dark);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 20;
}

.nav-more-menu[open] .nav-more-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.language-select {
  background: rgba(6, 10, 16, 0.8);
  color: var(--text-light);
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
}

.navbar.scrolled {
  background: rgba(6, 10, 16, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  font-family: "Space Grotesk", "IBM Plex Sans", "Inter", sans-serif;
  font-size: 1.48rem;
  font-weight: 700;
  color: var(--accent-green) !important;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar-brand i {
  font-size: 1.4rem;
}

.nav-link {
  color: rgba(233, 239, 245, 0.7) !important;
  margin: 0 0.5rem;
  padding: 0.52rem 0.84rem !important;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 999px;
  position: relative;
}

.navbar-brand span,
.nav-actions .btn {
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1220px) {
  .navbar-brand {
    font-size: 1.35rem;
  }

  .navbar-brand i {
    font-size: 1.2rem;
  }

  .navbar-compact .navbar-collapse {
    gap: 0.5rem;
  }

  .navbar-compact .nav-primary,
  .navbar-compact .nav-secondary {
    gap: 0.1rem;
  }

  .nav-link {
    margin: 0 0.2rem;
    padding: 0.45rem 0.62rem !important;
    font-size: 0.84rem;
  }

  .navbar-compact .nav-actions {
    gap: 0.4rem;
  }

  .navbar-compact .nav-cta {
    padding: 0.5rem 0.85rem;
  }
}

.nav-link:hover {
  color: var(--accent-green) !important;
  background: rgba(0, 200, 150, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 60%;
}

/* Mobile navbar toggle */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--secondary-dark);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--glass-border);
  }

  .navbar-nav {
    gap: 0.5rem !important;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
    border-radius: 8px;
  }

  .nav-link:hover {
    background: rgba(0, 200, 150, 0.15);
  }

  .nav-item.ml-2, .nav-item.ml-3 {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }

  .btn-outline-custom, .btn-primary-custom {
    width: 100%;
    text-align: center;
  }

  .navbar-compact .navbar-collapse {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .navbar-compact .nav-primary,
  .navbar-compact .nav-secondary,
  .navbar-compact .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-more-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
  }

  .language-switch {
    justify-content: space-between;
  }
}

/* ============================================
   BUTTONS - Modern gradient & glow effects
   ============================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, #3fcf9b 0%, #5fd5ba 52%, #9bdab8 100%);
  border: none;
  padding: 0.82rem 1.55rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 26px rgba(63, 207, 155, 0.22);
  color: #06110c;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 150, 0.45);
  color: white;
  text-decoration: none;
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-primary-custom:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 12px rgba(0, 200, 150, 0.3);
}

.btn-outline-custom {
  border: 1px solid rgba(146, 177, 164, 0.28);
  color: rgba(200, 217, 209, 0.92);
  padding: 0.82rem 1.55rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: rgba(63, 207, 155, 0.1);
  color: #dff8ec;
  border-color: rgba(141, 227, 187, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(63, 207, 155, 0.1);
}

.btn-outline-custom:active {
  transform: translateY(0) scale(0.98);
}

.btn:focus-visible,
.btn-primary-custom:focus,
.btn-primary-custom:focus-visible,
.btn-outline-custom:focus,
.btn-outline-custom:focus-visible,
.btn-outline-success:focus,
.btn-outline-success:focus-visible,
.btn-outline-danger:focus,
.btn-outline-danger:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================
   HERO SECTION - Bold & impactful
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 116px 0 72px;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 13, 0.96));
  pointer-events: none;
}

.hero-title {
  font-family: "Space Grotesk", "IBM Plex Sans", "Inter", sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.85rem);
  font-weight: 700;
  line-height: 0.98;
  margin-bottom: 1.35rem;
  max-width: 11ch;
  color: #edf3f8;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 0.76rem;
  color: rgba(176, 198, 187, 0.9);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  opacity: 0.96;
}

.hero-description {
  font-size: 1.04rem;
  color: #9aa7b4;
  line-height: 1.82;
  margin-bottom: 2rem;
  max-width: 37rem;
}

.hero-actions {
  align-items: center;
}

.trust-badges {
  margin-top: 2.3rem;
}

.trust-badge-row {
  gap: 0.55rem 0.7rem;
}

.trust-badge {
  opacity: 1;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  color: rgba(171, 186, 197, 0.78);
  border: 1px solid rgba(211, 223, 236, 0.08);
  background: rgba(255, 255, 255, 0.025);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-badge:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
  color: var(--accent-green-light);
  border-color: rgba(141, 227, 187, 0.24);
}

.hero-signal-card {
  padding: clamp(1.2rem, 2vw, 1.45rem) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(180deg, rgba(8, 13, 22, 0.96), rgba(7, 12, 20, 0.95)),
    radial-gradient(circle at top right, rgba(63, 207, 155, 0.12), transparent 38%);
  border: 1px solid rgba(211, 223, 236, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-signal-header {
  gap: 0.85rem;
}

.hero-signal-copy {
  min-width: 0;
}

.hero-signal-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  color: rgba(164, 182, 173, 0.86) !important;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.hero-signal-heading {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-signal-change {
  flex-shrink: 0;
  white-space: nowrap;
  color: #cbf5e1 !important;
  background: rgba(63, 207, 155, 0.08) !important;
  border-color: rgba(141, 227, 187, 0.18) !important;
}

.hero-signal-chart {
  overflow: hidden;
  border-radius: 16px;
}

.hero-chart-empty {
  min-height: 260px;
  border-radius: 16px;
  border: 1px dashed rgba(211, 223, 236, 0.16);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
}

.hero-chart-empty-title {
  color: var(--text-light);
  font-weight: 700;
}

.hero-chart-empty-copy {
  margin: 0.6rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-signal-stats {
  row-gap: 0.4rem;
}

.hero-fact-card {
  min-height: 100%;
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(211, 223, 236, 0.08);
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
}

.hero-fact-title {
  color: rgba(170, 189, 179, 0.88);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.hero-fact-detail {
  margin-top: 0.42rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 34, 0.5) 100%);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  letter-spacing: -0.04em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.feature-card {
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 200, 150, 0.25);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.platform-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.platform-capability-card {
  min-height: 100%;
}

.platform-capability-callout {
  margin-top: 3rem;
}

.platform-capability-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.platform-capability-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(225, 234, 242, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.platform-capability-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent-green-light);
}

.market-pulse-section {
  max-width: 1100px;
}

.market-pulse-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(171, 217, 198, 0.9);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.market-pulse-title {
  margin-bottom: 0.6rem;
  font-family: "Space Grotesk", "Inter", "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

.market-pulse-subtitle {
  margin-bottom: 1.2rem;
}

.market-pulse-intro-card {
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  background: linear-gradient(130deg, rgba(10, 24, 30, 0.88), rgba(15, 28, 40, 0.8));
  border: 1px solid rgba(0, 214, 156, 0.2);
}

.market-pulse-intro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.market-pulse-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.market-pulse-live-pill {
  font-size: 0.72rem;
  color: rgba(226, 255, 245, 0.86);
  border: 1px solid rgba(95, 250, 198, 0.28);
  border-radius: 999px;
  padding: 0.26rem 0.7rem;
  background: rgba(0, 200, 150, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.market-pulse-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.market-pulse-empty {
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(211, 223, 236, 0.08);
}

.market-pulse-empty-title {
  margin: 0;
  color: var(--text-light);
  font-weight: 700;
}

.market-pulse-empty-copy {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.market-mover-card {
  --mover-accent: #28e4a4;
  --mover-bg: linear-gradient(145deg, rgba(12, 37, 32, 0.84), rgba(9, 30, 27, 0.84));
  --mover-border: rgba(40, 228, 164, 0.3);
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0.9rem 0.75rem;
  border-radius: 13px;
  border: 1px solid var(--mover-border);
  background: var(--mover-bg);
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.market-mover-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mover-accent), transparent);
  opacity: 0.85;
}

.market-mover-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), 0 0 26px rgba(40, 228, 164, 0.16);
}

.market-mover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.market-mover-symbol {
  margin: 0;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.market-mover-window {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.14rem 0.42rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.market-mover-change {
  margin: 0.4rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mover-accent);
  font-family: "Space Grotesk", "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

.market-mover-price {
  margin: 0.1rem 0 0;
  color: rgba(239, 246, 255, 0.7);
  font-size: 0.78rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 34, 0.5) 100%);
}

.pricing-card {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--accent-green);
  transform: scale(1.03);
  box-shadow: 0 0 50px rgba(0, 200, 150, 0.15), 0 20px 40px rgba(0, 0, 0, 0.25);
  background: linear-gradient(180deg, rgba(0, 200, 150, 0.04), transparent);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 0 60px rgba(0, 200, 150, 0.2), 0 24px 48px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  color: white;
  padding: 0.4rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-amount {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.pricing-period {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: var(--accent-green);
  font-size: 0.8rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 80px 0;
}

.testimonial-card {
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(0, 200, 150, 0.15);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.author-info h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light);
}

.author-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ============================================
   SUCCESS SECTION
   ============================================ */
.success-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(15, 23, 34, 0.5) 0%, transparent 100%);
}

.success-metric {
  text-align: center;
  margin-bottom: 1.5rem;
}

.success-percentage {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.success-label {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-card {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 50px 0 25px;
  background: linear-gradient(180deg, var(--secondary-dark), #080d14);
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 150, 0.3), transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.social-links a {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin: 0 0.75rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-green);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
  .hero-section {
    padding: 76px 0 36px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.15rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .glass-card {
    border-radius: 12px;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .hero-actions {
    gap: 0.75rem !important;
  }

  .hero-actions .btn {
    margin-right: 0 !important;
  }

  .trust-badges {
    margin-top: 2rem;
  }

  .hero-signal-card {
    margin-top: 1.5rem !important;
  }

  .hero-signal-header {
    align-items: flex-start !important;
  }

  .hero-signal-heading {
    font-size: 1.25rem;
  }

  .pricing-grid {
    margin-top: 2rem !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .pricing-cycle-shell {
    padding: 0.95rem 1rem !important;
  }

  .pricing-selection-shell {
    padding: 1rem !important;
  }

  .pricing-selection-header {
    gap: 0.5rem 1rem;
  }

  .payment-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .cta-actions {
    gap: 0.75rem;
  }

  .market-pulse-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-section,
  .features-section,
  .pricing-section,
  .testimonials-section,
  .success-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 70px 0 30px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
  }

  .hero-description {
    font-size: 0.96rem;
    max-width: none;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  .trust-badge-row {
    justify-content: space-between;
    gap: 0.65rem;
  }

  .trust-badge {
    margin-right: 0 !important;
  }

  .trust-badge i {
    font-size: 1.5rem !important;
  }

  .stat-number {
    font-size: 2rem;
  }

  .pricing-amount {
    font-size: 2.25rem;
  }

  .pricing-card {
    padding: 1.35rem 1rem;
  }

  .pricing-tier {
    font-size: 1rem;
  }

  .pricing-features li {
    font-size: 0.88rem;
    gap: 0.55rem;
    padding: 0.55rem 0.25rem;
  }

  .hero-signal-card {
    padding: 1rem !important;
  }

  .hero-signal-header {
    flex-direction: column;
    align-items: stretch !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-signal-change {
    align-self: flex-start;
  }

  .hero-signal-heading {
    font-size: 1.15rem;
  }

  .hero-signal-chart {
    margin-bottom: 0.75rem !important;
  }

  .hero-signal-stats .stat-number {
    font-size: 1.9rem !important;
  }

  .market-pulse-section {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }

  .market-pulse-intro-card {
    padding: 0.9rem 0.95rem;
  }

  .market-pulse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .market-mover-card {
    min-height: 92px;
    padding: 0.72rem 0.75rem;
  }

  .feature-card,
  .testimonial-card,
  .cta-card {
    padding: 1.25rem;
  }

  .success-section .glass-card {
    padding: 1.4rem 1rem !important;
  }

  .pricing-selection-header,
  .pricing-coupon-row {
    flex-direction: column;
    align-items: stretch !important;
  }

  .pricing-coupon-input {
    max-width: none !important;
  }

  .payment-method-grid {
    grid-template-columns: 1fr !important;
  }

  .footer {
    padding: 40px 0 20px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .section-subtitle,
  .market-pulse-caption,
  .testimonial-text,
  .feature-description {
    font-size: 0.9rem;
  }

  .hero-signal-stats .col-6 {
    margin-bottom: 0.4rem !important;
  }

  .hero-signal-stats .stat-number {
    font-size: 1.65rem !important;
  }

  .market-pulse-grid {
    grid-template-columns: 1fr;
  }

  .market-mover-card {
    min-height: 84px;
  }

  .pricing-card {
    padding: 1.2rem 0.9rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   FREEBIES LANDING
   ============================================ */
.freebies-page {
  position: relative;
  min-height: 100vh;
}

.freebies-hero {
  padding: 6.5rem 0 4rem;
}

.freebies-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.freebies-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--accent-green-light);
  margin-bottom: 0.75rem;
}

.freebies-title {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.freebies-title span {
  color: var(--accent-gold);
  text-shadow: 0 0 18px var(--accent-gold-glow);
}

.freebies-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.freebies-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.freebies-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 200, 150, 0.12);
  color: var(--text-light);
  border: 1px solid rgba(0, 200, 150, 0.35);
  font-size: 0.85rem;
}

.freebies-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  display: grid;
  gap: 0.65rem;
}

.freebies-list li::before {
  content: "+";
  color: var(--accent-green);
  margin-right: 0.5rem;
}

.freebies-hero-card {
  padding: 2rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.freebies-card-header h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.freebies-card-header p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.freebies-form {
  display: grid;
  gap: 1rem;
}

.consent-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.consent-row input {
  margin-top: 0.2rem;
  accent-color: var(--accent-green);
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.form-hint.error {
  color: var(--warning-color);
}

.freebies-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.form-disclaimer a {
  color: var(--accent-green);
  text-decoration: none;
}

.freebies-section {
  padding: 3.5rem 0;
}

.freebies-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.freebies-section-title p {
  color: var(--text-muted);
}

.freebies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.freebies-card {
  padding: 1.6rem;
  position: relative;
}

.freebies-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.freebies-card p {
  color: var(--text-muted);
}

.freebies-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(244, 196, 107, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.freebies-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green-light);
}

.freebies-bonus {
  background: rgba(6, 10, 16, 0.6);
}

.freebies-bonus-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.freebies-bonus-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.freebies-bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: var(--text-light);
}

.freebies-bonus-list li::before {
  content: "-";
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.freebies-bonus-card {
  padding: 1.8rem;
}

.freebies-steps {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.freebies-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.freebies-step-number {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

.freebies-step h4 {
  margin: 0 0 0.25rem;
}

.freebies-step p {
  margin: 0;
  color: var(--text-muted);
}

.freebies-secondary {
  width: 100%;
  text-align: center;
}

.freebies-cta {
  margin-top: 2rem;
  text-align: center;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}

.freebies-cta-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.upsell-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 10, 16, 0.82);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.upsell-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 2rem;
}

.upsell-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 15, 24, 0.6);
  color: var(--text-light);
  cursor: pointer;
}

.upsell-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--accent-green-light);
  margin-bottom: 0.5rem;
}

.upsell-title {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.upsell-copy {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.upsell-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
  color: var(--text-light);
}

.upsell-list li::before {
  content: "+";
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.upsell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.float-card {
  animation: floatSoft 6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .freebies-hero {
    padding: 5.5rem 0 3rem;
  }

  .freebies-hero-card {
    padding: 1.5rem;
  }

  .freebies-offer {
    gap: 0.5rem;
  }
}

/* ============================================
   AFFILIATE PAGE
   ============================================ */
.affiliate-page {
  position: relative;
  padding-bottom: 4rem;
}

.affiliate-hero {
  padding: 7rem 0 4rem;
}

.affiliate-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.affiliate-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.affiliate-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent-green);
}

.affiliate-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--text-light);
}

.affiliate-subtitle {
  color: var(--text-muted);
  max-width: 480px;
}

.affiliate-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.affiliate-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 200, 150, 0.25);
  background: rgba(0, 200, 150, 0.08);
  font-size: 0.85rem;
  color: var(--text-light);
}

.affiliate-hero-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.affiliate-hero-card h3 {
  margin: 0;
}

.affiliate-link-preview {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.affiliate-link-preview code {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  color: var(--text-light);
}

.affiliate-section {
  padding: 2.5rem 0;
}

.affiliate-section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.affiliate-section-title h2 {
  margin-bottom: 0.4rem;
}

.affiliate-section-title p {
  color: var(--text-muted);
}

.affiliate-commission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.affiliate-commission-card {
  padding: 1.5rem;
  text-align: center;
}

.affiliate-commission-card span {
  display: block;
  margin-top: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
}

.affiliate-earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.affiliate-earnings-card {
  padding: 1.5rem;
}

.affiliate-earnings-card span {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.affiliate-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.affiliate-page .form-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.affiliate-page .form-input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-light);
}

.affiliate-page .form-input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(0, 200, 150, 0.2);
}

.affiliate-page .form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.affiliate-card {
  background: linear-gradient(140deg, rgba(0, 200, 150, 0.18), rgba(6, 10, 16, 0.8));
  border: 1px solid rgba(0, 200, 150, 0.25);
}

.affiliate-card .card-title {
  color: var(--accent-green);
}

@media (max-width: 1024px) {
  .affiliate-hero-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-commission-grid,
  .affiliate-earnings-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DASHBOARD PAGE - Comprehensive styling
   ============================================ */
.dashboard-page {
  font-family: 'IBM Plex Sans', 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(63, 207, 155, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(88, 137, 224, 0.08), transparent 20%),
    linear-gradient(180deg, #04070c 0%, #091119 42%, #06090f 100%);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

.dashboard-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), transparent 90%);
}

.dashboard-page * {
  box-sizing: border-box;
}

.dashboard-page .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-page .header {
  background: rgba(6, 10, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dashboard-page .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-page .nav-brand {
  display: flex;
  align-items: center;
}

.dashboard-page .nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.dashboard-page .nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.dashboard-page .nav-links a:hover,
.dashboard-page .nav-links a.active {
  color: var(--accent-green);
  background: rgba(0, 200, 150, 0.1);
}

.dashboard-page .btn {
  padding: 0.72rem 1.18rem;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-page .btn-primary {
  background: linear-gradient(135deg, #3fcf9b 0%, #8de3bb 100%);
  color: #07110d;
  box-shadow: 0 10px 24px rgba(63, 207, 155, 0.2);
}

.dashboard-page .btn-primary:hover {
  box-shadow: 0 14px 26px rgba(63, 207, 155, 0.24);
  transform: translateY(-1px);
}

.dashboard-page .btn-secondary {
  background-color: rgba(255, 255, 255, 0.02);
  color: #bcc8d3;
  border: 1px solid rgba(211, 223, 236, 0.12);
}

.dashboard-page .btn-secondary:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(0, 200, 150, 0.1);
}

.dashboard-page .btn-danger {
  background: linear-gradient(135deg, var(--danger-color) 0%, #ff6b7a 100%);
  color: white;
}

.dashboard-page .btn-success {
  background: linear-gradient(135deg, var(--success-color) 0%, var(--accent-green-light) 100%);
  color: white;
}

.dashboard-page .main-content {
  padding: 7.25rem 0 2.5rem;
}

.dashboard-page .dashboard-shell {
  position: relative;
  padding-bottom: 4rem;
}

.dashboard-page .dashboard-shell > * {
  position: relative;
  z-index: 1;
}

.dashboard-page .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-page .main-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard-page .sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: fit-content;
}

.dashboard-page .card {
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.95), rgba(8, 14, 28, 0.97));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

.dashboard-page .card:hover {
  border-color: rgba(45, 212, 191, 0.22);
}

.dashboard-page .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--glass-border);
}

.dashboard-page .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}

.dashboard-page .stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-page .stat-card {
  background: linear-gradient(180deg, rgba(13, 20, 37, 0.95), rgba(8, 14, 28, 0.97));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.dashboard-page .stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.dashboard-page .stat-card:hover {
  border-color: rgba(0, 200, 150, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 200, 150, 0.06);
}

.dashboard-page .stat-card:hover::after {
  opacity: 1;
}

.dashboard-page .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.dashboard-page .stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.dashboard-page .bot-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-page .bot-item {
  background: rgba(7, 14, 27, 0.72);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-page .bot-item:hover {
  border-color: rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.06);
}

.dashboard-page .bot-info {
  flex: 1;
  min-width: 150px;
}

.dashboard-page .bot-name {
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.dashboard-page .bot-symbol {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.dashboard-page .bot-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dashboard-page .status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.dashboard-page .status-active {
  background-color: var(--success-color);
  box-shadow: 0 0 12px rgba(0, 200, 150, 0.5);
}

.dashboard-page .status-inactive {
  background-color: var(--text-muted);
  box-shadow: none;
}

.dashboard-page .bot-controls {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dashboard-page .real-time-data {
  background: rgba(7, 14, 27, 0.72);
  padding: 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.dashboard-page .indicator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.dashboard-page .indicator {
  text-align: center;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.dashboard-page .indicator-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-page .indicator-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-green);
}

.dashboard-page .dashboard-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(10, 18, 34, 0.94), rgba(14, 24, 44, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.dashboard-page .dashboard-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.dashboard-page .dashboard-eyebrow {
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-page .dashboard-hero-title {
  margin: 0.25rem 0 0.45rem;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  line-height: 1.12;
  color: var(--text-light);
}

.dashboard-page .dashboard-hero-copy {
  margin: 0;
  max-width: 48rem;
  color: var(--text-muted);
}

.dashboard-page .dashboard-hero-badges,
.dashboard-page .dashboard-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dashboard-page .dashboard-jumpbar {
  position: sticky;
  top: 6rem;
  z-index: 5;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(7, 12, 24, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.dashboard-page .dashboard-jumpbar a {
  color: var(--text-light);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-page .dashboard-jumpbar a:hover {
  border-color: rgba(45, 212, 191, 0.36);
  background: rgba(45, 212, 191, 0.08);
}

.dashboard-page #dashboard-overview,
.dashboard-page #dashboard-bots,
.dashboard-page #dashboard-automation,
.dashboard-page #dashboard-operations,
.dashboard-page #dashboard-insights {
  scroll-margin-top: 8rem;
}

.dashboard-page .dashboard-side-card {
  padding-top: 1rem;
}

.dashboard-page .auth-form {
  max-width: 440px;
  margin: 3rem auto;
  background: linear-gradient(180deg, rgba(10, 16, 24, 0.98), rgba(8, 13, 20, 0.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.2rem;
  border-radius: 24px;
  border: 1px solid rgba(211, 223, 236, 0.1);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  position: relative;
  overflow: hidden;
}

.dashboard-page .auth-form.auth-form-register {
  max-width: min(1180px, calc(100vw - 2rem));
  padding: 2rem 2.1rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(63, 207, 155, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(10, 16, 24, 0.96), rgba(8, 13, 20, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42), 0 0 80px rgba(63, 207, 155, 0.04);
}

.dashboard-page .auth-form.auth-form-register::before {
  height: 3px;
}

.dashboard-page .auth-form.auth-form-register #register-form {
  width: 100%;
}

.dashboard-page .auth-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.dashboard-page .auth-form::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.dashboard-page .form-group {
  margin-bottom: 1.25rem;
}

.dashboard-page .form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.dashboard-page .form-input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(211, 223, 236, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-light);
  font-size: 0.98rem;
  transition: all 0.3s ease;
}

.dashboard-page .form-input:focus {
  outline: none;
  border-color: rgba(141, 227, 187, 0.42);
  box-shadow: 0 0 0 3px rgba(63, 207, 155, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-page .form-input::placeholder {
  color: var(--text-muted);
}

.dashboard-page .error-message {
  color: var(--danger-color);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 71, 87, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 71, 87, 0.2);
}

.dashboard-page .success-message {
  color: var(--success-color);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(0, 200, 150, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 200, 150, 0.2);
}

.dashboard-page .hidden {
  display: none !important;
}

.dashboard-page .loading {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
  font-size: 0.95rem;
}

/* Dashboard mobile responsive */
@media (max-width: 992px) {
  .dashboard-page .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-page .sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .platform-capability-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-page .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .dashboard-page .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .dashboard-page .stats-overview {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-page .bot-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-page .bot-status {
    width: 100%;
    justify-content: space-between;
  }

  .dashboard-page .bot-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .dashboard-page .auth-form {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  .dashboard-page .auth-form.auth-form-register {
    max-width: calc(100vw - 1.5rem);
    padding: 1.35rem 1rem;
    margin: 0.75rem;
    border-radius: 20px;
  }

  .dashboard-page .dashboard-hero {
    flex-direction: column;
  }

  .dashboard-page .dashboard-jumpbar {
    top: 5.1rem;
  }
}

@media (max-width: 480px) {
  .hero-fact-detail {
    font-size: 0.84rem;
  }

  .dashboard-page .stats-overview {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .dashboard-page .stat-card {
    padding: 1rem;
  }

  .dashboard-page .stat-number {
    font-size: 1.5rem;
  }

  .dashboard-page .indicator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Business landing page --- */
.biz-landing {
  --biz-ink: #0b1014;
  --biz-ink-soft: #121a21;
  --biz-sand: #f4f1ea;
  --biz-mint: #9ef8c7;
  --biz-teal: #29b384;
  --biz-coral: #f28b5b;
  --biz-gold: #f1c16b;
  --biz-line: rgba(255, 255, 255, 0.08);
  --biz-glow: rgba(46, 168, 120, 0.35);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(46, 168, 120, 0.15), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(242, 139, 91, 0.18), transparent 55%),
    var(--biz-ink);
  color: var(--biz-sand);
  font-family: "Space Grotesk", "IBM Plex Sans", "Helvetica Neue", sans-serif;
}

.biz-hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.biz-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 25% 20%, rgba(158, 248, 199, 0.18), transparent 60%),
    radial-gradient(600px 400px at 80% 30%, rgba(241, 193, 107, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(18, 26, 33, 0.9), rgba(11, 16, 20, 0.95));
  opacity: 0.95;
  z-index: 0;
}

.biz-hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.65;
  animation: biz-float 10s ease-in-out infinite;
  z-index: 1;
}

.biz-hero-orbit.orb-1 {
  width: 220px;
  height: 220px;
  left: -40px;
  top: 120px;
  background: radial-gradient(circle, rgba(41, 179, 132, 0.35), rgba(41, 179, 132, 0.05) 70%);
}

.biz-hero-orbit.orb-2 {
  width: 160px;
  height: 160px;
  right: 60px;
  top: 80px;
  animation-delay: -2s;
  background: radial-gradient(circle, rgba(242, 139, 91, 0.4), rgba(242, 139, 91, 0.05) 70%);
}

.biz-hero-orbit.orb-3 {
  width: 120px;
  height: 120px;
  right: 30%;
  bottom: 20px;
  animation-delay: -4s;
  background: radial-gradient(circle, rgba(241, 193, 107, 0.35), rgba(241, 193, 107, 0.05) 70%);
}

.biz-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.biz-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(41, 179, 132, 0.15);
  color: var(--biz-mint);
  border: 1px solid rgba(41, 179, 132, 0.4);
}

.biz-hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.biz-lede {
  font-size: 1.15rem;
  color: rgba(244, 241, 234, 0.78);
  max-width: 560px;
}

.biz-hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
  flex-wrap: wrap;
}

.biz-hero-meta {
  display: grid;
  gap: 0.75rem;
}

.biz-meta-card {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(18, 26, 33, 0.7);
  border: 1px solid var(--biz-line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.biz-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.6);
}

.biz-meta-value {
  font-size: 1rem;
  color: var(--biz-sand);
}

.biz-hero-panel {
  background: rgba(18, 26, 33, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(6, 12, 16, 0.5);
}

.biz-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.biz-pill {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(241, 193, 107, 0.2);
  color: var(--biz-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.biz-panel-body {
  display: grid;
  gap: 0.6rem;
}

.biz-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  background: rgba(11, 16, 20, 0.6);
  border: 1px solid var(--biz-line);
}

.biz-panel-value {
  font-weight: 600;
  color: var(--biz-mint);
}

.biz-panel-footer {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: center;
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.9rem;
}

.biz-mini-chart {
  height: 70px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(41, 179, 132, 0.3), rgba(242, 139, 91, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.biz-mini-chart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: biz-shimmer 4s linear infinite;
}

.biz-section {
  padding: 4rem 0;
}

.biz-section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.75rem;
}

.biz-section-lede {
  color: rgba(244, 241, 234, 0.7);
  max-width: 720px;
}

.biz-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.biz-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.biz-card {
  background: rgba(18, 26, 33, 0.8);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--biz-line);
  box-shadow: 0 12px 40px rgba(5, 10, 13, 0.5);
}

.biz-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.biz-card p {
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.95rem;
}

.biz-stack {
  background: linear-gradient(180deg, rgba(18, 26, 33, 0.9), rgba(11, 16, 20, 0.95));
  border-top: 1px solid var(--biz-line);
  border-bottom: 1px solid var(--biz-line);
}

.biz-stack-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.biz-list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.biz-list li {
  padding-left: 1.6rem;
  position: relative;
  color: rgba(244, 241, 234, 0.75);
}

.biz-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--biz-coral);
}

.biz-stack-cards {
  display: grid;
  gap: 1rem;
}

.biz-tile {
  border-radius: 16px;
  padding: 1.2rem;
  background: rgba(11, 16, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.biz-tile-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.55);
}

.biz-integrations {
  background: radial-gradient(700px 300px at 30% 20%, rgba(46, 168, 120, 0.2), transparent 60%);
}

.biz-integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.biz-code {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 14px;
  background: rgba(11, 16, 20, 0.85);
  border: 1px solid var(--biz-line);
  color: var(--biz-mint);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  white-space: pre-line;
}

.biz-sdk-list {
  display: grid;
  gap: 1rem;
}

.biz-sdk-card {
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  background: rgba(18, 26, 33, 0.85);
  border: 1px solid var(--biz-line);
}

.biz-sdk-card span {
  font-size: 0.75rem;
  color: rgba(244, 241, 234, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.biz-deploy-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.biz-deploy-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 26, 33, 0.9), rgba(11, 16, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.biz-price-card {
  position: relative;
  min-height: 260px;
}

.biz-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(244, 241, 234, 0.55);
  font-weight: 600;
}

.biz-highlight {
  border: 1px solid rgba(158, 248, 199, 0.55);
  box-shadow: 0 24px 60px rgba(46, 168, 120, 0.3), 0 0 0 1px rgba(158, 248, 199, 0.25);
  background: linear-gradient(180deg, rgba(41, 179, 132, 0.08), rgba(18, 26, 33, 0.95));
}

.biz-highlight .biz-price-tier {
  color: var(--biz-mint);
}

.biz-highlight .biz-price-amount {
  color: var(--biz-mint);
}

.biz-price-card .btn {
  margin-top: 1rem;
}

.biz-request .biz-hero {
  padding-bottom: 6rem;
}

.biz-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.biz-request-form {
  background: rgba(18, 26, 33, 0.9);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--biz-line);
  box-shadow: 0 20px 50px rgba(6, 10, 13, 0.55);
}

.biz-form-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
}

.biz-form-grid input,
.biz-form-grid select,
.biz-form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 16, 20, 0.9);
  color: var(--biz-sand);
}

.biz-form-textarea {
  min-height: 140px;
  margin-bottom: 1rem;
}

.biz-form-status {
  color: var(--biz-mint);
  margin-bottom: 0.75rem;
}

.biz-form-error {
  color: var(--biz-coral);
  margin-bottom: 0.75rem;
}

.biz-request-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.biz-cta {
  padding: 4rem 0 5rem;
}

.biz-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(41, 179, 132, 0.2), rgba(242, 139, 91, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.biz-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.biz-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

.reveal-on-scroll.is-visible .biz-reveal {
  animation: biz-fade-up 0.9s ease forwards;
}

@keyframes biz-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes biz-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes biz-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@media (max-width: 1080px) {
  .biz-hero-grid {
    grid-template-columns: 1fr;
  }

  .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-integrations-grid {
    grid-template-columns: 1fr;
  }

  .biz-stack-grid {
    grid-template-columns: 1fr;
  }

  .biz-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .biz-request-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .biz-hero {
    padding: 5rem 0 4rem;
  }

  .biz-grid {
    grid-template-columns: 1fr;
  }

  .biz-grid-4 {
    grid-template-columns: 1fr;
  }

  .biz-deploy-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   B2B v2 — additional sections
   ============================================ */

.biz-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--biz-mint);
  margin-bottom: 0.6rem;
  background: rgba(41, 179, 132, 0.12);
  border: 1px solid rgba(41, 179, 132, 0.3);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.biz-stats {
  padding: 2.5rem 0 1rem;
  position: relative;
  z-index: 1;
}

.biz-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.biz-stat {
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  background: rgba(11, 16, 20, 0.7);
  border: 1px solid var(--biz-line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.biz-stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--biz-mint);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.biz-stat-label {
  font-size: 0.82rem;
  color: rgba(244, 241, 234, 0.65);
  letter-spacing: 0.04em;
}

.biz-gain {
  background: linear-gradient(180deg, rgba(11, 16, 20, 0.0), rgba(241, 193, 107, 0.06));
}

.biz-gain-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.biz-gain-metric {
  display: inline-block;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--biz-gold);
  letter-spacing: -0.02em;
}

.biz-compare {
  background: linear-gradient(180deg, rgba(18, 26, 33, 0.9), rgba(11, 16, 20, 0.95));
  border-top: 1px solid var(--biz-line);
  border-bottom: 1px solid var(--biz-line);
}

.biz-compare-table {
  margin-top: 1.75rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--biz-line);
  background: rgba(11, 16, 20, 0.7);
}

.biz-compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 0;
  border-bottom: 1px solid var(--biz-line);
}

.biz-compare-row:last-child {
  border-bottom: none;
}

.biz-compare-head {
  background: rgba(41, 179, 132, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.7);
}

.biz-compare-cell {
  padding: 1rem 1.2rem;
  border-right: 1px solid var(--biz-line);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.biz-compare-cell:last-child {
  border-right: none;
}

.biz-compare-dimension {
  font-weight: 600;
  color: var(--biz-sand);
  background: rgba(11, 16, 20, 0.5);
}

.biz-compare-build {
  color: rgba(244, 241, 234, 0.65);
}

.biz-compare-buy {
  color: var(--biz-mint);
  background: rgba(41, 179, 132, 0.05);
}

.biz-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.biz-price-badge {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--biz-mint), var(--biz-teal));
  color: var(--biz-ink);
  font-weight: 700;
}

.biz-timeline {
  background: radial-gradient(700px 300px at 70% 0%, rgba(46, 168, 120, 0.12), transparent 60%);
}

.biz-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}

.biz-timeline-step {
  padding: 1.4rem 1.2rem;
  border-radius: 16px;
  background: rgba(18, 26, 33, 0.85);
  border: 1px solid var(--biz-line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.biz-timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--biz-teal), var(--biz-mint));
  border-radius: 2px;
}

.biz-timeline-week {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--biz-gold);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.biz-timeline-step h4 {
  margin: 0;
  font-size: 1.05rem;
}

.biz-timeline-step p {
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.biz-faq {
  background: linear-gradient(180deg, rgba(11, 16, 20, 0.0), rgba(18, 26, 33, 0.7));
}

.biz-faq-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.biz-faq-item {
  background: rgba(18, 26, 33, 0.7);
  border: 1px solid var(--biz-line);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.biz-faq-item[open] {
  border-color: rgba(158, 248, 199, 0.4);
  background: rgba(18, 26, 33, 0.92);
}

.biz-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--biz-sand);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.biz-faq-item summary::-webkit-details-marker {
  display: none;
}

.biz-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--biz-mint);
  line-height: 1;
  transition: transform 0.2s ease;
}

.biz-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.biz-faq-item p {
  margin: 0.7rem 0 0;
  color: rgba(244, 241, 234, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ============================================
   Pricing — single Business offering
   ============================================ */

.biz-eyebrow-gold {
  color: var(--biz-gold);
  background: rgba(241, 193, 107, 0.12);
  border-color: rgba(241, 193, 107, 0.32);
}

.biz-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.biz-offer-included {
  position: sticky;
  top: 5rem;
  padding: 1.8rem 1.6rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(41, 179, 132, 0.1), rgba(18, 26, 33, 0.92));
  border: 1px solid rgba(41, 179, 132, 0.3);
  box-shadow: 0 24px 60px rgba(46, 168, 120, 0.18);
}

.biz-offer-tailored {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.biz-offer-note {
  color: rgba(244, 241, 234, 0.65);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 680px;
  margin: 0;
}

/* The "included" check-list */
.biz-price-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.biz-price-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.85);
}

.biz-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--biz-teal), var(--biz-mint));
  border: 1px solid rgba(158, 248, 199, 0.55);
  box-shadow: 0 0 0 1px rgba(11, 16, 20, 0.4) inset;
}

.biz-price-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55rem;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--biz-ink);
  border-bottom: 2px solid var(--biz-ink);
  transform: rotate(-45deg);
}

.biz-included-list li {
  color: rgba(244, 241, 234, 0.9);
}

/* Tailored capability cards */
.biz-tailored-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.biz-tailored-card {
  position: relative;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: rgba(18, 26, 33, 0.85);
  border: 1px solid var(--biz-line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.biz-tailored-card:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 248, 199, 0.3);
}

.biz-tailored-card h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--biz-sand);
  line-height: 1.3;
}

.biz-tailored-card p {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.biz-tailored-roadmap {
  background: rgba(11, 16, 20, 0.7);
  border-style: dashed;
}

.biz-tailored-roadmap h4 {
  color: rgba(244, 241, 234, 0.78);
}

.biz-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.biz-tag-on {
  background: rgba(41, 179, 132, 0.18);
  color: var(--biz-mint);
  border: 1px solid rgba(41, 179, 132, 0.4);
}

.biz-tag-off {
  background: rgba(241, 193, 107, 0.12);
  color: var(--biz-gold);
  border: 1px solid rgba(241, 193, 107, 0.4);
}

/* Cost drivers row */
.biz-drivers {
  margin-top: 3rem;
}

.biz-drivers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.biz-driver-card {
  padding: 1.3rem 1.2rem;
  border-radius: 16px;
  background: rgba(11, 16, 20, 0.7);
  border: 1px solid var(--biz-line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.biz-driver-step {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--biz-coral);
  font-weight: 700;
}

.biz-driver-card h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--biz-sand);
}

.biz-driver-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(244, 241, 234, 0.7);
  line-height: 1.5;
}

/* Final CTA + footnote */
.biz-pricing-final {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.biz-pricing-note {
  font-size: 0.88rem;
  color: rgba(244, 241, 234, 0.6);
  font-style: italic;
  max-width: 720px;
  margin: 0;
}

.biz-form-helper {
  color: rgba(244, 241, 234, 0.65);
  font-size: 0.9rem;
  margin: -0.4rem 0 1rem;
}

.biz-form-section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
  margin: 1rem 0 0.4rem;
}

.biz-form-privacy {
  font-size: 0.8rem;
  color: rgba(244, 241, 234, 0.5);
  margin-top: 0.85rem;
}

@media (max-width: 1080px) {
  .biz-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-faq-grid {
    grid-template-columns: 1fr;
  }

  .biz-compare-row {
    grid-template-columns: 1fr;
  }

  .biz-compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--biz-line);
  }

  .biz-compare-cell:last-child {
    border-bottom: none;
  }

  .biz-compare-head {
    display: none;
  }

  .biz-offer-grid {
    grid-template-columns: 1fr;
  }

  .biz-offer-included {
    position: static;
  }

  .biz-tailored-grid {
    grid-template-columns: 1fr;
  }

  .biz-drivers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .biz-stats-grid {
    grid-template-columns: 1fr;
  }

  .biz-timeline-grid {
    grid-template-columns: 1fr;
  }

  .biz-drivers-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MODERN UI POLISH — Global Refinements
   ============================================ */

a {
  transition: color var(--transition-fast);
}

img {
  image-rendering: auto;
}

.pricing-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background var(--transition-fast);
  border-radius: 6px;
  padding: 0.6rem 0.5rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  background: rgba(0, 200, 150, 0.04);
}

.pricing-amount {
  letter-spacing: -0.03em;
}

.feature-card {
  transition: all var(--transition-smooth);
}

.feature-icon {
  transition: transform var(--transition-smooth);
}

.author-avatar {
  box-shadow: 0 4px 12px rgba(0, 200, 150, 0.2);
}

.testimonial-rating {
  letter-spacing: 2px;
}

.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.15), transparent 40%, transparent 60%, rgba(0, 200, 150, 0.1));
  z-index: -1;
  pointer-events: none;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  margin: 0 0.35rem;
  transition: all var(--transition-smooth);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
}

.social-links a:hover {
  color: var(--accent-green);
  background: rgba(0, 200, 150, 0.1);
  border-color: rgba(0, 200, 150, 0.2);
  transform: translateY(-2px);
}

.dashboard-page .card {
  transition: all var(--transition-smooth);
}

.dashboard-page .card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.dashboard-page .bot-item {
  transition: all var(--transition-smooth);
}

.dashboard-page .bot-item:hover {
  transform: translateX(4px);
}

.dashboard-page .status-active {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 200, 150, 0.4); }
  50% { box-shadow: 0 0 16px rgba(0, 200, 150, 0.7); }
}

.dashboard-page .loading {
  position: relative;
}

.dashboard-page .loading::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  margin: 1rem auto 0;
  border: 2.5px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-green);
  border-radius: 50%;
  animation: spinLoader 0.7s linear infinite;
}

@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

.dashboard-page .form-input {
  transition: all var(--transition-smooth);
}

.dashboard-page .form-input:focus {
  background: rgba(6, 10, 16, 0.7);
}

.dashboard-page .error-message {
  animation: slideInMsg 0.3s ease;
}

.dashboard-page .success-message {
  animation: slideInMsg 0.3s ease;
}

@keyframes slideInMsg {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert {
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  animation: slideInMsg 0.3s ease;
}

.alert-success {
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.25);
  color: var(--accent-green-light);
}

.alert-danger {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.25);
  color: #ff6b7a;
}

.affiliate-commission-card {
  transition: all var(--transition-smooth);
}

.affiliate-commission-card:hover {
  transform: translateY(-4px);
}

.affiliate-commission-card span {
  transition: transform var(--transition-smooth);
}

.affiliate-commission-card:hover span {
  transform: scale(1.05);
}

.affiliate-earnings-card {
  transition: all var(--transition-smooth);
}

.affiliate-earnings-card:hover {
  transform: translateY(-3px);
}

.affiliate-hero-card {
  transition: all var(--transition-smooth);
}

.affiliate-pill {
  transition: all var(--transition-fast);
}

.affiliate-pill:hover {
  background: rgba(0, 200, 150, 0.14);
  border-color: rgba(0, 200, 150, 0.4);
  transform: translateY(-1px);
}

.affiliate-card {
  position: relative;
  overflow: hidden;
}

.affiliate-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.dashboard-page .indicator {
  transition: all var(--transition-fast);
}

.dashboard-page .indicator:hover {
  background: rgba(0, 200, 150, 0.08);
  transform: translateY(-2px);
}

.dashboard-page .sidebar {
  position: sticky;
  top: 80px;
}

.dashboard-page .btn {
  transition: all var(--transition-smooth);
}

.dashboard-page .btn:active {
  transform: scale(0.97);
}

.dashboard-page .btn-primary:hover {
  transform: translateY(-2px);
}

.blog-content h2,
.blog-content h3 {
  color: var(--text-light);
  margin: 1.75rem 0 0.75rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content a {
  color: var(--accent-green);
  text-decoration: underline;
  text-decoration-color: rgba(0, 200, 150, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast);
}

.blog-content a:hover {
  text-decoration-color: var(--accent-green);
}

.blog-content code {
  background: rgba(0, 200, 150, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
  font-size: 0.9em;
  color: var(--accent-green-light);
}

.blog-content blockquote {
  border-left: 3px solid var(--accent-green);
  padding: 0.75rem 1.25rem;
  margin: 1.25rem 0;
  background: rgba(0, 200, 150, 0.04);
  border-radius: 0 10px 10px 0;
  color: var(--text-muted);
  font-style: italic;
}

.stat-card {
  transition: all var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-3px);
}

.freebies-card {
  transition: all var(--transition-smooth);
}

.freebies-card:hover {
  transform: translateY(-3px);
}

.freebies-tag {
  transition: color var(--transition-fast);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

input, button, select, textarea {
  font-family: inherit;
}

.language-select {
  transition: all var(--transition-fast);
  cursor: pointer;
}

.language-select:hover {
  border-color: rgba(0, 200, 150, 0.3);
}

.language-select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(0, 200, 150, 0.15);
}

.section-title {
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5 {
  letter-spacing: -0.01em;
}

.container {
  transition: none;
}

/* ============================================
   LANDING MOTION SYSTEM
   ============================================ */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.95s ease,
    transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Reveal animation only activates when JS marks the page as reveal-ready. */
.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.995);
  filter: blur(1.5px);
  transition:
    opacity 1.05s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 1.05s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 1.05s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform, filter;
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-ready .reveal-on-scroll.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal-on-scroll.is-visible .reveal-item:nth-child(2) { transition-delay: calc(var(--reveal-delay, 0ms) + 120ms); }
.reveal-ready .reveal-on-scroll.is-visible .reveal-item:nth-child(3) { transition-delay: calc(var(--reveal-delay, 0ms) + 240ms); }
.reveal-ready .reveal-on-scroll.is-visible .reveal-item:nth-child(4) { transition-delay: calc(var(--reveal-delay, 0ms) + 360ms); }
.reveal-ready .reveal-on-scroll.is-visible .reveal-item:nth-child(5) { transition-delay: calc(var(--reveal-delay, 0ms) + 480ms); }
.reveal-ready .reveal-on-scroll.is-visible .reveal-item:nth-child(6) { transition-delay: calc(var(--reveal-delay, 0ms) + 600ms); }

.lift-hover {
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
  transform-style: preserve-3d;
}

.lift-hover:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 22px 55px rgba(2, 8, 12, 0.42), 0 0 0 1px rgba(0, 200, 150, 0.16) inset;
}

.feature-card.lift-hover:hover .feature-icon {
  transform: translateY(-2px) scale(1.12) rotate(-6deg);
}

.pricing-card.lift-hover:hover {
  transform: translateY(-9px);
}

.pricing-card.featured.lift-hover:hover {
  transform: scale(1.04) translateY(-4px);
}

.testimonial-card.lift-hover:hover {
  transform: translateY(-8px) rotateX(2deg);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .lift-hover:hover {
    transform: none !important;
  }
}

/* ================================================================
   EQ DESIGN SYSTEM — extracted from the homepage hero.
   Reusable classes for anywhere below the hero, and across pages.
   Naming: eq-* prefix to avoid collision with existing/bootstrap.
   ================================================================ */

:root {
  /* Tokens derived from hero-signal-card + hero-fact-card. */
  --eq-surface-0: rgba(5, 9, 14, 0.72);
  --eq-surface-1: rgba(8, 13, 22, 0.96);
  --eq-surface-2: rgba(7, 12, 20, 0.95);
  --eq-surface-inline: rgba(255, 255, 255, 0.025);
  --eq-hairline: rgba(211, 223, 236, 0.08);
  --eq-hairline-strong: rgba(211, 223, 236, 0.18);
  --eq-kicker-ink: rgba(164, 182, 173, 0.82);
  --eq-label-ink: rgba(170, 189, 179, 0.72);
  --eq-body-ink: rgba(223, 232, 228, 0.82);
  --eq-accent-ink: #cbf5e1;
  --eq-accent-wash: rgba(63, 207, 155, 0.08);
  --eq-accent-edge: rgba(141, 227, 187, 0.22);
  --eq-shadow-panel: 0 24px 56px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --eq-shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --eq-radius-panel: 22px;
  --eq-radius-tile: 14px;
  --eq-radius-chip: 999px;
}

/* -- Panel: the signature layered-gradient surface with hairline and inset glow. */
.eq-panel {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.5rem);
  border-radius: var(--eq-radius-panel);
  background:
    linear-gradient(180deg, var(--eq-surface-1), var(--eq-surface-2)),
    radial-gradient(circle at top right, rgba(63, 207, 155, 0.12), transparent 38%);
  border: 1px solid var(--eq-hairline);
  box-shadow: var(--eq-shadow-panel);
  color: var(--text-light);
}

.eq-panel--flat {
  background: var(--eq-surface-inline);
  box-shadow: var(--eq-shadow-inset);
}

.eq-panel--accent {
  background:
    linear-gradient(180deg, var(--eq-surface-1), var(--eq-surface-2)),
    radial-gradient(circle at 88% 8%, rgba(63, 207, 155, 0.28), transparent 38%),
    radial-gradient(circle at 10% 98%, rgba(106, 166, 255, 0.16), transparent 42%);
  border-color: var(--eq-accent-edge);
}

.eq-panel--tight {
  padding: 0.85rem;
  border-radius: var(--eq-radius-tile);
}

/* -- Corner crosshairs: unique brutalist-ish hairlines that say "trading terminal"
      without being gimmicky. Purely decorative; pointer-events off. */
.eq-panel::before,
.eq-panel::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--eq-hairline-strong);
  border-style: solid;
  pointer-events: none;
  opacity: 0.65;
}

.eq-panel::before {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
}

.eq-panel::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 1px 1px 0;
}

.eq-panel--no-crosshair::before,
.eq-panel--no-crosshair::after {
  display: none;
}

/* -- Kicker: the uppercase mono micro-label used above headings.
      "Copy-trading live desk" / "Live" / "24h" style. */
.eq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eq-kicker-ink);
}

.eq-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--eq-accent-edge);
}

.eq-kicker--center {
  justify-content: center;
}

.eq-kicker--center::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--eq-accent-edge);
}

/* -- Display heading: Space Grotesk with tight negative tracking.
      Pair with .eq-kicker above it. */
.eq-display {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-light);
  margin: 0;
}

.eq-display--xl { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.eq-display--lg { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.eq-display--md { font-size: clamp(1.3rem, 2vw, 1.7rem); }

/* -- Body copy tuned for dark surfaces. */
.eq-lede {
  color: var(--eq-body-ink);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0.75rem auto 0;
}

.eq-lede--left {
  margin-left: 0;
  margin-right: auto;
}

/* -- Pill: small, translucent, rounded-full info chip.
      Matches the "Live" / "+2.41% 24h" pills in the hero. */
.eq-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.72rem;
  border-radius: var(--eq-radius-chip);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 250, 252, 0.9);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.eq-pill--accent {
  background: var(--eq-accent-wash);
  border-color: var(--eq-accent-edge);
  color: var(--eq-accent-ink);
}

.eq-pill--gold {
  background: var(--accent-gold-glow);
  border-color: rgba(208, 176, 106, 0.28);
  color: #f0dca0;
}

.eq-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* -- Stat tile: label-above-value terminal cell. */
.eq-stat {
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: var(--eq-radius-tile);
  background: var(--eq-surface-inline);
  border: 1px solid var(--eq-hairline);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.eq-stat:hover {
  border-color: var(--eq-accent-edge);
  background: rgba(255, 255, 255, 0.04);
}

.eq-stat__label {
  margin: 0 0 0.2rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eq-label-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eq-stat__value {
  margin: 0;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.25;
}

.eq-stat__value--xl { font-size: 1.6rem; }

.eq-stat__hint {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.eq-stat-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* -- Divider label: section separator with a label in the middle,
      flanked by hairlines. Used between page sections instead of a big H2. */
.eq-divider-label {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin: 3.5rem auto 1.25rem;
  max-width: 900px;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eq-kicker-ink);
}

.eq-divider-label::before,
.eq-divider-label::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--eq-hairline-strong), transparent);
}

/* -- Section wrapper: consistent vertical rhythm below the hero. */
.eq-section {
  padding: 4.5rem 0 3rem;
  position: relative;
}

.eq-section--tight {
  padding: 2.75rem 0 2rem;
}

.eq-section__header {
  max-width: 720px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.eq-section__header--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* -- Grid of panels with breathable gutter. */
.eq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.eq-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eq-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .eq-grid--3 { grid-template-columns: 1fr; }
  .eq-grid--2 { grid-template-columns: 1fr; }
}

/* -- Feature block: icon on left, copy on right.
      Replaces the generic "icon above, three lines below" AI-template look. */
.eq-feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  border-radius: var(--eq-radius-tile);
  background: var(--eq-surface-inline);
  border: 1px solid var(--eq-hairline);
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), background var(--transition-smooth);
}

.eq-feature:hover {
  border-color: var(--eq-accent-edge);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.eq-feature__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--eq-accent-edge);
  background: var(--eq-accent-wash);
  color: var(--accent-green-light);
  font-size: 1.15rem;
}

.eq-feature__title {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.eq-feature__body {
  margin: 0;
  color: var(--eq-body-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.eq-feature__list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.eq-feature__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: var(--eq-body-ink);
  line-height: 1.5;
}

.eq-feature__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent-green-light);
  font-weight: 700;
}

/* -- Row divider: fine hairline with fade-out at edges. */
.eq-hairline {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--eq-hairline-strong), transparent);
  margin: 2.5rem 0;
}

/* -- CTA surface: accent-edged panel with subtle corner glow.
      Contrasts visually with regular panels so end-of-page CTAs
      read as a destination instead of another card. */
.eq-cta {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--eq-radius-panel);
  background:
    linear-gradient(160deg, rgba(6, 11, 18, 0.94), rgba(4, 9, 14, 0.94)),
    radial-gradient(circle at 15% 20%, rgba(63, 207, 155, 0.18), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(106, 166, 255, 0.12), transparent 42%);
  border: 1px solid var(--eq-accent-edge);
  overflow: hidden;
  text-align: center;
}

.eq-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 80px);
  mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 75%);
  pointer-events: none;
}

.eq-cta > * { position: relative; }

/* -- Typed cursor for hero-style kickers that should feel "live".
      Opt-in only — add .eq-live to an .eq-pill. */
.eq-live::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-green);
  box-shadow: 0 0 10px rgba(63, 207, 155, 0.6);
  animation: eqLivePulse 1.6s ease-in-out infinite;
}

@keyframes eqLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .eq-live::before { animation: none; }
}
