/* ===== QuizTadka Home Page Redesign ===== */

.page-home .site-main { overflow-x: clip; }

.home-page {
  --hp-violet: #8B5CF6;
  --hp-indigo: #6366F1;
  --hp-blue: #3B82F6;
  --hp-gold: #F59E0B;
  --hp-rose: #F43F5E;
  --hp-emerald: #10B981;
  --hp-surface: rgba(255,255,255,0.04);
  --hp-border: rgba(255,255,255,0.08);
  --hp-radius: 20px;
  --hp-radius-sm: 12px;
}

/* --- Shared --- */
.hp-gradient-text {
  background: linear-gradient(135deg, #C084FC 0%, #818CF8 40%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-violet);
  margin-bottom: 0.6rem;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.hp-btn--primary {
  background: linear-gradient(135deg, #7C3AED, #6366F1, #3B82F6);
  color: #fff;
  box-shadow: 0 8px 32px rgba(124,58,237,0.45);
}
.hp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(124,58,237,0.55);
}

.hp-btn--ghost {
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.hp-btn--ghost:hover {
  border-color: var(--hp-violet);
  background: rgba(139,92,246,0.1);
}

.hp-btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== HERO ===== */
.hp-hero {
  position: relative;
  padding: 2rem 0 2rem;
  overflow: hidden;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: hpOrbFloat 12s ease-in-out infinite;
}
.hp-orb--1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.25);
  top: -15%; left: -10%;
}
.hp-orb--2 {
  width: 400px; height: 400px;
  background: rgba(59,130,246,0.18);
  top: 10%; right: -8%;
  animation-delay: -4s;
}
.hp-orb--3 {
  width: 300px; height: 300px;
  background: rgba(245,158,11,0.12);
  bottom: 0; left: 35%;
  animation-delay: -8s;
}

.hp-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

@keyframes hpOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.65rem;
  border-radius: 50px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: #C4B5FD;
  margin-bottom: 1.5rem;
}
.hp-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: hpPulse 2s ease-in-out infinite;
}
@keyframes hpPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hp-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hp-hero__sub {
  font-size: 1.08rem;
  color: #94A3B8;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hp-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hp-hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: #94A3B8;
}
.hp-hero__trust strong { color: #fff; }

.hp-avatars {
  display: flex;
}
.hp-avatars span {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  border: 2px solid #050510;
  margin-left: -8px;
  background: linear-gradient(135deg, #7C3AED, #6366F1);
}
.hp-avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #7C3AED, #A855F7); }
.hp-avatars span:nth-child(2) { background: linear-gradient(135deg, #3B82F6, #06B6D4); }
.hp-avatars span:nth-child(3) { background: linear-gradient(135deg, #10B981, #34D399); }
.hp-avatars span:nth-child(4) { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.hp-avatars span:nth-child(5) { background: linear-gradient(135deg, #EC4899, #F472B6); }

.hp-stars { color: #FBBF24; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.15rem; }

/* Card stack */
.hp-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hp-card-stack {
  position: relative;
  width: 300px;
  height: 340px;
}

.hp-stack-card {
  position: absolute;
  border-radius: var(--hp-radius);
  border: 1px solid var(--hp-border);
  backdrop-filter: blur(20px);
  background: rgba(18,18,31,0.85);
  padding: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.hp-stack-card--back {
  width: 240px;
  top: 20px; left: 0;
  transform: rotate(-8deg);
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.hp-stack-card--back span { font-size: 1.5rem; }
.hp-stack-card--back small { display: block; color: #64748B; font-size: 0.7rem; }

.hp-stack-card--mid {
  width: 260px;
  top: 60px; right: 0;
  transform: rotate(6deg);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.hp-stack-card--mid span { font-size: 1.5rem; }
.hp-stack-card--mid small { display: block; color: #64748B; font-size: 0.7rem; }

.hp-stack-card--front {
  width: 280px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,92,246,0.2);
  animation: hpCardFloat 5s ease-in-out infinite;
}
@keyframes hpCardFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

.hp-stack-card__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  background: rgba(245,158,11,0.15);
  color: #FBBF24;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hp-stack-card__emoji { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
.hp-stack-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 0.75rem;
}
.hp-dot { width: 4px; height: 4px; border-radius: 50%; background: #475569; }

/* Stat row */
.hp-stat-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.hp-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--hp-radius-sm);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  transition: border-color 0.3s, transform 0.3s;
}
.hp-stat-pill:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-2px);
}
.hp-stat-pill__icon { font-size: 1.5rem; }
.hp-stat-pill strong { display: block; font-size: 1.2rem; font-weight: 800; line-height: 1.2; }
.hp-stat-pill span { font-size: 0.78rem; color: #64748B; }

/* ===== MARQUEE ===== */
.hp-marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  background: rgba(255,255,255,0.015);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.hp-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: hpMarquee 30s linear infinite;
}

.hp-marquee__item {
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748B;
}

@keyframes hpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== DAILY CHALLENGE ===== */
.hp-challenge { padding: 3rem 0; }

.hp-challenge__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  border-radius: var(--hp-radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(59,130,246,0.08));
  border: 1px solid rgba(139,92,246,0.2);
  overflow: hidden;
}

.hp-challenge__glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
  top: -50%; right: 10%;
  pointer-events: none;
}

.hp-challenge__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FBBF24;
  margin-bottom: 0.5rem;
}

.hp-challenge__left h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hp-challenge__left p {
  color: #94A3B8;
  font-size: 0.95rem;
  max-width: 420px;
}

.hp-challenge__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.hp-challenge__stat { text-align: center; }
.hp-challenge__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #C084FC, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-challenge__stat span { font-size: 0.78rem; color: #64748B; text-transform: uppercase; letter-spacing: 0.08em; }

.hp-challenge__divider {
  width: 1px;
  height: 48px;
  background: var(--hp-border);
}

/* ===== SECTIONS ===== */
.hp-section { padding: 5rem 0; }
.hp-section--dark { background: rgba(255,255,255,0.015); }

.hp-section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.hp-section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.hp-section-head p {
  color: #94A3B8;
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
}

.hp-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 1rem;
}
.hp-section-head--row p { margin: 0; }
.hp-section-head__aside {
  color: #64748B !important;
  font-size: 0.9rem !important;
  max-width: none !important;
}

/* ===== BENTO CATEGORIES ===== */
.hp-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hp-bento__item {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--hp-radius);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  cursor: default;
}
.hp-bento__item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hp-bento__item--wide { grid-column: span 2; }

.hp-bento__glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  top: -30px; right: -30px;
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.35s;
}
.hp-bento__item:hover .hp-bento__glow { opacity: 0.3; }

.grad-violet .hp-bento__glow { background: #8B5CF6; }
.grad-emerald .hp-bento__glow { background: #10B981; }
.grad-amber .hp-bento__glow { background: #F59E0B; }
.grad-sky .hp-bento__glow { background: #0EA5E9; }
.grad-lime .hp-bento__glow { background: #84CC16; }
.grad-rose .hp-bento__glow { background: #F43F5E; }
.grad-cyan .hp-bento__glow { background: #06B6D4; }
.grad-yellow .hp-bento__glow { background: #EAB308; }
.grad-fuchsia .hp-bento__glow { background: #D946EF; }
.grad-indigo .hp-bento__glow { background: #6366F1; }

.hp-bento__icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.85rem;
  position: relative;
}

.hp-bento__info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  position: relative;
}
.hp-bento__info span {
  font-size: 0.78rem;
  color: #64748B;
  position: relative;
}

/* ===== TRENDING QUIZ CARDS ===== */
.hp-trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hp-quiz-card {
  position: relative;
  border-radius: var(--hp-radius);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.hp-quiz-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.hp-quiz-card__rank {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
}
.hp-quiz-card__rank--1 { background: linear-gradient(135deg, #F59E0B, #FBBF24); color: #1a1a2e; }
.hp-quiz-card__rank--2 { background: rgba(148,163,184,0.3); color: #E2E8F0; }
.hp-quiz-card__rank--3 { background: rgba(180,83,9,0.3); color: #FDE68A; }

.hp-quiz-card__thumb {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(139,92,246,0.08), transparent);
  border-bottom: 1px solid var(--hp-border);
}
.hp-quiz-card__thumb span { font-size: 2.75rem; }

.hp-quiz-card__body { padding: 1.25rem; }

.hp-quiz-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A78BFA;
}

.hp-quiz-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.4rem 0 0.75rem;
}

.hp-quiz-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: #64748B;
  flex-wrap: wrap;
}

.hp-difficulty {
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.68rem;
}
.hp-difficulty--easy { background: rgba(74,222,128,0.12); color: #4ADE80; }
.hp-difficulty--medium { background: rgba(251,191,36,0.12); color: #FBBF24; }
.hp-difficulty--hard { background: rgba(248,113,113,0.12); color: #F87171; }

/* ===== FEATURES ===== */
.hp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hp-feature {
  padding: 1.75rem;
  border-radius: var(--hp-radius);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  transition: transform 0.35s, border-color 0.35s;
  transition-delay: var(--delay, 0s);
}
.hp-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.25);
}

.hp-feature__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.85rem;
}
.hp-feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hp-feature p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.65;
}

/* ===== BLOG ===== */
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hp-blog-card {
  border-radius: var(--hp-radius);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  transition-delay: var(--delay, 0s);
}
.hp-blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.hp-blog-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(59,130,246,0.1));
  border-bottom: 1px solid var(--hp-border);
}

.hp-blog-card__body { padding: 1.35rem; }

.hp-blog-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A78BFA;
}

.hp-blog-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0.45rem 0 0.6rem;
}

.hp-blog-card__body p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.hp-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hp-faq__item {
  border-radius: var(--hp-radius-sm);
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.hp-faq__item[open] {
  border-color: rgba(139,92,246,0.25);
}

.hp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.hp-faq__item summary::-webkit-details-marker { display: none; }

.hp-faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #64748B;
}
.hp-faq__item[open] .hp-faq__chevron { transform: rotate(180deg); color: var(--hp-violet); }

.hp-faq__item p {
  padding: 0 1.5rem 1.15rem;
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.hp-cta { padding: 2rem 0 5rem; }

.hp-cta__card {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--hp-radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(59,130,246,0.06));
  border: 1px solid rgba(139,92,246,0.2);
  overflow: hidden;
}

.hp-cta__glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hp-cta__card h2 {
  position: relative;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.hp-cta__card p {
  position: relative;
  color: #94A3B8;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.hp-cta__card .hp-btn { position: relative; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hp-bento { grid-template-columns: repeat(2, 1fr); }
  .hp-bento__item--wide { grid-column: span 1; }
  .hp-trending-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .hp-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hp-hero__sub { margin-left: auto; margin-right: auto; }
  .hp-hero__actions { justify-content: center; }
  .hp-hero__trust { justify-content: center; }
  .hp-hero__visual { min-height: 360px; margin-top: 1rem; }
  .hp-stat-row { grid-template-columns: repeat(2, 1fr); }
  .hp-challenge__card { flex-direction: column; text-align: center; }
  .hp-challenge__left p { margin: 0 auto; }
  .hp-section-head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hp-hero { padding: 2.5rem 0 1.5rem; }
  .hp-stat-row { grid-template-columns: 1fr; }
  .hp-bento { grid-template-columns: 1fr; }
  .hp-trending-grid { grid-template-columns: 1fr; }
  .hp-blog-grid { grid-template-columns: 1fr; }
  .hp-features { grid-template-columns: 1fr; }
  .hp-hero__actions { flex-direction: column; }
  .hp-hero__actions .hp-btn { width: 100%; }
  .hp-section { padding: 3.5rem 0; }
  .hp-card-stack { transform: scale(0.9); }
}

@media (prefers-reduced-motion: reduce) {
  .hp-marquee__track,
  .hp-stack-card--front,
  .hp-orb { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
