/* ============================================================
   HelloAI — Homepage Styles (Dark Premium Redesign)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --h-bg: #060918;
  --h-bg-soft: #0c1029;
  --h-surface: rgba(255, 255, 255, 0.04);
  --h-surface-hover: rgba(255, 255, 255, 0.08);
  --h-glass: rgba(255, 255, 255, 0.06);
  --h-glass-border: rgba(255, 255, 255, 0.1);
  --h-text: #e8ecf4;
  --h-text-muted: #8a94a8;
  --h-accent-start: #3b82f6;
  --h-accent-end: #06b6d4;
  --h-accent-purple: #8b5cf6;
  --h-radius: 20px;
  --h-radius-lg: 28px;
  --h-radius-pill: 999px;
  --h-shadow-glow: 0 0 80px rgba(59, 130, 246, 0.15);
  --h-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Page-level overrides for homepage ---------- */
.home-page {
  background: var(--h-bg);
  color: var(--h-text);
}

.home-page main {
  background: transparent;
  padding: 0 0 0;
}

/* ---------- Header override for dark mode ---------- */
.home-page .site-header {
  background: rgba(6, 9, 24, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: saturate(180%) blur(24px);
}

.home-page .brand-word {
  color: #f0f2f8;
}

.home-page .brand-ai {
  background: linear-gradient(135deg, #60a5fa 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-page .site-nav a {
  color: #7b8698;
}

.home-page .site-nav a:hover,
.home-page .site-nav a.active {
  color: #e0e6f0;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Footer override ---------- */
.home-page .site-footer {
  background: rgba(6, 9, 24, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.home-page .footer-row {
  color: #5a6478;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hp-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Animated gradient orbs */
.hp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.hp-hero-orb--a {
  width: 700px;
  height: 700px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.05) 60%, transparent 80%);
  animation: hp-float-a 18s ease-in-out infinite;
}

.hp-hero-orb--b {
  width: 500px;
  height: 500px;
  top: 40px;
  right: -80px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.04) 55%, transparent 80%);
  animation: hp-float-b 22s ease-in-out infinite;
}

.hp-hero-orb--c {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: 35%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, rgba(6, 182, 212, 0.04) 50%, transparent 80%);
  animation: hp-float-c 20s ease-in-out infinite;
}

@keyframes hp-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.05); }
  66% { transform: translate(-20px, -15px) scale(0.97); }
}

@keyframes hp-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.03); }
  66% { transform: translate(25px, -25px) scale(0.96); }
}

@keyframes hp-float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.04); }
}

/* Grid noise overlay for depth */
.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hp-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Tag pill */
.hp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--h-radius-pill);
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  color: #93bbfc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.hp-hero-tag svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.8;
}

/* Headline */
.hp-hero h1 {
  margin: 0;
  font-family: "SF Pro Display", "Sora", "Inter", sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.02;
  color: #f0f4fa;
  text-wrap: balance;
}

.hp-hero h1 .hp-gradient-text {
  background: linear-gradient(135deg, var(--h-accent-start) 0%, var(--h-accent-end) 60%, var(--h-accent-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Subtitle */
.hp-hero-sub {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: #8896ad;
  line-height: 1.6;
  text-wrap: balance;
}

/* CTA buttons */
.hp-hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--h-radius-pill);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--h-transition), box-shadow var(--h-transition), background var(--h-transition);
  text-decoration: none;
}

.hp-btn:hover {
  transform: translateY(-2px);
}

.hp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--h-accent-start), var(--h-accent-purple));
  box-shadow: 0 14px 40px rgba(59, 130, 246, 0.3), 0 4px 12px rgba(139, 92, 246, 0.2);
}

.hp-btn--primary:hover {
  box-shadow: 0 18px 50px rgba(59, 130, 246, 0.4), 0 6px 16px rgba(139, 92, 246, 0.28);
}

.hp-btn--secondary {
  color: #c4cede;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Trust signals */
.hp-hero-trust {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5d6a80;
  font-size: 13px;
  font-weight: 600;
}

.hp-trust-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* ============================================================
   TOOLS SHOWCASE SECTION
   ============================================================ */
.hp-tools {
  position: relative;
  padding: 80px 0 90px;
}

/* Subtle top divider gradient */
.hp-tools::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3), transparent);
}

.hp-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.hp-section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--h-accent-start);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hp-section-title {
  margin: 0;
  font-family: "SF Pro Display", "Sora", "Inter", sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #e4e9f2;
  text-wrap: balance;
}

.hp-section-desc {
  margin: 12px auto 0;
  max-width: 520px;
  color: #6e7b92;
  font-size: 17px;
  line-height: 1.6;
}

/* Tools grid */
.hp-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hp-tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
  border-radius: var(--h-radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--h-glass);
  backdrop-filter: blur(16px);
  text-decoration: none;
  color: inherit;
  transition: transform var(--h-transition), border-color var(--h-transition), box-shadow var(--h-transition), background var(--h-transition);
  overflow: hidden;
  min-height: 200px;
}

/* Gradient accent line at top */
.hp-tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--h-accent-start), var(--h-accent-end));
  opacity: 0;
  transition: opacity var(--h-transition);
  border-radius: 0 0 4px 4px;
}

.hp-tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hp-tool-card:hover::before {
  opacity: 1;
}

.hp-tool-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.15));
}

.hp-tool-icon--directory {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hp-tool-icon--directory svg {
  width: 48px;
  height: 48px;
}

.hp-tool-name {
  margin: 0;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #e0e6f0;
}

.hp-tool-desc {
  margin: 0;
  color: #6e7b92;
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
}

.hp-tool-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--h-accent-start);
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  transition: gap var(--h-transition);
}

