/* ═══════════════════════════════════════════════════════════════
   Village People Signals — Landing Page Styles
   Professional dark institutional trading terminal aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #080a0d;
  color: #eaecef;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: #F0B90B; text-decoration: none; transition: color 0.25s; }
a:hover { color: #FCD535; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── CSS Variables ──────────────────────────────────────────────── */
:root {
  --bg: #080a0d;
  --bg-surface: #0f1117;
  --bg-raised: #141720;
  --bg-overlay: #1a1e28;
  --bg-hover: #1e2329;
  --border: #2a2e39;
  --border-subtle: #181c24;
  --accent: #F0B90B;
  --accent-hover: #FCD535;
  --accent-dim: rgba(240,185,11,0.08);
  --accent-glow: rgba(240,185,11,0.15);
  --green: #0ECB81;
  --red: #F6465D;
  --blue: #1E80FF;
  --purple: #8B5CF6;
  --text-primary: #eaecef;
  --text-secondary: #848e9c;
  --text-tertiary: #555b65;
  --container-max: 1180px;
  --nav-height: 64px;
}

/* ── Keyframe Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 8px rgba(240,185,11,0.2); }
  50% { box-shadow: 0 0 20px rgba(240,185,11,0.4); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scanLine {
  0% { top: -2px; }
  100% { top: 100%; }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(240,185,11,0.15); }
  50% { border-color: rgba(240,185,11,0.4); }
}
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(240,185,11,0.3); }
  50% { text-shadow: 0 0 40px rgba(240,185,11,0.6), 0 0 80px rgba(240,185,11,0.2); }
}
@keyframes heroGradient {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(30px, -30px) rotate(120deg) scale(1.1); }
  66% { transform: translate(-20px, 20px) rotate(240deg) scale(0.9); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}
@keyframes heroGradient2 {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(-40px, 20px) rotate(-120deg) scale(1.15); }
  66% { transform: translate(20px, -20px) rotate(-240deg) scale(0.85); }
  100% { transform: translate(0, 0) rotate(-360deg) scale(1); }
}
@keyframes dotPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes revealLine {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes particleDrift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ── Scroll Animation Classes ──────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Slide from left */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-slide-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.anim-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-slide-right.visible { opacity: 1; transform: translateX(0); }

/* Scale up */
.anim-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

/* Blur in */
.anim-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition: opacity 0.8s ease,
              filter 0.8s ease,
              transform 0.8s ease;
}
.anim-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Counter animation */
.counter-value {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.counter-value.counted {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero Background Particles Canvas ──────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 38px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.03em; line-height: 1.2; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 24px;
  background: var(--accent-dim); border: 1px solid rgba(240,185,11,0.2);
  color: var(--accent); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.section-label .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite;
}

/* ── Navigation ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,10,13,0.7); backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  height: var(--nav-height); display: flex; align-items: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(8,10,13,0.95);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px;
  color: var(--text-primary); text-decoration: none;
}
.nav-brand:hover { color: var(--text-primary); }
.nav-brand .material-symbols-outlined { color: var(--accent); font-size: 28px; font-variation-settings: 'FILL' 1; transition: transform 0.3s ease; }
.nav-brand:hover .material-symbols-outlined { transform: rotate(90deg) scale(1.1); }
.nav-brand span.brand-highlight { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--text-secondary); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: 8px; transition: all 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--accent); border-radius: 1px; transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a:hover { color: var(--text-primary); background: var(--accent-dim); }
.nav-links a.active { color: var(--accent); background: var(--accent-dim); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  background: none; border: 1px solid var(--border); color: var(--text-secondary);
  padding: 9px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 6px;
  position: relative; overflow: hidden;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn-primary {
  background: var(--accent); border: none; color: #080a0d;
  padding: 9px 24px; border-radius: 10px; font-size: 14px; font-weight: 700;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(240,185,11,0.25);
  display: inline-flex; align-items: center; gap: 6px;
  position: relative; overflow: hidden;
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(240,185,11,0.35);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

/* Ripple effect for buttons */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleEffect {
  to { transform: scale(4); opacity: 0; }
}

.btn-lg { padding: 15px 36px; font-size: 16px; border-radius: 12px; }
.btn-outline-lg {
  background: none; border: 1px solid var(--border); color: var(--text-primary);
  padding: 15px 36px; font-size: 16px; font-weight: 600; border-radius: 12px;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-outline-lg:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; background: none; border: none; color: var(--text-primary);
  padding: 8px; cursor: pointer; border-radius: 8px; transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--accent-dim); }
.nav-hamburger .material-symbols-outlined { font-size: 28px; transition: transform 0.3s ease; }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(8,10,13,0.98); backdrop-filter: blur(20px);
  padding: 24px; z-index: 99; flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: auto; }
