/* ═══════════════════════════════════════════════════════════════
   ShiftWiz Landing Page
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #220A6E;
  --bg-card: #2C0E82;
  --bg-subtle: #351496;
  --bg-dark: #140650;
  --bg-dark-card: #1E0A68;
  --border: #4828A8;
  --border-strong: #5838BA;
  --text: #F0ECF9;
  --text-secondary: #B8B0D0;
  --text-muted: #7068A0;
  --text-on-dark: #F0ECF9;
  --accent: #C77DFF;
  --accent-light: #1E1548;
  --accent-dark: #DDB4FE;
  --accent-glow: rgba(199, 125, 255, 0.4);
  --pink: #EC4899;
  --orange: #F97316;
  --cyan: #06B6D4;
  --gradient: linear-gradient(135deg, #C77DFF, #EC4899);
  --gradient-warm: linear-gradient(135deg, #EC4899, #F97316);
  --gradient-cool: linear-gradient(135deg, #3B82F6, #06B6D4);
  --gradient-full: linear-gradient(135deg, #C77DFF, #EC4899, #F97316);
  --gold: #FBBF24;
  --gold-glow: rgba(251, 191, 36, 0.3);
  --success: #10B981;
  --success-light: #0C2518;
  --danger: #EF4444;
  --danger-light: #2A0E0E;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.4);
  --shadow: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.7);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══ LIGHT MODE OVERRIDE ═══ */
