/* Polymarket Sniper Bot - Main Stylesheet */
/* SEO-optimized, HTML-first design */

:root {
  /* Primary Colors - Cyan/Teal Sniper Identity */
  --primary: #0DA2E7;
  --primary-dark: #0B8BC4;
  --primary-light: #3DB8ED;
  --primary-glow: rgba(13, 162, 231, 0.2);
  
  /* Signal Colors (Soft Tints) */
  --yes-bg: rgba(13, 162, 231, 0.15);
  --yes-text: #0DA2E7;
  --yes-border: rgba(13, 162, 231, 0.3);
  --no-bg: rgba(244, 63, 94, 0.12);
  --no-text: #F43F5E;
  --no-border: rgba(244, 63, 94, 0.25);
  
  /* Background Colors */
  --background: #09090F;
  --background-light: #111118;
  --background-elevated: #1A1A24;
  --card-bg: #161622;
  --card-bg-hover: #1E1E2E;
  --card-border: #262640;
  --card-border-hover: #363650;
  
  /* Text Colors */
  --text-primary: #F8F8FC;
  --text-secondary: #A1A1B5;
  --text-muted: #71718A;
  
  /* Accent Colors */
  --accent: #3DB8ED;
  --danger: #F43F5E;
  --warning: #F59E0B;
  --info: #38BDF8;
  
  /* Cyan Accent */
  --poly-blue: #5CC8F0;
  --poly-blue-light: #8DD8F5;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Roboto Mono', ui-monospace, monospace;
  
  /* Spacing & Effects */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--background);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 960px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background: var(--primary-light);
  color: #000;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

