:root {
  --bg: #070807;
  --bg-elevated: #0c100c;
  --bg-panel: #101510;
  --green: #ccff00;
  --green-soft: #d8ff4a;
  --green-dim: rgba(204, 255, 0, 0.12);
  --green-line: rgba(204, 255, 0, 0.16);
  --ink: #081000;
  --text: #f3f6ee;
  --muted: #9aa894;
  --font-display: "Anton", Impact, sans-serif;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --header-h: 76px;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  line-height: 1.5;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

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

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn-buy:focus-visible,
.btn-primary:focus-visible,
.btn-on-green-strong:focus-visible {
  outline-color: var(--text);
}

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 8, 7, 0.86);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--green-line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(calc(100% - 32px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-ticker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.08em;
}

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

.nav-link {
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-buy,
.btn-primary {
  background: var(--green);
  color: var(--ink);
}

.btn-buy:hover,
.btn-primary:hover {
  background: var(--green-soft);
}

.btn-ghost {
  border-color: var(--green-line);
  background: rgba(204, 255, 0, 0.03);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--green);
  background: var(--green-dim);
}

.btn-on-green {
  border-color: rgba(8, 16, 0, 0.18);
  color: var(--ink);
  background: transparent;
}

.btn-on-green:hover {
  background: rgba(8, 16, 0, 0.08);
}

.btn-on-green-strong {
  background: var(--ink);
  color: var(--green);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--green-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-bars::before {
  top: -6px;
}

.menu-toggle-bars::after {
  top: 6px;
}

.site-header.is-open .menu-toggle-bars {
  background: transparent;
}

.site-header.is-open .menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--green-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--green-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 72%);
  opacity: 0.45;
  animation: grid-drift 28s linear infinite;
}

.hero-glow {
  position: absolute;
  width: 48vw;
  height: 48vw;
  right: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: center;
  flex: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--green);
  width: fit-content;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
  animation: pulse 2.2s ease-out infinite;
}

.hero-title {
  margin-top: 22px;
}

.hero-kicker {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.hero-money {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 16vw, 13.5rem);
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: var(--green);
  text-wrap: balance;
}

.hero-support {
  margin-top: 18px;
  max-width: 18ch;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.meta-chip {
  color: var(--green);
}

.meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 18px;
}

.hero-logo-stage {
  width: min(100%, 420px);
}

.hero-logo-float {
  animation: float-y 6.5s ease-in-out infinite;
  will-change: transform;
}

.hero-logo {
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid var(--green-line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.ledger {
  width: min(100%, 420px);
  padding: 14px 16px;
  border: 1px solid var(--green-line);
  border-radius: 16px;
  background: rgba(12, 16, 12, 0.72);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.ledger-head,
.ledger-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  padding: 8px 0;
}

.ledger-head {
  color: var(--muted);
  border-bottom: 1px solid var(--green-line);
  margin-bottom: 4px;
}

.ledger-live {
  color: var(--green);
}

.ledger-row {
  color: #c9d4c0;
  border-bottom: 1px solid rgba(204, 255, 0, 0.06);
}

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

.ticker {
  border-top: 1px solid var(--green-line);
  overflow: hidden;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.2);
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  animation: ticker 38s linear infinite;
}

.ticker-track span::after {
  content: "·";
  margin-left: 36px;
  color: var(--green);
}

/* Banner */

.banner-break {
  border-block: 1px solid var(--green-line);
  background: var(--green);
}

.banner-break img {
  width: 100%;
  height: clamp(180px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

/* Statement */

.statement {
  padding: 120px 0 80px;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--green);
  margin-bottom: 28px;
}

.statement-quote {
  border: 0;
  max-width: 22ch;
}

.statement-quote p {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 6.2vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

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

.concepts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--green-line);
}

.concept {
  padding: 28px 28px 8px 0;
  border-right: 1px solid var(--green-line);
}

.concept:last-child {
  border-right: 0;
  padding-right: 0;
}

.concept:not(:first-child) {
  padding-left: 28px;
}

.concept-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.concept h2 {
  margin: 14px 0 10px;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.03em;
}

.concept p:last-child {
  color: var(--muted);
  max-width: 24ch;
}

/* Word */

.word {
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(204, 255, 0, 0.08), transparent 46%),
    var(--bg);
}

.word-field {
  position: relative;
  width: min(calc(100% - 24px), 1100px);
  min-height: 58vh;
  display: grid;
  place-items: center;
}

.word-giant {
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 16rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  color: var(--green);
  text-align: center;
  user-select: none;
}

.word-tag {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid var(--green-line);
  border-radius: 999px;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--text);
  white-space: nowrap;
}

.tag-1 { top: 12%; left: 6%; }
.tag-2 { top: 18%; right: 8%; }
.tag-3 { bottom: 22%; left: 10%; }
.tag-4 { bottom: 16%; right: 14%; }
.tag-5 { top: 46%; right: 2%; color: var(--green); }

