/* ============================================================
   STOCKCAT — Robinhood-dark feline trading floor
   ============================================================ */

:root {
  --bg: #070a0e;
  --bg-2: #0c1218;
  --bg-3: #131b25;
  --panel: rgba(16, 24, 34, 0.78);
  --line: rgba(0, 200, 5, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);
  --green: #00c805;
  --green-bright: #35e65c;
  --green-deep: #00934a;
  --cream: #e8d5b5;
  --red: #ff5000;
  --white: #f4f7f5;
  --muted: #93a3ae;
  --gold: #d4a84b;
  --font-display: "Sora", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 20px;
  --nav-h: 76px;
  --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='%2300c805'%3E%3Cellipse cx='18' cy='16' rx='7' ry='9'/%3E%3Cellipse cx='32' cy='10' rx='7.5' ry='9.5'/%3E%3Cellipse cx='46' cy='16' rx='7' ry='9'/%3E%3Cellipse cx='12' cy='30' rx='6' ry='7.5'/%3E%3Cellipse cx='52' cy='30' rx='6' ry='7.5'/%3E%3Cpath d='M32 28c-10 0-18 8-18 18 0 6 4 10 10 12 2.5 1 5 1.5 8 1.5s5.5-.5 8-1.5c6-2 10-6 10-12 0-10-8-18-18-18z'/%3E%3C/svg%3E");
  --sparkle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2335e65c'%3E%3Cpath d='M12 0L13.8 8.2 22 10l-8.2 1.8L12 20l-1.8-8.2L2 10l8.2-1.8L12 0z'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 40px);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-display);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--green);
  color: #04130a;
}

/* ---------- scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green-deep), #1e2a37);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* ============================================================
   BACKGROUND LAYERS
   ============================================================ */

#candle-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -4;
  opacity: 0.4;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 200, 5, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 30%,
    black 40%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 70% at 50% 30%,
    black 40%,
    transparent 100%
  );
}

/* floating paw field */
.paw-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.paw-field .ambient-paw {
  position: absolute;
  width: var(--size, 28px);
  height: var(--size, 28px);
  background: var(--paw) center / contain no-repeat;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(0, 200, 5, 0.35));
  animation: paw-drift var(--dur, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes paw-drift {
  0% {
    transform: translateY(110vh) rotate(var(--rot, 0deg)) scale(0.6);
    opacity: 0;
  }
  8% {
    opacity: var(--op, 0.12);
  }
  85% {
    opacity: var(--op, 0.12);
  }
  100% {
    transform: translateY(-15vh) rotate(calc(var(--rot, 0deg) + 40deg))
      scale(1);
    opacity: 0;
  }
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
}

.orb-a {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.4), transparent 70%);
  top: -180px;
  right: -120px;
  animation: orb-drift 16s ease-in-out infinite alternate;
}

.orb-b {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(0, 147, 74, 0.32), transparent 70%);
  bottom: -160px;
  left: -140px;
  animation: orb-drift 20s ease-in-out infinite alternate-reverse;
}

.orb-c {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.12), transparent 70%);
  top: 45%;
  left: 40%;
  animation: orb-drift 22s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-60px, 50px) scale(1.15);
  }
}

#cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.09), transparent 65%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

/* cursor paw trail */
#paw-trail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}

#paw-trail .trail-paw {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.55;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
  animation: trail-fade 0.9s ease-out forwards;
  filter: drop-shadow(0 0 4px rgba(0, 200, 5, 0.5));
}

@keyframes trail-fade {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--r, 0deg)) scale(0.4)
      translateY(-18px);
  }
}

/* ============================================================
   SHARED
   ============================================================ */

.section {
  position: relative;
  padding: 110px 24px;
}
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}

.tag-paw {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(98%) saturate(1400%)
    hue-rotate(78deg) brightness(102%) contrast(104%);
  animation: paw-wiggle 3s ease-in-out infinite;
}

@keyframes paw-wiggle {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 56px;
  text-transform: uppercase;
}

