/* ============================================
   HIRE A GHOST — Style System
   Dark. Luxury. Apple-esque. Mobile-first.
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #08080a;
  --bg-raised: #111114;
  --bg-card: #16161a;
  --bg-card-hover: #1c1c22;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #f0f0f3;
  --text-secondary: #8a8a96;
  --text-dim: #55555e;
  --accent: #7c5cfc;
  --accent-hover: #9178ff;
  --accent-glow: rgba(124, 92, 252, 0.25);
  --accent-subtle: rgba(124, 92, 252, 0.08);
  --gradient: linear-gradient(135deg, #7c5cfc, #c084fc, #f472b6);
  --gradient-text: linear-gradient(135deg, #a78bfa, #c084fc, #f472b6);
  --green: #34d399;
  --green-glow: rgba(52, 211, 153, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   BETA BANNER
   ============================================ */
.beta-banner {
  background: linear-gradient(90deg, rgba(124, 92, 252, 0.15), rgba(192, 132, 252, 0.1), rgba(124, 92, 252, 0.15));
  border-bottom: 1px solid rgba(124, 92, 252, 0.2);
  padding: 10px 24px;
  text-align: center;
  position: relative;
  z-index: 100;
}

.beta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.beta-pulse {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: beta-blink 2s ease-in-out infinite;
}

@keyframes beta-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(52, 211, 153, 0.6); }
  50% { opacity: 0.4; box-shadow: none; }
}

