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

:root {
  --void: #020503;
  --ink: #050806;
  --panel: #0a100c;
  --panel-lift: #0f1812;
  --green: #39e639;
  --green-hot: #5cff5c;
  --green-deep: #00a82b;
  --green-mute: #5f8f6a;
  --green-fog: rgba(57, 230, 57, 0.12);
  --green-line: rgba(57, 230, 57, 0.28);
  --red: #ff4d4d;
  --white: #f2fff4;
  --soft: rgba(245, 255, 247, 0.72);
  --muted: rgba(180, 210, 188, 0.55);
  --border: rgba(57, 230, 57, 0.18);
  --font-display: "Unbounded", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "Outfit", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, 92vw);
}

.accent {
  color: var(--green-hot);
}

.accent-soft {
  color: var(--white);
}

.center {
  text-align: center;
}

.wm-robin {
  color: var(--white);
}

.wm-vista {
  color: var(--green-hot);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92vw);
  margin: 0 auto;
  height: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 2px;
  animation: logo-breathe 4.5s ease-in-out infinite;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-socials {
  display: flex;
  gap: 0.45rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  color: var(--white) !important;
  background: rgba(0, 230, 58, 0.04);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.nav-social:hover {
  border-color: var(--green);
  color: var(--green-hot) !important;
  background: var(--green-fog);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 1.15rem !important;
  background: var(--green);
  color: var(--void) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--green-hot) !important;
  color: var(--void) !important;
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(0, 230, 58, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-hot);
}

/* ── Hero (robinvista.app effects) ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: calc(var(--header-h) + 1.5rem) 24px 9vh;
  overflow: hidden;
  background: var(--void);
  cursor: crosshair;
}

.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 230, 57, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 230, 57, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  to { background-position: 0 48px, 48px 0; }
}

.glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 35%, rgba(57, 230, 57, 0.13), transparent 60%);
}

.logo-bg {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(88vh, 92vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url("logo.png") center / contain no-repeat;
  mask-image: radial-gradient(circle at 50% 50%, #000 38%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 38%, transparent 68%);
  filter: drop-shadow(0 0 60px rgba(57, 230, 57, 0.4));
  animation: logoBreathe 6s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes logoBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -52%) scale(1.03); }
}

.moonchart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52vh;
  opacity: 0.55;
}

.moonchart path.line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(57, 230, 57, 0.9));
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawUp 9s cubic-bezier(0.4, 0, 0.3, 1) infinite;
}

.moonchart path.fill {
  fill: url(#chartFade);
  opacity: 0;
  animation: fillIn 9s cubic-bezier(0.4, 0, 0.3, 1) infinite;
}

@keyframes drawUp {
  0% { stroke-dashoffset: 2400; opacity: 0; }
  6% { opacity: 1; }
  62% { stroke-dashoffset: 0; opacity: 1; }
  86% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes fillIn {
  0%, 20% { opacity: 0; }
  62%, 86% { opacity: 0.35; }
  100% { opacity: 0; }
}

.hero-candles {
  position: absolute;
  inset: 0;
}

.candle {
  position: absolute;
  bottom: -80px;
  width: 8px;
  animation: rise linear infinite;
}

.candle .body {
  width: 8px;
  background: var(--green);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(57, 230, 57, 0.7);
}

.candle .wick {
  width: 2px;
  background: var(--green);
  margin: 0 auto;
}

.candle.red .body,
.candle.red .wick {
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
}

@keyframes rise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  8% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-115vh) rotate(14deg); opacity: 0; }
}

.hero .scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.5;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 2px,
    rgba(0, 0, 0, 0.18) 2px 4px
  );
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 22vmax rgba(0, 0, 0, 0.85);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(920px, 100%);
  margin: 0 auto;
  animation: enter 0.8s 0.5s both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.brand-vista {
  color: var(--green);
  text-shadow: 0 0 30px rgba(57, 230, 57, 0.6);
}

.hero-sub {
  display: block;
  margin-top: 18px;
  font-size: clamp(0.85rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green-mute);
  text-transform: uppercase;
}

.glitch {
  position: relative;
  display: inline-block;
  color: var(--green);
}

.glitch::before,
.glitch::after {
  content: attr(data-t);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  color: var(--red);
  clip-path: inset(18% 0 62% 0);
  animation: glitch 3.4s steps(2) infinite;
}

.glitch::after {
  color: var(--green-hot);
  clip-path: inset(64% 0 8% 0);
  animation: glitch 2.7s steps(2) infinite reverse;
}

@keyframes glitch {
  0%, 92%, 100% { transform: none; opacity: 0; }
  93% { transform: translate(-5px, 2px); opacity: 0.9; }
  95% { transform: translate(5px, -1px); opacity: 0.9; }
  97% { transform: translate(-3px, 1px); opacity: 0.9; }
}

@keyframes enter {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-lede {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  color: var(--soft);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@keyframes logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); transform: scale(1); }
  50% { filter: drop-shadow(0 0 10px rgba(57, 230, 57, 0.45)); transform: scale(1.04); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.65rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

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

.btn-primary {
  background: var(--green);
  color: var(--void);
  box-shadow: 0 0 0 rgba(0, 230, 58, 0);
}

.btn-primary:hover {
  background: var(--green-hot);
  box-shadow: 0 0 32px rgba(0, 230, 58, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--green-hot);
  color: var(--green-hot);
  background: rgba(0, 230, 58, 0.06);
}

.btn-lg {
  padding: 1.1rem 2.1rem;
  font-size: 1rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.7rem 1.15rem;
  font-size: 0.82rem;
}

.btn-copy.copied {
  background: var(--green-deep);
  color: var(--white);
}

/* ── Ticker ── */
.ticker {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #001a08, #003312 40%, #001a08);
  color: var(--white);
  padding: 0.95rem 0;
  overflow: hidden;
  border-top: 1px solid var(--green-line);
  border-bottom: 1px solid var(--green-line);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-sep {
  color: var(--green);
  opacity: 0.55;
  font-size: 0.65rem;
}

.ticker-accent {
  color: var(--green-hot);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mute);
  margin-bottom: 1rem;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.section-text {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 1rem;
  max-width: 36rem;
}

.section-text strong {
  color: var(--green-hot);
  font-weight: 700;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse at 12% 40%, rgba(0, 230, 58, 0.14), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(0, 100, 30, 0.2), transparent 45%),
    var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-mark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-orb {
  position: absolute;
  width: min(88%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.28), transparent 68%);
  filter: blur(18px);
  animation: orb-spin 10s linear infinite;
}

