/* ============================================================
   animations.css — Innopeptide Motion Design
   ============================================================ */

/* ── RESPECT USER PREFERENCE ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   KEYFRAMES LIBRARY
   ============================================================ */

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeftFade {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRightFade {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleFade {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes ripple {
  0%   { transform: scale(0); opacity: .4; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseRing {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.8);  opacity: 0; }
}
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0   rgba(60,181,74,0); }
  50%       { box-shadow: 0 0 16px 3px rgba(60,181,74,.35); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(.3); }
  50%  { opacity: 1; transform: scale(1.05); }
  70%  { transform: scale(.95); }
  100% { transform: scale(1); }
}
@keyframes slideDownOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  0%, 100% { border-color: var(--green); }
  50%       { border-color: transparent; }
}

/* ============================================================
   HERO SECTION — staggered entrance
   ============================================================ */
.hero-text-inner > * {
  opacity: 0;
  animation: slideUpFade .5s cubic-bezier(.22,1,.36,1) both;
}
.hero-text-inner .section-tag  { animation-delay: .05s; }
.hero-text-inner h1             { animation-delay: .10s; }
.hero-text-inner p              { animation-delay: .20s; }
.hero-text-inner .hero-btns     { animation-delay: .30s; }

/* Hero image — float in from right */
.hero-img-panel {
  animation: slideRightFade .9s cubic-bezier(.22,1,.36,1) .2s forwards;
}

/* About page hero */
.hero-about-inner > * {
  opacity: 0;
  animation: slideUpFade .5s cubic-bezier(.22,1,.36,1) both;
}
.hero-about-inner .section-tag { animation-delay: .08s; }
.hero-about-inner h1            { animation-delay: .2s; }
.hero-about-inner p             { animation-delay: .33s; }
.hero-about-inner .hero-btns    { animation-delay: .46s; }

/* Page hero banner */
.page-hero h1, .page-hero p {
  opacity: 0;
  animation: slideUpFade .65s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.page-hero p { animation-delay: .24s; }

/* ============================================================
   STEP ICONS — pulse ring
   ============================================================ */
.step-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0;
  pointer-events: none;
}
.process-step:hover .step-icon::after {
  animation: pulseRing .7s ease-out forwards;
}
/* Each step icon bounces in when visible */


/* ============================================================
   BUTTON SHIMMER + RIPPLE
   ============================================================ */
.btn {
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.btn-green::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.22) 50%,
    transparent 100%
  );
  transition: left .45s ease;
  pointer-events: none;
}
.btn-green:hover::before { left: 160%; }

/* Ripple on click — injected by JS */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: ripple .6s linear;
  pointer-events: none;
}

/* ============================================================
   CARD 3D TILT — CSS perspective (enhanced by JS)
   ============================================================ */
.product-card,
.card,
.partner-card,
.rel-card,
.cat-card,
.prod-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================================
   CARDS — staggered grid entrance
   ============================================================ */
.product-grid.animated .product-card,
.grid.animated .card,
.partner-grid.animated .partner-card,
.prod-grid.animated .prod-card,
.rel-grid.animated .rel-card,
.cert-grid.animated .cert-card {
  opacity: 0;
  animation: slideUpFade .55s cubic-bezier(.22,1,.36,1) both;
}
/* nth-child delays */
.product-grid.animated .product-card:nth-child(1),
.grid.animated          .card:nth-child(1),
.partner-grid.animated  .partner-card:nth-child(1),
.prod-grid.animated     .prod-card:nth-child(1),
.rel-grid.animated      .rel-card:nth-child(1)  { animation-delay: .0s; }

.product-grid.animated .product-card:nth-child(2),
.grid.animated          .card:nth-child(2),
.partner-grid.animated  .partner-card:nth-child(2),
.prod-grid.animated     .prod-card:nth-child(2),
.rel-grid.animated      .rel-card:nth-child(2)  { animation-delay: .08s; }

.product-grid.animated .product-card:nth-child(3),
.grid.animated          .card:nth-child(3),
.partner-grid.animated  .partner-card:nth-child(3),
.prod-grid.animated     .prod-card:nth-child(3),
.rel-grid.animated      .rel-card:nth-child(3)  { animation-delay: .16s; }

.product-grid.animated .product-card:nth-child(4),
.grid.animated          .card:nth-child(4),
.prod-grid.animated     .prod-card:nth-child(4) { animation-delay: .24s; }

.grid.animated .card:nth-child(5) { animation-delay: .32s; }
.grid.animated .card:nth-child(6) { animation-delay: .40s; }

