/* ==========================================================================
   FOOTER — 2-column variant (brand + newsletter only) for the home page
   ========================================================================== */
@media (min-width: 768px) {
  .footer-grid.footer-grid--2 {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) !important;
    gap: 5rem !important;
    max-width: 72rem;
    margin-inline: auto;
    align-items: center;
  }
  .footer-grid.footer-grid--2 .footer-about {
    max-width: 32rem !important;
  }
}

/* ==========================================================================
   NAV — hide tiny English labels above Arabic ones (replaced by the
   real language toggle, so the dual labelling is no longer needed).
   ========================================================================== */
.nav-label-en,
.mobile-item-en,
.btn-access-en { display: none !important; }

/* ==========================================================================
   NAV — language toggle (sits next to the theme toggle)
   ========================================================================== */
.lang-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  cursor: pointer;
  transition: background 0.2s var(--ease-smooth), transform 0.18s var(--ease-smooth);
}
.lang-toggle:hover {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  transform: translateY(-1px);
}

/* ==========================================================================
   EXPERTS — similarity score ring (shown in the score cell when ranking)
   ========================================================================== */
.similarity {
  display: flex; flex-direction: column; align-items: center; gap: 0.125rem;
  position: relative;
}
.similarity-ring {
  width: 3rem; height: 3rem;
  transform: rotate(-90deg);
}
.similarity-ring .bg {
  fill: none;
  stroke: color-mix(in srgb, var(--foreground) 10%, transparent);
  stroke-width: 3;
}
.similarity-ring .fg {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.6s ease;
}
.similarity[data-tier="high"] .similarity-ring .fg { stroke: var(--primary); }
.similarity[data-tier="mid"]  .similarity-ring .fg { stroke: var(--accent); }
.similarity[data-tier="low"]  .similarity-ring .fg { stroke: color-mix(in srgb, var(--foreground) 45%, transparent); }
.similarity-pct {
  position: absolute; top: 0.625rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem; font-weight: 800;
  color: var(--foreground);
}
.similarity[data-tier="high"] .similarity-pct { color: var(--primary); }
.similarity[data-tier="mid"]  .similarity-pct { color: var(--accent); }
.similarity-lbl {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  margin-top: -0.125rem;
}

/* ==========================================================================
   NAV — logged-in access button (pill, teal, with avatar icon)
   ========================================================================== */
.btn-access.btn-access--logged-in {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 8px 22px -10px rgba(var(--primary-rgb), 0.55);
  transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s var(--ease-smooth);
}
.btn-access.btn-access--logged-in:hover {
  transform: translateY(-1px);
  opacity: 1;
  box-shadow: 0 12px 28px -10px rgba(var(--primary-rgb), 0.7);
}
.btn-access.btn-access--logged-in .btn-access-ar {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-access.btn-access--logged-in .btn-access-avatar {
  width: 1.25rem; height: 1.25rem;
  padding: 0.2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-foreground) 18%, transparent);
  flex-shrink: 0;
}

/* ==========================================================================
   AUTH — role selector + expert ID display modal
   ========================================================================== */
.role-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.role-option { cursor: pointer; }
.role-option input { position: absolute; opacity: 0; pointer-events: none; }
.role-option-card {
  display: flex; flex-direction: column; gap: 0.25rem;
  align-items: center; justify-content: center;
  padding: 1.125rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  transition: all 0.18s var(--ease-smooth);
  text-align: center;
}
.role-option:hover .role-option-card {
  border-color: rgba(var(--primary-rgb), 0.4);
}
.role-option input:checked + .role-option-card {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 8%, var(--card));
  box-shadow: 0 8px 24px -10px rgba(var(--primary-rgb), 0.4);
}
.role-option-title {
  font-weight: 700; font-size: 1rem; color: var(--foreground);
}
.role-option-sub {
  font-size: 0.75rem; color: var(--muted-foreground);
}

