/* ═══════════════════════════════════════════════════════════════════════════
   DAWMUZE — Landing Page Styles
   Premium dark theme with glassmorphism, animations, and noise textures
   ═══════════════════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #050505;
  --surface: #0a0a0a;
  --surface-2: #111111;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #fafafa;
  --text-muted: #888;
  --text-dim: #555;
  --orange: #f97316;
  --orange-glow: rgba(249,115,22,0.3);
  --violet: #8b5cf6;
  --cyan: #06b6d4;
  --green: #10b981;
  --rose: #f43f5e;
  --glass: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

a { color: var(--orange); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ═══ SCROLL-TRIGGERED FADE-IN ═══ */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ PARTICLE DOT BACKGROUND ═══ */
.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 18px; letter-spacing: 4px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 600;
}
.nav-cta:hover { opacity: 0.9 !important; }

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.floating-cta .btn {
  box-shadow: 0 8px 32px rgba(249,115,22,0.4), 0 0 0 1px rgba(249,115,22,0.2);
  border-radius: 100px;
  padding: 14px 28px;
}
.floating-cta .btn:hover {
  box-shadow: 0 12px 48px rgba(249,115,22,0.5), 0 0 0 1px rgba(249,115,22,0.3);
}

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 24px 80px; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
}
.glow-1 { width: 600px; height: 600px; background: rgba(249,115,22,0.15); top: -200px; left: -100px; animation: glowFloat 8s ease-in-out infinite alternate; }
.glow-2 { width: 500px; height: 500px; background: rgba(139,92,246,0.1); top: 100px; right: -150px; animation: glowFloat 10s ease-in-out infinite alternate-reverse; }
.glow-3 { width: 400px; height: 400px; background: rgba(6,182,212,0.08); bottom: -100px; left: 30%; animation: glowFloat 12s ease-in-out infinite alternate; }

