:root {
  --navy-950: #030b1c;
  --navy-900: #061433;
  --navy-800: #0b2250;
  --navy-700: #12336e;
  --navy-600: #1a4a8f;
  --grid: rgba(110, 180, 255, 0.11);
  --line: rgba(140, 200, 255, 0.18);
  --glass: rgba(8, 24, 58, 0.72);
  --glass-strong: rgba(6, 18, 46, 0.88);
  --green: #8cff3d;
  --green-deep: #2ad12a;
  --green-shadow: #0d6b16;
  --orange: #ff7a18;
  --orange-hot: #ff4d00;
  --gold: #ffd36a;
  --red: #e31c3d;
  --tie: #c8102e;
  --cyan: #8ed4ff;
  --ink: #f3f7ff;
  --muted: #9bb4d4;
  --max: 1180px;
  --header: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(1200px 700px at 12% -10%, #1a4ea8 0%, transparent 58%),
    radial-gradient(900px 520px at 92% 8%, rgba(255, 122, 24, 0.18) 0%, transparent 50%),
    radial-gradient(800px 480px at 80% 90%, rgba(140, 255, 61, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #0a1c44 0%, var(--navy-900) 28%, var(--navy-950) 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

.fx-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.45));
  animation: gridDrift 28s linear infinite;
}

.fx-wash {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 84px,
      rgba(142, 212, 255, 0.03) 84px 85px
    );
  animation: washPulse 6s ease-in-out infinite;
}

.fx-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 8, 24, 0.12) 3px 4px
  );
  opacity: 0.35;
}

#tapeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fx-stonk {
  position: absolute;
  right: -6%;
  top: 8%;
  width: 72vw;
  max-width: 980px;
  height: auto;
  opacity: 0.55;
  animation: stonkPulse 4.5s ease-in-out infinite;
}

.stonk-shaft,
.stonk-head {
  transform-origin: 80px 540px;
  animation: stonkRise 7s ease-in-out infinite;
}

.fx-arrows {
  position: absolute;
  inset: 0;
}

.float-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 18px solid var(--orange);
  filter: drop-shadow(0 0 8px rgba(255, 122, 24, 0.85));
  animation: arrowLift linear infinite;
  opacity: 0.55;
}

.tape {
  position: relative;
  z-index: 4;
  height: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 22, 52, 0.95), rgba(8, 28, 68, 0.88));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--cyan);
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tape-top {
  position: sticky;
  top: 0;
}

.tape-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 8px 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}

.tape-track.reverse {
  animation-direction: reverse;
  animation-duration: 38s;
}

.tape-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tape-track b {
  color: var(--green);
  text-shadow: 0 0 10px rgba(140, 255, 61, 0.7);
}

