/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

/* Scroll-triggered fade-in */
.fade-in,
.fade-in--delayed {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in--delayed {
  transition-delay: 0.52s;
}

.fade-in.is-visible,
.fade-in--delayed.is-visible {
  opacity: 1;
  transform: none;
}

.fade-in--opacity {
  opacity: 0;
  transition: opacity 0.75s ease;
}

.fade-in--opacity.is-visible {
  opacity: 1;
}

.fade-in--opacity-delayed {
  opacity: 0;
  transition: opacity 0.75s ease 0.52s;
}

.fade-in--opacity-delayed.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in--delayed,
  .fade-in--opacity,
  .fade-in--opacity-delayed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  min-height: 100vh;
}

/* ============================================================
   AURORA BACKGROUND
   ============================================================ */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0d0a1f;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

.aurora__layer {
  position: absolute;
  inset: -60px;
  will-change: transform, opacity;

-webkit-mask-image: radial-gradient(
  ellipse 140% 110% at 90% -10%,
  black 0%,
  black 15%,
  rgba(0, 0, 0, 0.85) 30%,
  rgba(0, 0, 0, 0.45) 50%,
  rgba(0, 0, 0, 0.1) 68%,
  transparent 82%
);
mask-image: radial-gradient(
  ellipse 140% 110% at 90% -10%,
  black 0%,
  black 15%,
  rgba(0, 0, 0, 0.85) 30%,
  rgba(0, 0, 0, 0.45) 50%,
  rgba(0, 0, 0, 0.1) 68%,
  transparent 82%
);
}

.aurora__layer--1 {
  background-image: repeating-linear-gradient(
    95deg,
    #0a0318 0%,
    #3b0764 6%,
    #6d28d9 12%,
    #9333ea 17%,
    #a78bfa 21%,
    #c4b5fd 24%,
    #a78bfa 27%,
    #7c3aed 32%,
    #5b21b6 37%,
    #3b0764 43%,
    #2D2050 50%,
    #0a0318 56%
  );
  background-size: 250% 150%;
  filter: blur(18px);
  opacity: 0.95;
  animation: wave1 34s ease-in-out infinite;
}


.aurora__layer--2 {
  background-image: repeating-linear-gradient(
    90deg,
    #0f0520 0%,
    #2e1065 6%,
    #5b21b6 12%,
    #8b5cf6 17%,
    #ddd6fe 22%,
    #c4b5fd 26%,
    #9333ea 31%,
    #6d28d9 37%,
    #3b0764 43%,
    #2D2050 50%,
    #0a0318 56%
  );
  background-size: 250% 150%;
  filter: blur(28px);
  opacity: 0.5;
  mix-blend-mode: lighten;
  animation: wave2 44s ease-in-out infinite;
  animation-direction: reverse;
}
@keyframes wave1 {
  0%   { background-position: 0% 50%;   transform: skewX(0deg)   scaleY(1);    opacity: 0.90; }
  25%  { background-position: 60% 50%;  transform: skewX(1deg)   scaleY(1.02); opacity: 0.95; }
  50%  { background-position: 120% 50%; transform: skewX(-1deg)  scaleY(0.98); opacity: 0.88; }
  75%  { background-position: 80% 50%;  transform: skewX(0.5deg) scaleY(1.01); opacity: 0.93; }
  100% { background-position: 0% 50%;   transform: skewX(0deg)   scaleY(1);    opacity: 0.90; }
}