.green-glow {
  background: linear-gradient(
    180deg,
    var(--green-bright),
    var(--green) 55%,
    var(--green-deep)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(0, 200, 5, 0.45));
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.mono {
  font-family: var(--font-mono);
}

/* whisker dividers */
.whisker-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.whisker-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 200, 5, 0.45),
    transparent
  );
  position: relative;
}

.whisker-line::before,
.whisker-line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 40%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 200, 5, 0.25),
    transparent
  );
}

.whisker-line::before {
  transform: rotate(-4deg);
}
.whisker-line::after {
  transform: rotate(4deg);
  top: 3px;
}

.whisker-paw {
  width: 22px;
  height: 22px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.55;
  filter: drop-shadow(0 0 8px rgba(0, 200, 5, 0.5));
  animation: paw-pulse 2.8s ease-in-out infinite;
}

@keyframes paw-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

/* section side paw decos */
.section-paw-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  top: 80px;
}
.section-paw-deco.left {
  left: 4%;
  transform: rotate(-25deg);
}
.section-paw-deco.right {
  right: 4%;
  transform: rotate(20deg) scaleX(-1);
  top: auto;
  bottom: 60px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--green-bright),
    var(--green) 60%,
    var(--green-deep)
  );
  color: #04130a;
  box-shadow: 0 0 0 1px rgba(53, 230, 92, 0.4), 0 8px 28px rgba(0, 200, 5, 0.35);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: none;
}
.btn-primary:hover::after {
  animation: shine 0.7s ease-out;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(53, 230, 92, 0.7),
    0 14px 40px rgba(0, 200, 5, 0.55);
}
.btn-primary .btn-icon {
  filter: brightness(0) saturate(100%);
}

.btn-purr:hover {
  animation: purr 0.35s ease-in-out 2;
}
@keyframes purr {
  0%,
  100% {
    transform: translateY(-3px) scale(1.03) rotate(0);
  }
  25% {
    transform: translateY(-3px) scale(1.03) rotate(-1deg);
  }
  75% {
    transform: translateY(-3px) scale(1.03) rotate(1deg);
  }
}

.btn-outline {
  background: rgba(0, 200, 5, 0.04);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(0, 200, 5, 0.55);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(0, 200, 5, 0.12);
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1.5px var(--green), 0 10px 30px rgba(0, 200, 5, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-big {
  padding: 17px 34px;
  font-size: 1.02rem;
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.34s;
}
.reveal.d5 {
  transition-delay: 0.44s;
}
.reveal.d6 {
  transition-delay: 0.54s;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 200, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 5, 0);
  }
}

/* cat ears on cards */
.cat-card {
  position: relative;
}
.card-ears {
  position: absolute;
  top: -14px;
  left: 22px;
  right: 22px;
  height: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.cat-card:hover .card-ears {
  opacity: 1;
}
.card-ears span {
  position: absolute;
  width: 22px;
  height: 18px;
  background: linear-gradient(180deg, var(--green-bright), var(--green-deep));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 0 6px rgba(0, 200, 5, 0.5));
}
.card-ears span:first-child {
  left: 0;
}
.card-ears span:last-child {
  right: 0;
}

.card-paw-mark {
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.08;
  transition: opacity 0.3s, transform 0.3s;
}
.about-card:hover .card-paw-mark {
  opacity: 0.22;
  transform: rotate(-12deg) scale(1.1);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 10, 14, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(7, 10, 14, 0.94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(0, 200, 5, 0.12);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.brand-logo-wrap {
  position: relative;
  display: inline-flex;
}

.brand-logo,
.footer-brand .brand-logo-wrap img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.4), 0 0 20px rgba(0, 200, 5, 0.35);
  transition: transform 0.3s;
  object-fit: cover;
}

