/* ==========================================================================
   MARABILIA — HIGH PERFORMANCE ADVISORY 2026
   Apple-Inspired Dark Mode Aesthetic & Design System
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-pure-black: #000000;
  --bg-deep-surface: #070709;
  --bg-card-surface: rgba(18, 18, 22, 0.72);
  --bg-card-hover: rgba(28, 28, 34, 0.85);
  
  /* Titanium and Apple Muted Tones */
  --titanium-100: #f5f5f7;
  --titanium-200: #e5e5ea;
  --titanium-300: #d1d1d6;
  --titanium-400: #a1a1a6;
  --titanium-500: #86868b;
  --titanium-600: #48484a;
  --titanium-700: #2c2c2e;
  --titanium-800: #1d1d1f;
  --titanium-900: #121214;

  /* Energy & Intelligence Accents */
  --cyan-primary: #00f2fe;
  --cyan-glow: rgba(0, 242, 254, 0.28);
  --cyan-border: rgba(0, 242, 254, 0.45);
  
  --emerald-primary: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.28);
  --emerald-border: rgba(16, 185, 129, 0.4);

  --apple-blue: #2997ff;
  --purple-accent: #a855f7;

  /* Glass & Borders */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.2);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.75);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --font-mono: "SF Mono", "Space Grotesk", Menlo, Monaco, Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-family: var(--font-sans);
  background-color: var(--bg-pure-black);
  color: var(--titanium-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-pure-black);
  color: var(--titanium-300);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Accessibility Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Container */
.container-custom {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-custom {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* Ambient Lighting Glows (Apple Aurora Effect) */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.ambient-glow-top-left {
  top: -100px;
  left: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #00f2fe 0%, #10b981 60%, transparent 80%);
}

.ambient-glow-top-right {
  top: 150px;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #2997ff 0%, #a855f7 50%, transparent 80%);
  opacity: 0.22;
}

.ambient-glow-mid {
  top: 1400px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, #10b981 0%, #00f2fe 40%, transparent 75%);
  opacity: 0.15;
}

.ambient-glow-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, #00f2fe 0%, #10b981 45%, transparent 75%);
  opacity: 0.2;
}

/* Top Announcement Ticker */
.top-announcement-bar {
  background: rgba(18, 18, 22, 0.85);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  font-size: 0.78rem;
  position: relative;
  z-index: 55;
}

.ticker-link {
  color: var(--cyan-primary);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.ticker-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Live Dots */
.live-dot, .live-dot-cyan, .live-dot-emerald {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: relative;
}

.live-dot {
  background-color: var(--emerald-primary);
  box-shadow: 0 0 8px var(--emerald-primary);
}

.live-dot-cyan {
  background-color: var(--cyan-primary);
  box-shadow: 0 0 10px var(--cyan-primary);
  animation: pulseCyan 2.2s infinite ease-in-out;
}

.live-dot-emerald {
  background-color: var(--emerald-primary);
  box-shadow: 0 0 10px var(--emerald-primary);
  animation: pulseEmerald 2.2s infinite ease-in-out;
}

@keyframes pulseCyan {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.45); opacity: 0.5; }
}

@keyframes pulseEmerald {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.45); opacity: 0.5; }
}

/* Header & Navigation Structure */
.header-nav {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-title {
  letter-spacing: 0.15em;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, #d1d1d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-desktop {
  display: none;
}

.nav-cta-desktop {
  display: none;
}

.nav-mobile-toggle {
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-cta-desktop {
    display: flex;
  }
  .nav-mobile-toggle {
    display: none;
  }
}

.nav-link {
  color: var(--titanium-400);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan-primary);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons (Apple Luxury Glow) */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--glass-highlight), 0 4px 15px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-primary-glow:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: var(--cyan-primary);
  box-shadow: 0 0 20px var(--cyan-glow), var(--glass-highlight);
  transform: translateY(-1px);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(180deg, #ffffff 0%, #e5e5ea 100%);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(0, 242, 254, 0.5), 0 10px 30px rgba(0, 0, 0, 0.6);
  background: #ffffff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-submit-glow {
  background: linear-gradient(90deg, #00f2fe 0%, #10b981 100%);
  color: #000000;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.btn-submit-glow:hover {
  transform: scale(1.015);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.55), 0 0 25px rgba(16, 185, 129, 0.4);
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card-surface);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

