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

:root {
  --ocean-deep: #0b4f6c;
  --ocean-mid: #1a7a9e;
  --ocean-bright: #4ecdc4;
  --sky-deep: #5eb8e8;
  --sky-light: #b8e4f9;
  --sky-pale: #e8f6fc;
  --green-palm: #2d9a6e;
  --mango: #ffb347;
  --mango-deep: #ff9f43;
  --tropical-pink: #e88fa8;
  --text: #0f3447;
  --text-muted: #3d6278;
  --text-on-blue: rgba(255, 255, 255, 0.92);
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.14);
  --glass-border: rgba(255, 255, 255, 0.32);
  --radius: 18px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-on-blue);
  background-color: var(--ocean-deep);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("./src/assets/background.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(8, 45, 62, 0.1) 0%,
    rgba(11, 79, 108, 0.16) 45%,
    rgba(11, 79, 108, 0.32) 100%
  );
  pointer-events: none;
}

/* ── Sky birds ── */

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

.bird {
  position: absolute;
  top: var(--bird-top, 12%);
  left: -12%;
  width: var(--bird-size, 18px);
  height: calc(var(--bird-size, 18px) * 0.5);
  color: rgba(255, 255, 255, 0.32);
  opacity: var(--bird-opacity, 0.3);
  filter: blur(0.3px);
  animation: bird-fly var(--bird-duration, 58s) linear infinite;
  animation-delay: var(--bird-delay, 0s);
}

.bird svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes bird-fly {
  0% {
    transform: translateX(0) translateY(0) scale(0.92);
  }
  50% {
    transform: translateX(55vw) translateY(-5px) scale(1);
  }
  100% {
    transform: translateX(115vw) translateY(3px) scale(0.94);
  }
}

/* ── Sky clouds ── */

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

.cloud {
  position: absolute;
  left: var(--cloud-left, 10%);
  top: var(--cloud-top, 12%);
  width: var(--cloud-width, 180px);
  height: var(--cloud-height, 60px);
  opacity: var(--cloud-opacity, 0.18);
  animation: cloud-drift var(--cloud-duration, 90s) ease-in-out infinite;
  animation-delay: var(--cloud-delay, 0s);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(18px);
}

.cloud::before {
  width: 55%;
  height: 140%;
  left: 8%;
  top: -20%;
}

.cloud::after {
  width: 45%;
  height: 120%;
  right: 10%;
  top: -10%;
}

.cloud__body {
  position: absolute;
  inset: 20% 5%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(14px);
}

@keyframes cloud-drift {
  0% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(8vw) translateY(-6px);
  }
  66% {
    transform: translateX(14vw) translateY(4px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* ── Sky particles ── */

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

.particle {
  position: absolute;
  left: var(--particle-left, 50%);
  top: var(--particle-top, 30%);
  width: var(--particle-size, 2px);
  height: var(--particle-size, 2px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  opacity: var(--particle-opacity, 0.28);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  animation: particle-drift var(--particle-duration, 70s) ease-in-out infinite;
  animation-delay: var(--particle-delay, 0s);
}

@keyframes particle-drift {
  0% {
    transform: translate(0, 0);
    opacity: var(--particle-opacity, 0.35);
  }
  50% {
    transform: translate(var(--particle-x, 20px), var(--particle-y, -30px));
    opacity: calc(var(--particle-opacity, 0.35) * 1.15);
  }
  100% {
    transform: translate(calc(var(--particle-x, 20px) * 1.4), calc(var(--particle-y, -30px) * 0.6));
    opacity: var(--particle-opacity, 0.35);
  }
}

/* ── Hero sun glow ── */

.hero-sun-glow {
  position: fixed;
  top: clamp(4%, 8vh, 10%);
  right: clamp(12%, 18vw, 22%);
  width: clamp(140px, 28vw, 260px);
  height: clamp(140px, 28vw, 260px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(255, 228, 150, 0.28) 0%,
    rgba(255, 200, 100, 0.12) 38%,
    rgba(255, 180, 80, 0.04) 58%,
    transparent 72%
  );
  animation: sun-core-breathe 18s ease-in-out infinite;
}

.hero-sun-glow::before {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 228, 150, 0.12) 0%,
    rgba(255, 200, 100, 0.05) 42%,
    transparent 68%
  );
  animation: sun-halo-breathe 18s ease-in-out infinite;
}

@keyframes sun-core-breathe {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1);
  }
  50% {
    opacity: 0.94;
    transform: scale(1.012);
  }
}

