:root {
  --ink: #07090f;
  --ink-2: #101522;
  --paper: #f4f7fb;
  --muted: #9aa6b8;
  --blue: #2f7dff;
  --blue-hot: #5aa2ff;
  --lime: #c8f04a;
  --stroke: rgba(255, 255, 255, 0.12);
  --glow: rgba(47, 125, 255, 0.35);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Chakra Petch", system-ui, sans-serif;
  --nav-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(47, 125, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 10% 30%, rgba(200, 240, 74, 0.07), transparent 50%),
    radial-gradient(700px 400px at 90% 70%, rgba(255, 180, 90, 0.05), transparent 45%),
    linear-gradient(180deg, #05070d 0%, var(--ink) 40%, #0a101c 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.paw-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.float-paw {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%232f7dff' opacity='.55'/%3E%3Ccircle cx='14' cy='24' r='7' fill='%232f7dff' opacity='.55'/%3E%3Ccircle cx='26' cy='16' r='7' fill='%232f7dff' opacity='.55'/%3E%3Ccircle cx='40' cy='16' r='7' fill='%232f7dff' opacity='.55'/%3E%3Ccircle cx='50' cy='24' r='7' fill='%232f7dff' opacity='.55'/%3E%3C/svg%3E");
  animation: paw-float 14s linear infinite;
}

@keyframes paw-float {
  0% {
    transform: translateY(110vh) rotate(0deg) scale(0.7);
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-20vh) rotate(35deg) scale(1.1);
    opacity: 0;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.9), rgba(5, 7, 13, 0.35) 70%, transparent);
  backdrop-filter: blur(10px);
}

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

.nav-ears {
  position: absolute;
  left: 0.35rem;
  top: -0.55rem;
  width: 1.7rem;
  height: 0.85rem;
  pointer-events: none;
}

.nav-ears::before,
.nav-ears::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.7rem;
  height: 0.85rem;
  background: var(--lime);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.nav-ears::before {
  left: 0;
  transform: rotate(-8deg);
}

.nav-ears::after {
  right: 0;
  transform: rotate(8deg);
}

.nav-brand img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(47, 125, 255, 0.25);
}

.nav-links {
  display: none;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 0.35rem;
  background: var(--lime);
  color: #09100a;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 240, 74, 0.25);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 1rem) clamp(1rem, 4vw, 3rem) 3.5rem;
  overflow: hidden;
}

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

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.55) 42%, rgba(5, 7, 13, 0.2) 70%, rgba(5, 7, 13, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.35) 0%, rgba(5, 7, 13, 0.15) 35%, rgba(5, 7, 13, 0.88) 100%);
}

.hero-whiskers {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: 38%;
  width: min(280px, 40vw);
  height: 60px;
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent, rgba(200, 240, 74, 0.7), transparent) center / 100% 1px no-repeat,
    linear-gradient(12deg, transparent 40%, rgba(200, 240, 74, 0.55) 50%, transparent 60%) 0 30% / 100% 1px no-repeat,
    linear-gradient(-12deg, transparent 40%, rgba(200, 240, 74, 0.55) 50%, transparent 60%) 0 70% / 100% 1px no-repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hero-kicker {
  margin: 0 0 0.6rem;
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 18vw, 10rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 40px rgba(47, 125, 255, 0.45),
    4px 0 0 rgba(47, 125, 255, 0.55),
    -2px 0 0 rgba(200, 240, 74, 0.35);
  animation: brand-pulse 4.5s ease-in-out infinite;
}

.hero-tagline {
  margin: 1.1rem 0 0;
  max-width: 32rem;
  color: rgba(244, 247, 251, 0.88);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.hero-tagline strong {
  color: var(--lime);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 0.4rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1d5fd4 100%);
  color: white;
  box-shadow: 0 12px 40px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(47, 125, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--stroke);
  color: var(--paper);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes brand-pulse {
  0%,
  100% {
    text-shadow:
      0 0 40px rgba(47, 125, 255, 0.45),
      4px 0 0 rgba(47, 125, 255, 0.55),
      -2px 0 0 rgba(200, 240, 74, 0.35);
  }
  50% {
    text-shadow:
      0 0 55px rgba(47, 125, 255, 0.65),
      5px 0 0 rgba(90, 162, 255, 0.7),
      -3px 0 0 rgba(200, 240, 74, 0.45);
  }
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--stroke);
  background: rgba(16, 21, 34, 0.85);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: var(--blue-hot);
  animation: marquee 24s linear infinite;
}

.ticker-track .paw {
  font-size: 0.95rem;
  opacity: 0.75;
}

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

