:root {
  --rh-green: #00c805;
  --rh-green-bright: #5cff61;
  --rh-green-deep: #009b04;
  --ink: #070a08;
  --ink-2: #0d1410;
  --fog: rgba(232, 245, 234, 0.72);
  --fog-strong: #e8f5ea;
  --line: rgba(0, 200, 5, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.28, 0.64, 1);
  --header-h: 4.5rem;
  --header-bg: #14241a;
  --header-bg-scrolled: #101c14;
  --panel-width: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--fog-strong);
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--ink);
  overflow-x: hidden;
}

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

.logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(145deg, #7dff82 0%, #00c805 45%, #007a03 100%);
  box-shadow:
    0 0 0 1px rgba(0, 200, 5, 0.35),
    0 0 22px rgba(0, 200, 5, 0.45);
}

.logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #050806;
}

.logo-frame-sm {
  width: 34px;
  height: 34px;
  padding: 2px;
}

.logo-frame-sm img {
  width: 100%;
  height: 100%;
}

.logo-frame-hero {
  width: clamp(6.5rem, 16vw, 8.5rem);
  height: clamp(6.5rem, 16vw, 8.5rem);
  padding: 3px;
  box-shadow:
    0 0 0 1px rgba(0, 200, 5, 0.4),
    0 0 36px rgba(0, 200, 5, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.45);
  animation: float-y 4.5s ease-in-out infinite;
}

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

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 200, 5, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(0, 155, 4, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(7, 10, 8, 0.35) 0%, rgba(7, 10, 8, 0.72) 45%, rgba(7, 10, 8, 0.92) 100%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.1) 0%, rgba(0, 200, 5, 0.03) 100%),
    var(--header-bg);
  border-bottom: 1px solid rgba(0, 200, 5, 0.32);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(92, 255, 97, 0.08);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header-cta {
  display: none;
}

@media (min-width: 761px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .nav {
    grid-column: 2;
    justify-self: center;
    gap: 0.2rem;
    padding: 0.3rem;
    border: 1px solid rgba(0, 200, 5, 0.28);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(0, 200, 5, 0.07), rgba(0, 0, 0, 0.18)),
      rgba(0, 0, 0, 0.35);
    box-shadow:
      inset 0 1px 0 rgba(92, 255, 97, 0.1),
      0 4px 18px rgba(0, 0, 0, 0.28);
  }

  .nav a:not(.nav-cta) {
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(232, 245, 234, 0.68);
    transition:
      color 0.25s ease,
      background 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease;
  }

  .nav a:not(.nav-cta):hover {
    color: var(--rh-green-bright);
    background: rgba(0, 200, 5, 0.14);
    box-shadow: 0 0 18px rgba(0, 200, 5, 0.16);
    transform: translateY(-1px);
  }

  .nav .nav-cta {
    display: none;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.58rem 1.15rem;
    border: 1px solid rgba(0, 200, 5, 0.5);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #041108;
    background: linear-gradient(180deg, #5cff61 0%, var(--rh-green) 55%, var(--rh-green-deep) 100%);
    box-shadow:
      0 0 0 1px rgba(92, 255, 97, 0.25),
      0 8px 22px rgba(0, 200, 5, 0.28);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      filter 0.25s ease;
  }

  .header-cta:hover {
    color: #041108;
    transform: translateY(-2px);
    box-shadow:
      0 0 0 1px rgba(92, 255, 97, 0.4),
      0 12px 28px rgba(0, 200, 5, 0.38);
    filter: brightness(1.05);
  }

  .menu-btn {
    grid-column: 3;
    justify-self: end;
  }
}

.site-header.scrolled {
  border-bottom-color: rgba(0, 200, 5, 0.45);
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.12) 0%, rgba(0, 200, 5, 0.04) 100%),
    var(--header-bg-scrolled);
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(92, 255, 97, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  z-index: 2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fog);
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--rh-green-bright);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(0, 200, 5, 0.45);
  border-radius: 0.55rem;
  color: var(--rh-green-bright) !important;
  background: rgba(0, 200, 5, 0.08);
}

