/* ═══════════════════════════════════════════════════════════════
   HOPPI NAVBAR — Composant réutilisable
   Palette: charcoal #28536B, air #7EA8BE, peach #F7E3AF,
            pink #EEB1D5, latte #FFF5E1
   ═══════════════════════════════════════════════════════════════ */

:root {
  --h-charcoal: #28536B;
  --h-air: #7EA8BE;
  --h-peach: #F7E3AF;
  --h-pink: #EEB1D5;
  --h-pink-dark: #e69abf;
  --h-latte: #FFF5E1;
  --h-ink: #1B2B3A;
  --h-ink-soft: #425568;
  --h-rule: #E8ECEF;
  --h-white: #ffffff;
  --h-display: 'Baloo 2', 'Baloo', system-ui, sans-serif;
  --h-body: 'Inter', -apple-system, sans-serif;
}

/* Masquer la navbar Webflow historique quand la nouvelle est présente */
body:has(.h-nav) > .layout > .navbar { display: none !important; }

/* ─────────── Navbar wrapper ─────────── */
.h-nav {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 1000;
  font-family: var(--h-body);
  pointer-events: none;
}
.h-nav-inner {
  pointer-events: auto;
  background: white;
  border-radius: 100px;
  padding: 10px 12px 10px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(40,83,107,0.08),
              inset 0 0 0 1px rgba(40,83,107,0.04);
  transition: box-shadow 0.25s ease;
}
.h-nav-inner:hover {
  box-shadow: 0 8px 28px rgba(40,83,107,0.1),
              inset 0 0 0 1px rgba(40,83,107,0.06);
}

/* ─────────── Logo ─────────── */
.h-nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  height: 40px;
  border-radius: 50%;
}
.h-nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
  transform-origin: center;
}
.h-nav-logo:hover img {
  transform: scale(1.08) rotate(-6deg);
}
.h-nav-logo:active img {
  transform: scale(0.94) rotate(0deg);
  transition-duration: 0.15s;
}
.h-nav-logo:focus-visible {
  outline: 2px solid var(--h-pink);
  outline-offset: 4px;
}