.brand-ear {
  position: absolute;
  top: -8px;
  width: 12px;
  height: 12px;
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 0 4px rgba(0, 200, 5, 0.6));
}
.brand-ear-l {
  left: 4px;
}
.brand-ear-r {
  right: 4px;
}
.brand:hover .brand-ear,
.footer-brand:hover .brand-ear {
  opacity: 1;
}
.brand:hover .brand-ear-l {
  transform: translateY(-2px) rotate(-8deg);
}
.brand:hover .brand-ear-r {
  transform: translateY(-2px) rotate(8deg);
}
.brand:hover .brand-logo {
  transform: rotate(-6deg) scale(1.08);
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.brand-name em,
.footer-brand em {
  font-style: normal;
  background: linear-gradient(180deg, var(--green-bright), var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- ticker tape ---------- */
.ticker-tape {
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(0, 200, 5, 0.06),
    rgba(0, 200, 5, 0.02),
    rgba(0, 200, 5, 0.06)
  );
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track span {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ticker-track .ticker-paw {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.45;
}
.ticker-track .up {
  color: var(--green-bright);
}
.ticker-track .down {
  color: var(--red);
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 90px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.28;
  filter: saturate(1.15) brightness(0.55);
  transform: scale(1.05);
  animation: hero-ken 28s ease-in-out infinite alternate;
}
@keyframes hero-ken {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-2%, -1%);
  }
}
.hero-bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(7, 10, 14, 0.55) 0%,
      rgba(7, 10, 14, 0.72) 40%,
      rgba(7, 10, 14, 0.95) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 70% 40%,
      rgba(0, 200, 5, 0.12),
      transparent 60%
    );
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 200, 5, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, black 20%, transparent 90%);
}

/* hero decorations */
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--sparkle) center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(53, 230, 92, 0.8));
  animation: sparkle-twinkle 2.4s ease-in-out infinite;
}
.sparkle-1 {
  top: 18%;
  left: 8%;
  animation-delay: 0s;
}
.sparkle-2 {
  top: 28%;
  right: 12%;
  width: 14px;
  height: 14px;
  animation-delay: 0.5s;
}
.sparkle-3 {
  bottom: 30%;
  left: 14%;
  width: 12px;
  height: 12px;
  animation-delay: 1s;
}
.sparkle-4 {
  top: 55%;
  right: 8%;
  width: 16px;
  height: 16px;
  animation-delay: 1.4s;
}
.sparkle-5 {
  top: 14%;
  left: 42%;
  width: 10px;
  height: 10px;
  animation-delay: 0.8s;
}

@keyframes sparkle-twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(20deg);
  }
}

.float-paw {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.14;
  filter: drop-shadow(0 0 10px rgba(0, 200, 5, 0.4));
  animation: float-paw-bob 7s ease-in-out infinite;
}
.fp-1 {
  top: 22%;
  left: 4%;
  transform: rotate(-20deg);
  animation-delay: 0s;
}
.fp-2 {
  top: 60%;
  left: 48%;
  width: 28px;
  height: 28px;
  animation-delay: 1.2s;
}
.fp-3 {
  bottom: 18%;
  right: 6%;
  width: 42px;
  height: 42px;
  transform: rotate(25deg);
  animation-delay: 0.6s;
}
.fp-4 {
  top: 35%;
  right: 42%;
  width: 22px;
  height: 22px;
  animation-delay: 2s;
}
.fp-5 {
  bottom: 28%;
  left: 8%;
  width: 30px;
  height: 30px;
  transform: rotate(-35deg);
  animation-delay: 1.6s;
}

@keyframes float-paw-bob {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, -15deg));
  }
  50% {
    transform: translateY(-18px) rotate(calc(var(--r, -15deg) + 12deg));
  }
}

.chart-arrow {
  position: absolute;
  bottom: 12%;
  left: 6%;
  width: min(280px, 30vw);
  opacity: 0.35;
  filter: drop-shadow(0 0 12px rgba(0, 200, 5, 0.5));
  animation: arrow-draw 4s ease-in-out infinite;
}
@keyframes arrow-draw {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(8px);
  }
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--green-bright);
  background: rgba(0, 200, 5, 0.1);
  border: 1px solid rgba(0, 200, 5, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 0 24px rgba(0, 200, 5, 0.12),
    inset 0 0 20px rgba(0, 200, 5, 0.05);
  backdrop-filter: blur(10px);
}
.badge-paw {
  width: 13px;
  height: 13px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(98%) saturate(1400%)
    hue-rotate(78deg) brightness(102%) contrast(104%);
}