@keyframes sun-halo-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(1);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.028);
  }
}

/* ── Ocean atmosphere ── */

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

.ocean-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(78, 205, 196, 0.05) 78%,
    rgba(26, 122, 158, 0.09) 100%
  );
  animation: ocean-breathe 14s ease-in-out infinite;
}

.ocean-atmosphere::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 140%;
  height: 35vh;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(78, 205, 196, 0.04) 35%,
    rgba(184, 228, 249, 0.06) 50%,
    rgba(78, 205, 196, 0.04) 65%,
    transparent 100%
  );
  animation: ocean-shimmer 22s ease-in-out infinite;
}

@keyframes ocean-breathe {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes ocean-shimmer {
  0%,
  100% {
    transform: translateX(-4%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(4%) translateY(-6px);
    opacity: 0.85;
  }
}

.container {
  width: min(600px, 90%);
  margin: 0 auto;
}

/* ── Site nav (hamburger) ── */

.site-nav {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 40;
}

.hamburger {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(184, 228, 249, 0.12) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 179, 71, 0.08) 100%
  );
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  cursor: pointer;
  transition: transform 0.22s ease;
}

.hamburger:hover {
  transform: scale(1.03);
}

.hamburger:active {
  transform: scale(0.97);
}

.hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 179, 71, 0.94);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 210px;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(
    165deg,
    rgba(184, 228, 249, 0.14) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 179, 71, 0.08) 100%
  );
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow:
    0 12px 40px rgba(11, 79, 108, 0.22),
    0 0 32px rgba(94, 184, 232, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  pointer-events: none;
}

.nav-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(11, 79, 108, 0.4);
  transition: background 0.2s;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(11, 79, 108, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* ── Hero ── */

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(6rem, 14vh, 8.5rem) 0 clamp(3.5rem, 8vh, 5rem);
}

.hero-inner {
  width: min(640px, 92%);
}

.hero-content {
  min-width: 0;
  text-align: center;
  margin: 0 auto;
  padding: clamp(1rem, 3vh, 2rem) 0;
}

.hero-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.1rem);
}

