:root {
  --bg: #070807;
  --bg-elevated: #0e100e;
  --ink: #f2f4f0;
  --muted: #9aa396;
  --line: rgba(200, 255, 80, 0.18);
  --acid: #c8ff50;
  --acid-deep: #9ad62a;
  --acid-soft: rgba(200, 255, 80, 0.12);
  --shadow: rgba(0, 0, 0, 0.55);
  --font-display: "Syne", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(200, 255, 80, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 30%, rgba(80, 120, 40, 0.12), transparent 50%),
    linear-gradient(180deg, #0a0c0a 0%, var(--bg) 40%, #050605 100%);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

.hero-video {
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  mix-blend-mode: overlay;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.92), rgba(7, 8, 7, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  border-radius: 0.35rem;
  box-shadow: 0 0 0 1px var(--line);
}

.site-nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--acid);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-buy,
.btn-primary {
  background: var(--acid);
  color: #0a0d08;
}

.btn-buy:hover,
.btn-primary:hover {
  background: #d8ff7a;
}

.btn-ghost {
  border-color: rgba(242, 244, 240, 0.28);
  background: rgba(7, 8, 7, 0.35);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.btn-copy {
  flex-shrink: 0;
  background: var(--acid);
  color: #0a0d08;
  min-width: 5.5rem;
}

.btn-copy.is-copied {
  background: transparent;
  border: 1px solid var(--acid);
  color: var(--acid);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.35) 0%, rgba(7, 8, 7, 0.15) 35%, rgba(7, 8, 7, 0.72) 68%, rgba(7, 8, 7, 0.96) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(200, 255, 80, 0.12), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  animation: riseIn 1s var(--ease) both;
}

.hero-ticker {
  margin: 0 0 0.85rem;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.6rem, 12vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-line {
  margin: 1.15rem 0 0;
  max-width: 28ch;
  color: rgba(242, 244, 240, 0.86);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

.hero-ca {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.55rem;
  width: min(100%, 34rem);
  margin-top: 1.35rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.62);
  backdrop-filter: blur(8px);
}

.hero-ca-value {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  overflow: hidden;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 2.4vw, 0.86rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-ca-value .ca-short,
.ca-value .ca-short {
  display: none;
}

.hero-ca-value .ca-full,
.ca-value .ca-full {
  display: inline;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.section-label {
  margin: 0 0 0.75rem;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.story {
  padding: clamp(4rem, 10vw, 8rem) clamp(1rem, 3vw, 2.5rem);
}

.story-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.story-copy p {
  margin: 1rem 0 0;
  max-width: 38ch;
  color: var(--muted);
}

.story-copy p:first-of-type {
  color: rgba(242, 244, 240, 0.88);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  color: var(--acid);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.story-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow: 0 30px 80px var(--shadow);
}

.story-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.story-visual:hover img {
  transform: scale(1.03);
}

.token {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 3vw, 2.5rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, var(--acid-soft), transparent),
    var(--bg-elevated);
}

.token-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.token-note {
  margin: 0.9rem auto 0;
  max-width: 42ch;
  color: var(--muted);
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.ca-value {
  flex: 1 1 16rem;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.85rem;
  overflow-x: auto;
  color: var(--acid);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 2.2vw, 0.9rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.token-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.token-links a {
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.token-links a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.presence {
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 3vw, 2.5rem);
}

.presence-grid {
  display: grid;
  gap: 1rem;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.presence-copy {
  padding: 1.5rem 0.25rem 1rem;
}

.presence-copy p:last-child {
  margin: 1rem 0 0;
  max-width: 34ch;
  color: var(--muted);
}

.presence-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 0.2rem;
}

.presence-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 1.1s var(--ease);
}

.presence-shot:hover img {
  transform: scale(1.04);
}

.reel {
  display: grid;
  gap: 0.75rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem) clamp(3rem, 7vw, 5rem);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reel-frame {
  overflow: hidden;
  border-radius: 0.2rem;
  background: #000;
}

.reel-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}

.gallery-head {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.75rem;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 22vw);
  gap: 0.85rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--acid-deep) transparent;
}

.gallery-track figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.2rem;
  scroll-snap-align: start;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}

.gallery-track figure:hover img {
  transform: scale(1.05);
}

.join {
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(200, 255, 80, 0.1), transparent 60%),
    var(--bg-elevated);
}

.join-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.join-inner > p:last-of-type {
  margin: 0.9rem auto 0;
  max-width: 36ch;
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.social-link:hover {
  border-color: var(--acid);
  color: var(--acid);
  background: rgba(200, 255, 80, 0.06);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem) 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-brand span {
  display: block;
  font-size: 0.82rem;
}

.footer-disclaimer {
  margin: 0;
  max-width: 34ch;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0, -1.5%, 0);
  }
}

@media (min-width: 760px) {
  .site-nav {
    display: flex;
  }

  .story-layout {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .presence-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
  }

  .presence-shot--tall {
    grid-row: span 2;
  }

  .presence-shot--tall img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .reel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .presence-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-template-areas:
      "tall copy a"
      "tall b b";
  }

  .presence-shot--tall {
    grid-area: tall;
  }

  .presence-copy {
    grid-area: copy;
    align-self: end;
    padding-bottom: 1.5rem;
  }

  .presence-grid > .presence-shot:nth-of-type(2) {
    grid-area: a;
  }

  .presence-grid > .presence-shot:nth-of-type(3) {
    grid-area: b;
  }

  .presence-grid > .presence-shot:nth-of-type(3) img {
    aspect-ratio: 21 / 9;
  }
}

