/* ============================================
   SECONDFISH LANDING PAGE - V6 ULTIMATE EDITION
   Theme: Cinematic HUD / Electric Blue / 3D Holographic
   ============================================ */

:root {
  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Color Palette - Electric Blue Trust */
  --bg-void: #020408;
  --bg-panel: #050A14;

  /* HUD Colors */
  --hud-primary: #3B82F6;
  /* Electric Blue */
  --hud-accent: #60A5FA;
  /* Lighter Blue */
  --hud-profit: #00FF94;
  /* Neon Green (Money) */
  --hud-alert: #FF2E2E;
  /* Red */
  --hud-dim: rgba(59, 130, 246, 0.2);
  --hud-border: rgba(59, 130, 246, 0.3);
  --hud-glass: rgba(5, 10, 20, 0.7);

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-void);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

/* Noise Texture for Cinematic Feel */
.grid-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Typography Utilities */
h1,
h2,
h3,
.hero-label,
.stat-value,
.nav-logo {
  font-family: var(--font-display);
}

.highlight {
  color: var(--hud-primary);
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.highlight-text {
  color: var(--hud-profit);
  font-weight: 600;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-bar.scrolled {
  background: rgba(2, 4, 8, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hud-border);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  color: var(--hud-primary);
  letter-spacing: -2px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Header Polish */
.nav-link {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hud-primary);
  transition: width 0.3s;
  box-shadow: 0 0 5px var(--hud-primary);
}

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

.btn-hud {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--hud-primary);
  color: var(--hud-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hud:hover {
  background: var(--hud-primary);
  color: #fff;
  box-shadow: 0 0 15px var(--hud-primary);
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  z-index: 2;
}

.hero-label {
  color: var(--hud-primary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  border: 1px solid var(--hud-border);
  padding: 0.4rem 0.8rem;
  background: rgba(59, 130, 246, 0.05);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: #fff;
}

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

.btn-primary {
  background: rgba(59, 130, 246, 0.1);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s;
  border: 1px solid var(--hud-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--hud-primary);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.8);
  transform: translateY(-2px);
  text-shadow: 0 0 5px #fff;
}

.btn-secondary {
  background: transparent;
  color: #94A3B8;
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  border: 1px solid rgba(148, 163, 184, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-secondary:hover {
  color: #fff;
  border-color: #fff;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* 3D Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  /* Enable 3D space */
  overflow: visible !important;
  /* Ensure no clipping */
  z-index: 50;
}

.tilt-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  /* Allow children to exist in 3D space */
  transition: transform 0.1s ease-out;
  /* Smooth tilt */
}

.hud-container {
  position: relative;
  width: 400px;
  height: 500px;
  background: var(--hud-glass);
  border: 1px solid var(--hud-border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: translateZ(20px);
  /* Push forward slightly */
  transform-style: preserve-3d;
  overflow: visible !important;
  /* Ensure no clipping */
}

/* Holographic Glass Layers */
.glass-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.layer-1 {
  transform: translateZ(10px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.layer-2 {
  transform: translateZ(30px);
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.product-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hud-border);
  transform: translateZ(5px);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: grayscale(40%) contrast(1.2);
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hud-primary);
  box-shadow: 0 0 15px var(--hud-primary);
  animation: scan 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes scan {
  0% {
    top: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Data Points - Integrated Holographic Modules */
.data-point {
  position: absolute;
  padding: 0.5rem 0.8rem;
  /* Smaller buffer */
  display: flex;
  flex-direction: column;
  min-width: 120px;
  /* Smaller width */
  opacity: 1;
  transform: translateZ(60px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Module Box Style */
  background: rgba(5, 10, 20, 0.85);
  border: 1px solid var(--hud-border);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.data-point:hover {
  transform: translateZ(80px) scale(1.05);
  border-color: var(--hud-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  z-index: 1001;
}

/* Connector Lines */
.data-point::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  /* Shorter lines */
  height: 1px;
  background: var(--hud-border);
  transition: width 0.3s, background 0.3s;
}

.data-point:hover::before {
  background: var(--hud-primary);
  box-shadow: 0 0 8px var(--hud-primary);
}

/* Connector Dots */
.data-point::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--hud-primary);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 5px var(--hud-primary);
}

/* Right Side Positioning & Connectors */
.data-point.right {
  right: -90px;
  /* Closer inner alignment */
  text-align: left;
  align-items: flex-start;
  border-left: 2px solid var(--hud-primary);
  /* Accent border on connector side */
}

.data-point.right::before {
  right: 100%;
  /* Line extends to the left */
}

.data-point.right::after {
  right: 100%;
  /* Dot at the end of the line */
  margin-right: 30px;
  /* Match line width */
}

/* Left Side Positioning & Connectors */
.data-point.left {
  left: -90px;
  /* Closer inner alignment */
  text-align: right;
  align-items: flex-end;
  border-right: 2px solid var(--hud-primary);
  /* Accent border on connector side */
}

.data-point.left::before {
  left: 100%;
  /* Line extends to the right */
}

.data-point.left::after {
  left: 100%;
  /* Dot at the end of the line */
  margin-left: 30px;
  /* Match line width */
}


/* Specific Colors - Text Only */
/* Blue Group */
.point-trust .data-value,
.point-score .data-value,
.point-auth .data-value {
  color: #3B82F6;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

/* Green Group */
.point-profit .data-value,
.point-value .data-value,
.point-scam .data-value,
.point-risk .data-value {
  color: #00FF94;
  text-shadow: 0 0 10px rgba(0, 255, 148, 0.6);
}

/* Orange Group */
.point-demand .data-value {
  color: #FF9F1C;
  text-shadow: 0 0 10px rgba(255, 159, 28, 0.6);
}

/* White Group */
.point-asking .data-value,
.point-time .data-value {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Vertical Positions - Asymmetric & Scattered */

/* Right Side (Money) */
.point-profit {
  top: 12%;
  /* High up */
}

.point-demand {
  top: 48%;
  /* Middle */
}

.point-asking {
  top: 82%;
  /* Low down */
}

/* Left Side (Safety) - Offset from Right */
.point-score {
  top: 25%;
  /* Lower than profit */
}

.point-scam {
  top: 60%;
  /* Lower than demand */
}

.point-auth {
  top: 88%;
  /* Very low */
}

.data-label {
  font-family: var(--font-display);
  /* Match headers */
  font-size: 0.6rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 500;
}

.data-value {
  font-family: 'Space Grotesk', sans-serif;
  /* More modern than Courier */
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(10px) translateZ(60px);
  }

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

/* Trust Strip */
.trust-strip {
  border-top: 1px solid var(--hud-border);
  border-bottom: 1px solid var(--hud-border);
  background: rgba(5, 10, 20, 0.5);
  padding: 2rem 0;
  backdrop-filter: blur(5px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.trust-text span {
  color: #94A3B8;
  font-size: 0.85rem;
}

/* Analytics Strip */
.analytics-strip {
  border-top: 1px solid var(--hud-border);
  border-bottom: 1px solid var(--hud-border);
  background: rgba(5, 10, 20, 0.5);
  padding: 2rem 0;
  backdrop-filter: blur(5px);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94A3B8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problem Section */
.problem-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-void), rgba(5, 10, 20, 0.8));
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.comparison-card {
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--hud-border);
}

.comparison-card.bad {
  background: rgba(255, 46, 46, 0.05);
  border-color: rgba(255, 46, 46, 0.3);
}

.comparison-card.good {
  background: rgba(0, 255, 148, 0.05);
  border-color: rgba(0, 255, 148, 0.3);
}

.comparison-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hud-border);
}

.comparison-card.bad .comparison-title {
  color: #FF6B6B;
}

.comparison-card.good .comparison-title {
  color: var(--hud-profit);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.icon-bad {
  color: #FF6B6B;
  font-weight: bold;
  flex-shrink: 0;
}

.icon-good {
  color: var(--hud-profit);
  font-weight: bold;
  flex-shrink: 0;
}

/* Web Search Section */
.websearch-section {
  padding: 6rem 0;
  border-top: 1px solid var(--hud-border);
}

.sources-showcase {
  background: var(--bg-panel);
  border: 1px solid var(--hud-border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.sources-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sources-label {
  color: var(--hud-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.source-category h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.source-tag {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--hud-border);
  color: #94A3B8;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.source-tag:hover {
  border-color: var(--hud-primary);
  color: #fff;
  background: rgba(59, 130, 246, 0.2);
}

.sources-note {
  text-align: center;
  color: #64748B;
  font-size: 0.9rem;
  margin-top: 2rem;
  font-style: italic;
}

/* Metrics Section */
.metrics-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, rgba(5, 10, 20, 0.8), var(--bg-void));
  border-top: 1px solid var(--hud-border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.metric-category {
  background: var(--bg-panel);
  border: 1px solid var(--hud-border);
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.metric-category:hover {
  border-color: var(--hud-primary);
  transform: translateY(-5px);
}

.metric-category-title {
  color: var(--hud-primary);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--hud-border);
  font-family: var(--font-display);
}

.metric-list {
  list-style: none;
}

.metric-list li {
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

/* Features Section */
.features-section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-subtitle {
  color: #94A3B8;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--hud-border);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--hud-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-desc {
  color: #94A3B8;
  font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--bg-void), rgba(5, 10, 20, 0.8));
  border-top: 1px solid var(--hud-border);
}

.pipeline-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pipeline-step {
  flex: 1;
  max-width: 300px;
  background: var(--bg-panel);
  border: 1px solid var(--hud-border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.pipeline-step:hover {
  border-color: var(--hud-primary);
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid var(--hud-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hud-primary);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.step-content {
  flex: 1;
}

.step-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}

.step-desc {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--hud-border);
  color: var(--hud-accent);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--hud-primary);
  opacity: 0.5;
}

.pipeline-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid var(--hud-border);
  border-radius: 8px;
  color: #94A3B8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pipeline-note strong {
  color: #fff;
}

/* Video Section (Cinematic Theater) */
.video-section {
  padding: 6rem 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-top: 1px solid var(--hud-border);
  border-bottom: 1px solid var(--hud-border);
}

.video-container-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  perspective: 1000px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  border: 1px solid var(--hud-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: rotateX(5deg);
  /* Slight tilt for cinematic feel */
  transition: transform 0.5s ease;
}

.video-container:hover {
  transform: rotateX(0deg) scale(1.02);
  border-color: var(--hud-primary);
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #050A14, #0F172A);
  color: #fff;
  cursor: pointer;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.2);
  border: 2px solid var(--hud-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  color: var(--hud-primary);
}

.video-placeholder:hover .play-button {
  background: var(--hud-primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--hud-primary);
}

.video-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--hud-primary);
  filter: blur(60px);
  opacity: 0.1;
  z-index: -1;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-void);
}

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

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--hud-border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--hud-primary);
}

.faq-question {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  line-height: 1.4;
}

.faq-answer {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: #fff;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-void), #050A14);
  border-top: 1px solid var(--hud-border);
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.cta-text {
  font-size: 1.2rem;
  color: #94A3B8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-badges {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--hud-border);
  color: #94A3B8;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOMO Section (Legacy) */
.fomo-section {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-void), #050A14);
}

.fomo-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.fomo-text {
  font-size: 1.2rem;
  color: #94A3B8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--hud-border);
  background: var(--bg-panel);
}

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

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.footer-tagline {
  color: #64748B;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  color: #64748B;
  font-size: 0.85rem;
}

.footer-disclaimer {
  text-align: center;
  color: #475569;
  font-size: 0.75rem;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Animations */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-up"].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="scale-up"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="scale-up"].in-view {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media (max-width: 1100px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pipeline-grid {
    flex-direction: column;
    align-items: center;
  }

  .pipeline-step {
    max-width: 100%;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 400px;
    margin-top: 2rem;
  }

  .hud-container {
    width: 300px;
    height: 400px;
  }

  .data-point.right {
    right: -90px;
  }

  .data-point.left {
    left: -90px;
  }

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

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

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

  /* Scale down the entire visual to fit metrics */
  .hero-visual {
    transform: scale(0.65);
    margin-top: -2rem;
  }

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

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

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

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

  .nav-links {
    display: none;
  }

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

  .cta-title {
    font-size: 2rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
