/* ============================================================
   ChromeTCG — Holo-Foil Arcade
   ============================================================ */

:root {
  --green: #b4f672;
  --green-bright: #d9ffa6;
  --green-deep: #6fb33c;
  --green-dim: rgba(180, 246, 114, 0.14);
  --ink: #0a0c08;
  --ink-2: #10130c;
  --ink-3: #161a10;
  --card-stroke: rgba(180, 246, 114, 0.22);
  --text: #eef5e4;
  --text-dim: #a8b39a;
  --display: 'Titan One', cursive;
  --body: 'Outfit', sans-serif;
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green); color: var(--ink); }

/* ============ Shared bits ============ */

.glow-word {
  color: var(--green);
  text-shadow:
    0 0 18px rgba(180, 246, 114, 0.55),
    0 0 60px rgba(180, 246, 114, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}

.btn-big { padding: 17px 32px; font-size: 17px; }

.btn-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(180,246,114,.5), 0 8px 30px rgba(180,246,114,.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 4px rgba(180,246,114,.18), 0 14px 44px rgba(180,246,114,.4);
}

.btn-ghost {
  color: var(--text);
  border: 2px solid var(--card-stroke);
  background: var(--ink);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: var(--green-dim);
  border-color: var(--green);
}

.btn-live {
  background: rgba(180,246,114,.1);
  border: 1.5px solid var(--card-stroke);
  color: var(--green);
}
.btn-live:hover { background: var(--green); color: var(--ink); transform: translateY(-2px); }
.btn-live:hover .live-dot { background: var(--ink); }

.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.btn-primary .live-dot { background: var(--ink); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

.live-badge .live-dot,
.btn-primary .live-dot.live-dot-red,
.live-dot-red {
  background: #ff3b3b;
  box-shadow: 0 0 10px rgba(255, 59, 59, .8);
  animation: blink-dot 1.1s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .15; }
}

/* ============ Nav ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 28px;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}

.nav.scrolled {
  background: rgba(10, 12, 8, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(180,246,114,.12), 0 10px 40px rgba(0,0,0,.5);
  padding: 10px 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}

.nav-logo {
  width: 42px; height: 42px;
  filter: drop-shadow(0 0 10px rgba(180,246,114,.45));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.nav-brand:hover .nav-logo { transform: rotate(-12deg) scale(1.1); }

.nav-wordmark {
  font-family: var(--display);
  font-size: 21px;
  color: var(--text);
  letter-spacing: .5px;
}
.nav-wordmark em { font-style: normal; color: var(--green); }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.65,0,.35,1);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.hero-glow-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(180,246,114,.16) 0%, transparent 65%);
  top: -180px; left: 50%;
  margin-left: -360px;
}
.hero-glow-2 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(111,179,60,.12) 0%, transparent 65%);
  bottom: -160px; right: -120px;
}

.hero-grain,
body::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after { position: fixed; z-index: 99; }
.hero-grain { display: none; }

/* sparkles */
.sparkle-field { position: absolute; inset: 0; pointer-events: none; }
.sparkle {
  position: absolute;
  font-size: 14px;
  color: var(--green);
  opacity: 0;
  animation: sparkle-pop var(--life, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  text-shadow: 0 0 12px rgba(180,246,114,.8);
  will-change: transform, opacity;
}
@keyframes sparkle-pop {
  0%, 100% { opacity: 0; transform: scale(.2) rotate(0deg); }
  50% { opacity: var(--peak, .9); transform: scale(1) rotate(180deg); }
}

/* floating decorative cards */
.float-cards { position: absolute; inset: 0; pointer-events: none; }

.f-card {
  position: absolute;
  width: 110px; height: 154px;
  will-change: transform;
}
.f-card-inner {
  width: 100%; height: 100%;
  border-radius: 12px;
  border: 2px solid rgba(180,246,114,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.55), 0 0 24px rgba(180,246,114,.12) inset;
  animation: card-bob var(--bob, 7s) ease-in-out infinite alternate;
  backdrop-filter: blur(2px);
}
@keyframes card-bob {
  from { transform: translateY(-12px) rotate(var(--rot, -8deg)); }
  to   { transform: translateY(14px) rotate(calc(var(--rot, -8deg) + 5deg)); }
}

.f-rarity {
  font-size: 26px;
  color: rgba(180,246,114,.75);
  text-shadow: 0 0 14px rgba(180,246,114,.7);
}

.f-card-1 { top: 16%; left: 7%;  --rot: -10deg; --bob: 6.5s; }
.f-card-2 { top: 58%; left: 13%; --rot: 7deg;   --bob: 8s; width: 90px; height: 126px; }
.f-card-3 { top: 12%; right: 9%; --rot: 12deg;  --bob: 7.4s; }
.f-card-4 { top: 55%; right: 6%; --rot: -6deg;  --bob: 6s; }
.f-card-5 { top: 33%; right: 22%; --rot: 4deg;  --bob: 9s; width: 76px; height: 106px; opacity: .6; }

/* foil gradients */
.foil-a { background: linear-gradient(135deg, #18220e 0%, #223416 40%, #2e5512 60%, #16200c 100%); }
.foil-b { background: linear-gradient(160deg, #101a0a 0%, #34520f 50%, #131c0b 100%); }
.foil-c { background: linear-gradient(200deg, #1b250f 0%, #121a09 45%, #3a5e15 80%, #16200c 100%); }
.foil-d { background: linear-gradient(120deg, #121a0a 0%, #2c4413 55%, #101808 100%); }
.foil-e { background: linear-gradient(150deg, #141d0b 0%, #253a10 50%, #0f1707 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-logo {
  width: 148px;
  height: 148px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 36px rgba(180,246,114,.5));
  animation: logo-float 5s ease-in-out infinite alternate;
}
@keyframes logo-float {
  from { transform: translateY(-7px) rotate(-2deg); }
  to   { transform: translateY(9px) rotate(2deg); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 9.5vw, 112px);
  line-height: 1.02;
  letter-spacing: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 26px;
  -webkit-text-stroke: 1px rgba(180,246,114,.18);
}

.hero-sub {
  margin: 26px auto 0;
  max-width: 540px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dim);
}
.hero-sub strong { color: var(--green); font-weight: 700; }

.hero-ctas {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* load-in animations */
.load-rise {
  opacity: 0;
  transform: translateY(34px);
  animation: rise .9s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
.load-pop {
  opacity: 0;
  transform: scale(.4) rotate(-16deg);
  animation: pop .8s cubic-bezier(.34,1.56,.64,1) forwards, logo-float 5s ease-in-out .8s infinite alternate;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes pop  { to { opacity: 1; transform: scale(1) rotate(0deg); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: rise 1s ease 1.4s forwards;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--card-stroke);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 7px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--green);
  animation: wheel 1.7s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(11px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ Marquee ============ */

.marquee {
  border-top: 1.5px solid var(--card-stroke);
  border-bottom: 1.5px solid var(--card-stroke);
  background: var(--ink-2);
  overflow: hidden;
  padding: 17px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 10px -10px;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 104s linear infinite;
  font-family: var(--display);
  font-size: 20px;
  color: var(--green);
  letter-spacing: 2px;
  text-shadow: 0 0 16px rgba(180,246,114,.35);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Sections ============ */

.section {
  position: relative;
  padding: 130px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--card-stroke);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.12;
  letter-spacing: .5px;
}

.section-sub {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 17px;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Why grid ============ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.why-card {
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1.5px solid rgba(180,246,114,.13);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), border-color .3s ease, box-shadow .3s ease,
              opacity .9s cubic-bezier(.22,1,.36,1);
}
.why-card:hover {
  transform: translateY(-9px) rotate(-1deg);
  border-color: var(--green);
  box-shadow: 0 22px 50px rgba(0,0,0,.45), 0 0 30px rgba(180,246,114,.14);
}

.why-icon {
  font-size: 34px;
  margin-bottom: 18px;
  display: inline-block;
  background: var(--green-dim);
  border: 1px solid var(--card-stroke);
  width: 66px; height: 66px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .why-icon { transform: rotate(-10deg) scale(1.12); }

.why-card h3 {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.why-card p { color: var(--text-dim); line-height: 1.6; font-size: 15px; }

/* ============ Tilt cards ============ */

.tilt-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 34px;
  perspective: 1400px;
}

.tilt-card { perspective: 1100px; }

.tilt-inner {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .18s ease-out;
  border-radius: 24px;
  will-change: transform;
}
.tilt-card:not(:hover) .tilt-inner { transition: transform .7s cubic-bezier(.22,1,.36,1); }

.tilt-frame {
  border-radius: 24px;
  border: 2.5px solid rgba(180,246,114,.35);
  padding: 30px 28px 34px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 28px 70px rgba(0,0,0,.6);
  overflow: hidden;
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.tilt-card:hover .tilt-frame {
  border-color: var(--green);
  box-shadow: 0 36px 90px rgba(0,0,0,.7), 0 0 44px rgba(180,246,114,.22);
}

/* holographic shine that follows the cursor */
.holo-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 24px;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
      rgba(217,255,166,.34) 0%,
      rgba(180,246,114,.12) 22%,
      transparent 52%),
    linear-gradient(115deg,
      transparent 30%,
      rgba(180,246,114,.08) 45%,
      rgba(255,255,255,.1) 50%,
      rgba(180,246,114,.08) 55%,
      transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  mix-blend-mode: screen;
}
.tilt-card:hover .holo-shine { opacity: 1; }

.tilt-rarity {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--green);
  background: rgba(10,12,8,.55);
  border: 1px solid var(--card-stroke);
  padding: 6px 13px;
  border-radius: 999px;
  transform: translateZ(40px);
}

.tilt-art {
  font-size: 56px;
  margin: 14px 0 4px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.5));
  transform: translateZ(55px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.tilt-card:hover .tilt-art { transform: translateZ(70px) scale(1.18) rotate(-6deg); }

.tilt-name {
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: .5px;
  transform: translateZ(45px);
}

.tilt-desc {
  color: rgba(238,245,228,.78);
  line-height: 1.6;
  font-size: 15px;
  transform: translateZ(30px);
}

.tilt-stat {
  margin-top: auto;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--green-bright);
  letter-spacing: 1px;
  transform: translateZ(35px);
}

/* ============ Live panel ============ */

.live-panel {
  position: relative;
  border-radius: 34px;
  border: 2px solid var(--card-stroke);
  background: linear-gradient(150deg, var(--ink-3) 0%, var(--ink-2) 60%, #1a2410 100%);
  padding: 80px 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
}

.live-panel-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,246,114,.2) 0%, transparent 60%);
  filter: blur(70px);
  right: -150px; top: -180px;
  pointer-events: none;
  will-change: transform;
}

.live-panel-content { position: relative; z-index: 2; max-width: 560px; }

.live-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.live-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.nav-ctas { display: flex; align-items: center; gap: 12px; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--green);
  background: rgba(180,246,114,.1);
  border: 1px solid var(--card-stroke);
  padding: 9px 17px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.live-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.14;
  margin-bottom: 18px;
}

.live-sub {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 34px;
}

.live-panel-logo {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 340px;
  opacity: .14;
  transform: rotate(-14deg);
  pointer-events: none;
  will-change: transform;
}

/* ============ Socials ============ */

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(165deg, var(--ink-3), var(--ink-2));
  border: 1.5px solid rgba(180,246,114,.13);
  border-radius: var(--radius);
  padding: 38px 20px 32px;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), border-color .3s ease, box-shadow .3s ease,
              opacity .9s cubic-bezier(.22,1,.36,1);
}
.social-card:hover {
  transform: translateY(-10px) rotate(1.2deg) scale(1.02);
  border-color: var(--green);
  box-shadow: 0 24px 56px rgba(0,0,0,.5), 0 0 34px rgba(180,246,114,.16);
}

.social-card svg {
  width: 44px; height: 44px;
  color: var(--green);
  filter: drop-shadow(0 0 12px rgba(180,246,114,.4));
  margin-bottom: 8px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.social-card:hover svg { transform: scale(1.22) rotate(-8deg); }

.social-name { font-family: var(--display); font-size: 19px; letter-spacing: .5px; }
.social-handle { color: var(--text-dim); font-size: 14px; font-weight: 500; }

/* ============ Footer ============ */

.footer {
  border-top: 1.5px solid rgba(180,246,114,.12);
  background: var(--ink-2);
  padding: 54px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer .nav-brand { margin-right: 0; }

.footer-tag { color: var(--green); font-weight: 600; font-size: 15px; }
.footer-copy { color: var(--text-dim); font-size: 13.5px; }

/* ============ Responsive ============ */

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav { gap: 14px; padding: 12px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-ctas { gap: 8px; }
  .f-card-5, .f-card-2 { display: none; }
  .f-card { width: 80px; height: 112px; }
  .live-panel { padding: 56px 30px; flex-direction: column; text-align: center; }
  .live-panel-content { max-width: 100%; }
  .live-panel-logo { width: 240px; right: -60px; bottom: -80px; }
  .hero-title { gap: 0 16px; }
}

@media (max-width: 680px) {
  /* nav buttons don't fit beside the logo — hero has Join buttons instead */
  .nav-ctas { display: none; }
  /* floating cards overlap the hero text on phones — hide them */
  .float-cards { display: none; }
  .section { padding: 84px 18px; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 104px 18px 64px; }
  .hero-logo { width: 104px; height: 104px; }
  .hero-title { font-size: clamp(40px, 13vw, 64px); -webkit-text-stroke: 0; }
  .hero-sub { font-size: 17px; }
  .hero-ctas { margin-top: 28px; gap: 12px; }
  .btn-big { padding: 15px 24px; font-size: 16px; }
  .tilt-frame { min-height: 0; padding: 26px 22px 28px; }
  .live-title { font-size: clamp(28px, 8vw, 40px); }
  .live-panel { padding: 44px 22px; }
  .live-panel-logo { width: 180px; right: -40px; bottom: -50px; }
  .footer { padding: 44px 20px; }
}

@media (max-width: 420px) {
  .hero-ctas .btn-big { width: 100%; justify-content: center; }
  .live-ctas .btn-big { width: 100%; justify-content: center; }
  .hero-title { font-size: 38px; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .load-rise, .load-pop { opacity: 1; transform: none; animation: none; }
  .hero-scroll-hint { opacity: 1; }
}