[data-theme="light"] {
  --bg: #F5F3FA;
  --bg-card: #FFFFFF;
  --bg-subtle: #EDEBF6;
  --bg-dark: #0F0A2A;
  --bg-dark-card: #151234;
  --border: #DDD8EB;
  --border-strong: #C4BDD8;
  --text: #1A1535;
  --text-secondary: #5C5680;
  --text-muted: #6A6283;
  --text-on-dark: #F0ECF9;
  --accent: #9333EA;
  --accent-light: #EDE5FF;
  --accent-dark: #7C3AED;
  --accent-glow: rgba(147, 51, 234, 0.3);
  --gold: #F59E0B;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --success: #10B981;
  --success-light: #D1FAE5;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --shadow-sm: 0 1px 3px rgba(14,12,26,0.06), 0 1px 2px rgba(14,12,26,0.04);
  --shadow: 0 4px 16px rgba(14,12,26,0.08), 0 2px 4px rgba(14,12,26,0.04);
  --shadow-lg: 0 16px 48px rgba(14,12,26,0.12), 0 4px 12px rgba(14,12,26,0.06);
  --shadow-xl: 0 24px 64px rgba(14,12,26,0.16), 0 8px 20px rgba(14,12,26,0.08);
  color-scheme: light;
}
[data-theme="light"] .shift-opener {
  background: #D1FAE5; color: #065F46; border-left-color: #10B981;
}
[data-theme="light"] .shift-mid {
  background: #EDE9FE; color: #5B21B6; border-left-color: #C77DFF;
}
[data-theme="light"] .shift-closer {
  background: #DBEAFE; color: #1E40AF; border-left-color: #3B82F6;
}
[data-theme="light"] .navbar {
  background: rgba(245, 243, 250, 0.92);
  border-bottom-color: var(--border);
}
[data-theme="light"] .features {
  background: var(--bg-dark);
}
[data-theme="light"] .footer {
  background: var(--bg-dark);
}
[data-theme="light"] .hero-mockup {
  border-color: var(--border);
  box-shadow: var(--shadow-xl);
}
[data-theme="light"] .compare-them {
  background: #fff;
}
[data-theme="light"] .compare-shiftwiz {
  background: linear-gradient(to bottom, #fff, #EDE9FE);
}
[data-theme="light"] .btn-ghost {
  background: rgba(199,125,255,0.05);
  color: var(--text);
}
[data-theme="light"] .shape { opacity: 0.15; }
[data-theme="light"] .sparkle { opacity: 0.7; }
[data-theme="light"] .hero-badge {
  background: rgba(199,125,255,0.1);
  border-color: rgba(199,125,255,0.2);
  color: var(--accent);
}
[data-theme="light"] .hero-title {
  color: var(--text);
}
[data-theme="light"] .hero-subtitle {
  color: var(--text-secondary);
}
[data-theme="light"] .mockup-header {
  background: #1a1040;
}
[data-theme="light"] .score-label strong {
  color: var(--text);
}
[data-theme="light"] .score-label span {
  color: var(--text-muted);
}
[data-theme="light"] .section-tag {
  background: rgba(199,125,255,0.08);
  border-color: rgba(199,125,255,0.18);
  color: var(--accent);
}
[data-theme="light"] .compare-vs span {
  color: var(--text-muted);
}
[data-theme="light"] .testimonial {
  background: var(--bg-subtle);
}
[data-theme="light"] .pricing-card-featured::after {
  background: var(--bg-card);
}
[data-theme="light"] .demo-card {
  background: var(--bg-card);
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ═══ ANIMATIONS ═══ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.48s; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(199,125,255,0.4), 0 0 40px rgba(236,72,153,0.15);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #9333EA, #DB2777);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(199,125,255,0.5), 0 0 60px rgba(236,72,153,0.2);
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-ghost {
  background: rgba(199,125,255,0.08);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: rgba(199,125,255,0.15);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-full { width: 100%; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 16, 80, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(199,125,255,0.3));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--gradient) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(199,125,255,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(199,125,255,0.5) !important;
  transform: translateY(-1px);
}
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: min(100vh, 860px);
  display: flex;
  align-items: center;
  padding: 90px 48px 48px;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(60px);
  transition: transform 0.3s ease-out;
  will-change: transform;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: #C77DFF;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: #EC4899;
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: #F97316;
  top: 40%;
  left: 50%;
  animation: float 15s ease-in-out infinite 5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Sparkle particles */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #DDB4FE;
  box-shadow: 0 0 8px #DDB4FE, 0 0 20px rgba(167,139,250,0.4);
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}
.sparkle:nth-child(5) { background: #EC4899; box-shadow: 0 0 8px #EC4899, 0 0 20px rgba(236,72,153,0.4); }
.sparkle:nth-child(7) { background: #F97316; box-shadow: 0 0 8px #F97316, 0 0 20px rgba(249,115,22,0.4); }
.sparkle:nth-child(9) { background: #06B6D4; box-shadow: 0 0 8px #06B6D4, 0 0 20px rgba(6,182,212,0.4); }
.sparkle:nth-child(4) { top: 15%; left: 20%; animation-delay: 0s; width: 3px; height: 3px; }
.sparkle:nth-child(5) { top: 25%; right: 30%; animation-delay: 0.8s; width: 5px; height: 5px; }
.sparkle:nth-child(6) { top: 60%; left: 40%; animation-delay: 1.6s; }
.sparkle:nth-child(7) { top: 35%; right: 15%; animation-delay: 2.2s; width: 3px; height: 3px; }
.sparkle:nth-child(8) { top: 75%; left: 25%; animation-delay: 0.4s; width: 5px; height: 5px; }
.sparkle:nth-child(9) { top: 45%; right: 45%; animation-delay: 1.2s; }
.sparkle:nth-child(10) { top: 80%; right: 20%; animation-delay: 2.0s; width: 3px; height: 3px; }

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

/* Gradient glow removed - handled by btn-primary::before now */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(199,125,255,0.15);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(199,125,255,0.25);
}
/* Wizard - big, visible, but positioned so he doesn't push the headline down */
.hero-content {
  position: relative;
}
.hero-wizard {
  position: absolute;
  right: -120px;
  bottom: -20px;
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(199,125,255,0.35));
  pointer-events: none;
  animation: wizardFloat 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes wizardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-proof { display: flex; }
.hero-score {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}
.score-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-bg {
  fill: none;
  stroke: var(--bg-subtle);
  stroke-width: 8;
}
.score-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 276.46;
  stroke-dashoffset: 276.46;
  transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.score-label strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.score-label span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══ HERO MOCKUP ═══ */
.hero-visual { perspective: 1200px; }
.hero-mockup {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199,125,255,0.15);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(199,125,255,0.08);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.hero-mockup:hover {
  transform: rotateY(0) rotateX(0);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #e5534b; }
.mockup-dots span:nth-child(2) { background: #d4a148; }
.mockup-dots span:nth-child(3) { background: #57ab5a; }
.mockup-title {
  font-size: 0.78rem;
  opacity: 0.6;
}
.mockup-body { padding: 16px; }
.mockup-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mockup-week {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.mockup-generate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(199,125,255,0.3);
}
.mockup-generate:hover { box-shadow: 0 4px 16px rgba(199,125,255,0.5); }
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.mockup-day-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mockup-shifts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 90px;
}
.mockup-shift {
  font-size: 0.62rem;
  padding: 6px 6px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  animation: shiftAppear 0.4s forwards;
}
.mockup-shift .shift-name { display: block; font-weight: 700; }
.mockup-shift .shift-time { display: block; font-weight: 400; opacity: 0.75; font-size: 0.58rem; }
.shift-opener { background: rgba(16,185,129,0.12); color: #34D399; border-left: 3px solid #10B981; }
.shift-mid { background: rgba(199,125,255,0.12); color: #DDB4FE; border-left: 3px solid #C77DFF; }
.shift-closer { background: rgba(59,130,246,0.12); color: #60A5FA; border-left: 3px solid #3B82F6; }
@keyframes shiftAppear {
  to { opacity: 1; transform: translateY(0); }
}
.mockup-score {
  margin-top: 12px;
  padding: 10px;
  background: rgba(199,125,255,0.12);
  border: 1px solid rgba(199,125,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.mockup-score.show { opacity: 1; }

/* ═══ SECTIONS ═══ */
.section {
  padding: 80px 32px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: rgba(199,125,255,0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(199,125,255,0.2);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ═══ HOW IT WORKS ═══ */
.how-it-works { background: var(--bg); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  text-align: center;
  max-width: 280px;
  padding: 0 16px;
}
.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(199,125,255,0.4);
}
.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-dark);
  transition: all var(--transition);
}
.step:hover .step-icon {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(199,125,255,0.3), 0 8px 24px rgba(0,0,0,0.3);
}
.step-icon svg { width: 40px; height: 40px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--border-strong);
  flex-shrink: 0;
}
.step-connector svg { width: 60px; height: 20px; }

/* ═══ FEATURES ═══ */
.features {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.features .section-tag {
  background: rgba(199, 125, 255, 0.2);
  color: var(--accent);
}
.features .section-header p {
  color: rgba(237, 232, 227, 0.6);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(199,125,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition);
  filter: blur(15px);
}
.feature-card:hover {
  border-color: rgba(199,125,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(199,125,255,0.15);
}
.feature-card:hover::before {
  opacity: 0.25;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(199,125,255,0.3);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}
.feature-card p {
  font-size: 0.88rem;
  color: rgba(232, 228, 240, 0.55);
  line-height: 1.6;
}
.features-more {
  text-align: center;
}
.features-more p {
  font-size: 0.9rem;
  color: rgba(232, 228, 240, 0.4);
  font-style: italic;
}

/* ═══ WHY SHIFTWISE ═══ */
.why { background: var(--bg); }
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.compare-col {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.compare-col li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-them {
  border-color: rgba(239,68,68,0.2);
  background: var(--bg-card);
}
.compare-them h3 { color: var(--danger); }
.compare-shiftwiz {
  border-color: rgba(199,125,255,0.25);
  background: linear-gradient(to bottom, var(--bg-card), rgba(199,125,255,0.08));
}
.compare-shiftwiz h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-muted);
}

/* ═══ TESTIMONIAL ═══ */
.testimonial {
  background: var(--bg-subtle);
  padding: 64px 32px;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: -20px;
}
blockquote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══ DEMO ═══ */
.demo {
  background: var(--bg);
  padding: 80px 32px;
}
.demo-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.demo-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
}
.demo-content > p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row-full {
  grid-template-columns: 1fr;
}
.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: var(--text-muted); }
.demo-form select { color: var(--text-muted); }
.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199,125,255,0.25), 0 0 20px rgba(199,125,255,0.1);
}
.demo-form button {
  margin-top: 8px;
}
.demo-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199,125,255,0.03), rgba(236,72,153,0.03));
  pointer-events: none;
}
.stats-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══ FOUNDING SPOTS ═══ */
.founding-spots {
  margin: 20px auto 14px;
  max-width: 320px;
}
.founding-bar {
  height: 6px;
  background: var(--bg-subtle);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.founding-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(199,125,255,0.4);
}
.founding-text {
  font-size: 13px;
  color: var(--text-muted);
}
.founding-text strong {
  color: var(--accent-dark);
}

/* ═══ PRICING GRADIENT BORDER (featured card only) ═══ */
.pricing-card-featured {
  z-index: 0;
}
.pricing-card-featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: linear-gradient(135deg, #C77DFF, #EC4899, #F97316, #06B6D4);
  z-index: -1;
  opacity: 0.5;
}
.pricing-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  z-index: -1;
}
@supports (background: conic-gradient(from 0deg, red, blue)) {
  @property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  .pricing-card-featured::before {
    background: conic-gradient(from var(--border-angle), #C77DFF, #EC4899, #F97316, #06B6D4, #C77DFF);
    animation: rotateBorder 4s linear infinite;
    opacity: 0.6;
  }
  @keyframes rotateBorder {
    to { --border-angle: 360deg; }
  }
}

/* ═══ MOBILE STICKY CTA ═══ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(22, 12, 64, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(199,125,255,0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mobile-cta-bar.visible {
  transform: translateY(0);
}
[data-theme="light"] .mobile-cta-bar {
  background: rgba(245, 243, 250, 0.95);
  border-top-color: var(--border);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-dark);
  color: rgba(237, 232, 227, 0.5);
  padding: 60px 32px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(199,125,255,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-on-dark);
}
.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(237, 232, 227, 0.4);
  line-height: 1.5;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(237, 232, 227, 0.7);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(237, 232, 227, 0.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-built {
  opacity: 0.5;
  font-style: italic;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-wizard { width: 200px; height: 200px; right: -40px; bottom: -10px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-mockup {
    transform: none;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-mockup:hover { transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { padding-top: 0; transform: rotate(90deg); }
  .comparison { grid-template-columns: 1fr; gap: 16px; }
  .compare-vs { padding: 8px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar-inner { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex-basis: 40%; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-mobile-right { display: flex; align-items: center; gap: 8px; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
}

@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .hero { padding: 90px 20px 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-wizard { width: 140px; height: 140px; right: -10px; bottom: 0; opacity: 0.8; }
  .demo-card { padding: 36px 24px; }
  .mockup-grid { grid-template-columns: repeat(3, 1fr); }
  .mockup-day:nth-child(4),
  .mockup-day:nth-child(5) { display: none; }
  .mobile-cta-bar { display: block; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-bar { padding: 32px 20px; }
  .stat-num { font-size: 2.2rem; }
  .stat-item { flex-basis: 40%; }
  /* Add bottom padding for sticky CTA */
  .footer { padding-bottom: 80px; }
}

/* ═══ FEATURES EXPAND ═══ */
.features-expand { text-align: center; margin-top: 40px; }

.features-expand-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(199,125,255,0.1);
  border: 1px solid rgba(199,125,255,0.3);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 100px;
  cursor: pointer; transition: all 0.2s;
}
.features-expand-btn:hover {
  background: rgba(199,125,255,0.18);
  border-color: rgba(199,125,255,0.5);
  transform: translateY(-1px);
}
.features-expand-btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}
.features-expand-btn.open svg { transform: rotate(180deg); }