/* Shared */
.section-label {
  margin: 0 0 0.75rem;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.section-body {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Stats */
.stats {
  position: relative;
  z-index: 2;
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(16, 21, 34, 0.55), rgba(7, 9, 15, 0.2));
}

.stats-row {
  display: grid;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--paper);
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

@media (min-width: 800px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About */
.about {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.about-bullets {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
}

.about-bullets li {
  position: relative;
  padding-left: 1.7rem;
  color: rgba(244, 247, 251, 0.88);
  font-weight: 500;
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.95rem;
  height: 0.95rem;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%23c8f04a'/%3E%3Ccircle cx='14' cy='24' r='7' fill='%23c8f04a'/%3E%3Ccircle cx='26' cy='16' r='7' fill='%23c8f04a'/%3E%3Ccircle cx='40' cy='16' r='7' fill='%23c8f04a'/%3E%3Ccircle cx='50' cy='24' r='7' fill='%23c8f04a'/%3E%3C/svg%3E");
}

.about-portrait {
  margin: 0;
  position: relative;
  justify-self: center;
}

.portrait-ring {
  position: absolute;
  inset: -4%;
  border-radius: 1.5rem;
  border: 1px dashed rgba(47, 125, 255, 0.45);
  animation: ring-spin 28s linear infinite;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  border-radius: 1.25rem;
  object-fit: cover;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.portrait-caption {
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  color: var(--blue-hot);
}

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

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--blue-hot);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s var(--ease);
}

.text-link:hover {
  color: var(--lime);
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

/* Why */
.why {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 10vw, 6rem);
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
}

.why-head {
  margin-bottom: 2rem;
}

.why-grid {
  display: grid;
  gap: 1rem;
}

.why-item {
  padding: 1.4rem 1.35rem 1.5rem;
  border: 1px solid var(--stroke);
  border-radius: 0.85rem;
  background:
    linear-gradient(165deg, rgba(47, 125, 255, 0.1), rgba(16, 21, 34, 0.35));
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 162, 255, 0.45);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  color: var(--lime);
  border: 1px solid rgba(200, 240, 74, 0.3);
  border-radius: 0.7rem;
  background: rgba(200, 240, 74, 0.08);
}

.why-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.why-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tokenomics */
.tokenomics {
  position: relative;
  z-index: 2;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1rem, 4vw, 3rem);
  border-block: 1px solid var(--stroke);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(47, 125, 255, 0.14), transparent 60%),
    rgba(10, 14, 24, 0.7);
}

.tokenomics-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.tokenomics-copy {
  margin-bottom: 2rem;
}

.token-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}

.token-tile {
  padding: 1.15rem 1.2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--stroke);
  background: rgba(7, 9, 15, 0.55);
}

.token-tile-wide {
  grid-column: 1 / -1;
}

.token-key {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.token-val {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.token-ca {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.72rem, 2vw, 0.95rem);
  letter-spacing: 0;
  word-break: break-all;
  color: var(--blue-hot);
}

@media (min-width: 800px) {
  .token-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .token-tile-wide {
    grid-column: span 2;
  }
}

/* Roadmap */
.roadmap {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) clamp(1rem, 4vw, 3rem);
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
}

.roadmap-head {
  margin-bottom: 2.5rem;
}

.roadmap-track {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--lime), var(--blue), rgba(47, 125, 255, 0.15));
}

.roadmap-phase {
  position: relative;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  align-items: start;
}

.phase-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
}

.phase-paw {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: var(--ink-2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%239aa6b8'/%3E%3Ccircle cx='14' cy='24' r='7' fill='%239aa6b8'/%3E%3Ccircle cx='26' cy='16' r='7' fill='%239aa6b8'/%3E%3Ccircle cx='40' cy='16' r='7' fill='%239aa6b8'/%3E%3Ccircle cx='50' cy='24' r='7' fill='%239aa6b8'/%3E%3C/svg%3E")
    center / 70% no-repeat;
  box-shadow: 0 0 0 4px rgba(7, 9, 15, 0.9);
}

.roadmap-phase.is-done .phase-paw {
  border-color: rgba(200, 240, 74, 0.7);
  background-color: rgba(200, 240, 74, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%23c8f04a'/%3E%3Ccircle cx='14' cy='24' r='7' fill='%23c8f04a'/%3E%3Ccircle cx='26' cy='16' r='7' fill='%23c8f04a'/%3E%3Ccircle cx='40' cy='16' r='7' fill='%23c8f04a'/%3E%3Ccircle cx='50' cy='24' r='7' fill='%23c8f04a'/%3E%3C/svg%3E");
}

.roadmap-phase.is-active .phase-paw {
  border-color: var(--blue-hot);
  background-color: rgba(47, 125, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%235aa2ff'/%3E%3Ccircle cx='14' cy='24' r='7' fill='%235aa2ff'/%3E%3Ccircle cx='26' cy='16' r='7' fill='%235aa2ff'/%3E%3Ccircle cx='40' cy='16' r='7' fill='%235aa2ff'/%3E%3Ccircle cx='50' cy='24' r='7' fill='%235aa2ff'/%3E%3C/svg%3E");
  animation: paw-pulse 2.2s ease-in-out infinite;
}

@keyframes paw-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(7, 9, 15, 0.9), 0 0 0 0 rgba(47, 125, 255, 0.45);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(7, 9, 15, 0.9), 0 0 0 10px rgba(47, 125, 255, 0);
  }
}

.phase-body {
  padding: 1.2rem 1.25rem 1.35rem;
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: linear-gradient(160deg, rgba(47, 125, 255, 0.08), rgba(16, 21, 34, 0.4));
}

.roadmap-phase.is-active .phase-body {
  border-color: rgba(90, 162, 255, 0.45);
  box-shadow: 0 16px 50px rgba(47, 125, 255, 0.12);
}

.phase-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.phase-body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  letter-spacing: 0.04em;
}

