:root {
  --rh-green: #00c805;
  --rh-green-deep: #009b04;
  --rh-green-glow: rgba(0, 200, 5, 0.45);
  --rh-yellow: #ffe14a;
  --rh-yellow-hot: #ffd100;
  --black: #050705;
  --ink: #0a0f0a;
  --panel: #0d140e;
  --white: #f5fff5;
  --muted: rgba(245, 255, 245, 0.68);
  --copper: #c47a3a;
  --line: rgba(0, 200, 5, 0.22);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

/* Ambient canvas + overlays */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rh-green-glow) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  opacity: 0.35;
}

.ticker {
  position: relative;
  z-index: 30;
  background: var(--rh-yellow);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 2px solid #000;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 7, 5, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.15rem;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rh-green);
  box-shadow: 0 0 18px var(--rh-green-glow);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 12px var(--rh-green-glow); }
  50% { box-shadow: 0 0 28px rgba(0, 200, 5, 0.75), 0 0 0 6px rgba(0, 200, 5, 0.12); }
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rh-green), var(--rh-yellow));
  transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--rh-green);
  transition: transform 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 99;
  background: rgba(5, 7, 5, 0.96);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--rh-green);
  color: #041004;
  box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.5);
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  background: var(--rh-yellow);
  box-shadow: 0 12px 40px rgba(255, 209, 0, 0.35);
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(0, 200, 5, 0); }
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--rh-green);
}

.btn-ghost:hover {
  background: rgba(0, 200, 5, 0.12);
  border-color: var(--rh-yellow);
  color: var(--rh-yellow);
}

.btn-nav {
  background: var(--rh-yellow);
  color: var(--ink);
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
}

.btn-nav:hover {
  background: var(--rh-green);
}

.btn-lg {
  padding: 1.05rem 1.9rem;
  font-size: 1rem;
}

.magnetic {
  will-change: transform;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  will-change: transform;
  filter: saturate(1.08) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.25) 0%, rgba(5, 7, 5, 0.15) 35%, rgba(5, 7, 5, 0.92) 100%),
    radial-gradient(ellipse at 70% 40%, transparent 20%, rgba(5, 7, 5, 0.45) 100%);
}

.hero-shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 225, 74, 0.12) 48%,
    rgba(0, 200, 5, 0.18) 52%,
    transparent 60%
  );
  animation: shine-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-sweep {
  0%, 100% { transform: translateX(-30%) rotate(8deg); opacity: 0.4; }
  50% { transform: translateX(30%) rotate(8deg); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 4rem) 4.5rem;
  max-width: 920px;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rh-yellow);
  margin-bottom: 1.1rem;
  box-shadow: 0 0 40px rgba(0, 200, 5, 0.55);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rh-yellow);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 200, 5, 0.35);
}

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

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
}

.glitch::before {
  color: var(--rh-green);
  animation: glitch-a 3.2s infinite linear alternate-reverse;
  clip-path: inset(0 0 55% 0);
}

.glitch::after {
  color: var(--rh-yellow);
  animation: glitch-b 2.4s infinite linear alternate-reverse;
  clip-path: inset(45% 0 0 0);
}

@keyframes glitch-a {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitch-b {
  0% { transform: translate(0); }
  20% { transform: translate(3px, -1px); }
  40% { transform: translate(-3px, 1px); }
  60% { transform: translate(2px, -2px); }
  80% { transform: translate(-2px, 2px); }
  100% { transform: translate(0); }
}

.hero-tag {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 1.6rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.ca-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.55rem 0.55rem 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  max-width: 100%;
}

.ca-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rh-yellow);
}

.ca-bar code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85rem;
  color: var(--rh-green);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(52vw, 280px);
}

.ca-copy {
  border: none;
  background: var(--rh-green);
  color: #041004;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ca-copy:hover {
  background: var(--rh-yellow);
  transform: translateY(-1px);
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-hint span {
  display: block;
  width: 18px;
  height: 28px;
  border: 2px solid var(--rh-green);
  border-radius: 12px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--rh-yellow);
  transform: translateX(-50%);
  animation: scroll-dot 1.4s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.float-bob {
  animation: float-bob 4.5s ease-in-out infinite;
}

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

/* Stats */
.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  background: var(--ink);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background 0.35s ease;
}