.hero-logo-wrap {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.hero-logo {
  width: clamp(138px, 28.75vw, 186px);
  height: auto;
  background: none;
  filter: drop-shadow(0 6px 24px rgba(11, 79, 108, 0.4));
  animation: logo-float 12s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 11vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 4px 28px rgba(11, 79, 108, 0.5);
  margin: 0;
  animation: hero-title-enter 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@keyframes hero-title-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 500;
  color: var(--mango);
  margin: clamp(0.55rem, 1.6vw, 0.85rem) 0 0;
  text-align: center;
  text-shadow:
    0 0 22px rgba(255, 159, 67, 0.24),
    0 0 8px rgba(255, 179, 71, 0.14),
    0 2px 14px rgba(11, 79, 108, 0.4);
}

.hero-subtext {
  font-size: clamp(0.92rem, 2.4vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin: clamp(1.65rem, 4.5vw, 2.5rem) auto clamp(2.25rem, 4.5vw, 3rem);
  line-height: 1.85;
  text-shadow: 0 1px 14px rgba(11, 79, 108, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
  padding: clamp(0.25rem, 1vw, 0.75rem) 0;
}

.hero .copy-feedback {
  margin-top: 1.35rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(11, 79, 108, 0.4);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

.btn-copy {
  background: linear-gradient(135deg, var(--mango), var(--mango-deep));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
}

.btn-copy:hover {
  box-shadow: 0 8px 28px rgba(255, 159, 67, 0.52);
}

.btn-copy.copied {
  background: linear-gradient(135deg, #3cb371, var(--green-palm));
  color: var(--white);
}

.btn-solscan {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(11, 79, 108, 0.2);
}

.btn-solscan:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── Journey layout ── */

.journey {
  position: relative;
  z-index: 1;
}

.chapter {
  position: relative;
  padding: clamp(3rem, 7vh, 4.75rem) 0;
}

.chapter-about {
  padding-top: clamp(2rem, 5.5vh, 3.25rem);
  padding-bottom: clamp(3.75rem, 9vh, 6rem);
}

.chapter-token {
  padding: clamp(2.75rem, 6vh, 4rem) 0;
}

.chapter-community {
  padding: clamp(3.25rem, 7vh, 5rem) 0 clamp(2rem, 5vh, 3rem);
}

.chapter-contact {
  padding: clamp(2rem, 5vh, 3.25rem) 0 clamp(3rem, 7vh, 4.5rem);
}

.chapter-disclaimer {
  padding: clamp(2rem, 4.5vh, 2.75rem) 0 clamp(2.5rem, 5.5vh, 3.5rem);
}

.chapter-inner {
  width: min(640px, 92%);
  margin: 0 auto;
  text-align: center;
}

.chapter-inner--about {
  width: min(720px, 94%);
}

.chapter-inner--token {
  width: min(560px, 94%);
}

.chapter-inner--community,
.chapter-inner--contact {
  width: min(720px, 94%);
}

.contact-card {
  max-width: 440px;
  margin: 0 auto;
  animation-delay: -5s;
}

.contact-card__text {
  font-size: clamp(0.92rem, 2.3vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
  text-align: center;
  text-shadow: 0 1px 10px rgba(11, 79, 108, 0.42);
}

.social-card__username {
  font-size: clamp(0.88rem, 2.2vw, 0.95rem);
  font-weight: 600;
  color: rgba(255, 179, 71, 0.94);
  text-shadow:
    0 0 16px rgba(255, 159, 67, 0.18),
    0 1px 8px rgba(11, 79, 108, 0.35);
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.25rem, 3vw, 1.5rem);
  border-radius: var(--radius);
  text-decoration: none;
  background: linear-gradient(
    165deg,
    rgba(184, 228, 249, 0.12) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 179, 71, 0.06) 100%
  );
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 40px rgba(11, 79, 108, 0.18),
    0 0 32px rgba(94, 184, 232, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: social-card-float 20s ease-in-out infinite;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-card:nth-child(2) {
  animation-delay: -10s;
}

.social-card:hover {
  animation-play-state: paused;
  transform: scale(1.02);
  box-shadow:
    0 16px 48px rgba(11, 79, 108, 0.22),
    0 0 44px rgba(94, 184, 232, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

@keyframes social-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.social-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.social-card__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.social-card__icon--text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.social-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 12px rgba(11, 79, 108, 0.45);
}

.chapter-inner--disclaimer {
  width: min(560px, 90%);
}

.chapter-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 4.2vw, 2.25rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 179, 71, 0.94);
  text-shadow:
    0 0 28px rgba(255, 159, 67, 0.28),
    0 0 10px rgba(255, 179, 71, 0.16),
    0 2px 14px rgba(11, 79, 108, 0.48);
}

.chapter-label--featured,
.chapter-label--compact,
.chapter-label--float,
.chapter-label--minimal {
  margin-bottom: clamp(2.25rem, 5.5vw, 3.5rem);
}

.chapter-label--compact {
  letter-spacing: 0.26em;
}

.chapter-label--minimal {
  letter-spacing: 0.24em;
  color: rgba(255, 179, 71, 0.9);
}

/* ── Glass card (About + Token) ── */

.glass-card {
  position: relative;
  text-align: center;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.glass-card--featured {
  overflow: hidden;
  padding: clamp(3.25rem, 7.5vw, 4.75rem) clamp(2.5rem, 5.5vw, 3.5rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    165deg,
    rgba(184, 228, 249, 0.14) 0%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(78, 205, 196, 0.08) 100%
  );
  box-shadow:
    0 24px 64px rgba(11, 79, 108, 0.22),
    0 0 48px rgba(94, 184, 232, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation:
    card-float 18s ease-in-out infinite,
    glass-glow-pulse-featured 16s ease-in-out infinite;
}

@keyframes glass-glow-pulse-featured {
  0%,
  100% {
    box-shadow:
      0 24px 64px rgba(11, 79, 108, 0.22),
      0 0 48px rgba(94, 184, 232, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow:
      0 24px 64px rgba(11, 79, 108, 0.24),
      0 0 54px rgba(94, 184, 232, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

.glass-card__reflection {
  position: absolute;
  top: -45%;
  left: -90%;
  width: 38%;
  height: 190%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 38%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 62%,
    transparent 100%
  );
  transform: skewX(-14deg);
  animation: card-reflection 28s ease-in-out infinite;
}

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

@keyframes card-reflection {
  0%,
  74% {
    left: -90%;
    opacity: 0;
  }
  80% {
    opacity: 0.7;
  }
  90% {
    left: 125%;
    opacity: 0.65;
  }
  96%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

.glass-card--featured .prose {
  position: relative;
  z-index: 1;
}

.glass-card--compact {
  padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.5rem, 3.5vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow:
    0 12px 40px rgba(11, 79, 108, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: glass-glow-pulse-compact 16s ease-in-out infinite;
}

@keyframes glass-glow-pulse-compact {
  0%,
  100% {
    box-shadow:
      0 12px 40px rgba(11, 79, 108, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 12px 40px rgba(11, 79, 108, 0.22),
      0 0 36px rgba(94, 184, 232, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* ── Glass strip (Disclaimer only) ── */

.glass-strip {
  position: relative;
}

.glass-strip--minimal {
  padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 20%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.06) 80%,
    transparent 100%
  );
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Floating text (Community) ── */

.float-text {
  padding: clamp(0.75rem, 2.5vw, 1.25rem) 0;
}

.coming-soon {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 1.85rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 24px rgba(11, 79, 108, 0.58),
    0 1px 4px rgba(0, 0, 0, 0.22);
  animation: community-breathe 8s ease-in-out infinite;
}

.coming-soon-note {
  font-size: clamp(1.05rem, 2.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.85;
  max-width: 24rem;
  margin: 0 auto;
  text-shadow: 0 1px 16px rgba(11, 79, 108, 0.52);
}

@keyframes community-breathe {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

/* ── Scroll reveal ── */

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

.has-reveal .reveal:not([data-revealed="true"]) {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

.reveal.is-entering {
  animation: reveal-rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

@keyframes reveal-rise {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Prose (floating story text) ── */

.prose {
  max-width: 34rem;
  margin: 0 auto;
}

.prose-about p {
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(1.1rem, 2.85vw, 1.19rem);
  line-height: 2.15;
  margin-bottom: 1.6rem;
  text-shadow:
    0 1px 14px rgba(11, 79, 108, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.prose-about p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 3.3vw, 1.38rem);
  font-weight: 500;
  line-height: 1.8;
}

.prose-about p:last-child {
  margin-bottom: 0;
}

.prose-quiet {
  font-weight: 600;
  color: rgba(184, 228, 249, 0.95);
  margin-top: 1.75rem;
}

.prose-closing {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 3.12vw, 1.27rem);
  color: var(--mango);
  line-height: 1.85;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-shadow:
    0 0 18px rgba(255, 159, 67, 0.18),
    0 1px 12px rgba(11, 79, 108, 0.45);
}

.prose-disclaimer {
  max-width: 34rem;
  margin: 0 auto;
  font-size: clamp(1.08rem, 2.85vw, 1.2rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.84);
  text-shadow:
    0 1px 12px rgba(11, 79, 108, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.25);
}

/* ── Token section ── */

.token-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
  padding-bottom: clamp(1.25rem, 3vw, 1.65rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.token-facts li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
}

.token-facts span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.token-facts strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(11, 79, 108, 0.4);
}

.token-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
}

.mint-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mint-scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 179, 71, 0.35) transparent;
}

.mint-scroll::-webkit-scrollbar {
  height: 4px;
}

.mint-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 179, 71, 0.35);
}

.mint-address {
  display: inline-block;
  min-width: max-content;
  padding: 0.95rem 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 179, 71, 0.42);
  border-radius: 10px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.72rem, 1.6vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  word-break: normal;
  color: rgba(255, 255, 255, 0.99);
  line-height: 1;
  text-align: left;
  text-shadow: 0 1px 8px rgba(11, 79, 108, 0.45);
  box-shadow:
    0 4px 20px rgba(11, 79, 108, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mint-copy-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 179, 71, 0.38);
  border-radius: 10px;
  background: rgba(255, 179, 71, 0.14);
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(11, 79, 108, 0.15);
}

.mint-copy-btn:hover {
  background: rgba(255, 179, 71, 0.28);
  border-color: rgba(255, 179, 71, 0.52);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 159, 67, 0.28);
}

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

.mint-copy-btn.copied {
  background: rgba(45, 154, 110, 0.28);
  border-color: rgba(45, 154, 110, 0.55);
}

.mint-copy-icon {
  width: 18px;
  height: 18px;
}

.mint-copy-icon--check {
  display: none;
}

.mint-copy-btn.copied .mint-copy-icon:not(.mint-copy-icon--check) {
  display: none;
}

.mint-copy-btn.copied .mint-copy-icon--check {
  display: block;
}

.copy-feedback {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(184, 228, 249, 0.97);
  text-align: center;
  text-shadow: 0 1px 8px rgba(11, 79, 108, 0.4);
}

.chapter-token .copy-feedback {
  color: rgba(184, 228, 249, 0.95);
}

.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.chapter-token .btn {
  min-height: 40px;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .sky-birds,
  .sky-clouds,
  .sky-particles,
  .hero-sun-glow,
  .ocean-atmosphere {
    display: none;
  }

  .hero-logo,
  .hero-title {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .coming-soon {
    animation: none;
    opacity: 1;
  }

  .social-card,
  .social-card:hover {
    animation: none;
    transform: none;
  }

  .glass-card--featured,
  .glass-card--compact,
  .glass-card__reflection {
    animation: none;
  }

  .hamburger,
  .hamburger:hover,
  .hamburger:active {
    transform: none;
    transition: none;
  }

  .reveal,
  .reveal.is-entering {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Footer ── */

.footer {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vh, 2.5rem) 0 clamp(2rem, 5vh, 3rem);
  text-align: center;
}

.footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(11, 79, 108, 0.45);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ── Tablet ── */

@media (min-width: 641px) and (max-width: 1024px) {
  .chapter-inner--about {
    width: min(680px, 92%);
  }

  .chapter-inner--token {
    width: min(500px, 88%);
  }

  .chapter-label {
    font-size: clamp(1.75rem, 3.5vw, 2rem);
  }

  .prose-closing {
    font-size: clamp(1.18rem, 2.8vw, 1.24rem);
  }

  .mint-address {
    font-size: clamp(0.76rem, 1.8vw, 0.88rem);
  }
}

/* ── Mobile ── */

@media (max-width: 640px) {
  body::before {
    background-position: 48% 37%;
    background-size: cover;
  }

  body::after {
    background: linear-gradient(
      180deg,
      rgba(8, 45, 62, 0.12) 0%,
      rgba(11, 79, 108, 0.18) 42%,
      rgba(11, 79, 108, 0.3) 100%
    );
  }

  .hero {
    min-height: 100svh;
    padding-top: clamp(5rem, 10vh, 6.5rem);
  }

  .hero-brand {
    flex-direction: column;
    gap: clamp(0.45rem, 2vw, 0.65rem);
  }

  .hero-tagline {
    margin-top: clamp(0.35rem, 1.2vw, 0.55rem);
  }

  .hero-subtext {
    max-width: 22rem;
    margin-top: clamp(1.35rem, 4vw, 2rem);
  }

  .sky-birds .bird:nth-child(n + 3) {
    display: none;
  }

  .bird {
    opacity: calc(var(--bird-opacity, 0.45) * 0.7);
  }

  .sky-clouds .cloud:nth-child(n + 3) {
    display: none;
  }

  .sky-particles .particle:nth-child(n + 10) {
    display: none;
  }

  .cloud {
    opacity: calc(var(--cloud-opacity, 0.18) * 0.75);
  }

  .hamburger {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .site-nav {
    top: 0.85rem;
    right: 0.85rem;
  }

  .nav-menu {
    min-width: min(240px, calc(100vw - 2rem));
  }

  .chapter-about {
    padding-top: clamp(1.25rem, 4vh, 2rem);
    padding-bottom: clamp(2.25rem, 7vh, 3.5rem);
  }

  .chapter {
    padding: clamp(1.75rem, 6vh, 3rem) 0;
  }

  .chapter-community {
    padding: clamp(2rem, 5vh, 3rem) 0;
  }

  .social-cards {
    grid-template-columns: 1fr;
  }

  .chapter-inner--token {
    width: min(520px, 96%);
  }

  .chapter-label {
    font-size: 1.625rem;
    letter-spacing: 0.22em;
    margin-bottom: 2rem;
  }

  .prose-closing {
    font-size: clamp(1.12rem, 4.5vw, 1.22rem);
    margin-top: 1.65rem;
    padding-top: 1.25rem;
  }

  .prose-disclaimer {
    font-size: clamp(1.02rem, 3.2vw, 1.12rem);
  }

  .glass-card--featured {
    padding: 2.35rem 1.5rem;
  }

  .glass-card--compact {
    padding: 1.25rem 1.1rem;
  }

  .mint-row {
    gap: 0.5rem;
  }

  .mint-address {
    padding: 0.85rem 1rem;
    font-size: 0.68rem;
  }

  .mint-copy-btn {
    width: 44px;
    min-height: 44px;
    align-self: center;
  }

  .token-actions {
    flex-direction: column;
  }

  .token-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) and (orientation: landscape) {
  body::before {
    background-position: 50% 44%;
  }
}

@media (max-width: 380px) {
  body::before {
    background-position: 46% 35%;
  }

  .hero-logo {
    width: clamp(124px, 28vw, 152px);
  }
}