@keyframes glowFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 500;
  color: var(--orange); letter-spacing: 1px; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 80px); font-weight: 900;
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
  background: linear-gradient(135deg, #f97316, #fb923c, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; color: var(--text-muted); max-width: 580px; margin: 0 auto 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* ═══ Animated Waveform SVG ═══ */
.hero-waveform {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 100px;
  z-index: 0;
  opacity: 0.12;
}
.hero-waveform path {
  fill: none;
  stroke: url(#waveGrad);
  stroke-width: 2;
  stroke-linecap: round;
}
.waveform-line-1 { animation: waveShift1 4s ease-in-out infinite; }
.waveform-line-2 { animation: waveShift2 5s ease-in-out infinite; opacity: 0.5; }
.waveform-line-3 { animation: waveShift3 6s ease-in-out infinite; opacity: 0.3; }

@keyframes waveShift1 {
  0%, 100% { d: path("M0,50 Q80,20 160,50 T320,50 T480,50 T640,50 T800,50 T960,50"); }
  50% { d: path("M0,50 Q80,80 160,50 T320,50 T480,30 T640,60 T800,40 T960,50"); }
}
@keyframes waveShift2 {
  0%, 100% { d: path("M0,50 Q80,60 160,40 T320,55 T480,45 T640,50 T800,50 T960,50"); }
  50% { d: path("M0,50 Q80,30 160,60 T320,40 T480,55 T640,35 T800,55 T960,50"); }
}
@keyframes waveShift3 {
  0%, 100% { d: path("M0,50 Q80,40 160,55 T320,45 T480,55 T640,45 T800,55 T960,50"); }
  50% { d: path("M0,50 Q80,55 160,35 T320,55 T480,40 T640,55 T800,45 T960,50"); }
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; border-radius: 10px;
  padding: 12px 24px; transition: all 0.25s; cursor: pointer;
  border: none; text-decoration: none; position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff; box-shadow: 0 4px 24px rgba(249,115,22,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(249,115,22,0.45); opacity: 1; }
.btn-ghost {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.05); opacity: 1; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* Pulsing download button */
.btn-pulse {
  animation: btnPulse 2s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(249,115,22,0.3); }
  50% { box-shadow: 0 4px 40px rgba(249,115,22,0.55), 0 0 0 8px rgba(249,115,22,0.08); }
}

/* Trust Bar */
.trust-bar {
  display: flex; gap: 32px; justify-content: center; margin-top: 48px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 13px; }
.trust-icon {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  color: var(--orange); background: rgba(249,115,22,0.1);
  padding: 4px 8px; border-radius: 6px; border: 1px solid rgba(249,115,22,0.15);
}

/* EQ Visualizer */
.eq-visualizer {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; align-items: flex-end; height: 120px; opacity: 0.15;
  z-index: 0;
}
.eq-bar {
  width: 8px; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #f97316, #fb923c);
  animation: eqBounce 1.2s ease-in-out infinite alternate;
  animation-delay: var(--delay);
  height: var(--h);
}
@keyframes eqBounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* ═══ DAW SCREENSHOT MOCKUP ═══ */
.screenshot-section {
  padding: 0 0 100px;
  position: relative;
  margin-top: -40px;
}
.screenshot-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.screenshot-mockup {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 30%, #16213e 60%, #0f0f23 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.mockup-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mockup-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(249,115,22,0.03) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 40px);
}
.mockup-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
/* Fake track lanes in mockup */
.mockup-tracks {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
}
.mockup-track {
  flex: 1;
  display: flex;
  gap: 2px;
}
.mockup-track-header {
  width: 80px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-track-header span {
  font-size: 8px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}
.mockup-track-lane {
  flex: 1;
  background: rgba(255,255,255,0.015);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.mockup-clip {
  position: absolute;
  height: 70%;
  top: 15%;
  border-radius: 3px;
  opacity: 0.6;
}
.mockup-clip-1 { left: 5%; width: 30%; background: linear-gradient(90deg, rgba(249,115,22,0.4), rgba(249,115,22,0.2)); }
.mockup-clip-2 { left: 40%; width: 25%; background: linear-gradient(90deg, rgba(139,92,246,0.4), rgba(139,92,246,0.2)); }
.mockup-clip-3 { left: 70%; width: 20%; background: linear-gradient(90deg, rgba(6,182,212,0.4), rgba(6,182,212,0.2)); }
.mockup-clip-4 { left: 10%; width: 40%; background: linear-gradient(90deg, rgba(16,185,129,0.4), rgba(16,185,129,0.2)); }
.mockup-clip-5 { left: 55%; width: 35%; background: linear-gradient(90deg, rgba(244,63,94,0.4), rgba(244,63,94,0.2)); }
.mockup-clip-6 { left: 2%; width: 50%; background: linear-gradient(90deg, rgba(234,179,8,0.4), rgba(234,179,8,0.2)); }
.screenshot-glow {
  position: absolute;
  width: 60%;
  height: 200px;
  bottom: -80px;
  left: 20%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ═══ SECTIONS ═══ */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(32px, 5vw, 48px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px;
}
.section-sub { color: var(--text-muted); font-size: 16px; max-width: 500px; margin: 12px auto 0; }

/* ═══ FEATURES GRID ═══ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, transparent 50%);
  transition: opacity 0.35s ease;
}
.feature-card:hover {
  border-color: var(--border-hover); background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }

/* Shimmer animation on hover */
.feature-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.03) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
}
.feature-card:hover::after {
  animation: shimmer 0.8s ease forwards;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(249,115,22,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--accent, var(--orange));
  position: relative; z-index: 1;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; }

/* ═══ PROCESSORS GRID ═══ */
.processors-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.proc-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.proc-card:hover {
  border-color: rgba(249,115,22,0.2); background: rgba(249,115,22,0.03);
  transform: translateY(-4px);
}
.proc-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  transform: translateX(-100%);
}
.proc-card:hover::after {
  animation: shimmer 0.8s ease forwards;
}
.proc-num {
  font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.proc-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.proc-card p { font-size: 12px; color: var(--text-dim); position: relative; z-index: 1; }

/* ═══ TESTIMONIALS / SOCIAL PROOF ═══ */
.testimonials-section { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: -10px;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-dim); }

/* ═══ COMPARISON TABLE ═══ */
.compare-section { padding: 100px 0; background: var(--surface); }
.compare-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 16px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-cell:first-child {
  justify-content: flex-start;
  color: var(--text-muted);
}
.compare-header {
  background: rgba(255,255,255,0.02);
}
.compare-header .compare-cell {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.compare-highlight {
  background: rgba(249,115,22,0.05);
}
.compare-highlight .compare-cell:nth-child(2) {
  color: var(--orange);
  font-weight: 700;
}
.compare-cell .check-icon { color: var(--green); }
.compare-cell .cross-icon { color: var(--text-dim); opacity: 0.5; }
.compare-price {
  font-size: 20px !important;
  font-weight: 800 !important;
}
.compare-dawmuze-price {
  color: var(--orange) !important;
}
.compare-label-dawmuze {
  color: var(--orange) !important;
  font-weight: 800 !important;
}
.compare-sublabel {
  font-size: 11px;
  color: var(--text-dim);
  display: block;
}

/* ═══ PRICING ═══ */
.pricing-card {
  max-width: 600px; margin: 0 auto;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
}
.pricing-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-header h3 { font-size: 24px; font-weight: 800; }
.pricing-header p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.pricing-amount { text-align: right; }
.price { font-size: 42px; font-weight: 900; letter-spacing: -2px; }
.price-label { display: block; font-size: 13px; color: var(--text-dim); }

.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pf-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-muted); }
.pf-item svg { flex-shrink: 0; }

.guarantee {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: 13px; color: var(--text-dim);
}

/* ═══ STEPS ═══ */
.steps-grid {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.step-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px; text-align: center;
  flex: 1; max-width: 200px;
  transition: all 0.35s ease;
}
.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 12px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.step-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step-card p { font-size: 13px; color: var(--text-dim); }
.step-arrow { color: var(--text-dim); font-size: 24px; }

/* ═══ FOOTER ═══ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 12px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: var(--text); opacity: 1; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .processors-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
  .compare-table { margin: 0 24px; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .processors-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar { flex-wrap: wrap; gap: 16px; }
  .pricing-header { flex-direction: column; gap: 16px; }
  .pricing-amount { text-align: left; }
  .nav-links a:not(.nav-cta) { display: none; }
  .screenshot-mockup { aspect-ratio: 4/3; }
  .floating-cta { bottom: 20px; right: 20px; }
  .floating-cta .btn { padding: 12px 22px; font-size: 14px; }
  .compare-table { font-size: 12px; }
  .compare-cell { padding: 12px 10px; font-size: 12px; }
  .hero-waveform { display: none; }
}

@media (max-width: 480px) {
  .processors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PURCHASE PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.purchase-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 60px; position: relative;
}
.purchase-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px;
  max-width: 900px; width: 100%;
}

/* Progress Indicator */
.purchase-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  max-width: 900px;
  width: 100%;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}