/* cert grid — 8 items */
.cert-grid.animated .cert-card:nth-child(1) { animation-delay: .00s; }
.cert-grid.animated .cert-card:nth-child(2) { animation-delay: .06s; }
.cert-grid.animated .cert-card:nth-child(3) { animation-delay: .12s; }
.cert-grid.animated .cert-card:nth-child(4) { animation-delay: .18s; }
.cert-grid.animated .cert-card:nth-child(5) { animation-delay: .24s; }
.cert-grid.animated .cert-card:nth-child(6) { animation-delay: .30s; }
.cert-grid.animated .cert-card:nth-child(7) { animation-delay: .36s; }
.cert-grid.animated .cert-card:nth-child(8) { animation-delay: .42s; }

/* ============================================================
   STAT ITEMS — slide in from sides
   ============================================================ */
.stats-bar.animated .stat-item {
  opacity: 0;
  animation: slideUpFade .5s cubic-bezier(.22,1,.36,1) both;
}
.stats-bar.animated .stat-item:nth-child(1) { animation-delay: .0s; }
.stats-bar.animated .stat-item:nth-child(2) { animation-delay: .1s; }
.stats-bar.animated .stat-item:nth-child(3) { animation-delay: .2s; }

/* ============================================================
   OPS SECTION — image slides in from left, text from right
   ============================================================ */
.ops-inner.animated .ops-img  {
  animation: slideLeftFade  .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}
.ops-inner.animated .ops-text {
  animation: slideRightFade .7s cubic-bezier(.22,1,.36,1) .2s forwards;
}

/* ============================================================
   QUALITY CARD — scale fade in
   ============================================================ */
.quality-card.animated {
  opacity: 0;
  animation: scaleFade .7s cubic-bezier(.22,1,.36,1) .1s forwards;
}

/* ============================================================
   FAQ ACCORDION — smooth expand with easing
   ============================================================ */
.faq-a {
  transition: max-height .38s cubic-bezier(.4,0,.2,1),
              padding    .38s cubic-bezier(.4,0,.2,1);
}
.faq-item { transition: box-shadow var(--dur-base); }
.faq-item.open {
  box-shadow: 0 4px 20px rgba(60,181,74,.12);
}

/* ============================================================
   IMAGE — Ken Burns hover effect
   ============================================================ */
.hero-img-panel img,
.ops-img img,
.feature-img img,
.contact-img-card img {
  transition: transform 6s cubic-bezier(.25,.46,.45,.94);
}
.hero-img-panel:hover img,
.ops-img:hover img,
.feature:hover .feature-img img,
.contact-img-card:hover img {
  transform: scale(1.06) translateX(-1%);
}

/* ============================================================
   SECTION HEADINGS — slide in on scroll
   ============================================================ */
.section-heading.animated h2,
.section-heading.animated p {
  opacity: 0;
  animation: slideUpFade .6s cubic-bezier(.22,1,.36,1) both;
}
.section-heading.animated p { animation-delay: .12s; }

.faq.animated h2,
.process.animated h2,
.certs.animated h2,
.about.animated h2,
.partnership.animated h2 {
  animation: slideUpFade .6s cubic-bezier(.22,1,.36,1) forwards;
}

/* ============================================================
   CONTACT SPLIT — left slides from left, right from right
   ============================================================ */
.contact.animated .contact-left {
  opacity: 0;
  animation: slideLeftFade  .7s cubic-bezier(.22,1,.36,1) .05s both;
}
.contact.animated .contact-right,
.contact.animated .contact-img-card {
  opacity: 0;
  animation: slideRightFade .7s cubic-bezier(.22,1,.36,1) .15s both;
}

/* ============================================================
   FEATURED BLOG — slide in
   ============================================================ */
.feature.animated {
  opacity: 0;
  animation: slideUpFade .65s cubic-bezier(.22,1,.36,1) .05s both;
}



/* ============================================================
   NUMBER COUNTER — animated digits
   ============================================================ */
.count-num {
  display: inline-block;
  animation: countUp .5s ease both;
}

/* ============================================================
   MOBILE NAV — slide in from right
   ============================================================ */
