/* PonsFly — glass world */

:root {
  --bg: #f2f6f3;
  --bg-soft: #e8f0eb;
  --ink: #163028;
  --ink-soft: #4a6759;
  --mint: #9ecbb6;
  --mint-deep: #6fa891;
  --glass: rgba(255, 255, 255, 0.42);
  --glass-strong: rgba(255, 255, 255, 0.62);
  --line: rgba(22, 48, 40, 0.1);
  --glow: rgba(158, 203, 182, 0.5);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Outfit", system-ui, sans-serif;
  --radius: 1.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  font-family: inherit;
}

::selection {
  background: rgba(158, 203, 182, 0.45);
  color: var(--ink);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.7rem 1rem;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
}

.skip:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Grain — desktop only, very light */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 70;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  max-width: 1120px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.7rem 0 0.85rem;
  z-index: 60;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.58),
    rgba(255, 255, 255, 0.28)
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow:
    0 10px 40px rgba(80, 130, 110, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(236, 245, 239, 0.55)
  );
  box-shadow: 0 12px 36px rgba(80, 130, 110, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.nav-brand img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 1.55rem;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-drawer-social {
  display: none;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav-ticker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: var(--mint-deep);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(186, 216, 200, 0.58)
  );
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.nav-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(90, 140, 120, 0.14);
}

.nav-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.nav-icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
}

.nav-toggle {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(22, 48, 40, 0.12);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  place-items: center;
  color: var(--ink);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), background 0.2s ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav.is-open .nav-toggle-bars {
  background: transparent;
}

.nav.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
  --rx: 50%;
  --ry: 50%;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(220, 236, 227, 0.38)
  );
  box-shadow:
    0 8px 24px rgba(90, 140, 120, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    opacity 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120px 80px at var(--rx) var(--ry),
    rgba(255, 255, 255, 0.7),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(90, 140, 120, 0.16);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(186, 216, 200, 0.55)
  );
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.22);
  color: var(--ink-soft);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn:disabled:hover,
.btn[aria-disabled="true"]:hover {
  transform: none;
}

.btn:disabled::after {
  display: none;
}

.btn--wide {
  min-width: 10.5rem;
}

/* ---------- Hero ---------- */

.hero {
  --mx: 0;
  --my: 0;
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2.2rem) 0 0;
}

.hero-env {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 70% at 70% 35%, rgba(210, 232, 220, 0.7), transparent 55%),
    radial-gradient(60% 50% at 20% 20%, rgba(255, 255, 255, 0.9), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, #eaf3ee 48%, #dceae3 100%);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    50% 40% at 50% 100%,
    rgba(255, 255, 255, 0.7),
    transparent 70%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  will-change: transform;
}

.hero-orb--a {
  width: 38vw;
  height: 38vw;
  max-width: 520px;
  max-height: 520px;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(190, 224, 208, 0.7), transparent 68%);
}

.hero-orb--b {
  width: 22vw;
  height: 22vw;
  left: 6%;
  top: 28%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 70%);
}

.hero-orb--c {
  width: 16vw;
  height: 16vw;
  right: 28%;
  bottom: 22%;
  background: radial-gradient(circle, rgba(168, 206, 188, 0.45), transparent 70%);
}

.hero-cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
  filter: blur(18px);
}

.hero-cloud--a {
  width: 42vw;
  height: 18vw;
  left: -6%;
  bottom: 18%;
  animation: drift 22s ease-in-out infinite;
}

.hero-cloud--b {
  width: 30vw;
  height: 14vw;
  right: 4%;
  top: 18%;
  animation: drift 28s ease-in-out infinite reverse;
}

.hero-cloud--c {
  width: 24vw;
  height: 10vw;
  left: 30%;
  top: 8%;
  opacity: 0.7;
  animation: drift 32s ease-in-out infinite;
}

.hero-p {
  position: absolute;
  right: -4%;
  top: 8%;
  width: min(52vw, 640px);
  opacity: 0.55;
  filter: blur(0.2px) drop-shadow(0 30px 60px rgba(130, 180, 155, 0.18));
  will-change: transform;
}

.hero-path {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6%;
  width: 100%;
  height: 38%;
  opacity: 0.85;
}

.hero-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.45) 30%,
    rgba(214, 232, 223, 0.9)
  );
}

.hero-terrain {
  position: absolute;
  bottom: -12%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(214, 230, 222, 0.5)
  );
  filter: blur(2px);
}