/* Typography Gradient Masks */
.gradient-text-hero {
  background: linear-gradient(135deg, #00f2fe 0%, #10b981 50%, #2997ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

/* Hero Item Entrance */
.hero-item {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.hero-item:nth-child(1) { animation-delay: 0.05s; }
.hero-item:nth-child(2) { animation-delay: 0.15s; }
.hero-item:nth-child(3) { animation-delay: 0.25s; }
.hero-item:nth-child(4) { animation-delay: 0.35s; }
.hero-item:nth-child(5) { animation-delay: 0.45s; }

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

/* ==========================================================================
   Hero Visual Showcase: Apple Pro Titanium Frame & Ambient Lighting
   ========================================================================== */
.hero-showcase {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.hero-titanium-frame {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(16, 20, 30, 0.75) 0%, rgba(8, 11, 18, 0.95) 100%);
  box-shadow: 0 35px 90px -20px rgba(0, 0, 0, 0.95), 
              0 0 50px -15px rgba(0, 242, 254, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(0, 242, 254, 0.28) 0%, rgba(16, 185, 129, 0.16) 45%, transparent 75%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  animation: heroAmbientPulse 7s ease-in-out infinite alternate;
}

@keyframes heroAmbientPulse {
  0% {
    opacity: 0.45;
    transform: translateX(-50%) scale(0.96);
  }
  100% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1.05);
  }
}

.hero-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030508;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-image-stage {
    aspect-ratio: 21 / 9;
  }
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-titanium-frame:hover .hero-banner-img {
  transform: scale(1.035);
}

.hero-img-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.2) 0%, 
    rgba(0, 0, 0, 0.05) 30%, 
    rgba(5, 8, 15, 0.45) 70%, 
    rgba(7, 10, 18, 0.95) 100%
  );
  pointer-events: none;
}

.specular-glass-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 35%, transparent 60%);
  pointer-events: none;
}

/* Cockpit Widget in Hero */
.hero-cockpit {
  box-shadow: none;
  background: rgba(9, 12, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.cockpit-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.cockpit-bar-fill {
  height: 100%;
  border-radius: 9999px;
  box-shadow: 0 0 8px currentColor;
}

/* ==========================================================================
   Monumental Evidence Cards (#metricas) — Apple Pro Standards
   ========================================================================== */
.monumental-metric-card {
  position: relative;
  overflow: hidden;
  background: rgba(10, 14, 22, 0.72);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

/* Card Variation Borders & Ambient Hover Glows */
.monumental-metric-card--cyan,
.monumental-metric-card:nth-child(1) {
  border-top: 1px solid rgba(0, 242, 254, 0.45);
}

.monumental-metric-card--cyan:hover,
.monumental-metric-card:nth-child(1):hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.35);
  border-top-color: rgba(0, 242, 254, 0.85);
  box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.85),
              0 0 35px -5px rgba(0, 242, 254, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.monumental-metric-card--emerald,
.monumental-metric-card:nth-child(2) {
  border-top: 1px solid rgba(16, 185, 129, 0.45);
}

.monumental-metric-card--emerald:hover,
.monumental-metric-card:nth-child(2):hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.35);
  border-top-color: rgba(16, 185, 129, 0.85);
  box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.85),
              0 0 35px -5px rgba(16, 185, 129, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.monumental-metric-card--blue,
.monumental-metric-card:nth-child(3) {
  border-top: 1px solid rgba(41, 151, 255, 0.45);
}

.monumental-metric-card--blue:hover,
.monumental-metric-card:nth-child(3):hover {
  transform: translateY(-5px);
  border-color: rgba(41, 151, 255, 0.35);
  border-top-color: rgba(41, 151, 255, 0.85);
  box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.85),
              0 0 35px -5px rgba(41, 151, 255, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.monumental-metric-card--purple,
.monumental-metric-card:nth-child(4) {
  border-top: 1px solid rgba(168, 85, 247, 0.45);
}

.monumental-metric-card--purple:hover,
.monumental-metric-card:nth-child(4):hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.35);
  border-top-color: rgba(168, 85, 247, 0.85);
  box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.85),
              0 0 35px -5px rgba(168, 85, 247, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Monumental Numbers */
.monumental-number {
  font-size: clamp(2.5rem, 3.1vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 35%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 1.25rem;
  margin-bottom: 0.85rem;
  display: block;
  white-space: nowrap;
}

/* Sutil Currency Prefix */
.monumental-currency {
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: 0.16em;
  opacity: 0.85;
  display: inline;
  white-space: nowrap;
}

.monumental-curr-symbol {
  font-size: 0.82em;
  font-weight: 500;
  opacity: 0.72;
  margin-left: 0.04em;
}

/* Monumental Pill Badges */
.monumental-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  width: fit-content;
}

.monumental-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.monumental-pill--cyan {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #00f2fe;
}
.monumental-pill--cyan::before {
  background: #00f2fe;
  box-shadow: 0 0 8px #00f2fe;
}

.monumental-pill--emerald {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}
.monumental-pill--emerald::before {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.monumental-pill--blue {
  background: rgba(41, 151, 255, 0.1);
  border: 1px solid rgba(41, 151, 255, 0.3);
  color: #60a5fa;
}
.monumental-pill--blue::before {
  background: #2997ff;
  box-shadow: 0 0 8px #2997ff;
}

.monumental-pill--purple {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}
.monumental-pill--purple::before {
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
}

/* Clean 1-Line Label */
.monumental-label {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--titanium-200);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  white-space: normal;
}

/* High-Precision Mini Telemetry Bar */
.monumental-telemetry-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.monumental-telemetry-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.monumental-telemetry-fill--cyan {
  background: #00f2fe;
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.65);
}

