:root {
  --void: #060807;
  --ink: #0c100e;
  --slate: #151c18;
  --concrete: #8a948c;
  --mist: #c7d0c9;
  --snow: #f4f7f4;
  --lime: #39ff14;
  --lime-deep: #1fd100;
  --lime-dim: rgba(57, 255, 20, 0.14);
  --lime-glow: rgba(57, 255, 20, 0.45);
  --ring: rgba(57, 255, 20, 0.28);
  --line: rgba(244, 247, 244, 0.08);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --nav-h: 72px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--snow);
  background: var(--void);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

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

.cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(57, 255, 20, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(57, 255, 20, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 70%, rgba(90, 120, 100, 0.18), transparent 55%),
    linear-gradient(180deg, #050706 0%, #0a0f0c 45%, #070a08 100%);
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.orbit {
  position: absolute;
  border: 1px solid var(--ring);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spinOrbit linear infinite;
}

.orbit-a {
  width: min(92vw, 920px);
  height: min(92vw, 920px);
  animation-duration: 48s;
  opacity: 0.35;
}

.orbit-b {
  width: min(72vw, 680px);
  height: min(72vw, 680px);
  animation-duration: 36s;
  animation-direction: reverse;
  opacity: 0.28;
  border-style: dashed;
}

.orbit-c {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  animation-duration: 24s;
  opacity: 0.22;
}

.haze {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: hazeDrift 14s ease-in-out infinite alternate;
}

.haze-1 {
  width: 42vw;
  height: 42vw;
  top: -8%;
  right: -10%;
  background: rgba(57, 255, 20, 0.16);
}

.haze-2 {
  width: 36vw;
  height: 36vw;
  bottom: 8%;
  left: -12%;
  background: rgba(120, 140, 125, 0.18);
  animation-delay: -4s;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes spinOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes hazeDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-4%, 6%) scale(1.08);
  }
}

.ticker {
  position: relative;
  z-index: 30;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 8, 7, 0.82);
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 2.5rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
  vertical-align: middle;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(6, 8, 7, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(1180px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 18px var(--lime-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.links a {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--mist);
  transition: color 0.25s var(--ease);
}

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

.nav-join {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--lime);
  color: #041006 !important;
  box-shadow: 0 0 24px var(--lime-glow);
}

.nav-join:hover {
  filter: brightness(1.08);
  color: #041006 !important;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--snow);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - 36px);
  display: grid;
  align-items: center;
  padding: 2.5rem 0 4rem;
}

.hero-glow {
  position: absolute;
  inset: 10% 20% auto;
  height: 40%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.18), transparent 70%);
  filter: blur(30px);
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--ring);
  animation: ringPulse 6s ease-in-out infinite;
}

.ring-1 {
  width: 78%;
  aspect-ratio: 1;
  border-style: dashed;
}

.ring-2 {
  width: 62%;
  aspect-ratio: 1;
  animation-delay: -1.5s;
  border-color: rgba(57, 255, 20, 0.45);
}

.ring-3 {
  width: 46%;
  aspect-ratio: 1;
  animation-delay: -3s;
  box-shadow: inset 0 0 40px rgba(57, 255, 20, 0.08);
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.035);
    opacity: 1;
  }
}

.mascot-wrap {
  position: relative;
  z-index: 2;
  width: min(78%, 360px);
}

.mascot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(57, 255, 20, 0.65);
  box-shadow:
    0 0 0 10px rgba(57, 255, 20, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 48px var(--lime-glow);
  animation: floatMascot 5.5s ease-in-out infinite;
}

.mascot-shadow {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -18px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(12px);
  animation: shadowPulse 5.5s ease-in-out infinite;
}

.trail {
  position: absolute;
  right: 4%;
  top: 18%;
  width: 90px;
  height: 180px;
  background: linear-gradient(180deg, var(--lime), transparent);
  filter: blur(18px);
  opacity: 0.45;
  transform: rotate(28deg);
  animation: trailFlicker 2.8s ease-in-out infinite;
  border-radius: 40px;
}

@keyframes floatMascot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.55;
  }
  50% {
    transform: scaleX(0.82);
    opacity: 0.35;
  }
}

