:root {
  --bg-deep: #06040a;
  --bg-card: rgba(18, 12, 28, 0.72);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --gold: #e8c547;
  --gold-dim: #b8942e;
  --violet: #8b5cf6;
  --violet-deep: #5b21b6;
  --text: #f4f0ff;
  --text-muted: rgba(244, 240, 255, 0.65);
  --border: rgba(232, 197, 71, 0.22);
  --radius: 18px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.38), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(232, 197, 71, 0.1), transparent),
    radial-gradient(ellipse 50% 50% at 0% 80%, rgba(91, 33, 182, 0.22), transparent);
  z-index: -2;
  animation: aurora-shift 22s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
  0% {
    opacity: 1;
    filter: hue-rotate(0deg);
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    filter: hue-rotate(12deg);
  }
  100% {
    opacity: 1;
    filter: hue-rotate(-8deg);
    transform: scale(1.03);
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: -1;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: #fff4c2;
}

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

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: linear-gradient(180deg, rgba(6, 4, 10, 0.95) 0%, rgba(6, 4, 10, 0.75) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 4, 10, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #1a1020;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(232, 197, 71, 0.35);
  animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(232, 197, 71, 0.3);
  }
  50% {
    box-shadow: 0 0 36px rgba(232, 197, 71, 0.55);
  }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.25s;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, #f5e6a8 45%, var(--gold-dim) 100%);
  color: #1a0f24;
  box-shadow: 0 4px 28px rgba(232, 197, 71, 0.4);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-12deg);
  animation: btn-glint 4.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

@keyframes btn-glint {
  0%,
  65% {
    transform: translateX(-120%) skewX(-12deg);
  }
  85% {
    transform: translateX(120%) skewX(-12deg);
  }
  100% {
    transform: translateX(120%) skewX(-12deg);
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232, 197, 71, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: #1a0f24;
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* VPN strip */
.vpn-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
  font-size: 0.82rem;
  font-weight: 600;
  animation: vpn-blink 2.5s ease-in-out infinite;
}

@keyframes vpn-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.vpn-strip svg {
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: 8.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 60%;
  top: -10%;
  left: -20%;
  background: radial-gradient(ellipse, rgba(232, 197, 71, 0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-mist 14s ease-in-out infinite alternate;
}

@keyframes hero-mist {
  from {
    transform: translateX(0) translateY(0);
    opacity: 0.7;
  }
  to {
    transform: translateX(4%) translateY(6%);
    opacity: 1;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .header-inner .btn-primary {
    padding-inline: 1.1rem;
    font-size: 0.85rem;
  }
}

.hero-badge {
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 55%, #c4a035 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fade-up 0.9s var(--ease-out) both;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34ch;
  margin: 0 0 1.75rem;
  animation: fade-up 0.9s 0.1s var(--ease-out) both;
}

@media (max-width: 900px) {
  .hero-lead {
    margin-inline: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fade-up 0.9s 0.2s var(--ease-out) both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  position: relative;
  animation: fade-up 1s 0.15s var(--ease-out) both;
  perspective: 900px;
}

.hero-visual__aurora {
  position: absolute;
  inset: -12% -8% -8% -8%;
  background: conic-gradient(
    from 120deg at 50% 50%,
    rgba(139, 92, 246, 0.35),
    rgba(232, 197, 71, 0.12),
    rgba(91, 33, 182, 0.3),
    rgba(232, 197, 71, 0.15),
    rgba(139, 92, 246, 0.35)
  );
  filter: blur(36px);
  opacity: 0.85;
  z-index: 0;
  animation: spin-slow 28s linear infinite;
  pointer-events: none;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 62%);
  z-index: 0;
  animation: float-glow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.82;
  }
}

.hero-visual__frame {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius) + 4px);
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(232, 197, 71, 0.95) 0%,
    rgba(139, 92, 246, 0.65) 35%,
    rgba(232, 197, 71, 0.45) 55%,
    rgba(91, 33, 182, 0.75) 100%
  );
  background-size: 240% 240%;
  animation: frame-flow 8s ease infinite;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 28px 90px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(139, 92, 246, 0.22);
}

@keyframes frame-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-visual__inner {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  animation: hero-ken 22s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes hero-ken {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.07);
  }
}

.hero-visual__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 48%,
    rgba(255, 255, 255, 0.05) 52%,
    transparent 65%
  );
  background-size: 200% 200%;
  animation: shine-sweep 5.5s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes shine-sweep {
  0%,
  30% {
    background-position: 120% 50%;
  }
  70%,
  100% {
    background-position: -20% 50%;
  }
}

.hero-visual__img {
  --hx: 0px;
  --hy: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(var(--hx), var(--hy), 0) scale(1.02);
  transition: transform 0.45s var(--ease-out);
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}

