/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #101216;
  --bg-card: #1a1d23;
  --bg-card-hover: #1e2128;
  --border-card: #2a2d35;
  --accent: #FF9800;
  --accent-glow: rgba(255, 152, 0, 0.3);
  --danger: #FF3D00;
  --success: #00C853;
  --text-primary: #ffffff;
  --text-secondary: #8a8f98;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
  --font-sans: 'Inter', 'Noto Sans SC', system-ui, sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 3px; color: var(--accent); border: 1px solid rgba(255,152,0,0.3);
  padding: 4px 16px; border-radius: 20px; margin-bottom: 16px;
}
.section-title { font-size: 36px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.highlight { color: var(--accent); }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ===== MODULE 1: BOOT ANIMATION ===== */
.boot-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: #000; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  overflow: hidden;
}
.boot-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#matrixCanvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.15; pointer-events: none; z-index: 1;
}
.boot-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; width: 90%; max-width: 400px;
  margin: 0 auto;
}
/* Logo with rotating rings */
.boot-logo {
  position: relative; width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.logo-core {
  font-size: 48px; font-weight: 700; color: #FF9800;
  font-family: var(--font-mono);
  text-shadow: 0 0 20px rgba(255,152,0,0.8), 0 0 40px rgba(255,152,0,0.4), 0 0 60px rgba(255,152,0,0.2);
  animation: corePulse 2s ease-in-out infinite;
  z-index: 3;
}
.logo-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #FF9800; border-right-color: rgba(255,152,0,0.3);
  animation: ringRotate 2s linear infinite;
}
.logo-ring.ring-2 {
  inset: 8px;
  border-top-color: #42a5f5; border-right-color: rgba(66,165,245,0.3);
  animation: ringRotate 3s linear infinite reverse;
}
.logo-ring.ring-3 {
  inset: 16px;
  border-top-color: #00FF87; border-right-color: rgba(0,255,135,0.3);
  animation: ringRotate 1.5s linear infinite;
}
@keyframes ringRotate { to { transform: rotate(360deg); } }
@keyframes corePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
/* Title */
.boot-title-text {
  font-family: var(--font-mono); font-size: clamp(24px, 5vw, 32px); font-weight: 800;
  color: #fff; letter-spacing: 6px;
  text-shadow: 0 0 10px rgba(255,152,0,0.5), 0 0 20px rgba(255,152,0,0.3);
  animation: titleGlow 2s ease-in-out infinite alternate;
  text-align: center;
}
.boot-subtitle {
  font-family: var(--font-mono); font-size: clamp(10px, 2vw, 12px); font-weight: 500;
  color: #8a8f98; letter-spacing: 4px; margin-top: -8px;
  text-align: center;
}
@keyframes titleGlow {
  from { text-shadow: 0 0 10px rgba(255,152,0,0.5), 0 0 20px rgba(255,152,0,0.3); }
  to { text-shadow: 0 0 20px rgba(255,152,0,0.8), 0 0 40px rgba(255,152,0,0.5), 0 0 60px rgba(255,152,0,0.3); }
}
/* Progress bar */
.boot-progress { width: 280px; }
.progress-bar {
  width: 100%; height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden; position: relative;
}
.progress-fill {
  height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, #FF9800, #00FF87);
  box-shadow: 0 0 10px rgba(255,152,0,0.5);
  animation: progressFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes progressFill { to { width: 100%; } }
.progress-text {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-family: var(--font-mono); font-size: 11px; color: #8a8f98;
}
.progress-percent {
  color: #FF9800; font-weight: 600;
  animation: countUp 2.5s steps(20) forwards;
}
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Stats items */
.boot-stats {
  display: flex; gap: 16px; margin-top: 8px;
  flex-wrap: wrap; justify-content: center;
}
.stat-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; color: #666;
  opacity: 0; transform: translateY(10px);
  animation: statAppear 0.5s ease forwards;
}
.stat-item:nth-child(1) { animation-delay: 0.3s; }
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 1.3s; }
.stat-icon { font-size: 14px; }
.stat-text { letter-spacing: 1px; }
@keyframes statAppear {
  to { opacity: 1; transform: translateY(0); }
}
/* Particles */
.boot-overlay::before,
.boot-overlay::after {
  content: ''; position: absolute; width: 200px; height: 200px;
  border-radius: 50%; filter: blur(80px); opacity: 0.3;
  animation: floatParticle 8s ease-in-out infinite;
}
.boot-overlay::before {
  background: #FF9800; top: 20%; left: 10%;
}
.boot-overlay::after {
  background: #42a5f5; bottom: 20%; right: 10%;
  animation-delay: -4s;
}
@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}