/* Expert ID success modal */
.expert-modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in srgb, var(--background) 60%, rgba(0,0,0,0.45));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  animation: imm-fade-in 0.25s ease-out;
}
@keyframes imm-fade-in { from { opacity: 0; } to { opacity: 1; } }
.expert-modal {
  position: relative;
  width: 100%; max-width: 28rem;
  background: var(--background);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 30px 80px -20px rgba(var(--primary-rgb), 0.45);
  text-align: center;
  animation: imm-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes imm-pop {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.expert-modal h3 {
  font-size: 1.375rem; font-weight: 800;
  color: var(--foreground); margin-bottom: 0.5rem;
}
.expert-modal p {
  color: var(--muted-foreground);
  font-size: 0.9375rem; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.expert-id-box {
  display: flex; align-items: stretch;
  background: color-mix(in srgb, var(--primary) 10%, var(--card));
  border: 2px dashed var(--primary);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  gap: 0.625rem;
}
.expert-id-text {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-weight: 800; font-size: 1.125rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  display: flex; align-items: center; justify-content: center;
}
.expert-id-copy {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.5rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem; font-weight: 700;
  cursor: pointer;
}
.expert-id-copy:hover { opacity: 0.9; }
.expert-id-copy.copied { background: #16a34a; }
.expert-modal-warn {
  font-size: 0.8125rem;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  margin-bottom: 1.25rem;
}
.expert-modal-btn {
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 700; font-size: 1rem;
  padding: 0.875rem; border-radius: 0.625rem;
  cursor: pointer;
}
.expert-modal-btn:hover { opacity: 0.92; }

/* ==========================================================================
   MANIFESTO CTA — enlarged for the immersive home
   ========================================================================== */
.section-manifesto .manifesto-cta-card {
  padding: 3rem 4.5rem !important;
  gap: 1.5rem !important;
  min-width: min(92vw, 32rem);
  border-radius: 1.5rem !important;
}
.section-manifesto .manifesto-cta-card h3 {
  font-size: 1.75rem !important;
  line-height: 1.3 !important;
}
.section-manifesto .manifesto-cta-card p {
  font-size: 1.0625rem !important;
}
@media (min-width: 768px) {
  .section-manifesto .manifesto-cta-card {
    padding: 3.5rem 5.5rem !important;
    min-width: 36rem;
  }
  .section-manifesto .manifesto-cta-card h3 {
    font-size: 2rem !important;
  }
}

/* ==========================================================================
   FEATURE-GRID — 3-column variant (centered) for the immersive home
   ========================================================================== */
.feature-grid.feature-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 58rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (min-width: 1024px) {
  .feature-grid.feature-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 58rem !important;
  }
}

/* ==========================================================================
   IMMERSIVE HERO — Scroll-driven cinematic reveal
   Adapted from "Remix of رحلة الخبير الرقمي" / ImmersiveHero.tsx
   Requires styles.css to be loaded first.
   ========================================================================== */

.immersive {
  position: relative;
  width: 100%;
  background: var(--background);
  color: var(--foreground);
  --p: 0;          /* overall scroll progress 0..1 */
  --p-open: 1;     /* 1 → opening visible, 0 → faded */
  --p-explain: 0;  /* 0 → hidden, 1 → fully visible */
  --p-cta: 0;      /* 0 → hidden, 1 → fully visible */
  --p-hint: 1;     /* 1 at top, 0 once scrolling starts */
}

/* Sentinel that drives the scroll length (≈ 480vh) */
.immersive-track { height: 480vh; }

/* Sticky stage that pins the viewport */
.immersive-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--background);
}

/* ---------- Atmosphere layers ---------- */
.imm-atmosphere {
  position: absolute; inset: 0; pointer-events: none;
  transform: scale(calc(1 + 0.22 * var(--p)));
  transition: transform 0.05s linear;
}
.imm-atmosphere::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(var(--primary-rgb), 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(var(--accent-rgb), 0.08) 0%, transparent 56%);
}
.imm-atmosphere::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--background) 0%, transparent 33%),
    linear-gradient(to top, var(--background) 0%, transparent 50%);
}