.hero-terrain--l {
  width: 55vw;
  height: 28vw;
  left: -18%;
}

.hero-terrain--r {
  width: 48vw;
  height: 24vw;
  right: -14%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  min-height: calc(100svh - var(--nav-h) - 2.2rem);
  gap: 1rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(2.5rem, 8vh, 5.5rem);
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 800;
  font-size: clamp(4.2rem, 12.5vw, 9.4rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
  margin-left: -0.04em;
  opacity: 0;
  animation: rise 1s var(--ease) 0.08s both;
}

.hero-title-glass {
  background: linear-gradient(
    185deg,
    #ffffff 0%,
    #f3faf6 16%,
    #cfe5d8 46%,
    #8fbba6 72%,
    #d7ebe1 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85))
    drop-shadow(0 18px 28px rgba(110, 160, 135, 0.22));
}

.hero-ticker {
  margin: 0.85rem 0 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--mint-deep);
}

.hero-support {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--ink);
}

.hero-support-last {
  color: var(--mint-deep);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.hero-mascot {
  align-self: stretch;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: end center;
  will-change: transform;
}

.mascot-float {
  position: relative;
  width: min(100%, 620px);
  animation: float 6.5s ease-in-out infinite;
}

.mascot-glow {
  position: absolute;
  inset: 12% 8% 22%;
  background: radial-gradient(circle, var(--glow), transparent 68%);
  filter: blur(22px);
  z-index: 0;
}

.mascot-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 40px rgba(90, 140, 115, 0.18));
}

.mascot-reflection {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 78%;
  z-index: 1;
  transform: scaleY(-1);
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 55%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    transparent 55%
  );
  pointer-events: none;
}

.mascot-disc {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 4%;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(255, 255, 255, 0.75),
    rgba(170, 205, 188, 0.15) 55%,
    transparent 70%
  );
  filter: blur(6px);
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(1.4deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -10px, 0);
  }
}

/* ---------- Narrative ---------- */

.narrative {
  position: relative;
  padding: 8vh 0 4vh;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(255, 255, 255, 0.7), transparent),
    linear-gradient(180deg, #e7f0ea, #f4f8f5 30%, #f4f8f5);
}