.monumental-telemetry-fill--emerald {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.65);
}

.monumental-telemetry-fill--blue {
  background: #2997ff;
  box-shadow: 0 0 8px rgba(41, 151, 255, 0.65);
}

.monumental-telemetry-fill--purple {
  background: #a855f7;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.65);
}

/* Legacy Metric Card Support */
.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.metric-value {
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ==========================================================================
   Structural Abyss Comparison Cards (#tese) — Apple Pro Standards
   ========================================================================== */
.legacy-card {
  background: rgba(20, 10, 12, 0.68);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.75);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.legacy-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
}

.future-card {
  background: rgba(8, 22, 18, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-top: 1px solid rgba(16, 185, 129, 0.65);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.8),
              0 0 30px -5px rgba(16, 185, 129, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.future-card:hover {
  border-color: rgba(16, 185, 129, 0.55);
}

.comparison-card-header {
  margin-bottom: 1.5rem;
}

.comparison-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comparison-card-subtitle {
  font-size: 0.85rem;
  color: var(--titanium-400);
  line-height: 1.4;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--titanium-200);
  line-height: 1.35;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.comparison-item:hover {
  background: rgba(255, 255, 255, 0.045);
}

.legacy-card .comparison-item:hover {
  border-color: rgba(239, 68, 68, 0.25);
}

.future-card .comparison-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.comparison-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-icon-box--danger {
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.comparison-icon-box--success {
  background: rgba(16, 185, 129, 0.14);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.32);
}

/* Badges */
.badge-pill-emerald {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.badge-pill-cyan {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: #00f2fe;
}

/* Comparison Switch */
.switch-btn {
  background: transparent;
  border: none;
  color: var(--titanium-400);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.switch-btn.active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Bento Grid Editorial Cards & Image Containers (Apple Pro Standards)
   ========================================================================== */
.bento-card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 20, 30, 0.72) 0%, rgba(9, 12, 18, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 30px 65px -15px rgba(0, 0, 0, 0.9),
              0 0 35px -5px rgba(0, 242, 254, 0.16),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.img-card-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background-color: #070a12;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.img-zoom-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
  will-change: transform;
}

.bento-card:hover .img-zoom-hover {
  transform: scale(1.055);
  filter: brightness(1.08) contrast(1.02);
}

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(5, 8, 15, 0.05) 0%, 
    rgba(5, 8, 15, 0.25) 45%, 
    rgba(7, 10, 16, 0.75) 80%, 
    #0c101a 100%
  );
  pointer-events: none;
}

.glass-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(18px) saturate(190%);
  -webkit-backdrop-filter: blur(18px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.glass-chip:hover {
  background: rgba(12, 18, 30, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.icon-bubble {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Apple Sliders */
.apple-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  transition: background 0.2s ease;
}

.apple-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.7), 0 2px 8px rgba(0, 0, 0, 0.6);
  border: 2px solid #00f2fe;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.apple-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.9);
}

.apple-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 2px solid #00f2fe;
}

/* Matrix Option Radios */
.matrix-option .option-box {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
}

.matrix-option.selected .option-box {
  border-color: var(--emerald-primary);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* Form Styles */
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--titanium-200);
  margin-bottom: 0.4rem;
}

.form-input, .form-select {
  width: 100%;
  background: rgba(12, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-select:focus {
  border-color: var(--cyan-primary);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.form-input::placeholder {
  color: var(--titanium-600);
}

.form-error-msg {
  display: none;
  color: #f87171;
  font-size: 0.72rem;
  margin-top: 0.35rem;
}

.has-error .form-input,
.has-error .form-select {
  border-color: #f87171;
}

.has-error .form-error-msg {
  display: block;
}

/* Challenge & Maturity Custom Radio Cards */
.challenge-pill, .maturity-pill {
  cursor: pointer;
  display: block;
  position: relative;
}

.challenge-pill .pill-body, .maturity-pill .pill-body {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: all 0.2s ease;
}

.challenge-pill:hover .pill-body, .maturity-pill:hover .pill-body {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.challenge-pill input:checked + .pill-body,
.maturity-pill input:checked + .pill-body {
  border-color: var(--cyan-primary);
  background: rgba(0, 242, 254, 0.08);
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.22);
}

/* Spinner */
.spinner-small {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000000;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Native Dialog & Backdrop */
.diagnostic-modal {
  margin: auto;
  border: none;
  background: transparent;
  padding: 1.5rem;
  max-width: 680px;
  width: 92%;
  outline: none;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.diagnostic-modal[open] {
  opacity: 1;
  transform: scale(1);
}

.diagnostic-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.score-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.score-progress-fill {
  height: 100%;
  border-radius: 9999px;
  transition: width 1s ease-out;
}

/* Mobile Nav Drawer */
.mobile-menu-drawer {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-link {
  color: var(--titanium-200);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
  color: var(--cyan-primary);
}

/* Footer Links */
.footer-link {
  color: var(--titanium-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* Utility Flex / Grid Classes */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
  .sm\:inline { display: inline; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
}

.w-full { width: 100%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.sticky { position: sticky; }
.overflow-hidden { overflow: hidden; }

/* Margins & Paddings */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-28 { padding-bottom: 7rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

@media (min-width: 768px) {
  .md\:pt-28 { padding-top: 7rem; }
  .md\:pb-36 { padding-bottom: 9rem; }
  .md\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
}

/* Percentage Width Utilities */
.w-\[68\%\] { width: 68%; }
.w-\[84\%\] { width: 84%; }
.w-\[92\%\] { width: 92%; }
.w-\[95\%\] { width: 95%; }
.w-\[99\.9\%\] { width: 99.9%; }

/* Border utilities */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Font size & weight utilities */
.font-mono { font-family: var(--font-mono); }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }

.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-cyan-400 { color: var(--cyan-primary); }
.text-cyan-300 { color: #67e8f9; }
.text-emerald-400 { color: var(--emerald-primary); }
.text-emerald-300 { color: #6ee7b7; }
.text-blue-400 { color: var(--apple-blue); }
.text-purple-400 { color: var(--purple-accent); }
.text-purple-300 { color: #d8b4fe; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-neutral-200 { color: var(--titanium-200); }
.text-neutral-300 { color: var(--titanium-300); }
.text-neutral-400 { color: var(--titanium-400); }
.text-neutral-500 { color: var(--titanium-500); }
.text-neutral-600 { color: var(--titanium-600); }

/* Max-width utilities */
.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* Subtle Scroll Reveal Animations */
.fade-in,
.metric-card,
.monumental-metric-card,
.bento-card,
.step-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.revealed,
.metric-card.revealed,
.monumental-metric-card.revealed,
.bento-card.revealed,
.step-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   Positioning, Dimensions & Glassmorphism Utilities
   ========================================================================== */
.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-3\.5 { top: 0.875rem; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.left-0 { left: 0; }
.left-3 { left: 0.75rem; }
.left-3\.5 { left: 0.875rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.right-0 { right: 0; }
.right-3 { right: 0.75rem; }
.right-3\.5 { right: 0.875rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-3 { bottom: 0.75rem; }
.bottom-3\.5 { bottom: 0.875rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

@media (min-width: 640px) {
  .sm\:top-6 { top: 1.5rem; }
  .sm\:left-6 { left: 1.5rem; }
  .sm\:right-6 { right: 1.5rem; }
  .sm\:bottom-6 { bottom: 1.5rem; }
  .sm\:flex { display: flex; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
}

.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/65 { background-color: rgba(0, 0, 0, 0.65); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.6); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.5)); }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }

.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.gap-2\.5 { gap: 0.625rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }

.animate-pulse {
  animation: applePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.animate-ping {
  animation: applePing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes applePing {
  75%, 100% { transform: scale(2); opacity: 0; }
}