.site-header {
  position: sticky;
  top: 34px;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(6, 20, 51, 0.86), rgba(6, 20, 51, 0.55));
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.compact {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  background: var(--glass-strong);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(142, 212, 255, 0.28);
  box-shadow: 0 0 18px rgba(255, 122, 24, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Bungee", cursive;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(8, 24, 58, 0.7);
  border-radius: 10px;
  padding: 10px 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.icon-x {
  filter: invert(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-lg {
  min-height: 52px;
  padding: 0 22px;
  font-size: 16px;
}

.btn-buy {
  color: #04120a;
  background: linear-gradient(180deg, #b7ff55 0%, var(--green) 42%, var(--green-deep) 100%);
  box-shadow:
    0 0 0 1px rgba(180, 255, 90, 0.35),
    0 8px 24px rgba(80, 255, 40, 0.28),
    0 0 32px rgba(80, 255, 40, 0.18);
}

.btn-ghost {
  color: var(--ink);
  background: rgba(10, 32, 74, 0.55);
  border-color: var(--line);
}

.btn-copy {
  color: var(--green);
  background: rgba(20, 70, 30, 0.35);
  border: 1px solid rgba(140, 255, 61, 0.35);
  border-radius: 10px;
  min-height: 40px;
}

.pulse {
  animation: buyPulse 2.4s ease-in-out infinite;
}

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

.hero,
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 40px;
}

.hero {
  padding-top: 46px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.logo-rig {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
}

.logo-orbit,
.logo-orbit-2 {
  z-index: 0;
}

.logo-orbit,
.logo-orbit-2 {
  position: absolute;
  top: -4%;
  left: 50%;
  translate: -50% 0;
  width: min(108%, 500px);
  aspect-ratio: 1;
  border: 1px dashed rgba(142, 212, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit 22s linear infinite;
}

.logo-orbit-2 {
  width: min(124%, 560px);
  top: -10%;
  animation-duration: 34s;
  animation-direction: reverse;
  border-style: dotted;
}

.logo-board {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(142, 212, 255, 0.28);
  background: linear-gradient(180deg, rgba(12, 36, 82, 0.55), rgba(4, 14, 36, 0.9));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(255, 122, 24, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

.hero-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: logoFloat 6s ease-in-out infinite;
}

.board-tag,
.board-readout {
  position: absolute;
  z-index: 2;
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.board-tag {
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(227, 28, 61, 0.9);
  box-shadow: 0 0 18px rgba(227, 28, 61, 0.45);
  font-size: 11px;
  animation: tagBlink 1.8s steps(2, end) infinite;
}

.board-readout {
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(4, 16, 40, 0.78);
  border: 1px solid rgba(140, 255, 61, 0.28);
}

.board-readout span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.board-readout strong {
  color: var(--green);
  text-shadow: 0 0 12px rgba(140, 255, 61, 0.55);
}

.spark-line {
  width: 86%;
  margin-top: 18px;
}

.spark {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(140, 255, 61, 0.8));
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawSpark 4.5s ease-in-out infinite;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--cyan);
  font-family: "Share Tech Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.name-line {
  font-family: "Bungee", cursive;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.just-buy {
  font-family: "Anton", sans-serif;
  font-style: italic;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #c8ff5a;
  transform: skewX(-10deg);
  transform-origin: left center;
  text-shadow:
    0 0 8px rgba(140, 255, 61, 0.95),
    0 0 22px rgba(140, 255, 61, 0.55),
    0 0 48px rgba(140, 255, 61, 0.25),
    3px 3px 0 var(--green-deep),
    6px 6px 0 var(--green-shadow),
    9px 9px 0 #08330c;
  animation: justGlow 2.8s ease-in-out infinite;
}

.lead {
  margin: 18px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.deck {
  margin: 0 0 26px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.ca-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.ca-label {
  display: block;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

#caValue {
  font-family: "Share Tech Mono", monospace;
  font-size: 14px;
  color: var(--green);
  word-break: break-all;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stat-row li {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(8, 26, 62, 0.7);
  border: 1px solid var(--line);
}

.stat-row span {
  display: block;
  color: var(--muted);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-row strong {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.section-head h2 em {
  font-style: italic;
  color: var(--green);
  text-shadow: 0 0 18px rgba(140, 255, 61, 0.35);
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.panel {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 40, 88, 0.72), rgba(7, 20, 48, 0.82));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(255, 122, 24, 0.12);
}

.panel-index {
  font-family: "Anton", sans-serif;
  font-style: italic;
  font-size: 42px;
  color: rgba(140, 255, 61, 0.22);
}

.panel h3 {
  margin: 4px 0 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  margin-top: 22px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(8, 24, 58, 0.68);
  border: 1px solid var(--line);
}

.strip-copy h3 {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.strip-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.strip-ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strip-ticks li {
  padding: 12px;
  border-radius: 12px;
  background: rgba(4, 14, 36, 0.55);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
}

.strip-ticks span {
  display: block;
  color: var(--cyan);
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.buy-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(18, 48, 98, 0.55), rgba(7, 20, 48, 0.8));
  border: 1px solid var(--line);
  overflow: hidden;
}

.step-num {
  font-family: "Anton", sans-serif;
  font-style: italic;
  font-size: 64px;
  line-height: 0.8;
  color: var(--green);
  text-shadow: 0 0 22px rgba(140, 255, 61, 0.35);
  transform: skewX(-8deg);
}

.step h3 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.step p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.terminal {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(4, 12, 32, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #16366f, #0d2348);
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.term-dots {
  display: flex;
  gap: 6px;
}

.term-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.term-dots i:nth-child(2) {
  background: var(--orange);
}

.term-dots i:nth-child(3) {
  background: var(--green);
}

.term-clock {
  color: var(--green);
}

.terminal-frame {
  height: min(68vh, 640px);
  background: #0b1220;
}

.terminal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.terminal-foot {
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px 16px;
}

.join-stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.join-banner {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  animation: bannerKen 18s ease-in-out infinite alternate;
}

.join-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 28px;
  background: linear-gradient(180deg, transparent, rgba(4, 12, 32, 0.88) 55%);
}

.join-buy {
  font-size: clamp(42px, 7vw, 80px);
  margin: 0;
}

.join-line {
  margin: 6px 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 20px auto 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-shell p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 32, 74, 0.7);
  border: 1px solid var(--line);
}

.disclaimer {
  margin: 18px 0 0;
  color: #7e94b3;
  font-size: 13px;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 0.8s ease forwards;
}

.reveal-delay {
  animation-delay: 0.16s;
}

.nav-links.open {
  display: flex;
}

@media (max-width: 980px) {
  .hero-layout,
  .about-grid,
  .about-strip,
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--glass-strong);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .fx-stonk {
    opacity: 0.28;
  }
}

@media (max-width: 720px) {
  .hero-layout,
  .about-grid,
  .about-strip,
  .stat-row,
  .footer-shell,
  .step {
    grid-template-columns: 1fr;
  }

  .hero-cta .btn,
  .join-links .btn {
    width: 100%;
  }

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

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .name-line {
    font-size: 40px;
  }
}

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

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 56px 32px, 56px 32px;
  }
}

@keyframes washPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes stonkPulse {
  0%,
  100% {
    opacity: 0.42;
    filter: saturate(1);
  }
  50% {
    opacity: 0.7;
    filter: saturate(1.2);
  }
}

@keyframes stonkRise {
  0%,
  100% {
    transform: translate(0, 8px);
  }
  50% {
    transform: translate(10px, -12px);
  }
}

@keyframes arrowLift {
  0% {
    transform: translateY(40px) scale(0.7);
    opacity: 0;
  }
  15% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-110vh) scale(1);
    opacity: 0;
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes tagBlink {
  50% {
    opacity: 0.55;
  }
}

@keyframes drawSpark {
  0% {
    stroke-dashoffset: 420;
  }
  45%,
  100% {
    stroke-dashoffset: 0;
  }
}

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

@keyframes buyPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(180, 255, 90, 0.35),
      0 8px 24px rgba(80, 255, 40, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(180, 255, 90, 0.7),
      0 10px 34px rgba(80, 255, 40, 0.5),
      0 0 42px rgba(80, 255, 40, 0.3);
  }
}

@keyframes bannerKen {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: none;
  }
}

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

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