/* ===== MODULE 2: POLYMARKET CARDS ===== */
.carousel-wrapper { position: relative; overflow: hidden; margin: 0 -24px; padding: 0 24px; }
.carousel-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-card);
  background: rgba(26,29,35,0.9); color: #fff; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--transition); backdrop-filter: blur(8px);
}
.carousel-arrow:hover { background: var(--accent); border-color: var(--accent); }
.arrow-left { left: 24px; }
.arrow-right { right: 24px; }
.carousel-indicators { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.indicator {
  width: 8px; height: 8px; border-radius: 50%; background: #333;
  cursor: pointer; transition: all 0.3s;
}
.indicator.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== POLY CARD ===== */
.poly-card {
  min-width: calc(100% - 48px); max-width: calc(100% - 48px);
  scroll-snap-align: center; flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.3s;
}
.poly-card:hover { border-color: rgba(255,152,0,0.3); }

/* Top Bar */
.pc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border-card);
}
.pc-topbar-left { display: flex; align-items: center; gap: 12px; }
.pc-topbar-right { display: flex; gap: 8px; }
.pc-icon {
  width: 44px; height: 44px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.pc-icon.btc { background: #FF9800; color: #fff; font-weight: 700; font-size: 24px; }
.pc-icon.fed { background: #1e3a5f; }
.pc-icon.wc { background: #2e1a00; }
.pc-icon.geo { background: #0d2818; }
.pc-icon.tennis { background: #1a2e05; }
.pc-title { font-size: 18px; font-weight: 700; color: #fff; }
.pc-subtitle { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.pc-category-tag {
  display: inline-block; font-size: 11px; color: #94a3b8; background: #1e293b;
  padding: 2px 8px; border-radius: 4px; margin-bottom: 4px;
}
.pc-category-tag.sports { color: #f97316; background: #2e1a00; }
.pc-category-tag.geo { color: #10b981; background: #0d2818; }
.pc-bookmark, .pc-share {
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid #333;
  background: transparent; color: #999; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.pc-bookmark:hover, .pc-share:hover { color: var(--accent); border-color: var(--accent); }
.pc-bookmark.active { color: var(--accent); background: rgba(255,152,0,0.1); }

/* Price Row (Card 1) */
.pc-price-row {
  display: flex; gap: 20px; padding: 12px 20px; border-bottom: 1px solid var(--border-card);
  flex-wrap: wrap;
}
.pc-price-block { display: flex; flex-direction: column; gap: 4px; }
.pc-price-label { font-size: 12px; color: var(--text-secondary); }
.pc-price-value { font-family: var(--font-mono); font-size: 20px; font-weight: 700; }
.pc-price-value.white { color: #fff; }
.pc-price-value.orange { color: var(--accent); }
.price-down { color: var(--danger); font-family: var(--font-mono); font-size: 13px; }
.pc-countdown {
  font-family: var(--font-mono); font-size: 22px; font-weight: 700;
  color: #fff; background: var(--danger); padding: 4px 12px; border-radius: 6px;
  display: inline-block; animation: pulse-countdown 1s infinite;
}
@keyframes pulse-countdown {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,61,0,0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(255,61,0,0.3); }
}

/* Main Content Area */
.pc-main { display: flex; min-height: 340px; }
.pc-left { flex: 0 0 45%; padding: 16px 20px; border-right: 1px solid var(--border-card); display: flex; flex-direction: column; }
.pc-right { flex: 1; padding: 12px 16px; position: relative; background: #0f1218; }

/* Action Buttons */
.pc-action-buttons { display: flex; gap: 8px; margin-bottom: 12px; }
.pc-btn-up, .pc-btn-down {
  flex: 1; padding: 10px 16px; border-radius: 8px; border: none;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  font-family: var(--font-sans);
}
.pc-btn-up { background: #3d2800; color: var(--accent); border: 1px solid #5a3d00; }
.pc-btn-up:hover, .pc-btn-up.active { background: var(--accent); color: #000; box-shadow: 0 0 16px rgba(255,152,0,0.3); }
.pc-btn-down { background: #1e1e1e; color: #999; border: 1px solid #333; }
.pc-btn-down:hover { background: #2a2a2a; color: #fff; }

/* Yes/No Buttons (Card 4) */
.pc-action-buttons.yesno { margin-bottom: 16px; }
.pc-btn-yes, .pc-btn-no {
  flex: 1; padding: 10px 14px; border-radius: 8px; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.pc-btn-yes { background: #0a3d1e; color: #10b981; border: 1px solid #166534; }
.pc-btn-yes:hover, .pc-btn-yes.active { background: #10b981; color: #000; }
.pc-btn-no { background: #3d0a0a; color: #ef4444; border: 1px solid #7f1d1d; }
.pc-btn-no:hover { background: #ef4444; color: #fff; }

/* Profit Info */
.pc-profit-info { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.profit-line { font-family: var(--font-mono); font-size: 14px; color: #fff; }
.profit-line.small { font-size: 12px; color: #999; }

/* Options List */
.pc-options-list { margin-bottom: 16px; }
.pc-option-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(51,65,85,0.5);
}
.pc-option-name { font-size: 14px; color: #fff; }
.pc-option-pct { font-family: var(--font-mono); font-size: 15px; font-weight: 600; }
.pc-option-pct.green { color: #10b981; font-size: 17px; }
.pc-option-pct.blue { color: #3B82F6; font-size: 17px; }
.pc-option-pct.orange { color: #F97316; }
.pc-option-pct.gray { color: #64748B; }
.pc-option-item.highlight { background: rgba(59,130,246,0.05); margin: 0 -8px; padding: 10px 8px; border-radius: 6px; }

/* Big Probability (Card 4) */
.pc-big-probability { margin-bottom: 16px; }
.bp-value { font-family: var(--font-mono); font-size: 42px; font-weight: 800; color: #fff; }
.bp-label { font-size: 14px; color: var(--text-secondary); margin-left: 8px; }
.bp-change { font-family: var(--font-mono); font-size: 13px; }
.bp-change.down { color: var(--danger); }
.bp-change.up { color: var(--success); }

/* Comments */
.pc-comments { flex: 1; overflow-y: auto; margin-bottom: 8px; }
.pc-comments.compact { flex: 0; margin-bottom: 12px; }
.pc-comment {
  display: flex; align-items: flex-start; gap: 8px; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pc-avatar {
  width: 28px; height: 28px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 12px;
  font-weight: 600; flex-shrink: 0; color: #fff;
}
.pc-comment-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pc-comment-user { font-size: 13px; color: #fff; font-weight: 500; }
.pc-comment-text { font-size: 12px; color: #999; }
.vol-text { color: #fff !important; font-weight: 500; }
.pc-like-btn {
  background: none; border: none; color: #666; font-size: 14px; cursor: pointer;
  padding: 4px; transition: all 0.2s; flex-shrink: 0;
}
.pc-like-btn:hover, .pc-like-btn.liked { color: #ef4444; transform: scale(1.2); }

/* Dots */
.pc-dots { display: flex; gap: 6px; padding: 8px 0; }
.pc-dots span { width: 6px; height: 6px; border-radius: 50%; background: #444; }
.pc-dots span.active { background: #fff; }

/* Volume inline */
.pc-vol-inline { font-size: 12px; color: #fff; font-weight: 500; margin-top: 8px; }

/* News Excerpt (Card 2) */
.pc-news-excerpt { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-card); }
.pc-news-source { font-size: 11px; color: #64748B; margin-bottom: 6px; }
.pc-news-text { font-size: 13px; color: #ccc; line-height: 1.5; margin-bottom: 8px; }
.pc-vol { font-size: 12px; color: #fff; font-weight: 500; }

/* Event Timeline (Card 4) */
.pc-event-timeline { margin-bottom: 12px; }
.pc-timeline-item {
  display: flex; gap: 10px; padding: 6px 0; font-size: 12px;
  border-left: 2px solid #333; padding-left: 12px; margin-left: 4px;
}
.pc-timeline-item .tl-date { color: var(--accent); font-family: var(--font-mono); white-space: nowrap; }
.pc-timeline-item .tl-text { color: #999; }

/* Chart Area */
.pc-chart-container { position: relative; width: 100%; height: 100%; min-height: 260px; }
.pc-chart { width: 100%; height: 100%; position: absolute; inset: 0; }
.chart-grid line { stroke: #1e293b; stroke-width: 0.5; }
.chart-y-labels {
  position: absolute; right: 4px; top: 8px; bottom: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; color: #64748B;
  pointer-events: none;
}
.chart-x-labels {
  position: absolute; bottom: 4px; left: 8px; right: 40px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 9px; color: #64748B;
  pointer-events: none;
}
.chart-live-badge {
  position: absolute; bottom: 8px; right: 40px;
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: #ef4444; font-weight: 600;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ef4444;
  animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 6px 2px rgba(239,68,68,0.3); }
}
.chart-source {
  position: absolute; bottom: 8px; right: 4px;
  font-size: 9px; color: #475569;
}

/* Chart Legend */
.pc-chart-legend {
  display: flex; flex-wrap: wrap; gap: 12px; padding: 0 0 8px;
  font-size: 11px; color: #94a3b8;
}
.legend-item { display: flex; align-items: center; gap: 4px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

/* Bottom Nav */
.pc-bottom-nav {
  display: flex; justify-content: space-between; padding: 12px 20px;
  border-top: 1px solid var(--border-card);
}
.pc-nav-btn {
  background: #1e293b; border: 1px solid #334155; color: #94a3b8;
  padding: 6px 14px; border-radius: 6px; font-size: 13px; cursor: pointer;
  transition: all 0.2s; font-family: var(--font-sans);
}
.pc-nav-btn:hover { color: #fff; border-color: var(--accent); background: rgba(255,152,0,0.1); }

/* ===== MODULE 3: VIDEO ===== */
.video-showcase { max-width: 900px; margin: 0 auto; position: relative; }
.video-glow {
  position: absolute; inset: -4px; background: linear-gradient(135deg, var(--accent), #ff6d00, var(--accent));
  border-radius: 16px; opacity: 0.6; filter: blur(8px);
  animation: glow-pulse 3s ease-in-out infinite; pointer-events: none; z-index: 0;
}
@keyframes glow-pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 0.7; } }
.video-player {
  position: relative; background: #000; border-radius: 12px 12px 0 0; overflow: hidden;
  border: 2px solid rgba(255,152,0,0.5); border-bottom: none; z-index: 1;
}
.video-player video { width: 100%; height: auto; display: block; background: #000; }
.video-info-panel {
  position: relative; z-index: 1;
  background: var(--bg-card); border: 2px solid rgba(255,152,0,0.5); border-top: 1px solid rgba(255,152,0,0.2);
  border-radius: 0 0 12px 12px; padding: 20px 24px;
}
.video-live-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; margin-bottom: 16px;
  background: rgba(255,61,0,0.08); border: 1px solid rgba(255,61,0,0.25); border-radius: 8px;
  font-size: 13px; color: #ccc; line-height: 1.5;
}
.banner-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--danger);
  animation: live-pulse 1.5s infinite; flex-shrink: 0;
}
.video-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px;
}
.video-stat {
  text-align: center; padding: 12px 8px;
  background: rgba(255,152,0,0.06); border: 1px solid rgba(255,152,0,0.15); border-radius: 8px;
}
.video-stat-value {
  display: block; font-family: var(--font-mono); font-size: 22px; font-weight: 700;
  color: var(--accent); margin-bottom: 4px;
}
.video-stat-value .stat-unit { font-size: 12px; font-weight: 400; color: #8a8f98; margin-left: 2px; }
.video-stat-label { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.video-desc {
  font-size: 13px; color: #8a8f98; line-height: 1.7; margin: 0;
  padding-top: 12px; border-top: 1px solid var(--border-card);
}

/* ===== MODULE 4: CASE STUDY ===== */
.case-hero {
  text-align: center; padding: 48px 32px; background: var(--bg-card);
  border: 1px solid var(--border-card); border-radius: 16px; margin-bottom: 40px;
  position: relative; overflow: hidden;
}
.case-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,152,0,0.08) 0%, transparent 70%);
}
.case-amount {
  font-family: var(--font-mono); font-size: 72px; font-weight: 900;
  color: var(--accent); text-shadow: 0 0 40px rgba(255,152,0,0.4);
  position: relative; margin-bottom: 16px;
}
.case-desc { font-size: 16px; color: #ccc; max-width: 700px; margin: 0 auto 32px; line-height: 1.8; position: relative; }
.case-desc strong { color: var(--accent); }
.case-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; position: relative; }
.case-stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: #fff; }
.stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 12px;
  padding: 24px; position: relative; transition: all 0.3s var(--transition);
}
.step-card:hover { border-color: rgba(255,152,0,0.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.step-num {
  position: absolute; top: 12px; right: 16px; font-family: var(--font-mono);
  font-size: 32px; font-weight: 900; color: rgba(255,152,0,0.1);
}
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ===== MODULE 5: CTA ===== */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-card {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px;
  padding: 32px; transition: all 0.3s var(--transition);
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.cta-free:hover { border-color: rgba(0,200,83,0.4); }
.cta-paid { border-color: rgba(255,152,0,0.3); position: relative; overflow: hidden; }
.cta-paid::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,152,0,0.08) 0%, transparent 60%);
}
.cta-badge {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.cta-badge.free { background: rgba(0,200,83,0.1); color: var(--success); border: 1px solid rgba(0,200,83,0.3); }
.cta-badge.paid { background: rgba(255,152,0,0.1); color: var(--accent); border: 1px solid rgba(255,152,0,0.3); }
.cta-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
.cta-card > p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.cta-features { list-style: none; margin-bottom: 24px; }
.cta-features li { font-size: 13px; color: #ccc; padding: 4px 0; }
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-input {
  width: 100%; padding: 12px 16px; background: #0f1218; border: 1px solid #333;
  border-radius: 8px; color: #fff; font-size: 14px; font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.cta-input:focus { outline: none; border-color: var(--accent); }
.cta-input::placeholder { color: #555; }
.cta-btn {
  width: 100%; padding: 14px 20px; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s;
  font-family: var(--font-sans);
}
.free-btn { background: var(--success); color: #000; }
.free-btn:hover { box-shadow: 0 0 24px rgba(0,200,83,0.4); transform: translateY(-2px); }
.paid-btn {
  background: linear-gradient(135deg, var(--accent), #ff6d00); color: #000;
  position: relative;
}
.paid-btn:hover { box-shadow: 0 0 24px rgba(255,152,0,0.5); transform: translateY(-2px); }
.price-compare { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.price-original { font-size: 18px; color: #666; text-decoration: line-through; font-family: var(--font-mono); }
.price-arrow { color: var(--accent); font-size: 20px; }
.price-current { font-size: 32px; font-weight: 900; color: var(--accent); font-family: var(--font-mono); }
.cta-note { font-size: 12px; color: #555; text-align: center; margin-top: 12px; }

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid var(--border-card); text-align: center; }
.footer p { font-size: 13px; color: #555; }
.footer-disclaimer { font-size: 11px; color: #444; margin-top: 8px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== QUANT SAFETY ===== */
.section-alt { background: #0d0f12; }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.safety-card {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 12px;
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.safety-card:hover {
  border-color: #00FF87; transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,255,135,0.1);
}
.safety-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00FF87, transparent); opacity: 0;
  transition: opacity 0.3s;
}
.safety-card:hover::before { opacity: 1; }
.safety-icon { font-size: 32px; margin-bottom: 16px; }
.safety-card h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.safety-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.safety-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600;
  background: rgba(0,255,135,0.1); color: #00FF87; border: 1px solid rgba(0,255,135,0.3);
}
.safety-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #00FF87;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,255,135,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(0,255,135,0); }
}
.highlight-green { color: #00FF87; font-weight: 600; }

/* ===== LIVE FEED ===== */
.feed-container { display: flex; flex-direction: column; gap: 20px; max-width: 700px; margin: 0 auto; }
.feed-bubble {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px;
  padding: 24px; position: relative; overflow: hidden;
  animation: feed-slide-in 0.6s var(--ease) both;
}
.feed-bubble-1 { animation-delay: 0.1s; }
.feed-bubble-2 { animation-delay: 0.3s; }
.feed-bubble-3 { animation-delay: 0.5s; }
@keyframes feed-slide-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.feed-bubble:hover { border-color: rgba(255,152,0,0.3); }
.feed-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.feed-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 700; color: #fff; position: relative; flex-shrink: 0;
}
.feed-avatar-green { background: linear-gradient(135deg, #00C853, #00E676); }
.feed-avatar-orange { background: linear-gradient(135deg, #FF9800, #FFB74D); }
.feed-avatar-blue { background: linear-gradient(135deg, #2196F3, #64B5F6); }
.feed-verify {
  position: absolute; bottom: -2px; right: -2px; width: 16px; height: 16px;
}
.feed-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.feed-name { font-size: 14px; font-weight: 600; color: #fff; }
.feed-time { font-size: 11px; color: var(--text-secondary); }
.feed-tag {
  padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; white-space: nowrap;
}
.feed-tag-green { background: rgba(0,200,83,0.15); color: #00C853; }
.feed-tag-orange { background: rgba(255,152,0,0.15); color: #FF9800; }
.feed-text { font-size: 14px; color: #ccc; line-height: 1.7; margin-bottom: 16px; }
.feed-footer { display: flex; align-items: center; gap: 16px; }
.feed-reaction {
  font-size: 12px; color: var(--text-secondary); cursor: pointer;
  transition: color 0.2s; padding: 4px 8px; border-radius: 6px;
}
.feed-reaction:hover { color: #FF9800; background: rgba(255,152,0,0.1); }
.feed-profit {
  margin-left: auto; font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: #00C853; padding: 4px 12px; border-radius: 6px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.2);
}

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 12px;
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(255,152,0,0.4); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 500; color: #fff; text-align: left;
  font-family: var(--font-main); transition: color 0.2s; gap: 16px;
}
.faq-question:hover { color: #FF9800; }
.faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--text-secondary);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: #FF9800; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: #ccc; line-height: 1.7; margin-bottom: 12px; }
.faq-highlight {
  display: inline-flex; padding: 6px 14px; border-radius: 8px; font-size: 12px;
  font-weight: 600; background: rgba(255,152,0,0.1); color: #FF9800;
  border: 1px solid rgba(255,152,0,0.2);
}

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #1a1d23;
  border: 1px solid #2a2d35;
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 0 40px rgba(255,152,0,0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box {
  transform: scale(1);
}
.modal-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.modal-text {
  font-size: 14px;
  color: #8a8f98;
  line-height: 1.6;
  margin-bottom: 28px;
}
.modal-close-btn {
  background: #FF9800;
  color: #101216;
  border: none;
  border-radius: 8px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-close-btn:hover {
  background: #FFB74D;
  box-shadow: 0 0 20px rgba(255,152,0,0.4);
}

/* Payment Modal */
.payment-modal-box {
  max-width: 460px;
}
.qr-code-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 20px;
}
.qr-code-img {
  width: 180px;
  height: 180px;
  display: block;
  border-radius: 8px;
}
.wallet-address {
  margin-bottom: 16px;
}
.wallet-label {
  display: block;
  font-size: 12px;
  color: #8a8f98;
  margin-bottom: 8px;
}
.address-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #101216;
  border: 1px solid #2a2d35;
  border-radius: 8px;
  padding: 10px 12px;
}
.address-text {
  flex: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #FF9800;
  word-break: break-all;
  line-height: 1.4;
}
.copy-btn {
  background: #2a2d35;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.copy-btn:hover {
  background: #FF9800;
  color: #101216;
}
.copy-btn.copied {
  background: #00C853;
  color: #fff;
}
.payment-note {
  font-size: 12px;
  color: #8a8f98;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section-title { font-size: 26px; }
  .safety-grid { grid-template-columns: 1fr; }
  .feed-header { flex-wrap: wrap; }
  .feed-tag { margin-left: 52px; margin-top: -8px; }
  .case-amount { font-size: 48px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .pc-main { flex-direction: column; }
  .pc-left { flex: none; border-right: none; border-bottom: 1px solid var(--border-card); }
  .pc-right { min-height: 240px; }
  .pc-price-row { gap: 12px; }
  .case-stats { gap: 24px; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .case-amount { font-size: 36px; }
  .case-stats { gap: 16px; }
  .stat-num { font-size: 22px; }
  .poly-card { min-width: calc(100% - 24px); max-width: calc(100% - 24px); }
  .carousel-arrow { width: 36px; height: 36px; font-size: 20px; }
}
