/* ============================================
   THE AMII DECK - Neural Glass / Good Friday
   ============================================ */

:root {
  /* Core Colors */
  --bg-dark: #0a0a0b;
  --bg-darker: #050506;
  --surface: #111113;
  --surface-elevated: #19191c;
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.4);
  
  /* Accents */
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  
  /* Semantic */
  --highlight-red: #ef4444;
  --highlight-amber: #f59e0b;
  --highlight-green: #10b981;
  --highlight-gold: #fbbf24;
  
  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(99, 102, 241, 0.15);
  
  /* Spacing */
  --section-padding: clamp(80px, 15vh, 150px);
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gradient);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text-primary);
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

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

/* Sections */
.section {
  min-height: 100vh;
  padding: var(--section-padding) 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.section-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.section-text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

/* Highlights */
.highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-red { color: var(--highlight-red); }
.highlight-amber { color: var(--highlight-amber); }
.highlight-green { color: var(--highlight-green); }
.highlight-gold { color: var(--highlight-gold); }

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), 
              transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out-expo), 
              transform 0.6s var(--ease-out-expo);
}

.reveal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.section-hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.08) 25%,
    transparent 50%
  );
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent-primary);
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 64px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-tertiary);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
  background: var(--bg-darker);
}

.problem-visual {
  margin: 64px 0;
}

.platform-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.platform-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.platform-icon {
  width: 80px;
  height: 80px;
  background: var(--highlight-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(239, 68, 68, 0.4);
}

.platform-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.platform-center span {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connection-line {
  position: absolute;
  background: linear-gradient(to bottom, var(--highlight-red), transparent);
  width: 2px;
  height: 80px;
  top: 55%;
  opacity: 0.5;
}

.line-1 { left: 25%; transform: rotate(-30deg); }
.line-2 { left: 50%; transform: translateX(-50%); }
.line-3 { right: 25%; transform: rotate(30deg); }

.platform-nodes {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.node-icon {
  width: 56px;
  height: 56px;
  background: var(--surface-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.node span {
  font-size: 13px;
  color: var(--text-secondary);
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 64px 0;
}

.stat {
  text-align: center;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.stat-value {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  display: inline;
}

.stat-suffix {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--highlight-red);
  display: inline;
}

.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   HISTORY SECTION
   ============================================ */
.section-history {
  background: var(--bg-dark);
}

.timeline {
  position: relative;
  margin: 80px 0;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--glass-border) 10%,
    var(--glass-border) 90%,
    transparent
  );
}

.timeline-item {
  position: relative;
  padding: 32px 0;
  padding-left: 48px;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 40px;
  width: 18px;
  height: 18px;
  background: var(--surface);
  border: 3px solid var(--text-tertiary);
  border-radius: 50%;
  transition: all 0.4s var(--ease-out-expo);
}

.timeline-item.visible .timeline-dot {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px var(--glass-glow);
}

.timeline-item.highlight-item .timeline-dot {
  border-color: var(--highlight-green);
  background: var(--highlight-green);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.timeline-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s var(--ease-out-expo);
}

.timeline-item.visible .timeline-content {
  border-color: rgba(99, 102, 241, 0.2);
}

.timeline-item.highlight-item .timeline-content {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 8px;
}

.timeline-item.highlight-item .timeline-year {
  color: var(--highlight-green);
}

.timeline-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.section-solution {
  background: var(--bg-darker);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.solution-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s var(--ease-out-expo);
}

.solution-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px var(--glass-glow);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.solution-quote {
  margin-top: 64px;
  text-align: center;
}

.solution-quote blockquote {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-secondary);
  font-style: italic;
}

.solution-quote .highlight {
  font-style: normal;
}

/* ============================================
   MODEL SECTION
   ============================================ */
.section-model {
  background: var(--bg-dark);
}

.split-visual {
  margin: 64px 0;
}

.split-bar {
  display: flex;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.split-creator {
  width: 0%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: width 1.5s var(--ease-out-expo);
}

.split-creator.animate {
  width: 88%;
}

.split-platform {
  flex: 1;
  background: var(--surface-elevated);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.split-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.split-value {
  font-size: 28px;
  font-weight: 800;
}

.comparison {
  margin-top: 64px;
}

.comparison h3 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.comparison-bars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-item {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  gap: 20px;
}

.comp-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.comp-bar {
  height: 12px;
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
}

.comp-fill {
  height: 100%;
  width: 0%;
  background: var(--text-tertiary);
  border-radius: 6px;
  transition: width 1.2s var(--ease-out-expo);
}

.comparison-item.animate .comp-fill {
  width: var(--target-width);
}

.highlight-row .comp-fill,
.backstage-bar .comp-fill {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.comp-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: right;
}

.highlight-row .comp-value {
  color: var(--highlight-green);
}

/* ============================================
   DEMO SECTION
   ============================================ */
.section-demo {
  background: var(--bg-darker);
}

.demo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 48px;
}

.phone-frame {
  position: relative;
  width: 320px;
  height: 680px;
  background: #1a1a1a;
  border-radius: 48px;
  padding: 12px;
  box-shadow: 
    0 50px 100px -20px rgba(0, 0, 0, 0.8),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0a0a0b;
  border-radius: 14px;
  z-index: 10;
}

.phone-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 36px;
  background: var(--bg-dark);
}

.demo-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.demo-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
}

.feature-icon {
  font-size: 24px;
}

/* ============================================
   ASK SECTION
   ============================================ */
.section-ask {
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
  text-align: center;
}

.ask-breakdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 64px 0;
}