.btn-outline:hover {
  background: var(--card-bg);
  border-color: var(--primary);
  color: var(--text-primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.logo svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center top, rgba(13, 162, 231, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Dashboard Mockup Visual */
.hero-visual {
  position: relative;
}

.dashboard-mockup {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--card-border);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--background-elevated);
  border-bottom: 1px solid var(--card-border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-dots span:nth-child(1) { background: #FF5F56; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #3DB8ED; }

.mockup-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.mockup-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-card {
  background: var(--background-elevated);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.mockup-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.mockup-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-icon.green {
  background: var(--yes-bg);
  color: var(--primary);
}

.mockup-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--poly-blue-light);
}

.mockup-icon svg {
  width: 14px;
  height: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: auto;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mockup-traders {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trader-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.trader-rank {
  font-weight: 700;
  color: var(--primary);
  min-width: 24px;
}

.trader-name {
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.trader-stat {
  margin-left: auto;
  font-weight: 600;
}

.trader-stat.green { color: var(--primary); }

.mockup-markets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--card-bg);
}

.mockup-markets::-webkit-scrollbar {
  width: 4px;
}

.mockup-markets::-webkit-scrollbar-track {
  background: var(--card-bg);
}

.mockup-markets::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

.market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  border: 1px solid transparent;
}

.market-row:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border);
  transform: translateX(2px);
}

.market-name {
  color: var(--text-secondary);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  font-size: 0.75rem;
}

.market-name:hover {
  color: var(--text-primary);
}

.market-row[title] {
  position: relative;
}

.market-row[data-full-question]::after {
  content: attr(data-full-question);
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
  background: var(--background-elevated);
  border: 1px solid var(--card-border);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-primary);
  white-space: normal;
  max-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.market-row:hover[data-full-question]::after {
  opacity: 1;
  visibility: visible;
}

.market-odds {
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.market-odds.yes {
  background: var(--yes-bg);
  color: var(--yes-text);
}

.market-odds.no {
  background: var(--no-bg);
  color: var(--no-text);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mockup-stat {
  text-align: center;
  padding: 0.75rem;
  background: var(--background-elevated);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
}

.mockup-stat .stat-num {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}

.mockup-stat .stat-txt {
  display: block;
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.mockup-disclaimer {
  padding: 0.5rem 1rem;
  background: var(--background);
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.mockup-disclaimer small {
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* Hero Stats (legacy) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--card-border);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 162, 231, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Live Activity Dashboard */
.dashboard-section {
  background: var(--background-light);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.activity-feed {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.activity-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activity-header h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--primary);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.activity-list {
  list-style: none;
  max-height: 400px;
  overflow-y: auto;
}

.activity-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 162, 231, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.activity-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.activity-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--primary);
}

/* Market Stats */
.market-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.market-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.market-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.market-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.market-stat-value.positive { color: var(--primary); }
.market-stat-value.negative { color: var(--danger); }

/* Bot Demo Section */
.demo-section {
  background: var(--background);
}

.demo-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.demo-window {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.demo-titlebar {
  background: #1a1a1a;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dot.red { background: #EF4444; }
.demo-dot.yellow { background: #F59E0B; }
.demo-dot.green { background: #3DB8ED; }

.demo-title {
  flex: 1;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.demo-content {
  padding: 1.5rem;
}

.demo-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-stat {
  background: rgba(13, 162, 231, 0.05);
  border: 1px solid rgba(13, 162, 231, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.demo-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}

.demo-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.demo-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.demo-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.demo-table th,
.demo-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
}

.demo-table th {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-table td {
  font-size: 0.875rem;
}

.demo-info h2 {
  margin-bottom: 1.5rem;
}

.demo-features {
  list-style: none;
  margin-bottom: 2rem;
}

.demo-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.demo-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-content {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: var(--warning);
}

/* Pricing */
.pricing-section {
  background: var(--background-light);
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-secondary);
}

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

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  font-size: 1.125rem;
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, var(--background) 0%, rgba(13, 162, 231, 0.05) 100%);
  text-align: center;
  padding: 6rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--background);
  border-top: 1px solid var(--card-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.footer-column h4 {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs span {
  color: var(--text-secondary);
}

/* Article Styles */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2.5rem;
}

.article-content h3 {
  margin-top: 2rem;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin-top: 2rem;
}

.hero-slider-track {
  display: flex;
  animation: heroSlide 12s infinite;
}

.hero-slide {
  min-width: 100%;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
}

.hero-slide h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.hero-slide p {
  margin: 0;
  font-size: 0.9375rem;
}

@keyframes heroSlide {
  0%, 30% { transform: translateX(0); }
  33%, 63% { transform: translateX(-100%); }
  66%, 96% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  background: var(--card-border);
  border-radius: 50%;
  transition: background 0.3s;
}

.hero-slider-dot.active {
  background: var(--primary);
}

/* Step Cards */
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: var(--primary);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-container {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .hero {
    padding: 8rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .features-grid,
  .dashboard-grid,
  .testimonials-grid,
  .market-stats {
    grid-template-columns: 1fr;
  }
  
  .demo-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  /* Live Markets Mobile Improvements */
  .mockup-markets {
    max-height: 180px;
  }
  
  .market-row {
    padding: 0.5rem;
    gap: 0.5rem;
  }
  
  .market-name {
    font-size: 0.6875rem;
    -webkit-line-clamp: 2;
  }
  
  .market-odds {
    font-size: 0.75rem;
    min-width: 42px;
  }
  
  /* Hide tooltip on mobile - rely on native title */
  .market-row[data-full-question]::after {
    display: none;
  }
  
  /* Slider dots touch-friendly */
  .showcase-dot,
  .slider-dot {
    width: 12px;
    height: 12px;
    min-width: 44px;
    min-height: 44px;
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .showcase-arrow,
  .slider-arrow {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
}

/* ==========================================
   POLYMARKET-INSPIRED DESIGN ENHANCEMENTS
   ========================================== */

/* Category Pills / Tags - Like Polymarket's topic tags */
.category-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-pill:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  color: var(--text-primary);
}

.category-pill.active {
  background: var(--primary-glow);
  border-color: var(--yes-border);
  color: var(--primary);
}

/* Yes/No Buttons - Polymarket Style */
.btn-yes {
  background: var(--yes-bg);
  color: var(--yes-text);
  border: 1px solid var(--yes-border);
  font-weight: 600;
}

.btn-yes:hover {
  background: rgba(13, 162, 231, 0.25);
  border-color: var(--primary);
  color: var(--primary-light);
}

.btn-no {
  background: var(--no-bg);
  color: var(--no-text);
  border: 1px solid var(--no-border);
  font-weight: 600;
}

.btn-no:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--danger);
  color: #FCA5A5;
}

/* Market Cards - Polymarket Inspired */
.market-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--poly-blue));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.market-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.market-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.market-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.market-card-chance {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}

.market-card-chance span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.market-card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.market-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Probability Bar */
.probability-bar {
  height: 6px;
  background: var(--no-bg);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 0.75rem;
}

.probability-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

/* Stats Display - Polymarket Style */
.stats-row {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--card-border);
}

.stat-block {
  text-align: center;
}

.stat-block-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
}

.stat-block-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Feature Badge */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background: var(--primary-glow);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* Volume Badge */
.volume-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--background-elevated);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Enhanced Cards with Gradient Borders */
.card-gradient {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.card-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--poly-blue) 50%, var(--primary) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Glow Effect on Hover */
.glow-effect {
  transition: box-shadow 0.3s ease;
}

.glow-effect:hover {
  box-shadow: 0 0 30px var(--primary-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Clean List Styling */
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-secondary);
}

.clean-list li:last-child {
  border-bottom: none;
}

.clean-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Polymarket-style Activity Indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--primary);
}

.live-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Refined Input Styling */
.input-polymarket {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--background-elevated);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.input-polymarket:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.input-polymarket::placeholder {
  color: var(--text-muted);
}

/* Enhanced Section Headers */
.section-header-enhanced {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header-enhanced .section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--primary-glow);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-header-enhanced h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header-enhanced p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Windows Platform Badge */
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--poly-blue) 0%, #1D4ED8 100%);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: white;
}