.hp-tool-card:hover .hp-tool-arrow {
  gap: 10px;
}

.hp-tool-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--h-transition);
}

.hp-tool-card:hover .hp-tool-arrow svg {
  transform: translateX(3px);
}

.hp-tool-card--directory {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 52%),
    linear-gradient(160deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.08)),
    var(--h-glass);
  border-color: rgba(96, 165, 250, 0.22);
}

.hp-tool-card--directory::before {
  opacity: 1;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
}

.hp-tool-card--directory:hover {
  border-color: rgba(125, 211, 252, 0.42);
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.24), transparent 56%),
    linear-gradient(160deg, rgba(37, 99, 235, 0.18), rgba(6, 182, 212, 0.14)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 64px rgba(34, 211, 238, 0.12), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   VALUE PROPOSITIONS SECTION
   ============================================================ */
.hp-values {
  position: relative;
  padding: 80px 0 90px;
}

.hp-values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.25), transparent);
}

.hp-values-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}

.hp-values-copy {
  padding-right: 20px;
}

.hp-values-copy .hp-section-title {
  text-align: left;
}

.hp-values-copy .hp-section-desc {
  text-align: left;
  margin-left: 0;
}

.hp-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hp-value-card {
  padding: 22px;
  border-radius: var(--h-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--h-glass);
  backdrop-filter: blur(12px);
  transition: border-color var(--h-transition), background var(--h-transition);
}

.hp-value-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hp-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hp-value-icon svg {
  width: 20px;
  height: 20px;
  color: var(--h-accent-start);
}

.hp-value-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #d8dfeb;
}

.hp-value-card p {
  margin: 0;
  color: #6e7b92;
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */
.hp-workflow {
  position: relative;
  padding: 80px 0 90px;
}

.hp-workflow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), rgba(59, 130, 246, 0.25), transparent);
}

.hp-workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}

/* Connecting line behind steps */
.hp-workflow-steps::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, var(--h-accent-start), var(--h-accent-end), var(--h-accent-purple));
  opacity: 0.3;
  z-index: 0;
}

.hp-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hp-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--h-accent-start);
  backdrop-filter: blur(8px);
}

.hp-step h3 {
  margin: 0 0 8px;
  font-family: "Sora", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #d8dfeb;
}

.hp-step p {
  margin: 0 auto;
  max-width: 260px;
  color: #6e7b92;
  font-size: 14px;
  line-height: 1.55;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.hp-cta {
  position: relative;
  padding: 0 0 100px;
}

.hp-cta-band {
  position: relative;
  padding: 52px 48px;
  border-radius: var(--h-radius-lg);
  overflow: hidden;
  text-align: center;
}

/* Gradient background */
.hp-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e3a7a 0%, #2563eb 35%, #7c3aed 70%, #3b82f6 100%);
  opacity: 0.9;
  z-index: 0;
}

/* Mesh texture */
.hp-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.hp-cta-content {
  position: relative;
  z-index: 1;
}

.hp-cta-band h2 {
  margin: 0;
  font-family: "SF Pro Display", "Sora", "Inter", sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #ffffff;
  line-height: 1.08;
}

.hp-cta-band p {
  margin: 16px auto 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.55;
}

.hp-cta-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hp-cta-band .hp-btn--primary {
  background: #ffffff;
  color: #1e40af;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.hp-cta-band .hp-btn--primary:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hp-cta-band .hp-btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-cta-band .hp-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.hp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered children */
.hp-reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-reveal-stagger.hp-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.hp-reveal-stagger.hp-visible > *:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Hero entrance */
.hp-hero-inner > * {
  opacity: 0;
  transform: translateY(20px);
  animation: hp-hero-enter 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hp-hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hp-hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hp-hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hp-hero-inner > *:nth-child(4) { animation-delay: 0.4s; }
.hp-hero-inner > *:nth-child(5) { animation-delay: 0.5s; }

@keyframes hp-hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hp-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-values-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hp-values-copy {
    padding-right: 0;
    text-align: center;
  }

  .hp-values-copy .hp-section-title,
  .hp-values-copy .hp-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .hp-hero {
    padding: 60px 0 50px;
    min-height: auto;
  }

  .hp-hero h1 {
    font-size: clamp(36px, 10vw, 56px);
    letter-spacing: -1.5px;
  }

  .hp-hero-orb--a {
    width: 400px;
    height: 400px;
  }

  .hp-hero-orb--b {
    width: 300px;
    height: 300px;
  }

  .hp-hero-orb--c {
    width: 250px;
    height: 250px;
  }

  .hp-tools,
  .hp-values,
  .hp-workflow {
    padding: 50px 0 60px;
  }

  .hp-tools-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hp-tool-card {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
  }

  .hp-tool-card .hp-tool-desc {
    display: none;
  }

  .hp-tool-card .hp-tool-arrow {
    margin-top: 0;
    margin-left: auto;
  }

  .hp-values-grid {
    grid-template-columns: 1fr;
  }

  .hp-workflow-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hp-workflow-steps::before {
    display: none;
  }

  .hp-cta-band {
    padding: 36px 24px;
  }

  .hp-hero-trust {
    gap: 16px;
  }

  .hp-cta {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .hp-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hp-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-hero-orb {
    animation: none !important;
  }

  .hp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hp-reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hp-hero-inner > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hp-tool-card,
  .hp-btn {
    transition: none;
  }
}