.menu-btn {
  display: none;
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-btn span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--fog-strong);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 3rem) 5.5rem;
  text-align: center;
  overflow: visible;
}

.hero-inner {
  width: min(100%, 72rem);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  overflow: visible;
}

.hero-copy {
  width: 100%;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.hero-chain {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rh-green-bright);
}

.hero-chain img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 200, 5, 0.55));
}

.hero-brand {
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--rh-green-bright);
}

.hero-brand span {
  display: block;
  background: linear-gradient(180deg, #ffffff 10%, var(--rh-green-bright) 55%, var(--rh-green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(0, 200, 5, 0.28));
}

.hero-lead {
  max-width: 34rem;
  margin: 1.5rem auto 0;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--fog);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .hero {
    text-align: left;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    min-height: calc(100svh - var(--header-h) - 6rem);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
    align-items: center;
    min-height: 100%;
  }

  .logo-frame-hero {
    width: clamp(24rem, 32vw, 30rem);
    height: clamp(24rem, 32vw, 30rem);
    padding: 5px;
    margin: 0;
    box-shadow:
      0 0 0 2px rgba(0, 200, 5, 0.4),
      0 0 72px rgba(0, 200, 5, 0.38),
      0 16px 48px rgba(0, 0, 0, 0.45);
  }

  .hero-brand {
    margin: 0;
    align-items: flex-start;
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  }

  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border-radius: 0.65rem;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: #041006;
  background: linear-gradient(135deg, var(--rh-green-bright), var(--rh-green));
  box-shadow: 0 10px 40px rgba(0, 200, 5, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 48px rgba(0, 200, 5, 0.5);
}

.btn-ghost {
  color: var(--fog-strong);
  border: 1px solid rgba(232, 245, 234, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(0, 200, 5, 0.55);
  color: var(--rh-green-bright);
}

.hero-scroll {
  position: absolute;
  bottom: 0.65rem;
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding-left: 0.18em; /* optical balance for letter-spacing */
  text-transform: uppercase;
  text-align: center;
  color: rgba(232, 245, 234, 0.45);
  pointer-events: none;
  animation: rise 1s var(--ease) 0.7s both;
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  margin-inline: auto;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--rh-green), transparent);
  transform-origin: top center;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 3rem);
}

.reveal-section {
  perspective: 1400px;
}

.reveal-item {
  opacity: 0;
  transform-origin: center center;
  -webkit-transition:
    opacity 0.95s var(--ease),
    -webkit-transform 1s var(--ease),
    transform 1s var(--ease),
    box-shadow 1.1s var(--ease);
  transition:
    opacity 0.95s var(--ease),
    transform 1s var(--ease),
    box-shadow 1.1s var(--ease);
  will-change: opacity, transform;
}

.reveal-fx-rise {
  -webkit-transform: translate3d(0, 52px, 0) scale(0.94);
  transform: translate3d(0, 52px, 0) scale(0.94);
}

.reveal-fx-left {
  -webkit-transform: translate3d(-64px, 28px, 0) rotate(-7deg) scale(0.92);
  transform: translate3d(-64px, 28px, 0) rotate(-7deg) scale(0.92);
}

.reveal-fx-right {
  -webkit-transform: translate3d(64px, 28px, 0) rotate(7deg) scale(0.92);
  transform: translate3d(64px, 28px, 0) rotate(7deg) scale(0.92);
}

.reveal-fx-tilt-l {
  -webkit-transform: translate3d(-32px, 40px, 0) rotate(-10deg) scale(0.95);
  transform: translate3d(-32px, 40px, 0) rotate(-10deg) scale(0.95);
}

.reveal-fx-tilt-r {
  -webkit-transform: translate3d(32px, 40px, 0) rotate(10deg) scale(0.95);
  transform: translate3d(32px, 40px, 0) rotate(10deg) scale(0.95);
}