@keyframes trailFlicker {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(28deg) translateY(0);
  }
  50% {
    opacity: 0.65;
    transform: rotate(28deg) translateY(10px);
  }
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: var(--lime-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
  animation: ping 1.8s ease-out infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.65);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(57, 255, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.65rem;
}

.brand-line {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  background: linear-gradient(120deg, #fff 20%, var(--lime) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ticker-line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--snow);
}

.ticker-line .dollar {
  color: var(--lime);
  text-shadow: 0 0 24px var(--lime-glow);
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.lede {
  max-width: 34rem;
  color: var(--mist);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.cta-row,
.howto-actions,
.join-actions,
.chart-link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-lime {
  background: var(--lime);
  color: #041006;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
}

.btn-lime:hover {
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.55);
}

.btn-ghost {
  border: 1px solid rgba(57, 255, 20, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: var(--snow);
}

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

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

.btn-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.ico-lime,
.btn-ghost .btn-ico {
  filter: brightness(0) saturate(100%) invert(78%) sepia(84%) saturate(1200%) hue-rotate(55deg) brightness(118%) contrast(118%);
}

.ico-dark,
.btn-lime .btn-ico {
  filter: brightness(0);
}

.ca-box {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 14, 0.72);
  backdrop-filter: blur(8px);
}

.ca-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

#caText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
  color: var(--mist);
}

.copy-btn {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--lime-dim);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
}

.copy-btn:hover,
.copy-btn.copied {
  background: rgba(57, 255, 20, 0.25);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.section-sub {
  color: var(--mist);
  font-size: 1.05rem;
}

.about-layout {
  display: grid;
  gap: 1.5rem;
}

.about-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(57, 255, 20, 0.08), transparent 45%),
    rgba(12, 16, 14, 0.65);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(1.05) contrast(1.05);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.2);
}

.about-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
}

.about-feature-copy h3,
.info-card h3,
.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.about-feature-copy p,
.info-card p,
.step p {
  color: var(--mist);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card {
  position: relative;
  padding: 1.4rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(57, 255, 20, 0.35);
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.08), transparent 55%);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.info-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.14), transparent 60%);
}

.card-index {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
}

.steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: none;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(12, 16, 14, 0.55);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.step:hover {
  border-color: rgba(57, 255, 20, 0.4);
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.08);
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: #041006;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 0 20px var(--lime-glow);
}

.howto-actions {
  margin-top: 1.75rem;
}

.chart-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.25);
  background: #0b0f0c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(57, 255, 20, 0.08);
  min-height: 560px;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(57, 255, 20, 0.05);
  z-index: 1;
}

.chart-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
  background: #0b0f0c;
}

.chart-link {
  margin-top: 1.25rem;
}

.joinus {
  padding-top: 5.5rem;
}

.join-banner-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  background: #050706;
  box-shadow: 0 0 80px rgba(57, 255, 20, 0.12);
}

.join-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: min(42vw, 420px);
  animation: bannerBreath 10s ease-in-out infinite;
}

@keyframes bannerBreath {
  0%,
  100% {
    filter: saturate(1.05) brightness(1);
  }
  50% {
    filter: saturate(1.18) brightness(1.05);
  }
}

.join-body {
  padding-top: 2.75rem;
}

.join-note {
  margin-top: 1.5rem;
  color: var(--concrete);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 2.75rem;
  background: rgba(5, 7, 6, 0.85);
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--lime);
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.08);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-socials a:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(57, 255, 20, 0.18);
}

.footer-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(78%) sepia(84%) saturate(1200%) hue-rotate(55deg) brightness(118%) contrast(118%);
}

.footer-legal {
  max-width: 36rem;
  color: var(--concrete);
  font-size: 0.82rem;
}

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

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

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stage {
    order: -1;
    min-height: 340px;
  }

  .mascot-wrap {
    width: min(70%, 300px);
  }

  .about-feature {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 240px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: grid;
  }

  .links {
    position: fixed;
    top: calc(var(--nav-h) + 34px);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(8, 11, 9, 0.96);
    backdrop-filter: blur(16px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .links.open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .links a {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav-join {
    text-align: center;
  }

  .ca-box {
    grid-template-columns: 1fr;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 420px;
  }

  .join-banner {
    max-height: 38vw;
    min-height: 120px;
    object-fit: cover;
  }

  .step:hover {
    transform: none;
  }
}

@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;
  }
}