.features-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.features-full.open { max-height: 3000px; }

.features-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.ff-card {
  display: flex; gap: 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.ff-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.ff-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(199,125,255,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.ff-title {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.ff-body {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-full-grid { grid-template-columns: 1fr; }
}

/* ═══ PRICING ═══ */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  padding: 52px 40px;
  box-shadow: 0 0 80px rgba(199,125,255,0.15), var(--shadow-lg);
}

.pricing-card-side .pricing-features {
  grid-template-columns: 1fr;
}

.pricing-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .pricing-card-featured { order: -1; }
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C77DFF, #EC4899);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent-dark);
  margin-top: 14px;
}

.pricing-num {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--accent-dark);
  line-height: 1;
}

.pricing-per {
  font-size: 16px;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 18px;
  font-weight: 500;
}

.pricing-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pf-check {
  color: var(--accent-dark);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 16px 32px;
  margin-bottom: 14px;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .pricing-card { padding: 36px 24px; }
  .pricing-features { grid-template-columns: 1fr; }
  .pricing-num { font-size: 72px; }
}

/* ═══ FAQ ═══ */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(199, 125, 255, 0.3);
}

.faq-item[open] {
  border-color: rgba(199, 125, 255, 0.4);
  box-shadow: 0 0 20px rgba(199, 125, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  content: '\2212'; /* minus sign */
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--accent-dark);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ INVISIBLE BRAIN SECTION ═══ */

.invisible-brain {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.invisible-brain::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199,125,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Compact flow */
.brain-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 36px auto 40px;
  max-width: 760px;
}

.brain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.brain-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.brain-pill-done {
  border-color: rgba(52,211,153,0.3);
  color: #34D399;
  background: rgba(52,211,153,0.06);
}

.brain-center { flex: 1.2; }

.brain-engine-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(199,125,255,0.12), rgba(236,72,153,0.08));
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 24px rgba(199,125,255,0.2), 0 0 48px rgba(199,125,255,0.06);
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brain-engine-badge img {
  border-radius: 6px;
}

.brain-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 180px;
  line-height: 1.4;
}

.brain-arrow {
  flex-shrink: 0;
  padding: 0 6px;
  color: var(--accent);
  opacity: 0.6;
}

.brain-arrow svg {
  width: 36px;
  height: 20px;
}

/* Cards */
.brain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 32px;
}

.brain-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.brain-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(199,125,255,0.12);
  transform: translateY(-2px);
}

.brain-card-number {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.brain-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.brain-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Kicker */
.brain-kicker {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.brain-kicker p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.brain-kicker em {
  color: var(--text-muted);
}

.brain-kicker strong {
  color: var(--accent);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .brain-flow {
    flex-direction: column;
    gap: 6px;
  }
  .brain-arrow svg {
    transform: rotate(90deg);
  }
  .brain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
  .anim-fade-up {
    opacity: 1;
    transform: none;
  }
  .hero-mockup {
    transform: none;
  }
  .hero-wizard {
    animation: none;
  }
  .shape {
    animation: none;
  }
  .sparkle {
    animation: none;
    opacity: 0;
  }
  .founding-fill {
    transition: none;
  }
  .score-fill {
    transition: none;
  }
}