.mobile-nav {
  transform: translateX(105%);
  opacity: 1;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-nav.open {
  transform: translateX(0);
}

/* ============================================================
   SECTION TAG — pop + shimmer
   ============================================================ */
.section-tag {
  position: relative;
  overflow: hidden;
  animation: tagPop .3s cubic-bezier(.34,1.56,.64,1) 0s forwards;
}
/* shimmer on section-tag removed */

/* ============================================================
   FOOTER GRADIENT BORDER — animated
   ============================================================ */


/* ============================================================
   GALLERY — active thumbnail pulse
   ============================================================ */
.thumb.on {
  animation: borderGlow 1.4s ease-in-out infinite;
}

/* ============================================================
   FORM INPUTS — floating label effect + input glow
   ============================================================ */
.form-input:focus,
.form-textarea:focus,
.mf-input:focus,
.mf-textarea:focus,
.sform-input:focus,
.sform-textarea:focus {
  animation: none; /* reset, handled by transition */
}

/* ============================================================
   CAT CARDS — bounce on hover
   ============================================================ */
.cat-card:hover {
  animation: none; /* override, JS handles 3D tilt */
}
.cat-card:hover .cat-thumb {
  animation: float 2s ease-in-out infinite;
}

/* ============================================================
   STEP ICON — continuous subtle float
   ============================================================ */
.process-step:hover .step-icon {
  animation: float 2s ease-in-out infinite;
}

/* ============================================================
   BADGE — micro bounce
   ============================================================ */
.badge:hover {
  animation: bounceIn .3s cubic-bezier(.34,1.56,.64,1) both;
}

/* ============================================================
   HERO CTA BUTTONS — stagger with slide
   ============================================================ */
.hero-btns .btn:nth-child(1) { animation-delay: .44s; }
.hero-btns .btn:nth-child(2) { animation-delay: .52s; }
.hero-btns > * {
  opacity: 0;
  animation: slideUpFade .55s cubic-bezier(.22,1,.36,1) both;
}

/* ============================================================
   PRODUCT DETAIL IMAGE ZOOM — cursor magnify
   ============================================================ */
.gallery-main.zoomed img {
  transform: scale(1.8);
  cursor: zoom-out;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   CHECKLIST ITEMS — stagger in
   ============================================================ */
.ops-checklist.animated li {
  animation: slideLeftFade .5s cubic-bezier(.22,1,.36,1) forwards;
}
.ops-checklist.animated li:nth-child(1) { animation-delay: .3s; }
.ops-checklist.animated li:nth-child(2) { animation-delay: .42s; }
.ops-checklist.animated li:nth-child(3) { animation-delay: .54s; }

/* ============================================================
   QUALITY CARD TEXT — stagger in
   ============================================================ */
.qc-text.animated h3 {
  opacity: 0;
  animation: slideUpFade .6s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.qc-text.animated p {
  opacity: 0;
  animation: slideUpFade .6s cubic-bezier(.22,1,.36,1) .35s both;
}

/* ============================================================
   POST BODY HEADINGS — slide in on read
   ============================================================ */
.post-body h2.animated {
  opacity: 0;
  animation: slideLeftFade .55s cubic-bezier(.22,1,.36,1) both;
}

/* ============================================================
   VERIFICATION CARD
   ============================================================ */
.verify-card {
  opacity: 0;
  animation: scaleFade .6s cubic-bezier(.22,1,.36,1) .15s both;
}

/* ============================================================
   FOOTER COLUMNS — stagger in
   ============================================================ */
.footer-inner.animated > * {
  opacity: 0;
  animation: slideUpFade .55s cubic-bezier(.22,1,.36,1) both;
}
.footer-inner.animated > *:nth-child(1) { animation-delay: .0s; }
.footer-inner.animated > *:nth-child(2) { animation-delay: .08s; }
.footer-inner.animated > *:nth-child(3) { animation-delay: .16s; }
.footer-inner.animated > *:nth-child(4) { animation-delay: .24s; }

/* ============================================================
   EXTRA ANIMATIONS — Round 2
   ============================================================ */

/* ── GRADIENT TEXT — hero em "Peptide" ── */
.hero h1 em,
.hero-about h1 em {
  background: linear-gradient(
    120deg,
    #6fe07a 0%,
    #3cb54a 30%,
    #7de08a 60%,
    #3cb54a 80%,
    #a8f0af 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3.5s linear infinite;
}
@keyframes gradientText {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}

/* ── HERO CANVAS PARTICLES ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.hero-layout { position: relative; z-index: 1; }

/* ── MARQUEE TRUST BAR ── */
.marquee-bar {
  background: rgba(60,181,74,.08);
  border-top: 1px solid rgba(60,181,74,.15);
  border-bottom: 1px solid rgba(60,181,74,.15);
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  border-right: 1px solid rgba(60,181,74,.2);
}
.marquee-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .75;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MOUSE SPOTLIGHT on dark sections ── */
.spotlight-wrap {
  position: relative;
  overflow: hidden;
}
.spotlight {
  pointer-events: none;
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(60,181,74,.12) 0%,
    transparent 70%
  );
  transform: translate(-50%,-50%);
  pointer-events: none;
  transition: opacity .3s;
  z-index: 0;
}

/* ── IMAGE CURTAIN WIPE REVEAL ── */
.curtain-wrap {
  position: relative;
  overflow: hidden;
}
.curtain-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-light);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform .85s cubic-bezier(.77,0,.18,1);
  z-index: 2;
}
.curtain-wrap.revealed::after {
  transform: scaleX(0);
}

/* ── TYPING CURSOR on hero subtitle ── */
.type-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--green);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink .8s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── FLOATING ORBS in hero ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60,181,74,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat linear infinite;
}
@keyframes orbFloat {
  0%   { transform: translateY(0)   scale(1);    opacity: .6; }
  33%  { transform: translateY(-30px) scale(1.08); opacity: .9; }
  66%  { transform: translateY(15px)  scale(.95);  opacity: .5; }
  100% { transform: translateY(0)   scale(1);    opacity: .6; }
}