.hero-title {
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title .line {
  display: block;
}

.brand-line {
  margin-bottom: 10px;
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.word-stock {
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.08);
}
.word-cat {
  background: linear-gradient(
    180deg,
    #6dff8a 0%,
    var(--green-bright) 30%,
    var(--green) 65%,
    var(--green-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  filter: drop-shadow(0 0 28px rgba(0, 200, 5, 0.55));
  position: relative;
}

.tagline-line {
  font-size: 0.72em;
  opacity: 0.95;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-sub strong {
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: rgba(7, 10, 14, 0.45);
  border: 1px solid rgba(0, 200, 5, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  max-width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-bright);
  text-shadow: 0 0 18px rgba(0, 200, 5, 0.5);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 200, 5, 0.4),
    transparent
  );
}

/* ---------- hero visual ---------- */
.hero-visual {
  position: relative;
}

.visual-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 5, 0.15);
  animation: ring-spin 20s linear infinite;
  pointer-events: none;
}
.visual-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 12px var(--green);
}
.ring-2 {
  inset: -55px;
  border-color: rgba(0, 200, 5, 0.08);
  animation-direction: reverse;
  animation-duration: 28s;
}
@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.cat-terminal {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 80px rgba(0, 200, 5, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 0 0 8px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.terminal-ears {
  position: absolute;
  top: -16px;
  left: 28px;
  right: 28px;
  height: 20px;
  z-index: 2;
}
.term-ear {
  position: absolute;
  width: 28px;
  height: 22px;
  background: linear-gradient(180deg, var(--green-bright), var(--bg-3));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: drop-shadow(0 0 8px rgba(0, 200, 5, 0.4));
}
.term-ear.left {
  left: 0;
}
.term-ear.right {
  right: 0;
}
.term-ear::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(232, 213, 181, 0.35);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: rgba(0, 200, 5, 0.04);
}
.term-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.term-dot.red {
  background: #ff5f57;
}
.term-dot.yellow {
  background: #febc2e;
}
.term-dot.green {
  background: #28c840;
  box-shadow: 0 0 8px rgba(40, 200, 64, 0.6);
}
.term-title {
  margin-left: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.term-price {
  margin-left: auto;
  color: var(--green-bright);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 200, 5, 0.5);
}

#hero-chart {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cat-frame {
  position: absolute;
  bottom: -38px;
  right: -34px;
  z-index: 3;
}
.hero-cat {
  width: 200px;
  border-radius: 24px;
  box-shadow: 0 0 0 2px rgba(0, 200, 5, 0.45), 0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 50px rgba(0, 200, 5, 0.35);
  transform: rotate(4deg);
  position: relative;
  z-index: 1;
}
.cat-glow {
  position: absolute;
  inset: -20px;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.35), transparent 70%);
  z-index: 0;
  animation: cat-aura 3.5s ease-in-out infinite;
}
@keyframes cat-aura {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}
.float {
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-14px);
  }
}

.chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 10, 14, 0.88);
  border: 1px solid rgba(0, 200, 5, 0.55);
  color: var(--green-bright);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 200, 5, 0.15);
  backdrop-filter: blur(10px);
}
.chip img {
  width: 12px;
  height: 12px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(98%) saturate(1400%)
    hue-rotate(78deg) brightness(102%) contrast(104%);
}
.chip-1 {
  top: -16px;
  left: 28px;
  animation: chip-bob 4s ease-in-out infinite;
}
.chip-2 {
  bottom: 40px;
  left: -26px;
  animation: chip-bob 4.6s ease-in-out 0.6s infinite;
}
.chip-3 {
  top: 42%;
  right: -20px;
  animation: chip-bob 5.2s ease-in-out 1.1s infinite;
}
@keyframes chip-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  z-index: 2;
}
.scroll-paw {
  width: 18px;
  height: 18px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.5;
  animation: scroll-paw-bounce 2s ease-in-out infinite;
}
@keyframes scroll-paw-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.8;
  }
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--green), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */

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

