/* ═══════════════════════════════════════════════
   VOYAGER.TECH — style.css
   Dark Space Tech Theme
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black: #050508;
  --cyan: #00F5FF;
  --violet: #A855F7;
  --white: #FFFFFF;
  --gray: #A1A1B5;
  --dark-surface: #0D0D1A;
  --dark-card: #0A0A16;
  --card-border: rgba(0, 245, 255, 0.15);
  --card-border-v: rgba(168, 85, 247, 0.15);
  --glow-cyan: 0 0 30px rgba(0, 245, 255, 0.4);
  --glow-violet: 0 0 30px rgba(168, 85, 247, 0.4);
  --font-head: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* ── Grain Overlay ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--cyan), 0 0 30px rgba(0, 245, 255, 0.5);
  transition: transform 0.1s, width 0.2s, height 0.2s;
}

.cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
}

body:hover .cursor {
  transform: translate(-50%, -50%) scale(1);
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 50px;
  z-index: -1;
}

.btn-cta-primary:hover {
  color: var(--black);
  box-shadow: var(--glow-cyan);
}

.btn-cta-primary:hover::before {
  transform: scaleX(1);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(168, 85, 247, 0.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: none;
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: var(--glow-violet);
  background: rgba(168, 85, 247, 0.15);
}

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Scroll Reveal ── */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-up.animated {
  animation: fadeUp 0.8s ease forwards;
}

.delay-0 {
  animation-delay: 0.1s;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.5s;
}

.delay-3 {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
}


.logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.logo-dot {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--cyan);
  transition: right 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  right: 0;
}

.btn-nav-cta {
  margin-left: auto;
  padding: 10px 24px;
  border: 1.5px solid var(--cyan);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  transition: var(--transition);
  white-space: nowrap;
  cursor: none;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: var(--cyan);
  color: var(--black);
  box-shadow: var(--glow-cyan);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: rgba(10, 10, 22, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 245, 255, 0.1);
  z-index: 1001;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s;
}

.drawer-link:hover {
  color: var(--cyan);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.2rem;
  cursor: none;
}

.drawer-cta {
  margin-top: auto;
  text-align: center;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  grid-template-rows: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  grid-column: 1;
  width: fit-content;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  grid-column: 1;
}

.hero-sub {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  grid-column: 1;
  min-height: 56px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  grid-column: 1;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / 5;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: rgba(13, 13, 26, 0.9);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0, 245, 255, 0.1), 0 0 120px rgba(168, 85, 247, 0.05);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-16px) rotateX(-2deg) rotateY(2deg);
  }
}

.mockup-header {
  background: rgba(0, 245, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red {
  background: #ff5f57;
}

.mockup-dot.yellow {
  background: #febc2e;
}

.mockup-dot.green {
  background: #28c840;
}

.mockup-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  margin-left: 8px;
}

.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 10px 14px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
}

.stat-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
}

.stat-val.cyan {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.stat-val.violet {
  color: var(--violet);
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.mockup-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--gray);
}

.mockup-bar-label {
  width: 80px;
  flex-shrink: 0;
}

.mockup-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.mockup-bar-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0, 245, 255, 0.6);
  animation: barGrow 2s ease forwards;
  width: 0%;
}

.mockup-bar-fill.violet-fill {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

@keyframes barGrow {
  to {
    width: var(--target-w, 87%);
  }
}

.mockup-bar-pct {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
}

.mockup-pulse-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
  border-radius: 8px;
  padding: 10px 14px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22ff88;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(34, 255, 136, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

/* Ticker */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Typewriter */
.typewriter {
  border-right: 2px solid var(--cyan);
  padding-right: 4px;
}

/* ═══════════════════════════════════════════════
   POSITIONING
═══════════════════════════════════════════════ */
section {
  padding: 100px 0;
}

.positioning {
  background: var(--dark-surface);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.positioning-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.positioning-left p {
  color: var(--gray);
  font-size: 1.05rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  font-family: var(--font-mono);
}

.icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(0, 245, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(0, 245, 255, 0.05);
  position: relative;
  animation: ringPulse 3s ease-in-out infinite;
}

.icon-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.15);
  animation: ringPulse 3s ease-in-out infinite reverse;
}

.violet-ring {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.05);
}

.violet-ring::before {
  border-color: rgba(168, 85, 247, 0.15);
}

@keyframes ringPulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
  }
}

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.features {
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: none;
  transform-style: preserve-3d;
}

.feature-card:hover {
  border-color: rgba(0, 245, 255, 0.5);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.feature-card:hover {
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.12), inset 0 0 30px rgba(0, 245, 255, 0.04);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Inner light sweep */
.feature-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, transparent, rgba(0, 245, 255, 0.08), transparent);
  transition: all 0.6s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  top: 200%;
  left: 200%;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works {
  background: var(--dark-surface);
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.flow-step {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  align-items: start;
  gap: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.flow-step.step-visible {
  opacity: 1;
  transform: translateX(0);
}

.flow-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.08);
  border: 2px solid rgba(0, 245, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
  position: relative;
  z-index: 2;
}

.flow-connector {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, rgba(0, 245, 255, 0.4), rgba(168, 85, 247, 0.3));
  margin: 0 auto;
  position: relative;
}