.beat {
  width: min(980px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 0;
}

.beat-label {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.beat-line {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
}

.building {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.building-line {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
  font-size: clamp(4rem, 14vw, 11rem);
  background: linear-gradient(180deg, #1b332b 0%, #3e6b58 58%, #7eae98 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Connectome ---------- */

.connectome {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #d7e6dd, #c8dbd1 50%, #dce8e2);
}

#neuron-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.connectome-inner {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2.5rem));
  text-align: center;
  padding: 12vh 0;
}

.connectome-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.connectome-stat {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  color: var(--ink-soft);
  line-height: 1.2;
}

.connectome-stat span {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  color: var(--ink);
  line-height: 0.95;
}

.connectome-stat + .connectome-stat {
  margin-top: 1.6rem;
}

.obsession {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.6rem;
  margin-top: 4rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.4vw, 3rem);
}

.obsession li {
  position: relative;
}

.obsession li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.15rem;
  top: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--mint-deep);
  opacity: 0.55;
}

/* ---------- Lore ---------- */

.lore {
  padding: 16vh 0 10vh;
  background:
    radial-gradient(60% 40% at 80% 10%, rgba(210, 232, 220, 0.55), transparent),
    #f5f8f6;
}

.lore-lead {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto 10vh;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.4vw, 3.15rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.lore-lead em {
  font-style: italic;
  color: #2f5748;
}

.lore-split {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto 12vh;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2rem 4rem;
  align-items: end;
}

.lore-aside {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 14rem;
  padding-bottom: 0.4rem;
}

.lore-home {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
}

.lore-rules {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
  list-style: none;
}

.lore-rules li {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  font-size: clamp(2rem, 6.2vw, 5.2rem);
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.lore-rules-last {
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line);
}

.lore-rules .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.lore-rules .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

/* ---------- Cinematic banner ---------- */

.cinematic {
  margin: 0;
  padding: 0 1.1rem 8vh;
  background: #f5f8f6;
}

.cinematic img {
  width: 100%;
  height: auto;
  border-radius: 1.8rem 1.8rem 2.8rem 1.8rem;
  box-shadow: 0 30px 80px rgba(90, 130, 110, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* ---------- Token ---------- */

.token {
  padding: 8vh 1.25rem 10vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f5f8f6, #e7f0ea);
}

.token-card {
  --rx: 50%;
  --ry: 40%;
  width: min(560px, 100%);
  padding: 2.4rem 2.2rem 2rem;
  border-radius: 2.2rem 2.2rem 2.8rem 2.2rem;
  background:
    radial-gradient(
      180px 120px at var(--rx) var(--ry),
      rgba(255, 255, 255, 0.7),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(230, 242, 235, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 24px 60px rgba(90, 130, 110, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.token-kicker,
.token-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.token-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(3rem, 8vw, 4.4rem);
  line-height: 0.9;
  margin: 0.7rem 0 0.3rem;
}

.token-ticker {
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mint-deep);
}

.token-chain {
  margin: 1.4rem 0 2rem;
  color: var(--ink-soft);
}

.token-contract {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.token-value {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  margin-top: 0.2rem;
  overflow-wrap: anywhere;
}

.copy-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.copy-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.copy-btn:not(:disabled) {
  cursor: pointer;
  opacity: 1;
  color: var(--ink);
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

.copy-btn:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

.token-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.token-links a {
  color: var(--mint-deep);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

/* ---------- Community ---------- */

.community {
  padding: 10vh 1.25rem 14vh;
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(200, 224, 212, 0.55), transparent 70%),
    #eaf2ed;
}

.community-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
}

.community-title span {
  color: var(--mint-deep);
}

.community-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.4rem;
}

/* ---------- Footer ---------- */

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  padding: 2rem max(1.25rem, calc((100% - 1120px) / 2)) 3.2rem;
  background: #eaf2ed;
}

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

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.footer-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

.footer-ticker {
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--mint-deep);
  font-weight: 600;
}

.footer-line {
  max-width: 22rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* ---------- Reveals ---------- */

html:not(.js) .reveal,
html:not(.js) .hero-title,
html:not(.js) .hero-support span {
  opacity: 1;
  transform: none;
  animation: none;
}

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

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

.hero-support span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: rise 0.9s var(--ease) forwards;
}

.hero-support span:nth-child(1) {
  animation-delay: 0.25s;
}

.hero-support span:nth-child(2) {
  animation-delay: 0.38s;
}

.hero-support span:nth-child(3) {
  animation-delay: 0.51s;
}

.hero-support span:nth-child(4) {
  animation-delay: 0.64s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (min-width: 921px) {
  .nav-toggle {
    display: none;
  }

  .hero-mascot {
    margin-left: -4.5rem;
    margin-bottom: -1.5rem;
  }
}

@media (max-width: 920px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.4rem;
    box-shadow: 0 18px 40px rgba(80, 120, 100, 0.12);
    backdrop-filter: blur(18px);
  }

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

  .nav-links a {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
  }

  .nav-drawer-social {
    display: flex;
    gap: 0.5rem;
    padding: 0.45rem 0.35rem 0.35rem;
  }

  .nav-drawer-social a {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .nav-ticker {
    display: none;
  }

  .nav-icon {
    display: none;
  }

  .nav-buy {
    min-height: 2rem;
    padding: 0 0.75rem;
    font-size: 0.78rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-mascot {
    order: -1;
    min-height: 0;
    padding-top: 0.4rem;
    place-items: center;
  }

  .mascot-float {
    width: min(70vw, 360px);
  }

  .mascot-reflection {
    display: none;
  }

  .hero-copy {
    padding-bottom: 3rem;
    text-align: left;
  }

  .hero-p {
    width: 70vw;
    right: -18%;
    top: 4%;
    opacity: 0.35;
  }

  .lore-split {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 8vh;
  }

  .footer {
    flex-direction: column;
    align-items: start;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 560px) {
  .nav {
    top: 0.55rem;
    width: calc(100% - 1rem);
    height: 3.9rem;
  }

  .nav-icon {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 1.2rem);
  }

  .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-cta .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 0.7rem;
  }

  .hero-cta .btn--primary {
    grid-column: 1 / -1;
  }

  .cinematic {
    padding-inline: 0.75rem;
  }

  .cinematic img {
    border-radius: 1.2rem;
  }

  .token-card {
    padding: 1.7rem 1.3rem;
  }

  body::after {
    display: none;
  }
}

@media (pointer: coarse) {
  .hero-mascot,
  .hero-p,
  .hero-orb {
    will-change: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero-support span,
  .hero-title {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .mascot-float,
  .hero-cloud {
    animation: none !important;
  }
}