.platform-badge svg {
  width: 16px;
  height: 16px;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
  .category-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
  
  .market-card-buttons {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .section-header-enhanced h2 {
    font-size: 2rem;
  }
}

/* ==========================================
   WHALE STRATEGIES SECTION STYLES
   ========================================== */

.whale-strategies-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 100%);
  padding: 5rem 0;
}

.whale-strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.whale-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.whale-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.whale-card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.15;
  font-family: var(--font-mono);
  line-height: 1;
}

.whale-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.whale-card > p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.whale-card-stat {
  background: rgba(13, 162, 231, 0.08);
  border: 1px solid rgba(13, 162, 231, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.whale-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
  display: block;
}

.whale-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

.whale-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--primary-glow);
  border: 1px solid var(--yes-border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.whale-cta {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}

.whale-cta p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.whale-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ==========================================
   FEATURES SLIDER STYLES
   ========================================== */

.features-slider-section {
  background: var(--background);
  padding: 5rem 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.features-slider {
  max-width: 800px;
  margin: 0 auto;
}

.features-slider-track {
  position: relative;
  min-height: 280px;
}

.feature-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.feature-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.feature-slide-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-glow);
  border: 1px solid var(--yes-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-slide-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.feature-slide h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-slide p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: var(--card-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot:hover {
  background: var(--text-muted);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ==========================================
   PROFIT HIGHLIGHT BOX (HERO)
   ========================================== */

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-tag .live-indicator {
  padding: 0.25rem 0.5rem;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  font-size: 0.6875rem;
  border-radius: var(--radius-sm);
  animation: pulse-live 2s infinite;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 650px;
}

.profit-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  max-width: 600px;
}

.profit-stat {
  text-align: center;
  padding: 0.5rem;
}

.profit-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-mono);
  display: block;
}

.profit-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.25rem;
}

.profit-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