.imm-grid {
  position: absolute; inset: 0; pointer-events: none;
  opacity: calc(0.22 + 0.28 * var(--p));
  transform: scale(calc(1 + 0.6 * var(--p)));
  background-image:
    linear-gradient(rgba(var(--primary-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 52%, black 22%, transparent 78%);
          mask-image: radial-gradient(ellipse at 50% 52%, black 22%, transparent 78%);
}

.imm-aura-top, .imm-aura-bottom {
  position: absolute; left: 0; right: 0; pointer-events: none;
  filter: blur(48px);
}
.imm-aura-top {
  top: 18%; height: 30%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.08), rgba(var(--primary-rgb), 0.03), transparent);
}
.imm-aura-bottom {
  bottom: 12%; height: 28%;
  background: linear-gradient(to top, rgba(var(--accent-rgb), 0.08), rgba(var(--primary-rgb), 0.05), transparent);
}

/* ---------- Particles ---------- */
.imm-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.imm-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 0 14px rgba(var(--primary-rgb), 0.55);
  animation: imm-particle-float var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes imm-particle-float {
  0%, 100% { transform: translateY(0); opacity: 0.12; }
  50%      { transform: translateY(-20px); opacity: 0.6; }
}

/* ---------- Logo (always present, gentle glow pulse) ---------- */
.imm-logo {
  position: absolute;
  left: 50%; top: 50%;
  width: min(56vw, 78vh);
  height: min(56vw, 78vh);
  max-width: 680px; max-height: 680px;
  min-width: 320px; min-height: 320px;
  transform: translate(-50%, -50%) scale(calc(1 + 0.08 * var(--p)));
  pointer-events: none;
  z-index: 15;
  filter: drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.32));
  animation: imm-logo-glow 6.4s ease-in-out infinite;
}
.imm-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
html.dark .imm-logo img { content: url('assets/mujassd-logo-dark.png'); }
@keyframes imm-logo-glow {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.32)); }
  50%      { filter: drop-shadow(0 0 90px rgba(var(--primary-rgb), 0.55)); }
}

/* ---------- Phase A: opening badges + spokes ---------- */
.imm-opening {
  position: absolute; inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: var(--p-open);
  transform: scale(calc(1 + 0.08 * (1 - var(--p-open))));
}
.imm-spokes {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 10;            /* behind the logo (z:15) */
  pointer-events: none;
  opacity: var(--p-open); /* fade with the opening phase */
}
.imm-badge {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  z-index: 31;
}
.imm-badge-circle {
  position: relative;
  width: 6rem; height: 6rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  background: rgba(var(--background-rgb, 255, 255, 255), 0.6);
  background-color: color-mix(in srgb, var(--background) 80%, transparent);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px -15px rgba(var(--primary-rgb), 0.45);
  color: var(--primary);
}
.imm-badge-circle::before {
  content: "";
  position: absolute; inset: -1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.35), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.imm-badge-circle::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(var(--primary-rgb), 0.4);
}
.imm-badge-circle svg {
  width: 2.5rem; height: 2.5rem;
  stroke-width: 1.6;
}
.imm-badge-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--foreground);
  opacity: 0.85;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .imm-badge-circle { width: 7rem; height: 7rem; }
  .imm-badge-circle svg { width: 3rem; height: 3rem; }
  .imm-badge-label { font-size: 1rem; }
}

/* ---------- Phase B: explanation layer ---------- */
.imm-explain {
  position: absolute; inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: var(--p-explain);
}
.imm-explain-title {
  position: absolute;
  top: 14%; left: 0; right: 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.imm-explain-title h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .imm-explain-title h2 { font-size: 1.875rem; }
}
.imm-explain-title h2 .accent { color: var(--primary); }
.imm-explain-title .underline {
  margin-top: 0.75rem;
  height: 1px; width: 4rem;
  background: linear-gradient(to right, transparent, rgba(var(--primary-rgb), 0.6), transparent);
}

.imm-connectors {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.imm-card {
  position: absolute;
  width: min(78vw, 280px);
  transform: translate(-50%, -50%);
}
@media (min-width: 1280px) {
  .imm-card { width: 300px; }
}
.imm-card-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  background-color: color-mix(in srgb, var(--background) 75%, transparent);
  padding: 1rem 1.25rem;
  -webkit-backdrop-filter: blur(28px);
          backdrop-filter: blur(28px);
  box-shadow: 0 20px 60px -20px rgba(var(--primary-rgb), 0.35);
}
.imm-card-inner::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, color-mix(in srgb, var(--background) 70%, transparent), rgba(var(--primary-rgb), 0.05));
}
.imm-card-inner::after {
  content: "";
  position: absolute; left: 1.25rem; right: 1.25rem; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--primary-rgb), 0.6), transparent);
}
.imm-card-kicker {
  position: relative;
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.imm-card-title {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
@media (min-width: 768px) { .imm-card-title { font-size: 1rem; } }
.imm-card-body {
  position: relative;
  font-size: 0.75rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--foreground) 72%, transparent);
}
@media (min-width: 768px) { .imm-card-body { font-size: 0.8125rem; } }