/* ── STATS — animated number cards ── */
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-family: var(--font-head);
  font-weight: 600;
}

/* ── TEXT SCRAMBLE flicker ── */
@keyframes scrambleFlicker {
  0%, 100% { opacity: 1; }
  45%       { opacity: .6; }
  50%       { opacity: .85; }
}
.scramble-char { animation: scrambleFlicker .08s ease; }

/* ── SECTION DIVIDER — animated wave line ── */
.wave-divider {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 48px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawWave 1.8s ease forwards;
}
@keyframes drawWave {
  to { stroke-dashoffset: 0; }
}

/* ── CARD IMAGE — shimmer loading placeholder ── */
.card-img img,
.product-thumb img,
.feature-img img {
  background: linear-gradient(90deg, var(--bg) 25%, #eaecea 50%, var(--bg) 75%);
  background-size: 200% 100%;
}
.card-img img[src],
.product-thumb img[src],
.feature-img img[src] {
  background: none;
}

/* ── SCROLL INDICATOR — hero bounce arrow ── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .55;
  animation: fadeUp .6s ease 1.2s forwards;
}
.scroll-hint span {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.scroll-hint-arrow {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceScroll 1.8s ease-in-out infinite;
}
.scroll-hint-arrow svg { width: 11px; height: 11px; color: rgba(255,255,255,.7); }
@keyframes bounceScroll {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── PROCESS CONNECTOR — animated draw ── */
.process-grid::before {
  background: none;
  background-image: linear-gradient(to right, transparent, var(--green), transparent);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1.2s ease .3s;
}
.process-grid.connector-drawn::before {
  background-size: 100% 100%;
}

/* ── PARTNER CARD ICON — rotate on hover ── */
.partner-card:hover .partner-icon svg {
  animation: spin .5s cubic-bezier(.34,1.56,.64,1) both;
}

/* ── HERO CTA — pulsing glow ── */
.hero-btns .btn-green {
  animation: heroCtaGlow 3s ease-in-out 1.5s infinite;
}
@keyframes heroCtaGlow {
  0%, 100% { box-shadow: var(--shadow-green); }
  50%       { box-shadow: 0 8px 28px rgba(60,181,74,.55), 0 0 0 4px rgba(60,181,74,.12); }
}
/* Stop glow on hover (user is interacting) */
.hero-btns .btn-green:hover { animation: none; }

/* ── FAQ ITEM ICON ── */
.faq-item.open .faq-q {
  color: var(--green);
}

/* ── MOBILE NAV LINKS — stagger ── */
.mobile-nav.open a {
  opacity: 0;
  animation: slideRightFade .35s cubic-bezier(.22,1,.36,1) both;
}
.mobile-nav.open a:nth-child(1) { animation-delay: .04s; }
.mobile-nav.open a:nth-child(2) { animation-delay: .09s; }
.mobile-nav.open a:nth-child(3) { animation-delay: .14s; }
.mobile-nav.open a:nth-child(4) { animation-delay: .19s; }
.mobile-nav.open a:nth-child(5) { animation-delay: .24s; }
.mobile-nav.open a:nth-child(6) { animation-delay: .29s; }
.mobile-nav.open .m-quote       { animation-delay: .36s; opacity: 0;
  animation: slideUpFade .4s cubic-bezier(.22,1,.36,1) .36s both; }


}

/* ── HERO IMAGE PARALLAX ── */
.hero-img-panel img {
  will-change: transform;
}

/* ── INPUT FOCUS LABEL FLOAT ── */
.form-group {
  position: relative;
}

/* ── SECTION ENTRANCE — alternating sides ── */
.ops-img  { transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.ops-text { transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }

/* ── PRODUCT DETAIL — tab underline animation ── */
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.tab-btn { position: relative; }
.tab-btn.on::after { transform: scaleX(1); border-bottom: none; }

/* ── FOOTER LINK HOVER — underline from left ── */
.footer-col ul li a {
  position: relative;
  display: inline-block;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width .25s ease;
}
.footer-col ul li a:hover::after { width: 100%; }

/* RESPONSIVE */
@media (max-width: 880px) {
  .marquee-item { padding: 0 24px; font-size: 11.5px; }
  .scroll-hint { display: none; }
  .hero-orb { display: none; }
}