.nav-mobile a {
  color: var(--text-secondary); font-size: 18px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
  display: block; transition: color 0.2s, transform 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--accent); transform: translateX(4px); }
.nav-mobile .btn-primary { text-align: center; margin-top: 16px; font-size: 16px; padding: 14px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-height); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(ellipse, rgba(240,185,11,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGradient 20s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none; z-index: 1;
}

/* Animated gradient blobs behind hero */
.hero-bg-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  opacity: 0.4;
}
.hero-bg-blob-1 {
  width: 500px; height: 500px; top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(240,185,11,0.15) 0%, transparent 70%);
  animation: heroGradient 25s ease-in-out infinite;
}
.hero-bg-blob-2 {
  width: 400px; height: 400px; bottom: 10%; left: -8%;
  background: radial-gradient(circle, rgba(14,203,129,0.08) 0%, transparent 70%);
  animation: heroGradient2 30s ease-in-out infinite;
}
.hero-bg-blob-3 {
  width: 300px; height: 300px; top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(30,128,255,0.06) 0%, transparent 70%);
  animation: heroGradient 22s ease-in-out infinite reverse;
}

/* Grid lines behind hero */
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(240,185,11,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-content { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 24px;
  background: var(--accent-dim); border: 1px solid rgba(240,185,11,0.25);
  color: var(--accent); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 28px;
  animation: fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero h1 {
  font-size: 52px; font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.04em;
  animation: fadeInUp 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #F0B90B 0%, #FCD535 40%, #F0B90B 80%);
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
.hero p {
  font-size: 18px; color: var(--text-secondary); max-width: 520px;
  margin-bottom: 36px; line-height: 1.8;
  animation: fadeInUp 0.6s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.6s 0.3s cubic-bezier(0.16,1,0.3,1) both; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.6s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 700;
  color: var(--accent); line-height: 1.2;
}
.hero-stat-value.counting { animation: countUp 0.5s ease both; }
.hero-stat-label { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

/* ── Terminal Mockup ──────────────────────────────────────────── */
.terminal-wrapper {
  position: relative; z-index: 2;
  animation: slideInRight 0.8s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
.terminal {
  background: #06080b; border: 1px solid var(--border-subtle); border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(240,185,11,0.05);
  display: flex; flex-direction: column; height: 500px;
  position: relative;
  animation: borderGlow 4s ease-in-out infinite;
}
.terminal::before {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,0.3), transparent);
  z-index: 3;
}
/* Scan line effect */
.terminal-scanline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 10;
  background: linear-gradient(90deg, transparent 0%, rgba(240,185,11,0.4) 30%, rgba(240,185,11,0.6) 50%, rgba(240,185,11,0.4) 70%, transparent 100%);
  animation: scanLine 4s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}
.terminal-header {
  background: var(--bg-overlay); padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  position: relative; z-index: 2;
}
.terminal-dots { display: flex; gap: 7px; }
.terminal-dots span { width: 12px; height: 12px; border-radius: 50%; transition: transform 0.2s; }
.terminal-dots span:hover { transform: scale(1.2); }
.terminal-dots .dot-red { background: #ff5f57; }
.terminal-dots .dot-yellow { background: #febc2e; }
.terminal-dots .dot-green { background: #28c840; }
.terminal-title { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-tertiary); }
.terminal-status {
  display: flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--green);
}
.terminal-status .status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
.terminal-body { flex: 1; overflow-y: auto; position: relative; }
.terminal-body::-webkit-scrollbar { width: 4px; }
.terminal-body::-webkit-scrollbar-track { background: transparent; }
.terminal-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.terminal-table { width: 100%; border-collapse: collapse; }
.terminal-table thead { position: sticky; top: 0; z-index: 2; }
.terminal-table th {
  padding: 12px 16px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-tertiary); background: var(--bg-overlay);
  border-bottom: 1px solid var(--border-subtle); text-align: left;
}
.terminal-table td { padding: 11px 16px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.terminal-table tr { transition: background 0.15s; }
.terminal-table tr:hover { background: rgba(240,185,11,0.03); }
.terminal-table .pair { font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 12px; }
.terminal-table .long { color: var(--green); }
.terminal-table .short { color: var(--red); }
.terminal-table .source { color: var(--text-tertiary); font-size: 11px; }
.terminal-table .time { text-align: right; color: var(--text-tertiary); font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.badge {
  display: inline-flex; align-items: center; padding: 2px 8px;
  border-radius: 4px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-family: 'JetBrains Mono', monospace;
}
.badge-long { background: rgba(14,203,129,0.12); color: var(--green); border: 1px solid rgba(14,203,129,0.25); }
.badge-short { background: rgba(246,70,93,0.12); color: var(--red); border: 1px solid rgba(246,70,93,0.25); }
.terminal-footer {
  background: var(--bg-overlay); padding: 10px 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-tertiary);
}
.terminal-footer .footer-left { display: flex; align-items: center; gap: 8px; }
.terminal-footer .status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.signal-enter { animation: fadeInUp 0.4s cubic-bezier(0.16,1,0.3,1) both; }

/* ── How It Works ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 36px 28px 32px; position: relative;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
/* Hover shine effect */
.step::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.step:hover::after { left: 150%; }
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.step:hover { border-color: rgba(240,185,11,0.25); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.step:hover::before { opacity: 1; }
.step-number {
  font-family: 'JetBrains Mono', monospace; font-size: 56px; font-weight: 900;
  color: rgba(240,185,11,0.06); position: absolute; top: 8px; right: 20px;
  line-height: 1; transition: color 0.35s;
}
.step:hover .step-number { color: rgba(240,185,11,0.12); }
.step-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-dim); border: 1px solid rgba(240,185,11,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: all 0.35s;
}
.step:hover .step-icon { background: rgba(240,185,11,0.15); border-color: rgba(240,185,11,0.3); transform: scale(1.05); }
.step-icon .material-symbols-outlined { color: var(--accent); font-size: 26px; font-variation-settings: 'FILL' 1; transition: transform 0.3s; }
.step:hover .step-icon .material-symbols-outlined { transform: scale(1.1); }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.step-connector { display: none; }

/* ── Features Grid ─────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 32px 28px; position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
/* Hover shine sweep */
.feature::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,0.04), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.feature:hover::after { left: 150%; }
.feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.feature:hover { border-color: rgba(240,185,11,0.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.feature:hover::before { opacity: 1; }
.feature.feature-wide { grid-column: span 2; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: all 0.35s;
}
.feature-icon.icon-gold { background: var(--accent-dim); border: 1px solid rgba(240,185,11,0.12); }
.feature-icon.icon-green { background: rgba(14,203,129,0.08); border: 1px solid rgba(14,203,129,0.12); }
.feature-icon.icon-blue { background: rgba(30,128,255,0.08); border: 1px solid rgba(30,128,255,0.12); }
.feature:hover .feature-icon.icon-gold { background: rgba(240,185,11,0.15); border-color: rgba(240,185,11,0.25); transform: scale(1.08); }
.feature:hover .feature-icon.icon-green { background: rgba(14,203,129,0.15); border-color: rgba(14,203,129,0.25); transform: scale(1.08); }
.feature:hover .feature-icon.icon-blue { background: rgba(30,128,255,0.15); border-color: rgba(30,128,255,0.25); transform: scale(1.08); }
.feature-icon .material-symbols-outlined { font-size: 24px; font-variation-settings: 'FILL' 1; transition: transform 0.3s; }
.feature:hover .feature-icon .material-symbols-outlined { transform: scale(1.15); }
.feature-icon.icon-gold .material-symbols-outlined { color: var(--accent); }
.feature-icon.icon-green .material-symbols-outlined { color: var(--green); }
.feature-icon.icon-blue .material-symbols-outlined { color: var(--blue); }
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.feature-metric {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-subtle);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
}

/* ── Pricing ───────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 20px; padding: 44px 40px; position: relative;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
/* Card shine sweep */
.pricing-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}
.pricing-card:hover::after { left: 150%; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 0 0 1px rgba(240,185,11,0.1), 0 16px 48px rgba(240,185,11,0.12);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #F0B90B, #FCD535); color: #080a0d; padding: 5px 20px;
  border-radius: 20px; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(240,185,11,0.3);
  overflow: hidden;
}
/* Shimmer on badge */
.pricing-badge::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.pricing-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--text-tertiary); margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.pricing-amount { font-size: 52px; font-weight: 900; letter-spacing: -0.03em; }
.pricing-period { font-size: 14px; color: var(--text-tertiary); }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 14px; color: var(--text-secondary); line-height: 1.5;
  transition: transform 0.2s;
}
.pricing-features li:hover { transform: translateX(4px); }
.pricing-features li .material-symbols-outlined { font-size: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; font-variation-settings: 'FILL' 1; }
.pricing-features li.disabled { color: var(--text-tertiary); }
.pricing-features li.disabled .material-symbols-outlined { color: var(--text-tertiary); font-variation-settings: 'FILL' 0; }
.pricing-card .btn-primary, .pricing-card .btn-ghost { width: 100%; text-align: center; justify-content: center; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 768px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-subtle); border-radius: 12px;
  margin-bottom: 10px; overflow: hidden; transition: all 0.3s;
  background: var(--bg-surface);
}
.faq-item:hover { border-color: rgba(240,185,11,0.15); }
.faq-item.open { border-color: rgba(240,185,11,0.25); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text-primary);
  padding: 20px 24px; font-size: 15px; font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; transition: background 0.2s; border-radius: 12px;
}
.faq-question:hover { background: var(--accent-dim); }
.faq-question .material-symbols-outlined { transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); color: var(--text-tertiary); flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question .material-symbols-outlined { transform: rotate(180deg); color: var(--accent); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }

/* ── Contact Form ──────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 12px; margin-bottom: 12px; transition: all 0.25s;
}
.contact-method:hover { border-color: rgba(240,185,11,0.25); transform: translateY(-1px); }
.contact-method .material-symbols-outlined { color: var(--accent); font-size: 22px; font-variation-settings: 'FILL' 1; }
.contact-method .label { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-method .value { font-size: 15px; color: var(--text-primary); font-weight: 500; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 13px 16px; background: var(--bg-overlay);
  border: 1px solid var(--border-subtle); border-radius: 10px;
  color: var(--text-primary); font-size: 14px; font-family: inherit;
  transition: all 0.25s;
}
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(240,185,11,0.1); }
.form-input::placeholder { color: var(--text-tertiary); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
.form-error.visible { display: block; }

/* ── CTA Section ──────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-surface); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 25%; width: 50%; height: 100%;
  background: radial-gradient(ellipse, rgba(240,185,11,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGradient 15s ease-in-out infinite;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-subtle); padding: 56px 0 32px;
  background: var(--bg);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--text-tertiary); margin-top: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-secondary); padding: 5px 0; transition: color 0.2s, transform 0.2s; }
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-tertiary);
}
.footer-bottom a { color: var(--text-tertiary); }
.footer-bottom a:hover { color: var(--accent); }

/* ── About Page ─────────────────────────────────────────────────── */
.about-hero { padding: 140px 0 64px; }
.about-hero h1 { font-size: 44px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.03em; }
.about-hero p { font-size: 18px; color: var(--text-secondary); max-width: 640px; line-height: 1.7; }
.about-section { padding: 64px 0; }
.about-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.about-section p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; max-width: 720px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 36px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,0.3), transparent);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-value { font-family: 'JetBrains Mono', monospace; font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1.2; }
.stat-label { font-size: 11px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }
.process-timeline { position: relative; padding-left: 36px; }
.process-timeline::before {
  content: ''; position: absolute; left: 9px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), var(--border));
}
.process-step { position: relative; margin-bottom: 44px; }
.process-step::before {
  content: ''; position: absolute; left: -33px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px rgba(240,185,11,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover::before { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(240,185,11,0.2), 0 0 12px rgba(240,185,11,0.3); }
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.process-step .duration { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); margin-bottom: 10px; font-weight: 500; }
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 32px; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,0.04), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.value-card:hover::after { left: 150%; }
.value-card:hover { border-color: rgba(240,185,11,0.25); transform: translateY(-3px); }
.value-card .material-symbols-outlined { font-size: 36px; color: var(--accent); margin-bottom: 20px; font-variation-settings: 'FILL' 1; transition: transform 0.3s; }
.value-card:hover .material-symbols-outlined { transform: scale(1.15); }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ── Legal Pages ────────────────────────────────────────────────── */
.legal-content { max-width: 768px; margin: 0 auto; padding: 140px 24px 80px; }
.legal-content h1 { font-size: 36px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-content .updated { font-size: 13px; color: var(--text-tertiary); margin-bottom: 40px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.01em; }
.legal-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin: 8px 0 16px 24px; }
.legal-content li { margin-bottom: 4px; }
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: var(--accent); }
.legal-content a:hover { color: var(--accent-hover); text-decoration: underline; }

/* ── Section Dividers ────────────────────────────────────────────── */
.section-alt { background: var(--bg-surface); }
.section-glow { position: relative; }
.section-glow::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,185,11,0.2), transparent);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 40px; }
  .terminal { height: 420px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature.feature-wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 40px); padding-bottom: 40px; }
  .hero h1 { font-size: 34px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-stat-value { font-size: 24px; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature.feature-wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card { padding: 32px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 30px; }
  .section-header p { font-size: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-bg-blob-1, .hero-bg-blob-2, .hero-bg-blob-3 { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: calc(var(--nav-height) + 24px); }
  .hero h1 { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-outline-lg { width: 100%; text-align: center; justify-content: center; }
  .terminal { height: 360px; }
  .pricing-grid { max-width: 100%; }
}