.flow-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: connDrop 2s ease-in-out infinite;
}

@keyframes connDrop {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.flow-content {
  padding: 12px 0 32px 24px;
}

.flow-content h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.flow-content p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════ */
.industries {
  background: var(--black);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border-v);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--glow-violet);
}

.industry-bg-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 6rem;
  opacity: 0.04;
  transition: opacity 0.3s, transform 0.3s;
}

.industry-card:hover .industry-bg-icon {
  opacity: 0.08;
  transform: scale(1.1);
}

.industry-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}

.industry-card h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats {
  background: var(--dark-surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
  position: relative;
}

.stat-num::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  border-radius: 1px;
}

.cyan-text {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.cyan-text::after {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.violet-text {
  color: var(--violet);
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.violet-text::after {
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

.stat-label {
  color: var(--gray);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  line-height: 1.4;
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
.why-us {
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.1);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li div strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.check-list li div p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Trust Badge */
.why-right {
  display: flex;
  justify-content: center;
}

.trust-badge {
  width: 320px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 245, 255, 0.15);
  animation: rotateBorder 20s linear infinite;
}

.trust-badge::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.15);
  animation: rotateBorder 15s linear infinite reverse;
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

.trust-badge-inner {
  background: rgba(13, 13, 26, 0.9);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  width: 260px;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.1);
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.trust-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 4px;
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--gray);
  font-family: var(--font-mono);
}

.trust-divider {
  width: 80%;
  height: 1px;
  background: rgba(0, 245, 255, 0.15);
  margin: 16px auto;
}

.trust-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}

.trust-stats>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--violet);
}

.trust-stats>div>span:last-child {
  font-size: 0.7rem;
  color: var(--gray);
  font-family: var(--font-mono);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.trust-tags span {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 50px;
  padding: 3px 10px;
}

/* ═══════════════════════════════════════════════
   ADVANCED FEATURES
═══════════════════════════════════════════════ */
.advanced {
  background: var(--dark-surface);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.tag {
  padding: 10px 22px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--white);
  transition: var(--transition);
  background: rgba(0, 245, 255, 0.04);
  cursor: none;
}

.tag:hover {
  background: rgba(0, 245, 255, 0.12);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.violet-tag {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.04);
}

.violet-tag:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: var(--violet);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

/* ═══════════════════════════════════════════════
   CASE STUDY
═══════════════════════════════════════════════ */
.case-study {
  background: var(--black);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.case-card {
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.before-card {
  background: rgba(255, 60, 60, 0.04);
  border: 1px solid rgba(255, 60, 60, 0.2);
}

.after-card {
  background: rgba(0, 245, 255, 0.04);
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.case-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
}

.before-badge {
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
  background: rgba(255, 107, 107, 0.08);
}

.after-badge {
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.3);
  background: rgba(0, 245, 255, 0.08);
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.case-list li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}

.before-card .case-list li {
  color: rgba(255, 180, 180, 0.8);
}

.after-card .case-list li {
  color: rgba(180, 255, 240, 0.85);
}

.case-result {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.06), rgba(168, 85, 247, 0.06));
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.case-result span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing {
  background: var(--dark-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.featured-plan {
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.1), inset 0 0 40px rgba(0, 245, 255, 0.03);
  transform: translateY(-8px);
}

.featured-plan:hover {
  transform: translateY(-14px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.plan-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.plan-price {
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.2rem;
  color: var(--cyan);
  vertical-align: top;
  line-height: 3;
}

.price-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
}

.price-per {
  color: var(--gray);
  font-size: 0.85rem;
  margin-left: 4px;
}

.plan-desc {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 10px;
}

.plan-features li::before {
  content: none;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1.5px solid rgba(0, 245, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: none;
  color: var(--white);
}

.btn-plan:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.btn-plan-featured {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
}

.btn-plan-featured:hover {
  background: transparent;
  color: var(--cyan);
}

.pricing-quality-line {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--gray);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.pricing-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}

.pricing-note a {
  color: var(--cyan);
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--black);
}

#warpCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid rgba(0, 245, 255, 0.08);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.footer-tagline {
  color: var(--gray);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gray);
  transition: var(--transition);
  cursor: none;
}

.social-icon:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact-link {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-link:hover {
  color: var(--cyan);
}

.footer-links-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-badge,
  .hero-headline,
  .hero-sub,
  .hero-ctas {
    grid-column: 1;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: auto;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .positioning-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    display: none;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .flow-step {
    grid-template-columns: 60px 24px 1fr;
  }

  .flow-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-trail {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 80px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .case-result {
    flex-direction: column;
  }
}