.reveal-fx-spin {
  -webkit-transform: translate3d(48px, 44px, 0) rotate(-16deg) scale(0.78);
  transform: translate3d(48px, 44px, 0) rotate(-16deg) scale(0.78);
}

.reveal-fx-fade {
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.reveal-item.reveal-panel {
  -webkit-transform: translate3d(0, 72px, 0) rotate(4deg) scale(0.9);
  transform: translate3d(0, 72px, 0) rotate(4deg) scale(0.9);
  transform-origin: center 85%;
  -webkit-transition-timing-function: var(--ease-spring), var(--ease-spring), var(--ease);
  transition-timing-function: var(--ease-spring), var(--ease-spring), var(--ease);
  box-shadow: 0 0 0 rgba(0, 200, 5, 0);
}

.reveal-item.reveal-panel.reveal-fx-left {
  -webkit-transform: translate3d(-80px, 68px, 0) rotate(-6deg) scale(0.88);
  transform: translate3d(-80px, 68px, 0) rotate(-6deg) scale(0.88);
}

.reveal-item.reveal-panel.reveal-fx-right {
  -webkit-transform: translate3d(80px, 68px, 0) rotate(6deg) scale(0.88);
  transform: translate3d(80px, 68px, 0) rotate(6deg) scale(0.88);
}

.reveal-section.is-revealed .reveal-item {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.reveal-section.is-revealed .reveal-item.reveal-panel {
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(0, 200, 5, 0.14);
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2,
.chain-band h2,
.join-inner h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-head p,
.chain-band p,
.join-content > p {
  margin: 0.9rem 0 0;
  color: var(--fog);
  font-size: 1.08rem;
  line-height: 1.6;
}

.section-panel {
  width: 100%;
  max-width: var(--panel-width);
  margin-inline: auto;
  box-sizing: border-box;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.bulletin {
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.06), transparent 40%),
    rgba(7, 12, 9, 0.72);
}

.bulletin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.bulletin-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rh-green-bright);
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--rh-green);
  box-shadow: 0 0 10px rgba(0, 200, 5, 0.8);
  animation: live-pulse 1.6s ease-in-out infinite;
}

.bulletin-note {
  color: rgba(232, 245, 234, 0.45);
}

.bulletin-table {
  display: grid;
}

.bulletin-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 4.5rem minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid rgba(0, 200, 5, 0.12);
}

.bulletin-row:last-child {
  border-bottom: 0;
}

.bulletin-head {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 245, 234, 0.45);
  background: rgba(0, 0, 0, 0.22);
}

.bulletin-channel strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bulletin-channel span {
  display: block;
  margin-top: 0.2rem;
  color: var(--fog);
  font-size: 0.88rem;
}

.bulletin-tax {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--rh-green);
}

.bulletin-stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.55rem 0.7rem;
  border: 1.5px dashed rgba(0, 200, 5, 0.45);
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.14) 0%, rgba(0, 200, 5, 0.04) 45%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow:
    inset 0 1px 0 rgba(92, 255, 97, 0.12),
    0 0 18px rgba(0, 200, 5, 0.08);
}

.bulletin-stat::before {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(92, 255, 97, 0.65);
}

.bulletin-row:not(.bulletin-head) .bulletin-stat:nth-child(3)::before {
  content: "USD";
}

.bulletin-row:not(.bulletin-head) .bulletin-stat:nth-child(4)::before {
  content: "ETH";
}

.ticker {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  font-family: "Syne", "Outfit", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--fog-strong);
  font-variant-numeric: tabular-nums;
}

.ticker .reel {
  display: inline-block;
  position: relative;
  width: 0.62em;
  height: 1.15em;
  overflow: hidden;
  text-align: center;
  border-radius: 0.15em;
  background: rgba(0, 200, 5, 0.06);
  box-shadow: inset 0 0 0 1px rgba(0, 200, 5, 0.12);
}