.ask-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s var(--ease-out-expo);
}

.ask-item:hover {
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-4px);
}

.ask-percent {
  font-size: 36px;
  font-weight: 800;
  color: var(--highlight-gold);
  margin-bottom: 8px;
}

.ask-category {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ask-detail {
  font-size: 13px;
  color: var(--text-tertiary);
}

.cta-section {
  margin: 80px 0;
}

.cta-text {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--accent-gradient);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.5);
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 60px -10px rgba(99, 102, 241, 0.6);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out-expo);
}

.cta-button:hover svg {
  transform: translateX(4px);
}

.closing {
  margin-top: 120px;
  padding-top: 60px;
}

.closing-line {
  width: 60px;
  height: 2px;
  background: var(--glass-border);
  margin: 0 auto 32px;
}

.closing p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.closing-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--text-tertiary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
  
  .ask-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .demo-container {
    flex-direction: column;
    gap: 48px;
  }
  
  .demo-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav {
    padding: 12px 16px;
  }
  
  .nav-links {
    display: none;
  }
  
  /* Section padding reduction */
  .section {
    padding: clamp(40px, 10vh, 80px) 16px;
  }
  
  .section-inner {
    padding: 0;
  }
  
  /* Typography scaling */
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .section-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .section-subtitle {
    font-size: clamp(16px, 4vw, 18px);
  }
  
  h3, .timeline-title {
    font-size: clamp(16px, 4vw, 20px);
  }
  
  .section-text {
    font-size: 16px;
  }
  
  /* Problem stats */
  .problem-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat {
    padding: 24px 16px;
  }
  
  .stat-value {
    font-size: clamp(36px, 10vw, 48px);
  }
  
  .platform-nodes {
    flex-direction: column;
    gap: 24px;
  }
  
  .platform-diagram {
    padding: 32px 16px;
    gap: 40px;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
    margin: 40px 0;
  }
  
  .timeline-item {
    padding-left: 32px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-dot {
    left: -24px;
  }
  
  /* Solution grid */
  .solution-grid {
    gap: 16px;
  }
  
  .solution-card {
    padding: 24px;
  }
  
  .solution-card h3 {
    font-size: 18px;
  }
  
  .solution-quote blockquote {
    font-size: clamp(18px, 5vw, 24px);
  }
  
  /* Comparison bars */
  .comparison-item {
    grid-template-columns: 70px 1fr 45px;
    gap: 8px;
  }
  
  .comp-name {
    font-size: 12px;
  }
  
  .comp-value {
    font-size: 12px;
  }
  
  /* "Stop Sending Your Fans Away" - Stack vertically */
  .comparison-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .comp-side.left,
  .comp-side.right {
    width: 100%;
  }
  
  .phone-mockup {
    width: 200px !important;
    height: 380px !important;
  }
  
  .castle-benefits {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  /* Signal vs Noise - Stack vertically */
  .signal-visual {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .signal-divider {
    flex-direction: row !important;
    width: 100%;
    justify-content: center;
  }
  
  .signal-divider > div:first-child,
  .signal-divider > div:last-child {
    width: 60px !important;
    height: 2px !important;
    background: linear-gradient(to right, transparent, #333) !important;
  }
  
  .signal-divider > div:last-child {
    background: linear-gradient(to right, #333, transparent) !important;
  }
  
  .noise-side,
  .signal-side {
    padding: 1rem 0;
  }
  
  .noise-side > div:first-child,
  .signal-side > div:first-child {
    font-size: 3rem !important;
  }
  
  /* Tour stats - Stack vertically */
  .tour-stats {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .tour-stat {
    padding: 1.5rem !important;
  }
  
  .tour-stat > div:first-child {
    font-size: 2.5rem !important;
  }
  
  /* Ask breakdown */
  .ask-breakdown {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ask-item {
    padding: 24px 16px;
  }
  
  .ask-percent {
    font-size: 28px;
  }
  
  /* Demo */
  .phone-frame {
    width: 260px;
    height: 560px;
    border-radius: 36px;
    padding: 10px;
  }
  
  .phone-notch {
    width: 100px;
    height: 24px;
  }
  
  .demo-features {
    gap: 16px;
  }
  
  .demo-feature {
    font-size: 14px;
    gap: 12px;
  }
  
  /* CTA */
  .cta-text {
    font-size: clamp(18px, 5vw, 24px);
  }
  
  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }
  
  /* Intel cards */
  .intel-card {
    padding: 1.5rem !important;
  }
  
  .intel-quote {
    font-size: 1rem !important;
  }
  
  /* Split bar */
  .split-bar {
    height: 60px;
  }
  
  .split-label {
    font-size: 10px;
  }
  
  .split-value {
    font-size: 20px;
  }
}

/* Kinetic Number Animation */
.kinetic {
  display: inline-block;
}

.kinetic.counting {
  animation: numberPulse 0.1s ease-out;
}

@keyframes numberPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