.hero-visual__chips {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-visual__chips span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6cc, var(--gold-dim));
  box-shadow: 0 0 14px rgba(232, 197, 71, 0.7);
  opacity: 0.85;
  animation: chip-float 5s ease-in-out infinite;
}

.hero-visual__chips span:nth-child(1) {
  top: 12%;
  right: 8%;
  animation-delay: 0s;
}

.hero-visual__chips span:nth-child(2) {
  bottom: 18%;
  left: 4%;
  width: 10px;
  height: 10px;
  animation-delay: 1.2s;
}

.hero-visual__chips span:nth-child(3) {
  top: 42%;
  left: -2%;
  animation-delay: 2.4s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-10px) scale(1.08);
    opacity: 1;
  }
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  background: linear-gradient(90deg, var(--text) 0%, var(--gold) 45%, #e8ddff 55%, var(--gold) 65%, var(--text) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 10s ease-in-out infinite;
}

@keyframes title-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.02rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .gallery figure {
  animation: gallery-pop 0.65s var(--ease-out) both;
}

.reveal.is-visible .gallery figure:nth-child(1) {
  animation-delay: 0.02s;
}
.reveal.is-visible .gallery figure:nth-child(2) {
  animation-delay: 0.05s;
}
.reveal.is-visible .gallery figure:nth-child(3) {
  animation-delay: 0.08s;
}
.reveal.is-visible .gallery figure:nth-child(4) {
  animation-delay: 0.11s;
}
.reveal.is-visible .gallery figure:nth-child(5) {
  animation-delay: 0.14s;
}
.reveal.is-visible .gallery figure:nth-child(6) {
  animation-delay: 0.17s;
}
.reveal.is-visible .gallery figure:nth-child(7) {
  animation-delay: 0.2s;
}
.reveal.is-visible .gallery figure:nth-child(8) {
  animation-delay: 0.23s;
}
.reveal.is-visible .gallery figure:nth-child(9) {
  animation-delay: 0.26s;
}
.reveal.is-visible .gallery figure:nth-child(10) {
  animation-delay: 0.29s;
}
.reveal.is-visible .gallery figure:nth-child(n + 11) {
  animation-delay: 0.32s;
}

@keyframes gallery-pop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.reveal.is-visible .feature-card {
  animation: feature-rise 0.75s var(--ease-out) both;
}

.reveal.is-visible .feature-card:nth-child(1) {
  animation-delay: 0.05s;
}
.reveal.is-visible .feature-card:nth-child(2) {
  animation-delay: 0.15s;
}
.reveal.is-visible .feature-card:nth-child(3) {
  animation-delay: 0.25s;
}

@keyframes feature-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Prose block */
.prose-block {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.prose-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 55%;
  height: 120%;
  background: linear-gradient(160deg, rgba(232, 197, 71, 0.06), transparent 55%);
  pointer-events: none;
  animation: prose-glow 12s ease-in-out infinite alternate;
}

@keyframes prose-glow {
  from {
    transform: rotate(0deg) translateX(0);
    opacity: 0.6;
  }
  to {
    transform: rotate(6deg) translateX(-4%);
    opacity: 1;
  }
}

.prose-block p {
  position: relative;
  z-index: 1;
  margin: 0 0 1.1em;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.prose-block > p:last-child {
  margin-bottom: 0;
}

.prose-block strong {
  color: var(--text);
  font-weight: 600;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.gallery figure:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
  z-index: 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-glass) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(232, 197, 71, 0.45);
  transform: translateY(-4px);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
  color: var(--gold);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s, transform 0.35s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(232, 197, 71, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateX(4px);
}

.faq-item[open] {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 12px 40px rgba(91, 33, 182, 0.2);
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item summary {
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.25s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 1.35rem 1.25rem;
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0;
}

.faq-item[open] > .faq-answer {
  animation: faq-open 0.45s var(--ease-out);
}

/* CTA band */
.cta-band {
  position: relative;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  background: linear-gradient(120deg, rgba(91, 33, 182, 0.5) 0%, rgba(232, 197, 71, 0.14) 40%, rgba(139, 92, 246, 0.35) 100%);
  background-size: 200% 200%;
  animation: cta-flow 14s ease infinite;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(232, 197, 71, 0.12), transparent 45%);
  animation: cta-orb 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cta-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes cta-orb {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(8%, 6%) scale(1.15);
  }
}

.cta-band h2,
.cta-band p,
.cta-band .btn {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
}

.cta-band p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 480px;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-visual__img {
    transform: none !important;
  }

  .hero-visual__inner {
    animation: none !important;
  }
}