.about-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s ease-out;
  backdrop-filter: blur(12px);
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 0%,
    rgba(0, 200, 5, 0.08),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.about-card:hover {
  border-color: rgba(0, 200, 5, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 200, 5, 0.14);
  transform: translateY(-4px);
}
.about-card:hover::before,
.about-card:hover::after {
  opacity: 1;
}

.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 5, 0.1);
  border: 1px solid rgba(0, 200, 5, 0.35);
  color: var(--green-bright);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 200, 5, 0.1);
}
.about-card-icon svg {
  width: 26px;
  height: 26px;
}

.about-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.about-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- token strip ---------- */
.token-strip {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 5, 0.12),
    rgba(0, 147, 74, 0.05) 50%,
    rgba(212, 168, 75, 0.05)
  );
  border: 1px solid rgba(0, 200, 5, 0.35);
  border-radius: var(--radius);
  padding: 26px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 200, 5, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.token-paw {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 90px;
  height: 90px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.06;
  transform: rotate(25deg);
}
.token-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.token-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.token-value {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}
.token-ca {
  flex: 1;
  min-width: 220px;
}
.token-ca .token-value {
  font-size: 0.95rem;
  color: var(--green-bright);
  word-break: break-all;
}

/* ============================================================
   HOW TO BUY
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.step {
  position: relative;
  display: flex;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(12px);
}
.step:hover {
  border-color: rgba(0, 200, 5, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 200, 5, 0.1);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--green-bright), var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.step-paw {
  width: 16px;
  height: 16px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.5;
  filter: drop-shadow(0 0 4px rgba(0, 200, 5, 0.4));
}

.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step-body p {
  color: var(--muted);
  font-size: 0.94rem;
}

.step-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.step:hover .step-glow {
  opacity: 1;
}

.howtobuy-cta {
  text-align: center;
}

/* ============================================================
   CHART
   ============================================================ */

.chart-frame {
  border: 1px solid rgba(0, 200, 5, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 200, 5, 0.1);
  position: relative;
}

.chart-frame-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(
    90deg,
    rgba(0, 200, 5, 0.08),
    rgba(0, 200, 5, 0.02)
  );
}
.chart-head-icon {
  width: 18px;
  height: 22px;
}
.chart-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-bright);
  font-weight: 700;
}

.chart-embed {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
}
.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-paw-corner {
  position: absolute;
  bottom: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(0, 200, 5, 0.4));
  z-index: 2;
}

.chart-note {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.chart-note a {
  color: var(--green-bright);
  text-decoration: none;
  border-bottom: 1px dotted var(--green-deep);
}
.chart-note a:hover {
  color: var(--white);
}

/* ============================================================
   JOIN US
   ============================================================ */

.joinus {
  padding-bottom: 140px;
}
.joinus .section-inner {
  text-align: center;
}
.joinus .section-title {
  margin-bottom: 40px;
}

.joinus-banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(0, 200, 5, 0.4);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55), 0 0 80px rgba(0, 200, 5, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}
.joinus-banner img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.joinus-banner:hover img {
  transform: scale(1.03);
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

.banner-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.banner-sparkles span {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--sparkle) center / contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(53, 230, 92, 0.9));
  animation: sparkle-twinkle 2.2s ease-in-out infinite;
}
.banner-sparkles span:nth-child(1) {
  top: 12%;
  left: 8%;
}
.banner-sparkles span:nth-child(2) {
  top: 20%;
  right: 18%;
  animation-delay: 0.4s;
  width: 12px;
  height: 12px;
}
.banner-sparkles span:nth-child(3) {
  bottom: 18%;
  left: 22%;
  animation-delay: 0.9s;
  width: 14px;
  height: 14px;
}
.banner-sparkles span:nth-child(4) {
  top: 40%;
  right: 8%;
  animation-delay: 1.3s;
  width: 10px;
  height: 10px;
}