/* ─────────── Menu links ─────────── */
.h-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-start;
  padding-left: 16px;
}
.h-nav-link {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--h-charcoal);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.005em;
}
.h-nav-link:hover { background: var(--h-latte); }
.h-nav-link.active { background: var(--h-latte); }
.h-nav-link svg {
  width: 10px; height: 10px;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.h-nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ─────────── Dropdowns ─────────── */
.h-nav-item {
  position: relative;
}
.h-nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 260px;
  background: white;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 12px 32px rgba(40,83,107,0.12),
              inset 0 0 0 1px rgba(40,83,107,0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.h-nav-item.open .h-nav-dropdown,
.h-nav-item:hover .h-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* Zone invisible pour garder le hover continu entre le bouton et le dropdown */
.h-nav-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 20px;
}
.h-nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: var(--h-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--h-charcoal);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.h-nav-dropdown a:hover { background: var(--h-latte); }
.h-nav-dropdown a .emoji {
  font-size: 16px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* ─────────── Right side CTAs ─────────── */
.h-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.h-nav-login {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--h-charcoal);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.h-nav-login:hover { background: var(--h-latte); }

.h-nav-signup {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--h-charcoal);
  background: var(--h-pink);
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.h-nav-signup:hover {
  background: var(--h-pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(238,177,213,0.4);
}

/* ─────────── Burger ─────────── */
.h-nav-burger {
  display: none;
  background: var(--h-charcoal);
  border: none;
  width: 42px; height: 42px;
  border-radius: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.h-nav-burger:hover { background: var(--h-ink); }
.h-nav-burger svg { width: 18px; height: 18px; color: white; }

/* ─────────── Mobile menu ─────────── */
.h-nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--h-latte);
  z-index: 999;
  padding: 96px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.h-nav-mobile.open {
  opacity: 1;
  visibility: visible;
}
.h-nav-mobile-menu {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.h-nav-mobile-link {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--h-charcoal);
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 16px;
  transition: background 0.2s ease;
}
.h-nav-mobile-link:hover,
.h-nav-mobile-link:active {
  background: white;
}
.h-nav-mobile-ctas {
  display: flex; flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px dashed rgba(40,83,107,0.2);
}
.h-nav-mobile-login,
.h-nav-mobile-signup {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.h-nav-mobile-login {
  background: white;
  color: var(--h-charcoal);
  border: 1px solid var(--h-rule);
}
.h-nav-mobile-signup {
  background: var(--h-charcoal);
  color: white;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 980px) {
  .h-nav-menu { display: none; }
  .h-nav-login { display: none; }
  .h-nav-inner {
    padding: 10px 14px 10px 20px;
    justify-content: space-between;
  }
  .h-nav-burger { display: flex; }
  .h-nav-mobile { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   MODAL S'INSCRIRE
   ═══════════════════════════════════════════════════════════════ */

.h-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.h-modal.open {
  opacity: 1;
  visibility: visible;
}
.h-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,43,58,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.h-modal-card {
  position: relative;
  background: white;
  border-radius: 28px;
  padding: 40px 36px 36px;
  max-width: 560px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.h-modal.open .h-modal-card {
  transform: translateY(0) scale(1);
}
.h-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  background: var(--h-latte);
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--h-charcoal);
  transition: background 0.2s ease;
  font-size: 16px;
}
.h-modal-close:hover { background: var(--h-peach); }
.h-modal-kicker {
  font-family: var(--h-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--h-pink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.h-modal-title {
  font-family: var(--h-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 32px);
  line-height: 1.1;
  color: var(--h-charcoal);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.h-modal-lede {
  font-family: var(--h-body);
  font-size: 15px;
  color: var(--h-ink-soft);
  line-height: 1.5;
  margin: 0 0 24px;
}

.h-modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.h-modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--h-latte);
  border: 1.5px solid transparent;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.h-modal-option:hover {
  border-color: var(--h-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(40,83,107,0.08);
}
.h-modal-option.opt-pink { background: #fbecf4; }
.h-modal-option.opt-peach { background: #fef3de; }
.h-modal-option.opt-air { background: #eef4f8; }
.h-modal-option-emoji {
  width: 48px; height: 48px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(40,83,107,0.06);
}
.h-modal-option-body {
  flex: 1;
  min-width: 0;
}
.h-modal-option-name {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--h-charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.h-modal-option-desc {
  font-family: var(--h-body);
  font-size: 13px;
  color: var(--h-ink-soft);
  margin: 0;
  line-height: 1.4;
}
.h-modal-option-arrow {
  font-family: var(--h-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--h-charcoal);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.h-modal-option:hover .h-modal-option-arrow { transform: translateX(4px); }

.h-modal-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--h-rule);
  font-family: var(--h-body);
  font-size: 13px;
  color: var(--h-ink-soft);
}
.h-modal-foot a {
  color: var(--h-charcoal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--h-charcoal);
  padding-bottom: 1px;
  transition: opacity 0.15s ease;
}
.h-modal-foot a:hover { opacity: 0.7; }

@media (max-width: 560px) {
  .h-modal-card { padding: 32px 24px 24px; border-radius: 24px; }
  .h-modal-option { padding: 14px 16px; gap: 12px; }
  .h-modal-option-emoji { width: 42px; height: 42px; font-size: 20px; }
}

/* Block scroll when modal/mobile open */
body.h-no-scroll { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   CTA reusable — animated mesh gradient
   (fullwidth-container.radius-pink)
   ═══════════════════════════════════════════════════════════════ */
.fullwidth-container.radius-pink {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fde5ef;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .fullwidth-container.radius-pink { margin-bottom: 24px; }
}

/* Prevent horizontal scroll on hero heading (caused by rotating-word widths) */
.heading-hero, .heading-hero.load-1st { overflow: hidden; overflow-x: clip; }

/* Article last-updated timestamp (E-E-A-T signal) */
.article-last-updated {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  color: var(--h-ink-soft, #647485);
  margin: 8px 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-last-updated::before {
  content: "🕐";
  font-size: 14px;
}
.article-last-updated time { font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   Fix Webflow gradients that had hard color stops
   → convert to smooth gradients 0% → 100%
   ═══════════════════════════════════════════════════════════════ */
.fullwidth-container.bg-callout {
  background-image: linear-gradient(180deg, var(--hoppi-light-yellow) 0%, var(--hoppi-pink) 100%) !important;
}
.module.super {
  background-image: linear-gradient(180deg, var(--hoppi-peach) 0%, var(--hoppi-pink) 100%) !important;
}
.module.candidature {
  background-image: linear-gradient(101deg, var(--hoppi-peach) 0%, var(--hoppi-pink) 100%) !important;
}
.module.candidature.inverted {
  background-image: linear-gradient(333deg, var(--hoppi-very-light-blue) 0%, var(--hoppi-light-yellow) 100%) !important;
}

/* ═══════════════════════════════════════════════════════════════
   HERO (bg-callout.first) — same palette, now drifting
   Preserves linear-gradient base, adds soft radial blobs that move
   ═══════════════════════════════════════════════════════════════ */
.fullwidth-container.bg-callout.first {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.fullwidth-container.bg-callout.first > * { position: relative; z-index: 1; }
.fullwidth-container.bg-callout.first::before,
.fullwidth-container.bg-callout.first::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  filter: blur(56px);
  will-change: transform;
  animation: hoppi-hero-drift 18s ease-in-out infinite alternate;
}
.fullwidth-container.bg-callout.first::before {
  background:
    radial-gradient(closest-side at 22% 25%, var(--hoppi-pink) 0%, transparent 60%),
    radial-gradient(closest-side at 78% 68%, var(--hoppi-peach) 0%, transparent 60%),
    radial-gradient(closest-side at 50% 95%, var(--hoppi-pink) 0%, transparent 55%);
  opacity: 0.85;
}
.fullwidth-container.bg-callout.first::after {
  background:
    radial-gradient(closest-side at 70% 20%, var(--hoppi-pink) 0%, transparent 55%),
    radial-gradient(closest-side at 20% 75%, var(--hoppi-peach) 0%, transparent 55%),
    radial-gradient(closest-side at 50% 50%, var(--hoppi-light-yellow) 0%, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.75;
  animation-duration: 26s;
  animation-delay: -7s;
  animation-direction: alternate-reverse;
}
@keyframes hoppi-hero-drift {
  0%   { transform: translate3d(-7%, -5%, 0) rotate(0deg)   scale(1.15); }
  25%  { transform: translate3d( 6%,  5%, 0) rotate(70deg)  scale(1.28); }
  50%  { transform: translate3d( 3%, -8%, 0) rotate(170deg) scale(1.20); }
  75%  { transform: translate3d(-6%,  7%, 0) rotate(250deg) scale(1.26); }
  100% { transform: translate3d( 4%, -3%, 0) rotate(330deg) scale(1.22); }
}
@media (prefers-reduced-motion: reduce) {
  .fullwidth-container.bg-callout.first::before,
  .fullwidth-container.bg-callout.first::after { animation: none; }
}

/* App Store / Google Play badges — hover animation (same as hoppi logo) */
.link-block-2 img.image-5 {
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
  transform-origin: center;
  will-change: transform;
}
.link-block-2:hover img.image-5 { transform: scale(1.08) rotate(-4deg); }
.link-block-2:active img.image-5 { transform: scale(0.94) rotate(0deg); transition-duration: 0.15s; }
@media (prefers-reduced-motion: reduce) {
  .link-block-2 img.image-5 { transition: none; }
  .link-block-2:hover img.image-5,
  .link-block-2:active img.image-5 { transform: none; }
}

/* Reduce excessive spacing on mobile for .module.more-padding sections */
@media (max-width: 720px) {
  .module.more-padding { padding: 48px 24px !important; }
  .margin-top { margin-top: 28px !important; }
  .margin-top-small { margin-top: 20px !important; }
  .module .center.margin-top .description-hero { margin-bottom: 20px; }
}
@media (max-width: 479px) {
  .module.more-padding { padding: 36px 20px !important; }
  .margin-top { margin-top: 20px !important; }
}

/* Typewriter caret on the hero rotating word */
#rotating-word.typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: currentColor;
  margin-left: 4px;
  vertical-align: -0.08em;
  animation: hoppi-caret-blink 0.85s steps(2) infinite;
  border-radius: 1px;
}
@keyframes hoppi-caret-blink { 0%,50% { opacity: 0.9; } 50.01%,100% { opacity: 0; } }

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU — glass morphism + animated mesh gradient
   ═══════════════════════════════════════════════════════════════ */
.h-nav-mobile {
  background: #fff5e1;
  isolation: isolate;
  overflow: hidden auto;
}
.h-nav-mobile::before,
.h-nav-mobile::after {
  content: "";
  position: fixed;
  inset: -25%;
  pointer-events: none;
  filter: blur(64px);
  will-change: transform;
  animation: hoppi-mesh-drift 22s ease-in-out infinite alternate;
  z-index: -1;
}
.h-nav-mobile::before {
  background:
    radial-gradient(closest-side at 22% 22%, #ffc9e4 0%, transparent 62%),
    radial-gradient(closest-side at 78% 55%, #ffe0b0 0%, transparent 62%),
    radial-gradient(closest-side at 50% 90%, #fbecf4 0%, transparent 55%);
  opacity: 0.85;
}
.h-nav-mobile::after {
  background:
    radial-gradient(closest-side at 70% 15%, #f7e3af 0%, transparent 58%),
    radial-gradient(closest-side at 18% 72%, #ffb5dc 0%, transparent 58%),
    radial-gradient(closest-side at 50% 45%, #fff2d0 0%, transparent 52%);
  mix-blend-mode: screen;
  opacity: 0.8;
  animation-duration: 28s;
  animation-delay: -8s;
  animation-direction: alternate-reverse;
}
/* Links as glass pills */
.h-nav-mobile-link {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 3px rgba(40, 83, 107, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.h-nav-mobile-link:hover,
.h-nav-mobile-link:active {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
/* Divider above CTAs */
.h-nav-mobile-ctas { border-top-color: rgba(40, 83, 107, 0.12); }
/* Login pill — glass outline */
.h-nav-mobile-login {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════════════
   MODERN BUTTON HOVER — applies to all .button variants site-wide
   Shine sweep + lift + soft pink glow
   ═══════════════════════════════════════════════════════════════ */
.button {
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s cubic-bezier(.22, 1, .36, 1),
    background-color 0.35s ease,
    color 0.35s ease !important;
  box-shadow: 0 6px 18px rgba(40, 83, 107, 0.14);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
  z-index: 0;
}
.button > * { position: relative; z-index: 1; }
.button:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 14px 32px rgba(238, 177, 213, 0.45),
    0 4px 10px rgba(40, 83, 107, 0.12) !important;
}
.button:hover::before { transform: translateX(110%); }
.button:active {
  transform: translateY(0) !important;
  transition-duration: 0.1s !important;
  box-shadow: 0 4px 12px rgba(40, 83, 107, 0.15) !important;
}
/* Outline / ghost variants — lighter glow */
.button.button-black-outline:hover,
.button-large-outline:hover,
.button-small-outline:hover {
  box-shadow: 0 10px 24px rgba(40, 83, 107, 0.18) !important;
}
@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
.fullwidth-container.radius-pink > * { position: relative; z-index: 2; }
.fullwidth-container.radius-pink::before,
.fullwidth-container.radius-pink::after {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  filter: blur(48px);
  will-change: transform;
  animation: hoppi-mesh-drift 18s ease-in-out infinite alternate;
}
.fullwidth-container.radius-pink::before {
  z-index: 0;
  background:
    radial-gradient(closest-side at 25% 30%, #ff8fc4 0%, transparent 65%),
    radial-gradient(closest-side at 80% 70%, #f7c97a 0%, transparent 65%),
    radial-gradient(closest-side at 60% 15%, #ffe0b0 0%, transparent 60%);
  opacity: 0.95;
}
.fullwidth-container.radius-pink::after {
  z-index: 1;
  background:
    radial-gradient(closest-side at 70% 30%, #ffb5dc 0%, transparent 65%),
    radial-gradient(closest-side at 20% 75%, #ff9ec9 0%, transparent 65%),
    radial-gradient(closest-side at 55% 55%, #fff2d0 0%, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.85;
  animation-duration: 26s;
  animation-delay: -7s;
  animation-direction: alternate-reverse;
}
@keyframes hoppi-mesh-drift {
  0%   { transform: translate3d(-8%, -6%, 0) rotate(0deg)   scale(1.15); }
  25%  { transform: translate3d( 6%,  4%, 0) rotate(70deg)  scale(1.30); }
  50%  { transform: translate3d( 3%, -9%, 0) rotate(170deg) scale(1.20); }
  75%  { transform: translate3d(-7%,  8%, 0) rotate(250deg) scale(1.28); }
  100% { transform: translate3d( 4%, -3%, 0) rotate(330deg) scale(1.22); }
}
@media (prefers-reduced-motion: reduce) {
  .fullwidth-container.radius-pink::before,
  .fullwidth-container.radius-pink::after { animation: none; }
}