.ticker .reel-strip {
  display: block;
  will-change: transform;
}

.ticker .reel-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.15em;
  color: var(--rh-green-bright);
}

.ticker .ticker-prefix,
.ticker .ticker-suffix,
.ticker .ticker-static {
  color: var(--fog-strong);
}

.ticker.is-spinning .reel-strip span {
  color: #9dff9f;
}

.bulletin-total {
  background: rgba(0, 200, 5, 0.05);
}

.bulletin-total .ticker {
  color: var(--rh-green-bright);
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (max-width: 820px) {
  .bulletin-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "channel tax"
      "usd eth";
    gap: 0.55rem 0.65rem;
    padding: 1rem 1rem;
  }

  .bulletin-head {
    display: none;
  }

  .bulletin-channel {
    grid-area: channel;
  }

  .bulletin-tax {
    grid-area: tax;
    text-align: right;
    justify-self: end;
  }

  .bulletin-stat:nth-child(3) {
    grid-area: usd;
  }

  .bulletin-stat:nth-child(4) {
    grid-area: eth;
  }

  .bulletin-stat {
    align-items: flex-start;
    padding: 0.55rem 0.65rem;
    border-width: 1.5px;
    border-style: dashed;
    border-color: rgba(0, 200, 5, 0.5);
    background:
      linear-gradient(145deg, rgba(0, 200, 5, 0.16) 0%, rgba(0, 200, 5, 0.05) 50%, rgba(0, 0, 0, 0.32) 100%);
    min-width: 0;
  }

  .bulletin-stat .ticker {
    font-size: clamp(0.88rem, 3.6vw, 1.05rem);
    flex-wrap: wrap;
  }
}

.tokenomics {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.tok-card {
  padding: 1.15rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.05), transparent 45%),
    rgba(7, 12, 9, 0.78);
}

.tok-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 200, 5, 0.14);
}

.tok-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: -0.03em;
}

.tok-pad {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(0, 200, 5, 0.28);
  border-radius: 0.55rem;
  background: rgba(0, 200, 5, 0.06);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fog);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.tok-pad:hover {
  border-color: rgba(0, 200, 5, 0.55);
  color: var(--rh-green-bright);
}

.tok-pad img {
  width: 22px;
  height: 22px;
  border-radius: 0.35rem;
  object-fit: cover;
}

.tok-rewards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.tok-reward {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 200, 5, 0.16);
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.22);
}

.tok-reward-featured {
  border-color: rgba(0, 200, 5, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 200, 5, 0.1), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.22);
}

.tok-reward-label {
  grid-column: 1;
  grid-row: 1;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--fog-strong);
}

.tok-reward-rate {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--rh-green-bright);
  font-variant-numeric: tabular-nums;
}

.tok-reward-desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--fog);
}

.tok-foot {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.tok-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(0, 200, 5, 0.18);
  border-radius: 0.55rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.tok-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.65rem 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(0, 200, 5, 0.14);
}

.tok-stat:last-child {
  border-right: 0;
}

.tok-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(0, 200, 5, 0.22);
  border-radius: 0.55rem;
  background: rgba(0, 200, 5, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rh-green-bright);
}