.banner-frame-paws .bfp {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.35;
  filter: drop-shadow(0 0 8px rgba(0, 200, 5, 0.5));
  z-index: 2;
  animation: paw-pulse 3s ease-in-out infinite;
}
.bfp-tl {
  top: 12px;
  left: 12px;
  transform: rotate(-20deg);
}
.bfp-tr {
  top: 12px;
  right: 12px;
  transform: rotate(20deg) scaleX(-1);
  animation-delay: 0.5s;
}
.bfp-bl {
  bottom: 12px;
  left: 12px;
  transform: rotate(15deg);
  animation-delay: 1s;
}
.bfp-br {
  bottom: 12px;
  right: 12px;
  transform: rotate(-15deg) scaleX(-1);
  animation-delay: 1.5s;
}

.joinus-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 20px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(12px);
  overflow: visible;
}
.social-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  transition: transform 0.3s;
}
.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 200, 5, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 200, 5, 0.16);
}
.social-card:hover img {
  transform: scale(1.15) rotate(-4deg);
}
.social-name {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}
.social-handle {
  color: var(--green-bright);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(7, 10, 14, 0.6), rgba(7, 10, 14, 0.95));
  padding: 60px 24px 40px;
  position: relative;
  overflow: hidden;
}

.footer-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.footer-paws span {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--paw) center / contain no-repeat;
  opacity: 0.06;
}
.footer-paws span:nth-child(1) {
  top: 20%;
  left: 10%;
  transform: rotate(-20deg);
}
.footer-paws span:nth-child(2) {
  top: 40%;
  left: 30%;
  transform: rotate(15deg);
}
.footer-paws span:nth-child(3) {
  top: 25%;
  right: 25%;
  transform: rotate(-10deg);
}
.footer-paws span:nth-child(4) {
  bottom: 30%;
  right: 12%;
  transform: rotate(25deg);
}
.footer-paws span:nth-child(5) {
  bottom: 20%;
  left: 45%;
  transform: rotate(-30deg);
}

.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.35), 0 0 16px rgba(0, 200, 5, 0.25);
}
.footer-disclaimer {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 560px;
}
.footer-socials {
  display: flex;
  gap: 18px;
}
.footer-socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s, background 0.3s, border-color 0.3s,
    box-shadow 0.3s;
}
.footer-socials img {
  width: 20px;
  height: 20px;
}
.footer-socials a:hover {
  transform: translateY(-4px);
  background: rgba(0, 200, 5, 0.14);
  border-color: rgba(0, 200, 5, 0.5);
  box-shadow: 0 0 20px rgba(0, 200, 5, 0.25);
}
.footer-copy {
  color: #5a6a75;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

/* paw burst on copy */
#paw-burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  overflow: hidden;
}
#paw-burst .burst-paw {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--paw) center / contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(0, 200, 5, 0.7));
  animation: burst-fly 0.9s ease-out forwards;
}
@keyframes burst-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.3) rotate(var(--dr));
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 90px;
  }
  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .visual-ring,
  .ring-2 {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .social-row {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .chart-arrow {
    display: none;
  }
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + 34px);
    right: 0;
    flex-direction: column;
    background: rgba(7, 10, 14, 0.97);
    border-left: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 28px 40px;
    gap: 22px;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-burger {
    display: flex;
  }
  .nav-actions .btn-ghost {
    display: none;
  }

  .section {
    padding: 80px 18px;
  }
  .hero {
    padding-top: calc(var(--nav-h) + 70px);
  }
  .hero-cat {
    width: 130px;
  }
  .hero-cat-frame {
    bottom: -22px;
    right: -10px;
  }
  .chip-2 {
    left: -8px;
  }
  .chip-3 {
    right: -6px;
  }
  .stat-divider {
    display: none;
  }
  .hero-stats {
    gap: 22px;
  }
  .token-strip {
    gap: 20px;
  }
  .chart-embed {
    padding-bottom: 120%;
  }
  .scroll-hint {
    display: none;
  }
  .section-paw-deco {
    display: none;
  }
  .brand-line {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }
}

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