.about-mark img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  border: 1px solid var(--green-line);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(0, 230, 58, 0.18);
  animation: mark-float 7s ease-in-out infinite alternate;
}

@keyframes orb-spin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.08); }
}

@keyframes mark-float {
  from { transform: translateY(0); }
  to { transform: translateY(-10px); }
}

.value-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin-top: 2rem;
}

.value-row li {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.05rem;
  color: var(--green-hot);
  border: 1px solid var(--green-line);
  background: rgba(0, 230, 58, 0.06);
}

/* ── Contract ── */
.contract {
  background:
    linear-gradient(180deg, #070b08 0%, #0b120e 100%);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  box-shadow: 0 0 40px rgba(0, 230, 58, 0.06);
}

.ca-address {
  flex: 1;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.4vw, 0.9rem);
  font-weight: 500;
  color: var(--soft);
  word-break: break-all;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.copy-toast {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-hot);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 230, 58, 0.08), transparent 55%),
    var(--panel);
}

.chart-section .eyebrow {
  color: var(--green-mute);
}

.chart-section .section-sub {
  color: var(--muted);
}

.chart-frame {
  border: 1px solid var(--green-line);
  background: #050805;
  min-height: 500px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 230, 58, 0.08);
}

.dexscreener-embed {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

.dexscreener-embed.hidden {
  display: none;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.chart-placeholder code {
  color: var(--green-hot);
  background: rgba(0, 230, 58, 0.12);
  padding: 0.15rem 0.45rem;
}

.chart-placeholder.hidden {
  display: none;
}

.chart-link-wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.text-link {
  color: var(--green-hot);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Buy ── */
.buy {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(0, 230, 58, 0.16), transparent 42%),
    radial-gradient(ellipse at 95% 100%, rgba(0, 80, 25, 0.35), transparent 40%),
    var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 3rem;
}

.step {
  background: linear-gradient(160deg, rgba(0, 230, 58, 0.07), transparent 55%),
    var(--panel-lift);
  color: var(--white);
  padding: 1.9rem 1.45rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--green);
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 230, 58, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(0, 230, 58, 0.12);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-hot);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.buy-cta {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--void);
  color: var(--muted);
  padding: 3.5rem 0 2.4rem;
  border-top: 1px solid var(--green-line);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  max-width: 540px;
  line-height: 1.65;
  color: rgba(180, 210, 188, 0.4);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mark img {
    width: min(100%, 280px);
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.96);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    justify-content: flex-end;
    padding: calc(var(--header-h) + 1rem) 18px 6vh;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    letter-spacing: 0.1em;
  }

  .logo-bg {
    width: min(70vh, 100vw);
    top: 40%;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    justify-content: center;
  }

  .dexscreener-embed {
    height: 460px;
  }
}

@media (max-width: 480px) {
  .hero-brand {
    font-size: 2.6rem;
  }

  .nav-wordmark {
    font-size: 0.8rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grid-bg,
  .logo-bg,
  .moonchart path.line,
  .moonchart path.fill,
  .candle,
  .glitch::before,
  .glitch::after,
  .ticker-track,
  .about-orb,
  .about-mark img,
  .nav-logo,
  .hero-content {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