@keyframes wave2 {
  0%   { background-position: 30% 50%;  transform: skewX(-1deg) scaleY(1.02); }
  30%  { background-position: 100% 50%; transform: skewX(1.5deg) scaleY(0.97); }
  60%  { background-position: 50% 50%;  transform: skewX(-0.5deg) scaleY(1.03); }
  85%  { background-position: 140% 50%; transform: skewX(1deg) scaleY(0.99); }
  100% { background-position: 30% 50%;  transform: skewX(-1deg) scaleY(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora__layer--1,
  .aurora__layer--2 { animation: none; }
}
/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 680px; }
.center { text-align: center; }

.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  scroll-margin-top: 96px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero--peek {
  min-height: 88vh;
}

.section-cta-bridge {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 25px 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(20, 12, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(20, 12, 40, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.nav__logo img { height: 36px; }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover { color: #F5A623; }

/* Hamburger button — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Hamburger → X when open */
.nav.menu-open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.menu-open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav__mobile {
  display: none;
  padding: 4px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav__mobile-links a {
  display: block;
  padding: 11px 4px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.nav__mobile-links a:hover { color: #F5A623; }

.nav__mobile-accent {
  margin: 0 -20px -16px;
  background: rgba(200, 160, 255, 0.13);
  border-top: 1px solid rgba(200, 160, 255, 0.22);
  border-radius: 0 0 11px 11px;
}

.nav__mobile-accent a {
  color: rgba(220, 190, 255, 0.95) !important;
  padding: 11px 24px;
  border-bottom: none;
}

/* ≤ 660px — swap to hamburger */
@media (max-width: 660px) {
  .nav__links,
  .nav__inner > .btn--accent { display: none; }

  .nav__hamburger { display: flex; }

  .nav.menu-open { border-radius: 16px 16px 12px 12px; overflow: hidden; }
  .nav.menu-open .nav__mobile { display: block; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: none;
}

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

.btn--primary {
  background: #fff;
  color: #0d0a1a;
}

.btn--primary:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn--primary-pop {
  background: #F5A623;
  color: #0d0a1a;
  width: 33%;
  font-size: 1.1rem;
  padding: 16px 28px;
  text-align: center;
}

.btn--primary-pop:hover {
  box-shadow: 0 8px 24px rgba(210, 196, 101, 0.5)
}

@media (max-width: 660px) {
  .btn--primary-pop {
    width: auto;
  }
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  color: #F5A623;
  border-color: #F5A623;
  background: rgba(245, 166, 35, 0.06);
}

.btn--accent {
  background: rgba(200, 160, 255, 0.15);
  color: rgba(220, 190, 255, 0.95);
  border: 1px solid rgba(200, 160, 255, 0.3);
  padding: 8px 18px;
  font-size: 14px;
}

.btn--accent:hover {
  background: rgba(200, 160, 255, 0.25);
}

/* ============================================================
   HERO
   ============================================================ */
.hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero__content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.749);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.section__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: center;
}

.section__sub--wide {
  max-width: none;
  margin-top: 32px;
}

.section__cta {
  margin-top: 40px;
  text-align: center;
}

.section--cta p {
  margin-bottom: 32px;
}

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
}

.card--lavender {
  background: rgba(180, 140, 240, 0.1);
  border-color: rgba(180, 140, 240, 0.2);
}

.card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.card__label {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: inherit;
}

.card__for {
  font-size: 0.82rem;
  color: rgba(200, 160, 255, 0.8);
  margin-bottom: 14px;
  font-style: italic;
}

.card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 14px;
  position: relative;
}

.card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(180, 140, 240, 0.7);
}

/* ============================================================
   FLIP CARDS
   ============================================================ */
.flip-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

.flip-card {
  perspective: 1200px;
  display: flex;
  flex-direction: column;
}

/* Grid approach: both faces share one cell — taller face sets height, no fixed px needed */
.flip-card__inner {
  display: grid;
  grid-template-areas: 'face';
  width: 100%;
  flex: 1;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

/* backdrop-filter on .card breaks backface-visibility — disable it on the faces so the
   3D flip naturally hides the rear face; only the text content wrapper fades */
.flip-card__front,
.flip-card__back {
  grid-area: face;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flip-card__front {
  background: rgba(255, 255, 255, 0.10);
}

.flip-card__back {
  transform: rotateY(180deg);
  background: rgba(180, 140, 240, 0.15) !important;
  border-color: rgba(180, 140, 240, 0.28) !important;
}

/* Text wrapper — only the content fades; card background/border stay fully visible */
.flip-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  opacity: 1;
  transition: opacity 0.15s ease 0.32s;
}

.flip-card.is-flipped .flip-card__front .flip-card__content {
  opacity: 0;
  transition: opacity 0.12s ease 0s;
}

.flip-card__back .flip-card__content {
  opacity: 0;
  transition: opacity 0.12s ease 0s;
}

.flip-card.is-flipped .flip-card__back .flip-card__content {
  opacity: 1;
  transition: opacity 0.15s ease 0.32s;
}

.flip-card__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 10px 0 0;
  flex: 1;
}

.flip-card__sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 8px 0 14px;
}

.flip-card__hint {
  display: block;
  font-size: 0.8rem;
  color: #F5A623;
  margin-top: 16px;
  font-style: italic;
}

.flip-card__pricing {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
  font-style: italic;
  pointer-events: none;
}

.flip-card__back .card__label {
  margin-bottom: 6px;
}

.flip-card__back ul {
  gap: 10px;
}

.flip-card__back ul li {
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ============================================================
   PAID ADS ADD-ON SECTION
   ============================================================ */
.ads-box {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 36px;
}

.ads-box__heading {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
}

.ads-box__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}

.ads-box__list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}

.ads-box__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(180, 140, 240, 0.7);
}

.ads-pricing {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
  font-style: italic;
}

@media (max-width: 640px) {
  .ads-box__list {
    grid-template-columns: 1fr;
  }
  .ads-box {
    padding: 24px 20px;
  }
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
}

.accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  text-align: left;
  transition: color 0.2s;
}