.tok-shield-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .tok-card {
    padding: 1.35rem 1.5rem;
  }

  .tok-rewards {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 200, 5, 0.18);
    border-radius: 0.55rem;
    overflow: hidden;
  }

  .tok-reward {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.35rem;
    text-align: center;
    padding: 1.15rem 1rem 1.25rem;
    border: 0;
    border-radius: 0;
    border-right: 1px solid rgba(0, 200, 5, 0.14);
    background: rgba(0, 0, 0, 0.22);
  }

  .tok-reward:last-child {
    border-right: 0;
  }

  .tok-reward-featured {
    background:
      linear-gradient(180deg, rgba(0, 200, 5, 0.12), rgba(0, 0, 0, 0.18)),
      rgba(0, 0, 0, 0.22);
  }

  .tok-reward-label {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.02rem;
  }

  .tok-reward-rate {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.75rem, 2.5vw, 2.15rem);
    margin: 0.15rem 0 0.05rem;
  }

  .tok-reward-desc {
    grid-column: 1;
    grid-row: 3;
    max-width: 12rem;
    margin: 0 auto;
  }

  .tok-foot {
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 0.75rem;
  }

  .tok-metrics {
    margin-bottom: 0;
  }

  .tok-stat {
    padding: 0.85rem 1rem;
  }

  .tok-stat-value {
    font-size: 1.15rem;
  }

  .tok-shield {
    min-width: 13.5rem;
    padding: 0 1.35rem;
    font-size: 0.88rem;
  }
}

.tok-stat-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(232, 245, 234, 0.45);
}

.tok-stat-value {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fog-strong);
  font-variant-numeric: tabular-nums;
}

.tok-ca {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.tok-ca-label {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 245, 234, 0.45);
}

.tok-ca-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", monospace;
  font-size: clamp(0.72rem, 2.8vw, 0.88rem);
  color: var(--fog-strong);
}

.tok-copy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(0, 200, 5, 0.35);
  border-radius: 0.45rem;
  background: rgba(0, 200, 5, 0.08);
  color: var(--rh-green-bright);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.tok-copy-icon {
  width: 1rem;
  height: 1rem;
}

.tok-copy-icon-done {
  display: none;
}

.tok-copy:hover {
  background: rgba(0, 200, 5, 0.16);
  border-color: rgba(0, 200, 5, 0.55);
  transform: translateY(-1px);
}

.tok-copy.is-copied {
  border-color: rgba(92, 255, 97, 0.65);
  background: rgba(0, 200, 5, 0.22);
  color: #fff;
}

.tok-copy.is-copied .tok-copy-icon-default {
  display: none;
}

.tok-copy.is-copied .tok-copy-icon-done {
  display: block;
}

@media (max-width: 640px) {
  .tok-ca {
    flex-wrap: nowrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.chain-band {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.06), transparent 45%),
    rgba(7, 12, 9, 0.78);
}

.chain-logo {
  flex-shrink: 0;
  width: clamp(3rem, 8vw, 4.5rem);
  height: clamp(3rem, 8vw, 4.5rem);
  filter: drop-shadow(0 0 20px rgba(0, 200, 5, 0.45));
  animation: float-y 4s ease-in-out infinite;
}

.chain-band h2 {
  text-align: left;
}

.chain-band p {
  max-width: none;
}

@media (min-width: 900px) {
  .chain-band {
    padding: 2.25rem 2.5rem;
    gap: 2.25rem;
  }

  .chain-logo {
    width: 4.75rem;
    height: 4.75rem;
  }

  .chain-band h2 {
    font-size: clamp(2.1rem, 2.8vw, 2.75rem);
  }

  .chain-band p {
    margin-top: 1rem;
    font-size: 1.14rem;
    line-height: 1.65;
    max-width: 46rem;
  }
}

.gallery {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
  width: 100%;
  max-width: var(--panel-width);
  margin: 0 auto;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.05), transparent 55%),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  -webkit-transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.gallery-item:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.gallery-tagline {
  width: 100%;
  max-width: var(--panel-width);
  margin: clamp(1.15rem, 3vw, 1.5rem) auto 0;
  padding: clamp(0.95rem, 2.5vw, 1.15rem) clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  border: 1px solid rgba(0, 200, 5, 0.28);
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.08), rgba(0, 200, 5, 0.02)),
    rgba(0, 0, 0, 0.22);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: var(--fog);
}

.gallery-tagline strong {
  color: var(--rh-green-bright);
  font-weight: 800;
}

.join {
  padding-bottom: clamp(5rem, 12vw, 8rem);
}