.imm-card[data-side="left"]   .imm-card-inner { text-align: right; }
.imm-card[data-side="right"]  .imm-card-inner { text-align: left; }
.imm-card[data-side="bottom"] .imm-card-inner { text-align: center; }

/* ---------- Phase C: final CTA ---------- */
.imm-cta {
  position: absolute; inset: 0;
  z-index: 20;
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.25rem;
  opacity: var(--p-cta);
  transform: translateY(calc(80px * (1 - var(--p-cta)))) scale(calc(0.94 + 0.06 * var(--p-cta)));
  pointer-events: var(--cta-events, none);
}
.imm-cta-card {
  position: relative;
  width: min(92vw, 780px);
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  background-color: color-mix(in srgb, var(--background) 80%, transparent);
  -webkit-backdrop-filter: blur(28px);
          backdrop-filter: blur(28px);
  padding: 3rem 2rem;
  box-shadow: 0 30px 90px -25px rgba(var(--primary-rgb), 0.45);
}
@media (min-width: 768px) {
  .imm-cta-card { padding: 4rem 3.5rem; }
}
.imm-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(var(--accent-rgb), 0.12) 0%, transparent 60%);
}
.imm-cta-card::after {
  content: "";
  position: absolute; left: 2.5rem; right: 2.5rem; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(var(--primary-rgb), 0.7), transparent);
}
.imm-cta-inner {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.75rem;
  text-align: center;
}
.imm-cta-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--foreground);
  line-height: 1.15;
}
@media (min-width: 768px) {
  .imm-cta-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .imm-cta-title { font-size: 3.5rem; }
}
.imm-cta-title .accent { color: var(--primary); }
.imm-cta-sub {
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
}
@media (min-width: 768px) { .imm-cta-sub { font-size: 1.125rem; } }

.imm-cta-button {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.625rem;
  height: 3.5rem; padding: 0 3rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 18px 55px -12px var(--primary);
  transition: transform 0.3s, background 0.3s;
}
.imm-cta-button:hover { transform: scale(1.04); background: color-mix(in srgb, var(--primary) 90%, black); }
@media (min-width: 768px) {
  .imm-cta-button { height: 4rem; padding: 0 3.5rem; font-size: 1.125rem; }
}
.imm-cta-button svg { width: 1.25rem; height: 1.25rem; }

/* halo behind button */
.imm-cta-button-wrap {
  position: relative;
}
.imm-cta-button-wrap::before {
  content: "";
  position: absolute; inset: -0.75rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.55), transparent 70%);
  filter: blur(24px);
  z-index: -1;
}

/* ---------- Vignettes ---------- */
.imm-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 200px var(--background),
    inset 0 0 100px rgba(var(--primary-rgb), 0.05);
}
.imm-bottom-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 8rem;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--background));
}

/* ---------- Scroll hint ---------- */
.imm-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: color-mix(in srgb, var(--foreground) 60%, transparent);
  z-index: 40;
  opacity: var(--p-hint);
  transition: opacity 0.2s linear;
}
.imm-hint span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}
.imm-hint i {
  display: block; width: 1px; height: 2rem;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: imm-hint-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes imm-hint-pulse {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .immersive-track { height: 100vh; }
  .immersive-stage { position: static; height: auto; min-height: 100vh; }
  .imm-logo, .imm-particle, .imm-hint i { animation: none; }
  .imm-opening { opacity: 0; display: none; }
  .imm-explain { opacity: 0; display: none; }
  .imm-cta { opacity: 1; transform: none; pointer-events: auto; position: relative; padding: 6rem 1.25rem; }
}