.phase-body > p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.phase-body ul {
  display: grid;
  gap: 0.4rem;
}

.phase-body li {
  position: relative;
  padding-left: 1rem;
  color: rgba(244, 247, 251, 0.9);
  font-size: 0.95rem;
}

.phase-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue-hot);
}

@media (min-width: 900px) {
  .roadmap-track {
    gap: 0;
  }

  .roadmap-track::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .roadmap-phase {
    grid-template-columns: 1fr 2.4rem 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .roadmap-phase:nth-child(odd) .phase-body {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
  }

  .roadmap-phase:nth-child(odd) .phase-marker {
    grid-column: 2;
  }

  .roadmap-phase:nth-child(even) .phase-marker {
    grid-column: 2;
  }

  .roadmap-phase:nth-child(even) .phase-body {
    grid-column: 3;
  }

  .roadmap-phase:nth-child(odd) .phase-body li {
    padding-left: 0;
    padding-right: 1rem;
  }

  .roadmap-phase:nth-child(odd) .phase-body li::before {
    left: auto;
    right: 0;
  }
}

/* How to buy */
.howto {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 9vw, 6rem);
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
}

.howto-head {
  margin-bottom: 2rem;
}

.howto-steps {
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.4rem 1.3rem;
  border-radius: 0.85rem;
  border: 1px solid var(--stroke);
  background: rgba(16, 21, 34, 0.55);
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  right: -0.4rem;
  bottom: -0.8rem;
  width: 4.5rem;
  height: 4.5rem;
  opacity: 0.08;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='32' cy='40' rx='14' ry='12' fill='%23ffffff'/%3E%3Ccircle cx='14' cy='24' r='7' fill='%23ffffff'/%3E%3Ccircle cx='26' cy='16' r='7' fill='%23ffffff'/%3E%3Ccircle cx='40' cy='16' r='7' fill='%23ffffff'/%3E%3Ccircle cx='50' cy='24' r='7' fill='%23ffffff'/%3E%3C/svg%3E");
}

.step-num {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--blue-hot);
  line-height: 1;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

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

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

@media (min-width: 800px) {
  .howto-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Chart */
.chart {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(4rem, 10vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}

.chart-head {
  margin-bottom: 1.75rem;
}

.ca-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stroke);
  border-radius: 0.6rem;
  background: rgba(16, 21, 34, 0.85);
}

.ca-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
}

.ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: var(--paper);
}

.btn-copy {
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(47, 125, 255, 0.18);
  border-color: rgba(47, 125, 255, 0.4);
  color: var(--paper);
  font-size: 0.8rem;
}

.btn-copy:hover,
.btn-copy.is-copied {
  background: var(--lime);
  border-color: var(--lime);
  color: #09100a;
}

.chart-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid var(--stroke);
  background: #0b0e14;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  min-height: 520px;
}

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

.chart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.chart-links a {
  color: var(--blue-hot);
}

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

/* Join */
.join {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(4rem, 10vw, 6.5rem);
  max-width: calc(var(--max) + 2rem);
  margin: 0 auto;
  text-align: center;
}

.join .section-body {
  margin-inline: auto;
}

.social-row {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.social {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.45rem 1.35rem 1.35rem;
  border: 1px solid var(--stroke);
  border-radius: 0.85rem;
  background: linear-gradient(160deg, rgba(47, 125, 255, 0.12), rgba(16, 21, 34, 0.4));
  text-align: left;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.social:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 162, 255, 0.55);
  background: linear-gradient(160deg, rgba(47, 125, 255, 0.2), rgba(16, 21, 34, 0.55));
}

.social-ears {
  position: absolute;
  top: -0.55rem;
  left: 1.2rem;
  width: 2rem;
  height: 0.9rem;
}

.social-ears::before,
.social-ears::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0.8rem;
  height: 0.9rem;
  background: var(--lime);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.social-ears::before {
  left: 0;
  transform: rotate(-10deg);
}

.social-ears::after {
  right: 0;
  transform: rotate(10deg);
}

.social-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

.social-handle {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .social-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
}

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

.footer-brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--paper);
  font-size: 0.95rem;
}

.footer-brand span,
.footer-note {
  font-size: 0.85rem;
}

.footer-note {
  margin: 0;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

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

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

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

  .hero-banner,
  .hero-brand,
  .ticker-track,
  .portrait-ring,
  .phase-paw,
  .float-paw {
    animation: none !important;
  }

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

  .paw-field {
    display: none;
  }
}