.profit-disclaimer a {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* Contact Info in Footer */
.contact-info {
  margin: 1rem 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-link svg {
  flex-shrink: 0;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-banner.cookie-hidden {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-settings-link {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.cookie-settings-link:hover {
  color: var(--primary);
}

/* Cookie Preferences Panel */
.cookie-preferences {
  border-top: 1px solid var(--card-border);
  margin-top: 1rem;
  padding-top: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-prefs-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cookie-pref-row:last-of-type {
  border-bottom: none;
}

.cookie-pref-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.cookie-pref-info strong {
  font-size: 0.875rem;
  color: var(--text-primary);
}

.cookie-pref-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-toggle-disabled {
  cursor: default;
  opacity: 0.7;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  width: 40px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  border-radius: 11px;
  position: relative;
  transition: background 0.25s;
}

.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
  transform: translateX(18px);
}

.cookie-toggle-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.cookie-pref-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.5rem;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    min-width: auto;
  }
  
  .cookie-actions {
    justify-content: center;
    width: 100%;
  }
  
  .profit-highlight {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .profit-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.75rem;
  }
  
  .profit-stat:last-child {
    border-bottom: none;
  }
  
  .whale-strategies-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-slide {
    padding: 2rem 1.5rem;
  }
  
  .features-slider-track {
    min-height: 320px;
  }
}

/* ==========================================
   NAVIGATION DROPDOWN STYLES
   ========================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-trigger svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--card-bg-hover);
  color: var(--text-primary);
}

.nav-dropdown-menu a.active {
  color: var(--primary);
  background: var(--primary-glow);
}

/* ==========================================
   CONTENT GRID & SIDEBAR STYLES
   ========================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.content-main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.content-main h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-primary);
}

.content-main h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-primary);
}

.content-main p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.sidebar-card ul li a:hover {
  color: var(--primary);
}

.sidebar-card.warning {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.08);
}

.sidebar-card.warning h4 {
  color: #F87171;
}

.sidebar-card.warning p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================
   INFO CARDS & CTA BOX STYLES
   ========================================== */
.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-card h4 {
  margin-top: 0;
  color: var(--primary);
}

.info-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.feature-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--card-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.cta-box {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--background-elevated) 100%);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.cta-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-box p {
  margin-bottom: 1.5rem;
}

.cta-box .btn {
  margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ==========================================
   RESPONSIVE STYLES FOR NEW COMPONENTS
   ========================================== */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: fixed;
    top: auto;
    left: 1rem;
    right: 1rem;
    transform: none;
    width: auto;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-box {
    padding: 1.5rem;
  }
}

/* Main Page Banner - SEO backlink component */
.main-page-banner {
  background: linear-gradient(90deg, var(--primary-glow) 0%, transparent 100%);
  border-bottom: 1px solid var(--primary);
  padding: 1rem 0;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-arrow {
  font-size: 1.25rem;
  color: var(--primary);
}

.banner-content span {
  color: var(--text-secondary);
}

.sidebar-card.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(13, 162, 231, 0.05) 100%);
}

.sidebar-card.highlight h4 {
  color: var(--primary);
}

/* ========================================
   FEATURE SHOWCASE SLIDER
   ======================================== */

.feature-showcase {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 50%, var(--background) 100%);
  position: relative;
  overflow: hidden;
}

.feature-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-label {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--primary);
}

.showcase-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.showcase-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-track {
  position: relative;
  min-height: 400px;
}

.showcase-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2.5rem;
  animation: fadeSlide 0.5s ease-out;
}