@media (max-width: 759px) {
  :root {
    --header-h: 3.6rem;
    --page-pad: max(0.9rem, env(safe-area-inset-left));
    --page-pad-r: max(0.9rem, env(safe-area-inset-right));
  }

  body {
    font-size: 0.98rem;
  }

  .site-header {
    height: calc(var(--header-h) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-left: var(--page-pad);
    padding-right: var(--page-pad-r);
    gap: 0.5rem;
  }

  .brand-mark {
    min-width: 0;
    gap: 0.55rem;
  }

  .brand-mark span {
    font-size: 0.9rem;
  }

  .brand-mark img {
    width: 1.9rem;
    height: 1.9rem;
    flex-shrink: 0;
  }

  .site-header .btn-buy {
    flex-shrink: 0;
    min-height: 2.35rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: end;
  }

  .hero-video {
    object-position: center 18%;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(7, 8, 7, 0.5) 0%, rgba(7, 8, 7, 0.22) 26%, rgba(7, 8, 7, 0.82) 58%, rgba(7, 8, 7, 0.98) 100%),
      radial-gradient(ellipse at 50% 16%, rgba(200, 255, 80, 0.1), transparent 55%);
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top) + 1rem)
      var(--page-pad-r)
      calc(1.75rem + env(safe-area-inset-bottom))
      var(--page-pad);
  }

  .hero-ticker {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-brand {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 3.8rem);
    line-height: 0.92;
    word-break: break-word;
  }

  .hero-line {
    margin-top: 0.85rem;
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-ca {
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: stretch;
    gap: 0.45rem;
    margin-top: 1.1rem;
    padding: 0.4rem;
  }

  .hero-ca-value,
  .ca-value {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.7rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }

  .hero-ca-value .ca-full,
  .ca-value .ca-full {
    display: none;
  }

  .hero-ca-value .ca-short,
  .ca-value .ca-short {
    display: inline;
  }

  .hero-ca .btn-copy,
  .ca-row .btn-copy {
    width: auto;
    min-width: 5.75rem;
    min-height: 2.7rem;
    padding-inline: 0.9rem;
    font-size: 0.84rem;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.75rem;
    padding-inline: 0.65rem;
    font-size: 0.84rem;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .section-label {
    font-size: 0.68rem;
  }

  .story,
  .token,
  .presence,
  .join {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad-r);
  }

  .story {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .story-layout {
    gap: 1.5rem;
    width: 100%;
  }

  .story-copy p {
    max-width: none;
    font-size: 0.96rem;
  }

  .story-visual {
    box-shadow: 0 16px 40px var(--shadow);
  }

  .token {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .token-inner {
    width: 100%;
  }

  .token-note {
    max-width: none;
    font-size: 0.94rem;
  }

  .ca-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.45rem;
    margin-top: 1.35rem;
    padding: 0.4rem;
  }

  .token-links {
    gap: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  .presence {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
  }

  .presence-grid {
    width: 100%;
    gap: 0.75rem;
  }

  .presence-copy {
    order: -1;
    padding: 0 0 0.35rem;
  }

  .presence-copy p:last-child {
    max-width: none;
    font-size: 0.96rem;
  }

  .presence-shot img {
    aspect-ratio: 4 / 5;
  }

  .presence-shot--tall img {
    aspect-ratio: 3 / 4;
  }

  .reel {
    width: 100%;
    gap: 0.65rem;
    padding: 0 var(--page-pad-r) 2.5rem var(--page-pad);
  }

  .reel-frame video {
    aspect-ratio: 16 / 11;
  }

  .gallery {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .gallery-head {
    width: auto;
    margin: 0 var(--page-pad) 1.15rem;
  }

  .gallery-track {
    grid-auto-columns: minmax(72vw, 240px);
    gap: 0.65rem;
    padding: 0 var(--page-pad);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .join {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .join-inner {
    width: 100%;
  }

  .join-inner > p:last-of-type {
    max-width: none;
  }

  .social-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.5rem;
  }

  .social-link {
    justify-content: center;
    width: 100%;
    min-height: 2.85rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding:
      1.35rem
      var(--page-pad-r)
      calc(1.5rem + env(safe-area-inset-bottom))
      var(--page-pad);
  }

  .footer-disclaimer {
    max-width: none;
    font-size: 0.84rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    min-height: 2.9rem;
  }

  .hero-ca,
  .ca-row {
    flex-direction: column;
  }

  .hero-ca .btn-copy,
  .ca-row .btn-copy {
    width: 100%;
  }

  .hero-ca-value,
  .ca-value {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero-brand {
    font-size: 2.35rem;
  }

  .site-header .btn-buy {
    padding-inline: 0.65rem;
    font-size: 0.76rem;
  }

  .btn,
  .social-link {
    font-size: 0.84rem;
  }
}

@media (max-height: 720px) and (max-width: 759px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 4.5rem);
    padding-bottom: 1.5rem;
  }

  .hero-brand {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .hero-line {
    margin-top: 0.65rem;
  }

  .hero-ca {
    margin-top: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video,
  .reveal,
  .hero-content,
  .story-visual img,
  .presence-shot img,
  .gallery-track img {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