.accordion__trigger:hover { color: #F5A623; }

.accordion__icon {
  flex-shrink: 0;
  color: rgba(200, 160, 255, 0.7);
  transition: transform 0.35s ease, color 0.2s;
}

.accordion__trigger:hover .accordion__icon { color: #F5A623; }

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
  padding-bottom: 0;
}

.accordion__panel.is-open {
  max-height: 400px;
  padding-bottom: 20px;
}

.accordion__panel p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-first {
  padding-top: 160px;
}

.about-subhead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.about-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-grid--50 {
  grid-template-columns: 1fr 1fr;
}

.about-grid--66-33 {
  grid-template-columns: 2fr 1fr;
}

.about-col h1,
.about-col h2 {
  margin-bottom: 16px;
}

.about-col p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-col p:last-child {
  margin-bottom: 0;
}

.about-col--image {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .about-grid--50,
  .about-grid--66-33 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-top: 160px;
}

.contact-section h1 {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.contact-section .contact-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.749);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-form {
  margin-top: 48px;
  min-height: 560px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(8, 5, 18, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0 16px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.footer__brand img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.footer__brand span {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover { color: #F5A623; }

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: end;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer__social a:hover {
  background: rgba(245, 166, 35, 0.12);
  color: #F5A623;
  border-color: rgba(245, 166, 35, 0.4);
}

.footer__social svg {
  display: block;
}

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 660px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer__social {
    justify-self: center;
  }
}

/* ============================================================
   HERO HANDWRITTEN NOTE
   ============================================================ */
.hero-note {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(255, 210, 150, 0.88);
  transform: rotate(-2deg);
  max-width: 175px;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.hero-note.is-visible { opacity: 1; }

.hero-note__text { display: block; }

@media (max-width: 768px) { .hero-note { display: none; } }

/* ============================================================
   SCROLL HINT ARROW
   ============================================================ */
.scroll-hint {
  position: absolute;
  bottom: max(20px, calc(16px + env(safe-area-inset-bottom, 0px)));
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  opacity: 0;
  animation:
    scroll-hint-fadein 0.5s ease forwards 1s,
    scroll-hint-bounce 1.5s ease-in-out infinite 2.5s;
  transition: color 0.2s;
  z-index: 2;
}

.scroll-hint:hover { color: #F5A623; }

@keyframes scroll-hint-fadein {
  to { opacity: 1; }
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}