.progress-step.active { color: var(--orange); }
.progress-step.completed { color: var(--green); }
.progress-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.progress-step.active .progress-num {
  background: rgba(249,115,22,0.15);
  border-color: var(--orange);
  color: var(--orange);
}
.progress-step.completed .progress-num {
  background: rgba(16,185,129,0.15);
  border-color: var(--green);
  color: var(--green);
}
.progress-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
  flex-shrink: 0;
}
.progress-line.active {
  background: linear-gradient(90deg, var(--green), var(--orange));
}

/* Animated gradient border on auth card */
.auth-card {
  background: var(--glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 1;
}
.auth-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(139,92,246,0.2), rgba(6,182,212,0.2), rgba(249,115,22,0.3));
  background-size: 300% 300%;
  animation: gradientBorder 6s ease infinite;
  z-index: -1;
}
.auth-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: var(--bg);
  z-index: -1;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.order-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 36px;
  align-self: start;
}

/* Auth Form */
.auth-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.auth-card .subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.auth-tabs { display: flex; gap: 0; margin-bottom: 24px; }
.auth-tab {
  flex: 1; padding: 10px; text-align: center; font-size: 14px; font-weight: 600;
  cursor: pointer; border-bottom: 2px solid var(--border); color: var(--text-muted);
  transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
}
.auth-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-input::placeholder { color: var(--text-dim); }

