/* ── TASTE SKILL PREMIUM MODIFIERS ── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.taste-diffusion {
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
}

.taste-text-data {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Fluid Animation Classes */
.spring-hover {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.spring-hover:hover {
  transform: translateY(-4px) scale(1.01);
}

.taste-btn {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.taste-btn:active {
  transform: translateY(2px) scale(0.98);
}

/* Background Video Positioning */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Keep behind hero atm */
  opacity: 0.6;
}

/* Ensure no clipping on the hero background */
.hero {
  min-height: 100dvh;
}

/* Anti Center Bias - Asymmetric split */
.hero-asymmetric {
  grid-template-columns: 1fr;
}
@media(min-width: 960px) {
  .hero-asymmetric {
    grid-template-columns: 1.2fr 0.8fr; /* Taste Skill: Asymmetric right/left */
  }
}

/* ── DATA NUMBERS SECTION ─────────────────────────────────── */
.data-numbers {
  padding: 110px 5%;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.data-numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(91,33,182,.15), transparent),
              radial-gradient(ellipse 50% 80% at 100% 50%, rgba(245,197,24,.05), transparent);
  pointer-events: none;
}
.data-num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
@media(max-width: 900px) {
  .data-num-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 520px) {
  .data-num-grid { grid-template-columns: 1fr; }
}
.data-num-item {
  padding: 48px 36px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: background 0.3s;
  cursor: default;
}
.data-num-item:hover {
  background: rgba(245,197,24,0.03);
}
.data-num-item:hover .dns-num {
  color: var(--gold-hi);
}
.dns-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
  /* Scroll-scale animation */
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.3s;
}
.dns-num.in-view {
  animation: numPop 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes numPop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); opacity: 1; }
}
.dns-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.dns-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
.dns-source {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.18);
  margin-top: 14px;
  display: block;
}

/* ── PARALLAX PNG IMAGE ────────────────────────────────────── */
.parallax-png {
  will-change: transform;
  transition: transform 0.1s linear;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}

/* ── HERO OVERFLOW FIX ─────────────────────────────────────── */
.hero {
  clip-path: inset(0);
}
.hero-img-wrap {
  overflow: visible; /* badges allowed to poke out */
  clip-path: none;
}
/* Hide the decorative frame on mobile to prevent overflow */
@media(max-width: 960px) {
  .hero-img-frame { display: none; }
}