.beta-text {
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.beta-text strong {
  color: #a78bfa;
  font-weight: 700;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

.text-gradient, .hero-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 6px 14px;
  background: var(--accent-subtle);
  border: 1px solid rgba(124, 92, 252, 0.15);
  border-radius: 100px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 1.5rem auto 3rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 50px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-ghost:hover {
  border-color: var(--text-dim);
  background: rgba(255,255,255,0.03);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}

.btn-full { width: 100%; justify-content: center; }

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(8, 8, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-icon {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .nav-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-xs);
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  background: var(--accent-hover);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mobile-nav-overlay a:hover {
  color: var(--text);
}

.mobile-nav-overlay .nav-cta {
  padding: 14px 32px;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius-sm);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
}

#matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.hero-line {
  display: block;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 3rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-proof strong {
  color: var(--accent);
  font-weight: 700;
}

.proof-pulse {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  flex-shrink: 0;
  animation: beta-blink 2s ease-in-out infinite;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.phone-mockup {
  width: 300px;
  background: var(--bg-raised);
  border-radius: 36px;
  border: 2px solid var(--border);
  padding: 12px;
  box-shadow: 
    0 0 80px rgba(124, 92, 252, 0.08),
    0 40px 80px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  padding: 16px;
  min-height: 440px;
  overflow: hidden;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 90%;
  animation: fadeInUp 0.5s ease-out both;
}

.chat-bubble:nth-child(1) { animation-delay: 0.5s; }
.chat-bubble:nth-child(2) { animation-delay: 1.5s; }
.chat-bubble:nth-child(3) { animation-delay: 3s; }
.chat-bubble:nth-child(4) { animation-delay: 4.5s; }
.chat-bubble:nth-child(5) { animation-delay: 5.5s; }

.chat-user {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}

.chat-ghost {
  background: var(--bg-card);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  border: 1px solid var(--border);
}

.ghost-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CLONE OF YOU SECTION
   ============================================ */
.clone-section {
  padding: 120px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* --- Flow Diagram --- */
.clone-flow {
  margin: 4rem auto 5rem;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.clone-input-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.clone-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.clone-input.visible {
  opacity: 1;
  transform: translateY(0);
}

.clone-input:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.ci-icon-wrap {
  margin-bottom: 12px;
}

.ci-icon {
  font-size: 2rem;
  display: inline-block;
  animation: none;
}

.clone-input.visible .ci-icon {
  animation: iconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes iconPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ci-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ci-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Flow lines SVG */
.clone-flow-lines {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: visible;
}

.clone-flow-out {
  height: 40px;
}

.flow-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0.4;
  transition: stroke-dashoffset 1.2s ease, opacity 0.6s ease;
}

.clone-flow.animated .flow-line {
  stroke-dashoffset: 0;
  opacity: 1;
}

/* Animated particles on flow lines */
.clone-flow.animated .flow-line {
  animation: flowPulse 3s ease-in-out infinite;
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Clone Ghost Core */
.clone-core-wrap {
  position: relative;
  z-index: 2;
  padding: 10px 0;
}

.clone-ghost-core {
  width: 130px;
  height: 130px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px var(--accent-glow);
  transition: all 0.8s ease;
}

.clone-flow.animated .clone-ghost-core {
  box-shadow: 0 0 80px var(--accent-glow), 0 0 120px rgba(124, 92, 252, 0.15);
}

.clone-ghost-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 252, 0.15);
}

.clone-ghost-ring.r1 {
  inset: -15px;
  animation: cloneRing 3s ease-in-out infinite;
}

.clone-ghost-ring.r2 {
  inset: -30px;
  animation: cloneRing 3s ease-in-out infinite 0.5s;
}

@keyframes cloneRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.1; }
}

.clone-ghost-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: brain-pulse 2s ease-out infinite;
}

.clone-ghost-emoji {
  font-size: 3rem;
}

.clone-ghost-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Clone Output */
.clone-output {
  width: 100%;
  max-width: 500px;
}

.clone-output-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  box-shadow: 0 0 40px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.clone-output-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.co-icon {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.co-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.co-example {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--green);
  line-height: 1.6;
  min-height: 48px;
}

.co-cursor {
  animation: blink 1s step-end infinite;
  color: var(--accent);
}

@keyframes blink {
  50% { opacity: 0; }
}

/* --- Clone Interactive Demo --- */
.clone-demo {
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.clone-demo-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.clone-biz-picker {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.clone-biz-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.clone-biz-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.clone-biz-btn.active {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.clone-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}

.clone-comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s ease;
}

.clone-comp-card.clone-yours {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.clone-comp-header {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.clone-comp-header.them {
  background: rgba(255,255,255, 0.02);
  color: var(--text-dim);
}

.clone-comp-header.us {
  background: var(--accent-subtle);
  color: var(--accent);
}

.clone-comp-body {
  padding: 20px;
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: left;
  color: var(--text-secondary);
  min-height: 140px;
  transition: opacity 0.3s ease;
}

.clone-comp-body p {
  transition: opacity 0.4s ease;
}

.clone-generic .clone-comp-body {
  color: var(--text-dim);
}

.clone-yours .clone-comp-body {
  color: var(--text);
}

.clone-comp-vs {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ============================================
   CHANNELS / TALK TO YOUR GHOST ANYWHERE
   ============================================ */
.channels-demo {
  margin-top: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
}

.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.channel-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.channel-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.channel-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.channel-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.channel-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
}

.channel-badge.included {
  background: var(--accent-subtle);
  color: var(--accent);
}

.channel-badge.elite {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.channels-bottom {
  text-align: center;
}

.channels-phone-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.channels-hint-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .channel-card {
    padding: 22px 16px;
  }

  .channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .channel-icon svg {
    width: 22px;
    height: 22px;
  }

  .channels-phone-hint {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .channels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .channel-card p {
    font-size: 0.75rem;
  }
}

/* ============================================
   TIME SAVED SECTION (enhanced)
   ============================================ */
.time-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.time-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.time-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.time-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.time-old {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  text-decoration: line-through;
  text-decoration-color: #ff4444;
}

.time-new {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-hours {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.time-new .time-hours {
  background: linear-gradient(135deg, var(--accent), #00ddff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.time-unit {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 2px;
}

.time-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.time-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.time-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Animated progress bars */
.time-progress {
  margin: 16px 0 20px;
}

.time-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.time-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--accent-glow);
}

.time-card.animated .time-progress-fill {
  width: var(--fill-width, 100%);
}

.time-progress-label {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.5s ease 1s;
}

.time-card.animated .time-progress-label {
  opacity: 1;
}

/* Animated counter */
.time-animated {
  font-variant-numeric: tabular-nums;
}

.time-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.time-bottom strong {
  color: var(--accent);
}

/* --- COMPARE / OBJECTION KILLER --- */
.compare-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-raised) 100%);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}

.compare-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.compare-card.compare-us {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.compare-header {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-header.them {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-dim);
}

.compare-header.us {
  background: var(--accent-subtle);
  color: var(--accent);
}

.compare-list {
  list-style: none;
  padding: 20px;
}

.compare-list li {
  padding: 10px 0;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.compare-list .x {
  color: #ef4444;
  font-weight: 800;
  flex-shrink: 0;
}

.compare-list .check {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}

.compare-them .compare-list li {
  color: var(--text-dim);
}

.compare-us .compare-list li {
  color: var(--text);
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.compare-tagline {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.compare-tagline strong {
  color: var(--text);
}

/* --- TRUST BAR --- */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
  padding: 40px 24px;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 120px 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card.featured {
  border-color: rgba(124, 92, 252, 0.3);
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.06), rgba(192, 132, 252, 0.03));
  box-shadow: 0 0 60px rgba(124, 92, 252, 0.08);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.testimonial-stars {
  font-size: 1.4rem;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.8rem;
  opacity: 0.92;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonial-badge {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.8rem;
  }
  .testimonial-quote {
    font-size: 1.05rem;
  }
  .testimonial-badge {
    display: none;
  }
}

/* ============================================
   HOW WE BUILD YOUR GHOST — Timeline
   ============================================ */
.build-section {
  padding: 120px 0;
  background: var(--bg);
}

.build-timeline {
  max-width: 700px;
  margin: 4rem auto 0;
  position: relative;
  text-align: left;
}

/* Vertical track line */
.build-track {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.build-track-fill {
  width: 100%;
  height: 0%;
  background: var(--gradient);
  border-radius: 1px;
  transition: height 0.1s linear;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Step */
.build-step {
  display: flex;
  gap: 28px;
  padding: 0 0 48px 0;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.build-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.build-step:last-child {
  padding-bottom: 0;
}

/* Node dot */
.build-node {
  flex-shrink: 0;
  width: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}

.build-node-dot {
  width: 16px;
  height: 16px;
  background: var(--bg-card);
  border: 2px solid var(--text-dim);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.build-step.visible .build-node-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.build-node-ring {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.build-step.visible .build-node-ring {
  opacity: 1;
  animation: buildNodePulse 2s ease-out infinite;
}

@keyframes buildNodePulse {
  0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  100% { transform: translateX(-50%) scale(2.5); opacity: 0; }
}

/* Step content */
.build-content {
  flex: 1;
  padding-bottom: 8px;
}

.build-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.build-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.build-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.build-visual {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-subtle);
  border: 1px solid rgba(124, 92, 252, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
}

.bv-icon {
  font-size: 1rem;
}

.bv-detail {
  font-size: 0.78rem;
}

/* ============================================
   JARVIS SECTION — Quick personality break
   ============================================ */
.jarvis-section {
  padding: 48px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.jarvis-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.jarvis-text {
  flex: 1;
  min-width: 0;
}

.jarvis-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  text-align: left;
  margin: 0 0 0.5rem;
}

.jarvis-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
}

/* GIF visual — right side on desktop */
.jarvis-visual {
  flex-shrink: 0;
}

.jarvis-gif-wrap {
  position: relative;
  width: 280px;
  border-radius: var(--radius);
}

/* Purple glow border */
.jarvis-gif-glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #7c5cfc, #a855f7, #7c5cfc);
  border-radius: calc(var(--radius) + 3px);
  z-index: 0;
  opacity: 0.7;
  filter: blur(4px);
  animation: jarvis-pulse 3s ease-in-out infinite;
}

@keyframes jarvis-pulse {
  0%, 100% { opacity: 0.5; filter: blur(4px); }
  50% { opacity: 0.8; filter: blur(6px); }
}

.jarvis-gif {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 2px solid rgba(124, 92, 252, 0.4);
}

/* Tablet */
@media (max-width: 1024px) {
  .jarvis-inner {
    gap: 32px;
  }

  .jarvis-gif-wrap {
    width: 220px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .jarvis-section {
    padding: 32px 0;
  }

  .jarvis-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .jarvis-section h2,
  .jarvis-kicker {
    text-align: center;
  }

  .jarvis-gif-wrap {
    width: 180px;
  }
}

/* --- WHAT SECTION --- */
.what-section {
  padding: 120px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================
   BEFORE / AFTER DEMO
   ============================================ */
.beforeafter-section {
  padding: 120px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Scenario picker */
.ba-scenarios {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.ba-scenario-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.ba-scenario-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.ba-scenario-btn.active {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* Context bar */
.ba-context {
  max-width: 700px;
  margin: 0 auto 2rem;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: left;
}

.ba-context-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.ba-context p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Split cards */
.ba-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 950px;
  margin: 0 auto;
}

.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ba-card.ba-ghost {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.ba-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.ba-card-header.them {
  background: rgba(255,255,255,0.02);
  color: var(--text-dim);
}

.ba-card-header.us {
  background: var(--accent-subtle);
  color: var(--accent);
}

.ba-card-body {
  padding: 24px 20px;
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: left;
  flex: 1;
}

.ba-generic .ba-card-body {
  color: var(--text-dim);
}

.ba-generic .ba-card-body p {
  margin-bottom: 10px;
}

.ba-ghost .ba-card-body {
  color: var(--text);
}

.ba-ghost .ba-card-body p {
  margin-bottom: 10px;
}

.ba-verdict {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--border);
}

.ba-verdict.bad {
  background: rgba(239, 68, 68, 0.06);
  color: #ef4444;
}

.ba-verdict.good {
  background: rgba(52, 211, 153, 0.06);
  color: var(--green);
}

.ba-verdict-icon {
  font-size: 1rem;
}

/* VS divider */
.ba-vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ba-vs-line {
  width: 2px;
  flex: 1;
  background: var(--border);
}

.ba-vs-text {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* --- SKILLS SECTION --- */
.skills-section {
  padding: 120px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.matrix-loader {
  margin: 4rem auto 2rem;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.loader-brain {
  position: relative;
}

.brain-core {
  width: 120px;
  height: 120px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 40px var(--accent-glow);
}

.brain-core span {
  font-size: 2.5rem;
}

.brain-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.brain-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: brain-pulse 2s ease-out infinite;
}

@keyframes brain-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.skill-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.skill-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all var(--transition);
}

.skill-chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.skill-chip:hover .chip-glow {
  opacity: 1;
}

.chip-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.chip-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.chip-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.chip-status {
  display: block;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.skills-note {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --- LIVE TERMINAL --- */
.terminal-section {
  padding: 120px 0;
}

.live-terminal {
  max-width: 720px;
  margin: 0 auto;
  background: #0a0a0e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(124, 92, 252, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.tdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.tdot.red { background: #ff5f57; }
.tdot.yellow { background: #febc2e; }
.tdot.green { background: #28c840; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  flex: 1;
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.terminal-body {
  padding: 20px;
  min-height: 280px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.terminal-body::-webkit-scrollbar {
  width: 4px;
}

.terminal-body::-webkit-scrollbar-track {
  background: transparent;
}

.terminal-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.terminal-line {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  animation: fadeInUp 0.3s ease-out;
}

.terminal-line.system {
  color: var(--text-dim);
  font-size: 0.75rem;
}

.terminal-line.user-msg {
  color: var(--text);
}

.terminal-line.ghost-msg {
  color: #c4b5fd;
}

.terminal-line.ghost-msg span:last-child {
  white-space: pre-wrap;
}

.t-prompt {
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.t-prompt.ghost {
  color: var(--accent);
}

.t-prompt.user {
  color: var(--green);
}

/* Typing indicator */
.typing-indicator {
  display: inline-flex;
  gap: 4px;
  padding: 4px 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.terminal-input-wrap {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  gap: 10px;
}

.t-input-prompt {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
}

.terminal-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  caret-color: var(--accent);
}

.terminal-input-wrap input::placeholder {
  color: var(--text-dim);
}

.t-send {
  background: var(--accent);
  border: none;
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

.t-send:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

.terminal-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
}

/* --- SKILL BUILDER --- */
.builder-section {
  padding: 120px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.builder-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 3rem;
  align-items: start;
}

.builder-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  position: sticky;
  top: 100px;
}

.core-ghost {
  width: 140px;
  height: 140px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px var(--accent-glow);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-ghost.powered {
  box-shadow: 0 0 80px var(--accent-glow), 0 0 120px rgba(124, 92, 252, 0.15);
}

.core-ghost.max-power {
  box-shadow: 0 0 100px var(--accent-glow), 0 0 160px rgba(124, 92, 252, 0.2), 0 0 200px rgba(192, 132, 252, 0.1);
  border-color: #c084fc;
}

.core-emoji {
  font-size: 3rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.core-ghost.powered .core-emoji {
  transform: scale(1.1);
}

.core-ghost.max-power .core-emoji {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(124, 92, 252, 0.6));
}

.core-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 92, 252, 0.1);
  z-index: 1;
  transition: all 0.6s ease;
}

.ring-1 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
}

.ring-2 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
}

.ring-3 {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
}

.core-ghost.powered ~ .ring-1,
.builder-core.has-skills .ring-1 {
  border-color: rgba(124, 92, 252, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

.core-ghost.powered ~ .ring-2,
.builder-core.has-skills .ring-2 {
  border-color: rgba(124, 92, 252, 0.15);
  animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.core-ghost.powered ~ .ring-3,
.builder-core.has-skills .ring-3 {
  border-color: rgba(124, 92, 252, 0.1);
  animation: ringPulse 3s ease-in-out infinite 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, calc(-50% + 20px)) scale(1); opacity: 1; }
  50% { transform: translate(-50%, calc(-50% + 20px)) scale(1.05); opacity: 0.6; }
}

.power-meter {
  margin-top: 30px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  z-index: 2;
}

.power-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.power-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.power-bar-fill {
  height: 100%;
  width: 12%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--accent-glow);
}

.power-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

/* Skill Palette */
.skill-palette {
  width: 100%;
}

.palette-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.palette-header span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.reset-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}

.reset-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.palette-skill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.palette-skill:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.palette-skill.active {
  border-color: var(--accent);
  background: rgba(124, 92, 252, 0.08);
  box-shadow: 0 0 20px var(--accent-glow);
}

.palette-skill.active::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
}

.ps-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}

.ps-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ps-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 8px;
}

.ps-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.ps-badge.elite {
  background: rgba(244, 114, 182, 0.1);
  color: #f472b6;
  border-color: rgba(244, 114, 182, 0.15);
}

/* Estimate Bar */
.estimate-bar {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  position: relative;
  overflow: hidden;
}

.estimate-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
}

.estimate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.est-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.est-count, .est-tier {
  font-size: 1.1rem;
  font-weight: 800;
}

.est-amount {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.est-tier {
  color: var(--accent);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Skill install flash */
@keyframes skillFlash {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 40px var(--accent-glow); }
  100% { box-shadow: 0 0 20px var(--accent-glow); }
}

.palette-skill.flash {
  animation: skillFlash 0.6s ease-out;
}

/* Core shock animation */
@keyframes coreShock {
  0% { transform: scale(1); }
  25% { transform: scale(1.08); }
  50% { transform: scale(0.96); }
  75% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.core-ghost.shock {
  animation: coreShock 0.5s ease-out;
}

/* --- DEMO SECTION --- */
.demo-section {
  padding: 120px 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.demo-dot.green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
}

.demo-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-msg {
  font-size: 0.82rem;
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.demo-human {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.demo-ai {
  background: var(--accent-subtle);
  border: 1px solid rgba(124, 92, 252, 0.12);
}

.terminal-style .demo-ai {
  background: rgba(0,0,0,0.4);
  border-color: var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.terminal-style code {
  display: block;
  margin-bottom: 2px;
}

.terminal-style .dim {
  color: var(--text-dim);
}

/* --- AUDIT SECTION --- */
.audit-section {
  padding: 120px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audit-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  align-items: center;
}

.audit-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.audit-text p {
  color: var(--text-secondary);
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.audit-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audit-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.audit-feat span {
  color: var(--green);
  font-weight: 700;
}

.audit-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-size: 0.92rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* --- PRICING --- */
.pricing-section {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: scale(1.04);
}

.price-card.featured.visible {
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 100px;
}

.price-tier {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.price-dollar {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-number {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-left: 4px;
}

.price-recurring {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.price-delivery {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

.price-features li:last-child {
  border-bottom: none;
}

/* --- STACK SECTION --- */
.stack-section {
  padding: 120px 0;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 3rem 0;
}

.stack-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: left;
  transition: all var(--transition);
}

.stack-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.stack-item span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}

.stack-item h4 {
  margin-bottom: 8px;
}

.stack-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.automations-hint {
  margin-top: 3rem;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.automations-hint p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.automations-hint a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.automations-hint a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* --- FINAL CTA --- */
.final-cta {
  padding: 120px 0;
  text-align: center;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 1.5rem auto 2.5rem;
  max-width: 500px;
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-made {
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.made-badge {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 10px 20px;
  background: var(--accent-subtle);
  border: 1px solid rgba(124, 92, 252, 0.12);
  border-radius: 100px;
  line-height: 1.5;
}

.made-badge strong {
  color: var(--accent);
}

.made-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.made-link:hover {
  color: var(--accent-hover);
}

/* ============================================
   RESPONSIVE — MOBILE FIRST BREAKPOINTS
   ============================================ */

@media (max-width: 1200px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-core {
    position: relative;
    top: 0;
    padding: 20px;
  }

  .palette-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    min-height: auto;
    padding-top: 100px;
  }

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

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

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

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

  .demo-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .audit-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .audit-features {
    align-items: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured.visible {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

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

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

  .ba-split {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .ba-vs-divider {
    flex-direction: row;
    padding: 8px 0;
  }

  .ba-vs-line {
    height: 2px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .time-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .time-card {
    padding: 28px 24px;
  }

  .time-card:last-child {
    display: none;
  }

  .time-hours {
    font-size: 2rem;
  }

  .time-section {
    padding: 70px 0;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .compare-vs {
    padding: 8px 0;
    font-size: 1rem;
  }

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

  .estimate-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .estimate-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .terminal-section,
  .builder-section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-nav-overlay.open {
    display: flex;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .phone-mockup {
    width: 260px;
  }

  .phone-screen {
    min-height: 360px;
  }

  .trust-inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex: 1;
    min-width: 120px;
  }

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

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

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .what-section,
  .skills-section,
  .demo-section,
  .audit-section,
  .pricing-section,
  .stack-section,
  .final-cta {
    padding: 80px 0;
  }

  .audit-form-wrap {
    padding: 24px;
  }

  /* Clone section mobile */
  .clone-input-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .clone-flow-lines {
    display: none;
  }

  .clone-input-group::after {
    content: '↓';
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent);
    padding: 8px 0;
  }

  .clone-flow-out {
    display: none;
  }

  .clone-core-wrap::after {
    content: '↓';
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent);
    padding: 8px 0;
  }

  .clone-comparison {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .clone-comp-vs {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .clone-section,
  .build-section,
  .beforeafter-section {
    padding: 80px 0;
  }

  /* Build timeline mobile */
  .build-track {
    left: 16px;
  }

  .build-node {
    width: 34px;
  }

  .build-step {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem) !important;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .skill-slots {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .skill-chip {
    padding: 12px 8px;
  }

  .chip-icon {
    font-size: 1.2rem;
  }

  .chip-name {
    font-size: 0.7rem;
  }

  .clone-biz-picker {
    flex-direction: column;
    gap: 8px;
  }

  .ba-scenarios {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- ADDITIONAL SCROLL ANIMATIONS --- */

/* Time section: strikethrough old hours */
.time-card.animated .time-old {
  animation: strikeOut 0.8s ease forwards 0.5s;
}

@keyframes strikeOut {
  0% { opacity: 0.8; }
  50% { opacity: 0.6; }
  100% { opacity: 0.5; text-decoration: line-through; text-decoration-color: #ff4444; }
}

/* Clone output card reveal */
.clone-output-card {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease 1.2s;
}

.clone-flow.animated .clone-output-card {
  opacity: 1;
  transform: translateY(0);
}

/* Before/After cards scroll reveal */
.ba-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.ba-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.ba-verdict {
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}

.ba-card.visible .ba-verdict {
  opacity: 1;
}

/* Smooth opacity transitions for content swaps */
#ba-context-text,
#ba-generic-text,
#ba-ghost-text,
.clone-comp-body {
  transition: opacity 0.3s ease;
}

/* ============================================
   WHY NOT JUST USE CHATGPT? SECTION
   ============================================ */
.whynot-section {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Comparison Columns --- */
.whynot-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto 4rem;
}

.whynot-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.whynot-col.whynot-us {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.whynot-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.whynot-col-header.them {
  background: rgba(255, 255, 255, 0.02);
}

.whynot-col-header.us {
  background: var(--accent-subtle);
}

.whynot-col-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.whynot-col-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.whynot-col-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 2px;
}

.whynot-col-body {
  padding: 8px 0;
  flex: 1;
}

.whynot-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.whynot-row:last-child {
  border-bottom: none;
}

.whynot-them .whynot-row {
  color: var(--text-dim);
}

.whynot-us .whynot-row {
  color: var(--text);
}

.whynot-x {
  color: #ef4444;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.whynot-check {
  color: var(--green);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* VS divider */
.whynot-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.whynot-vs-line {
  width: 2px;
  flex: 1;
  background: var(--border);
}

.whynot-vs-text {
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* --- Scenario Cards --- */
.whynot-scenarios-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}

.whynot-scenarios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 4rem;
}

.whynot-scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.whynot-scenario-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.whynot-prompt {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.whynot-prompt-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.whynot-prompt p {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
}

.whynot-outcomes {
  display: flex;
  flex-direction: column;
}

.whynot-outcome {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.whynot-outcome:last-child {
  border-bottom: none;
}

.whynot-outcome-who {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.whynot-outcome.bad .whynot-outcome-who {
  color: var(--text-dim);
}

.whynot-outcome.good .whynot-outcome-who {
  color: var(--accent);
}

.whynot-outcome.bad p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.whynot-outcome.good p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text);
}

.whynot-outcome.good {
  background: rgba(124, 92, 252, 0.04);
  border-left: 3px solid var(--accent);
}

/* --- Closer --- */
.whynot-closer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.whynot-closer p:first-child {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.whynot-closer strong {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whynot-closer-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .whynot-compare {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .whynot-vs {
    flex-direction: row;
    padding: 8px 0;
  }

  .whynot-vs-line {
    height: 2px;
    width: auto;
    flex: 1;
  }

  .whynot-scenarios {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .whynot-section {
    padding: 80px 0;
  }

  .whynot-row {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .whynot-col-header {
    padding: 16px 20px;
  }

  .whynot-prompt p {
    font-size: 1rem;
  }

  .whynot-outcome.bad p,
  .whynot-outcome.good p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .whynot-compare {
    max-width: 100%;
  }

  .whynot-scenarios {
    max-width: 100%;
  }

  .whynot-prompt {
    padding: 16px 18px;
  }

  .whynot-outcome {
    padding: 16px 18px;
  }
}

/* ============================================
   DEPLOYED GHOSTS MARQUEE
   ============================================ */
.deployed-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124, 92, 252, 0.03) 0%, transparent 100%);
  overflow: hidden;
  position: relative;
}

.deployed-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.deployed-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  animation: deployedPulse 2s ease-in-out infinite;
}

@keyframes deployedPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: default;
  flex-shrink: 0;
}

.marquee-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 20px rgba(124, 92, 252, 0.1);
}

.marquee-emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.marquee-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.marquee-role {
  font-size: 0.78rem;
  color: var(--text-secondary);
  padding-left: 0.75rem;
  border-left: 1px solid var(--border);
}

.marquee-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .marquee-item {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .marquee-name {
    font-size: 0.8rem;
  }
  
  .marquee-role {
    display: none;
  }
}

/* ---- DJ GHOST SHOWCASE ---- */
.showcase-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.03) 0%, transparent 100%);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.showcase-main {
  display: block;
  background: var(--card-bg, #111118);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.showcase-main:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
}
.showcase-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  z-index: 2;
}
.showcase-preview {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.showcase-main h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-main p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.showcase-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.showcase-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.showcase-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
}
.showcase-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.showcase-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