.showcase-slide.active {
  display: grid;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slide-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-icon svg {
  width: 32px;
  height: 32px;
}

.slide-icon.scanner {
  background: linear-gradient(135deg, rgba(13, 162, 231, 0.2), rgba(13, 162, 231, 0.05));
  border: 1px solid var(--primary);
  color: var(--primary);
}

.slide-icon.execute {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
  border: 1px solid var(--info);
  color: var(--info);
}

.slide-icon.tracking {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
  border: 1px solid var(--warning);
  color: var(--warning);
}

.slide-icon.risk {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
  border: 1px solid #8B5CF6;
  color: #8B5CF6;
}

.slide-icon.analytics {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
  border: 1px solid #EC4899;
  color: #EC4899;
}

.slide-icon.automation {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border: 1px solid #06B6D4;
  color: #06B6D4;
}

.slide-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.slide-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.slide-text strong {
  color: var(--primary);
}

.slide-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slide-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.slide-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Slide Visuals */
.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

/* Performance Chart Visual */
.performance-chart {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: 200px;
  padding: 1rem;
}

.chart-bar {
  width: 70px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 0.5rem 0.5rem 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.75rem;
  position: relative;
  box-shadow: 0 0 20px var(--primary-glow);
}

.chart-bar.dim {
  background: linear-gradient(180deg, var(--card-border) 0%, #1a1a1a 100%);
  box-shadow: none;
}

.chart-bar span {
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  text-align: center;
  white-space: nowrap;
}

.chart-bar.dim span {
  color: var(--text-muted);
}

.chart-label {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Execution Flow Visual */
.execution-flow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  min-width: 100px;
}

.flow-step.highlight {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.flow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.flow-step.highlight .flow-icon {
  background: var(--primary);
  color: white;
}

.flow-step span:last-child {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
}

.flow-arrow {
  color: var(--primary);
}

.flow-arrow svg {
  width: 24px;
  height: 24px;
}

/* Live Feed Visual */
.live-feed {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
}

.feed-item.pulse {
  animation: feedPulse 2s ease-in-out infinite;
}

@keyframes feedPulse {
  0%, 100% { border-color: var(--card-border); }
  50% { border-color: var(--primary); }
}

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feed-dot.green {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.feed-dot.red {
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
}

.feed-item span:nth-child(2) {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.feed-change {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.feed-change.up {
  color: var(--primary);
}

.feed-change.down {
  color: var(--danger);
}

/* Risk Meters Visual */
.risk-meters {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 280px;
}

.meter {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.meter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meter-bar {
  height: 8px;
  background: var(--background);
  border-radius: 4px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.meter-fill.safe {
  background: var(--primary);
}

.meter-fill.active {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.meter-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

/* Analytics Cards Visual */
.analytics-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.analytics-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 0.75rem;
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
}

.analytics-stat .stat-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.analytics-stat .stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.analytics-stat .stat-value.green {
  color: var(--primary);
}

/* Automation Clock Visual */
.automation-clock {
  position: relative;
  width: 180px;
  height: 180px;
}

.clock-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--card-border);
  border-radius: 50%;
}

.clock-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
}

.clock-segment.active::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: clockPulse 1.5s ease-in-out infinite;
}

.clock-segment:nth-child(1)::after { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.clock-segment:nth-child(2)::after { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.375s; }
.clock-segment:nth-child(3)::after { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.75s; }
.clock-segment:nth-child(4)::after { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 1.125s; }

@keyframes clockPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.clock-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.clock-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-mono);
}

.clock-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Slider Controls */
.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.showcase-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.showcase-arrow svg {
  width: 20px;
  height: 20px;
}

.showcase-dots {
  display: flex;
  gap: 0.5rem;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.showcase-dot:hover {
  background: var(--text-muted);
}

.showcase-dot.active {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: scale(1.2);
}

/* Showcase CTA */
.showcase-cta-wrapper {
  margin-top: 3rem;
}

.showcase-cta-box {
  background: linear-gradient(135deg, rgba(13, 162, 231, 0.08), rgba(13, 162, 231, 0.02));
  border: 1px solid rgba(13, 162, 231, 0.3);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.showcase-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.cta-urgency {
  margin-bottom: 1.5rem;
}

.cta-badge {
  display: inline-block;
  background: var(--primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.cta-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.cta-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.showcase-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.showcase-cta .btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(13, 162, 231, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(13, 162, 231, 0.2);
  }
}

.cta-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.cta-features svg {
  color: var(--primary);
}

.cta-price {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

.cta-price strong {
  color: var(--text-primary);
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0 0;
}

.showcase-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

.showcase-cta .btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .showcase-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .slide-visual {
    min-height: 180px;
  }
  
  .performance-chart {
    gap: 1rem;
    height: 150px;
  }
  
  .chart-bar {
    width: 50px;
  }
  
  .execution-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .analytics-cards {
    gap: 0.5rem;
  }
  
  .analytics-stat {
    padding: 1rem 0.5rem;
  }
  
  .analytics-stat .stat-value {
    font-size: 1rem;
  }
  
  .automation-clock {
    width: 140px;
    height: 140px;
  }
  
  .clock-text {
    font-size: 1.5rem;
  }
}

/* ==========================================
   LANGUAGE SELECTOR DROPDOWN
   ========================================== */
.lang-selector {
  position: relative;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.375rem 0.75rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-selector-btn:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.lang-selector-btn .globe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-selector-btn .chevron-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-selector.open .lang-selector-btn .chevron-icon {
  transform: rotate(180deg);
}

.lang-selector.open .lang-selector-btn {
  border-color: var(--primary);
  color: var(--text-primary);
}

.lang-selector-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(380px, calc(100vw - 2rem));
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 0.875rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lang-selector.open .lang-selector-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-dropdown-header {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}

.lang-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  transition: all 0.15s ease;
  text-decoration: none;
}

.lang-option:hover {
  background: var(--card-bg-hover);
  color: var(--text-primary);
}

.lang-option.active {
  background: var(--primary-glow);
  color: var(--primary);
}

.lang-option .flag {
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.lang-option .lang-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-dropdown-divider {
  height: 1px;
  background: var(--card-border);
  margin: 0.75rem 0;
}

/* ==========================================
   FOOTER INTERNATIONAL GRID WITH FLAGS
   ========================================== */
.footer-international {
  margin-top: 0.5rem;
}

.footer-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}

.footer-country-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  transition: all 0.15s ease;
  text-decoration: none;
}

.footer-country-link:hover {
  background: var(--card-bg-hover);
  color: var(--text-primary);
}

.footer-country-link .flag {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ==========================================
   LANGUAGE SELECTOR RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
  .nav {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.875rem;
  }
  
  .lang-selector-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .lang-selector-dropdown {
    width: min(320px, calc(100vw - 2rem));
  }
  
  .nav {
    gap: 0.75rem;
  }
  
  .lang-dropdown-grid {
    gap: 0.125rem;
  }
  
  .lang-option {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  
  .lang-dropdown-header {
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
  }
  
  .lang-dropdown-divider {
    margin: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .lang-selector {
    display: none;
  }
  
  .footer-country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-country-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-country-link {
    font-size: 0.75rem;
    padding: 0.25rem 0.375rem;
  }
}

/* Keyword Tooltips (Sniper Bot, Market Scanner, Polymarket Bot, Prediction Market) */
.kw-tip {
  position: relative;
  cursor: help;
  border-bottom: 2px dotted rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}

a.kw-tip {
  color: inherit;
  text-decoration: none;
}

.kw-tip:hover {
  border-bottom-color: var(--accent, #00d4aa);
}

a.kw-tip:hover {
  color: var(--accent, #00d4aa);
}

.kw-tip-box {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--card-bg, #1a1d23);
  border: 1px solid var(--card-border, rgba(255,255,255,0.1));
  border-radius: 12px;
  padding: 1rem 1.25rem;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  text-align: left;
}

.kw-tip-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--card-border, rgba(255,255,255,0.1));
}

.kw-tip:hover .kw-tip-box {
  visibility: visible;
  opacity: 1;
}

.kw-tip-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent, #00d4aa);
  margin-bottom: 0.5rem;
}

.kw-tip-head svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.kw-tip-body {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary, #b0b0b0);
  font-weight: 400;
  margin: 0;
}

.kw-tip-body strong {
  color: var(--text-primary, #fff);
  font-weight: 600;
}

.kw-tip-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent, #00d4aa);
}

/* Sniper tooltip styles */
.sniper-tooltip { position: relative; cursor: help; border-bottom: 2px dotted rgba(255,255,255,0.4); transition: border-color 0.2s; }
.sniper-tooltip:hover { border-bottom-color: var(--accent, #00d4aa); }
.sniper-tooltip-content { visibility: hidden; opacity: 0; position: absolute; bottom: calc(100% + 12px); left: 50%; transform: translateX(-50%); width: 340px; background: var(--card-bg, #1a1d23); border: 1px solid var(--card-border, rgba(255,255,255,0.1)); border-radius: 12px; padding: 1rem 1.25rem; z-index: 1000; box-shadow: 0 8px 32px rgba(0,0,0,0.4); transition: opacity 0.25s ease, visibility 0.25s ease; pointer-events: none; text-align: left; }
.sniper-tooltip-content::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 8px solid transparent; border-top-color: var(--card-border, rgba(255,255,255,0.1)); }
.sniper-tooltip:hover .sniper-tooltip-content { visibility: visible; opacity: 1; }
.sniper-tooltip-title { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 700; color: var(--accent, #00d4aa); margin-bottom: 0.5rem; }
.sniper-tooltip-title svg { width: 16px; height: 16px; flex-shrink: 0; }
.sniper-tooltip-text { display: block; font-size: 0.8125rem; line-height: 1.6; color: var(--text-secondary, #b0b0b0); font-weight: 400; margin: 0; }
.sniper-tooltip-text strong { color: var(--text-primary, #fff); font-weight: 600; }

/* RTL support for tooltips */
[dir="rtl"] .kw-tip-box,
[dir="rtl"] .sniper-tooltip-content {
  text-align: right;
}

[dir="rtl"] .kw-tip-head,
[dir="rtl"] .sniper-tooltip-title {
  flex-direction: row-reverse;
}

/* Mobile tooltips */
@media (max-width: 768px) {
  .kw-tip-box,
  .sniper-tooltip-content {
    width: 280px;
    left: 0;
    transform: translateX(-20%);
  }

  [dir="rtl"] .kw-tip-box,
  [dir="rtl"] .sniper-tooltip-content {
    left: auto;
    right: 0;
    transform: translateX(20%);
  }

  .kw-tip-box::after,
  .sniper-tooltip-content::after {
    left: 30%;
  }

  [dir="rtl"] .kw-tip-box::after,
  [dir="rtl"] .sniper-tooltip-content::after {
    left: auto;
    right: 30%;
  }
}