.float-a { animation: float-y 7s ease-in-out infinite; }
.float-b { animation: float-y 8.5s ease-in-out infinite reverse; }
.float-c { animation: float-x 9s ease-in-out infinite; }

/* Narrative */

.narrative {
  padding: 40px 0 120px;
}

.narrative-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
}

.narrative-body {
  max-width: 16ch;
  padding-left: 32px;
  border-left: 1px solid var(--green);
}

.narrative-lead,
.narrative-block p,
.narrative-end {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.narrative-lead {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  margin-bottom: 48px;
}

.narrative-block {
  display: grid;
  gap: 8px;
  margin-bottom: 48px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: #d5dccb;
}

.narrative-end {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--green);
  line-height: 0.9;
}

/* Contract */

.contract {
  padding: 40px 0 80px;
}

.contract-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: 36px;
  border: 1px solid var(--green-line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(204, 255, 0, 0.04), transparent 50%), var(--bg-panel);
}

.contract-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--green);
}

.contract h2 {
  margin: 14px 0 10px;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.contract-note {
  color: var(--muted);
  max-width: 36ch;
}

.ca-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 18px;
  background: #0a0d0a;
  border: 1px solid var(--green-line);
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.ca-value {
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

/* Chart */

.market {
  padding: 40px 0 100px;
}

.market-head h2 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.market-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.15rem;
}

.chart-frame {
  position: relative;
  margin-top: 32px;
  min-height: 420px;
  border: 1px solid var(--green-line);
  border-radius: 22px;
  overflow: hidden;
  background: #080b08;
}

.chart-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

.chart-fallback {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.chart-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.7;
  animation: line-breathe 4.5s ease-in-out infinite;
}

.chart-message,
.chart-hint {
  position: relative;
}

.chart-message {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  letter-spacing: -0.04em;
}

.chart-hint {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* Balance joke */

.balance-section {
  padding: 40px 0 120px;
}

.balance-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  max-width: 14ch;
  line-height: 0.95;
}

.balance-disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.balance-screen {
  margin-top: 36px;
  padding: 28px 32px 22px;
  border-radius: 24px;
  border: 1px solid var(--green-line);
  background:
    linear-gradient(180deg, rgba(204, 255, 0, 0.05), transparent 40%),
    #0b0f0b;
}

.balance-ui-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.balance-figure {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--green);
}

.balance-punch {
  margin-top: 22px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

/* Finale */

.finale {
  background: var(--green);
  color: var(--ink);
  padding: 110px 0 100px;
}

.finale-title {
  display: grid;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.finale-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: baseline;
  margin-top: 28px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.finale-ticker {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.finale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

/* Footer */

.site-footer {
  padding: 36px 0 42px;
  border-top: 1px solid var(--green-line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand p:first-child {
  font-family: var(--font-head);
  font-weight: 700;
}

.footer-meta,
.footer-legal {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-legal {
  max-width: 46ch;
  display: grid;
  gap: 8px;
}

/* Motion */

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(204, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); }
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 72px 72px; }
}

@keyframes line-breathe {
  0%, 100% { opacity: 0.28; transform: scaleX(0.92); }
  50% { opacity: 0.85; transform: scaleX(1); }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .hero-visual {
    justify-items: start;
  }

  .hero-logo-stage,
  .ledger {
    width: min(100%, 520px);
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 24px 20px 32px;
    background: rgba(7, 8, 7, 0.96);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav-link,
  .nav .btn-buy {
    min-height: 52px;
    font-size: 1.2rem;
  }

  .nav .btn-buy {
    width: fit-content;
    margin-top: 8px;
  }

  .header-actions {
    display: flex;
  }

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

  .concept,
  .concept:not(:first-child),
  .concept:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--green-line);
  }

  .narrative-inner,
  .contract-panel,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .narrative-body {
    padding-left: 20px;
  }

  .footer-inner {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .brand-name {
    display: none;
  }

  .hero-money {
    font-size: clamp(4.6rem, 22vw, 7rem);
  }

  .hero-actions .btn,
  .finale-actions .btn,
  .ca-box .btn {
    width: 100%;
  }

  .ledger {
    display: none;
  }

  .word-tag {
    font-size: 0.6rem;
    padding: 6px 9px;
  }

  .tag-1 { top: 6%; left: 0; }
  .tag-2 { top: 10%; right: 0; }
  .tag-3 { bottom: 14%; left: 0; }
  .tag-4 { bottom: 8%; right: 0; }
  .tag-5 { top: auto; bottom: 30%; left: 50%; right: auto; margin-left: -2.5rem; }

  .statement,
  .narrative,
  .balance-section,
  .finale {
    padding-top: 80px;
    padding-bottom: 72px;
  }

  .contract-panel,
  .ca-box,
  .balance-screen {
    padding: 20px;
  }

  .chart-frame,
  .chart-fallback {
    min-height: 320px;
  }

  .chart-frame iframe {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero-grid-bg,
  .hero-logo-float,
  .ticker-track,
  .status-dot,
  .float-a,
  .float-b,
  .float-c,
  .chart-line {
    animation: none;
  }
}