.error-msg {
  padding: 10px 16px; border-radius: 8px; font-size: 13px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  color: #ef4444; margin-bottom: 16px; display: none;
}
.error-msg.show { display: block; }

/* Social login buttons */
.social-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--text-dim);
  font-size: 12px;
}
.social-divider::before,
.social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.social-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.social-btn svg { flex-shrink: 0; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Signed-in state */
.signed-in-state { text-align: center; padding: 20px 0; }
.signed-in-state .check-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(16,185,129,0.1); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  animation: scaleIn 0.5s ease;
}
.signed-in-state h3 { font-size: 18px; margin-bottom: 4px; }
.signed-in-state .email-display { color: var(--orange); font-size: 15px; margin-bottom: 8px; }
.signed-in-state .ready-text { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

/* Order Summary */
.order-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.order-product { display: flex; justify-content: space-between; align-items: start; margin-bottom: 20px; }
.order-product h3 { font-size: 20px; font-weight: 800; }
.order-badge {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  background: rgba(249,115,22,0.15); color: var(--orange);
  font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-left: 8px;
}
.order-price { font-size: 28px; font-weight: 900; }
.order-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.order-features .of-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }

.order-guarantee {
  display: flex; align-items: center; gap: 8px;
  padding: 12px; border-radius: 10px;
  background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.1);
  font-size: 12px; color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUCCESS PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.success-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 24px 60px; text-align: center;
}
.success-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 48px; max-width: 560px; width: 100%;
  position: relative;
  overflow: hidden;
}
.success-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--green));
  background-size: 200% 100%;
  animation: successGradient 3s linear infinite;
}
@keyframes successGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(16,185,129,0.1); border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-card h1 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.success-card .success-sub { color: var(--text-muted); margin-bottom: 32px; }

.license-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.license-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(139,92,246,0.1), rgba(249,115,22,0.2));
  background-size: 200% 200%;
  animation: gradientBorder 4s ease infinite;
  z-index: 0;
}
.license-box::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 11px;
  background: var(--surface);
  z-index: 0;
}
.license-box > * { position: relative; z-index: 1; }
.license-box label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); }
.license-key {
  font-family: 'JetBrains Mono', monospace; font-size: 20px; font-weight: 700;
  color: var(--orange); margin: 8px 0;
  word-break: break-all;
}
/* Typewriter cursor */
.license-key.typing::after {
  content: '|';
  animation: blink 0.7s steps(1) infinite;
  color: var(--orange);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange); cursor: pointer; transition: all 0.2s;
}
.copy-btn:hover { background: rgba(249,115,22,0.2); }

.next-steps { margin-top: 32px; }
.next-steps h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.timeline { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.timeline-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.timeline-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(249,115,22,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

/* Share section */
.share-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.share-section h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.share-btn:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  background: rgba(29,161,242,0.05);
}

/* ═══ FORMS ON PURCHASE PAGE — RESPONSIVE ═══ */
@media (max-width: 768px) {
  .purchase-layout { grid-template-columns: 1fr; }
  .purchase-progress { flex-wrap: wrap; gap: 8px; }
  .progress-line { width: 30px; }
  .progress-step span { display: none; }
}