.stat:hover {
  background: #0f1a10;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--rh-green);
  letter-spacing: 0.04em;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--rh-yellow);
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Sections shared */
.section-head {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rh-yellow);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 14ch;
}

/* About */
.about {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 10% 20%, rgba(0, 200, 5, 0.12), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 209, 0, 0.08), transparent 40%),
    var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.about-orb {
  position: absolute;
  width: min(320px, 80vw);
  height: min(320px, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--rh-yellow) 0%, var(--rh-green) 45%, transparent 70%);
  filter: blur(8px);
  opacity: 0.55;
  animation: orb-spin 12s linear infinite;
}

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

.about-mascot {
  position: relative;
  z-index: 2;
  width: min(260px, 70vw);
  border-radius: 50%;
  border: 4px solid var(--rh-green);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 50px var(--rh-green-glow);
}

.about-ring {
  position: absolute;
  width: min(300px, 78vw);
  height: min(300px, 78vw);
  border: 1px dashed rgba(255, 225, 74, 0.45);
  border-radius: 50%;
  animation: ring-spin 18s linear infinite;
}

.about-ring::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--rh-yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--rh-yellow);
}

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

.about-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  max-width: 46ch;
}

.about-copy strong {
  color: var(--white);
}

.about-traits {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-traits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.trait-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rh-green);
  box-shadow: 0 0 12px var(--rh-green);
  flex-shrink: 0;
  animation: trait-blink 2s ease-in-out infinite;
}

@keyframes trait-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* How to buy */
.howtobuy {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, #071008 0%, #050705 100%);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--rh-green), var(--rh-yellow), var(--rh-green));
  opacity: 0.35;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.4rem 1.6rem;
  background: linear-gradient(160deg, rgba(0, 200, 5, 0.08), rgba(5, 7, 5, 0.9));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--rh-green);
  box-shadow: 0 20px 50px rgba(0, 200, 5, 0.15);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--rh-yellow);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(255, 209, 0, 0.35);
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

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

.howto-cta {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.ca-bar-inline {
  background: rgba(13, 20, 14, 0.9);
}

/* Chart */
.chart {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 200, 5, 0.1), transparent 50%),
    #050705;
}

.chart .section-head h2 {
  max-width: 16ch;
}

.chart-frame {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 60px rgba(0, 200, 5, 0.12);
  overflow: hidden;
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}

@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}

#dexscreener-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}

/* Join */
.join {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
  text-align: left;
}

.join-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 200, 5, 0.22), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(255, 209, 0, 0.1), transparent 40%),
    var(--black);
  animation: join-pulse 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes join-pulse {
  0%, 100% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(8deg) brightness(1.08); }
}

.join .section-head h2 {
  max-width: 18ch;
}

.join-lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.05rem;
}

.join-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 1rem;
  margin-top: 2.25rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(13, 20, 14, 0.85);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-card:hover {
  border-color: var(--rh-yellow);
  background: rgba(0, 200, 5, 0.1);
  box-shadow: 0 0 40px rgba(0, 200, 5, 0.18);
}

.social-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--rh-green);
  color: #041004;
  flex-shrink: 0;
}

.social-icon.uni {
  font-size: 1.5rem;
  background: var(--rh-yellow);
}

.social-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.social-meta strong {
  font-size: 1.05rem;
}

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

.social-arrow {
  font-size: 1.4rem;
  color: var(--rh-green);
  transition: transform 0.3s var(--ease-out);
}

.social-card:hover .social-arrow {
  transform: translateX(6px);
  color: var(--rh-yellow);
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: #040604;
}

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

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--rh-green);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--rh-green);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 48ch;
  justify-self: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--rh-yellow);
}

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

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

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--rh-green);
  color: #041004;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  z-index: 9999;
  transition: transform 0.35s var(--ease-out);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .steps,
  .join-actions,
  .footer {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .footer-disclaimer {
    justify-self: start;
    text-align: left;
  }

  .section-head h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .ca-bar {
    width: 100%;
  }

  .howto-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

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

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