.join-inner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.06), transparent 45%),
    rgba(7, 12, 9, 0.78);
}

.join-floats {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.join-content {
  position: relative;
  z-index: 1;
}

.join-float {
  position: absolute;
  left: var(--jx, 50%);
  top: var(--jy, 50%);
  animation: join-float-move var(--jd, 16s) ease-in-out var(--jdel, 0s) infinite alternate;
  will-change: transform;
}

.join-float img {
  display: block;
  width: var(--js, 28px);
  height: var(--js, 28px);
  opacity: var(--jo, 0.22);
  -webkit-transform: rotate(var(--jrot, 0deg));
  transform: rotate(var(--jrot, 0deg));
  filter: drop-shadow(0 0 10px rgba(0, 200, 5, 0.4));
}

@-webkit-keyframes join-float-move {
  0% {
    -webkit-transform: translate3d(-26px, -34px, 0);
    transform: translate3d(-26px, -34px, 0);
  }
  50% {
    -webkit-transform: translate3d(18px, 22px, 0);
    transform: translate3d(18px, 22px, 0);
  }
  100% {
    -webkit-transform: translate3d(32px, -18px, 0);
    transform: translate3d(32px, -18px, 0);
  }
}

@keyframes join-float-move {
  0% {
    -webkit-transform: translate3d(-26px, -34px, 0);
    transform: translate3d(-26px, -34px, 0);
  }
  50% {
    -webkit-transform: translate3d(18px, 22px, 0);
    transform: translate3d(18px, 22px, 0);
  }
  100% {
    -webkit-transform: translate3d(32px, -18px, 0);
    transform: translate3d(32px, -18px, 0);
  }
}

.join-content > p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .join-inner {
    padding: 2.75rem 2.5rem;
  }

  .join-inner h2 {
    font-size: clamp(2.1rem, 2.8vw, 2.75rem);
  }

  .join-content > p {
    font-size: 1.14rem;
  }
}

.join-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.75rem;
}

.join-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.join-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
  padding: 0;
  border: 1px solid rgba(0, 200, 5, 0.4);
  border-radius: 0.65rem;
  background: rgba(0, 200, 5, 0.1);
  color: var(--rh-green-bright);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.join-social-btn svg {
  width: 1.35rem;
  height: 1.35rem;
}

.join-social-btn:hover {
  background: rgba(0, 200, 5, 0.2);
  border-color: rgba(0, 200, 5, 0.6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 5, 0.25);
}

.ca-hint {
  margin: 0.85rem 0 0;
  min-height: 1.25rem;
  color: var(--rh-green-bright);
  font-weight: 600;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  border-top: 1px solid var(--line);
  color: rgba(232, 245, 234, 0.5);
  font-size: 0.88rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  color: var(--fog-strong);
}

.footer-brand .logo-frame-sm {
  width: 30px;
  height: 30px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(0, 200, 5, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 200, 5, 0.25);
  }
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.75);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

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

@media (max-width: 899px) {
  .hero-visual {
    order: -1;
  }

  .logo-frame-hero {
    margin: 0 auto;
    width: clamp(7rem, 34vw, 9rem);
    height: clamp(7rem, 34vw, 9rem);
  }

  .chain-band {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.35rem;
  }

  .chain-band h2 {
    text-align: center;
  }
}

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 50;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    background:
      linear-gradient(180deg, rgba(0, 200, 5, 0.08) 0%, rgba(0, 200, 5, 0.02) 100%),
      var(--header-bg);
    border-bottom: 1px solid rgba(0, 200, 5, 0.32);
    backdrop-filter: blur(16px);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-radius: 0.55rem;
  }

  .brand {
    font-size: 0.8rem;
  }

  .hero-brand {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
    letter-spacing: -0.04em;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

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

  .logo-frame-hero {
    animation: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    box-shadow: none !important;
  }

  .join-float {
    animation: none !important;
  }
}
