/* ========================================
   NALA Cat ($NALA) — Premium Landing Styles
   ======================================== */

:root {
  --bg: #070709;
  --bg-elevated: #101014;
  --bg-soft: #16161c;
  --text: #f7f1e6;
  --text-muted: #b8b0a4;
  --cream: #f3e6c8;
  --gold: #f0c75e;
  --gold-deep: #d4a017;
  --orange: #ff8a3d;
  --orange-hot: #ff6a1a;
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.35);
  --gold-glow: rgba(240, 199, 94, 0.45);
  --orange-glow: rgba(255, 138, 61, 0.35);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --nav-h: 78px;
  --container: 1180px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, #1a1420 0%, #070709 65%);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 40px var(--gold-glow);
  animation: logo-pulse 1.6s ease-in-out infinite;
}

.loader__bar {
  width: 160px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto 0.85rem;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--cream));
  animation: loader-slide 1.1s ease-in-out infinite;
}

.loader__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Mouse glow / particles ---------- */
.mouse-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.45;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s, backdrop-filter 0.35s;
}

.navbar.is-scrolled {
  background: rgba(7, 7, 9, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.navbar__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 199, 94, 0.45);
  box-shadow: 0 0 18px var(--gold-glow);
}

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

.navbar__ticker {
  font-size: 0.75rem;
  color: var(--gold);
  background: rgba(240, 199, 94, 0.12);
  border: 1px solid rgba(240, 199, 94, 0.28);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
}

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

.navbar__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
}

.navbar__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Social bar ---------- */
.social-bar {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.social-bar a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(16, 16, 20, 0.75);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: var(--cream);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.social-bar a:hover {
  transform: translateY(-3px) scale(1.05);
  color: var(--gold);
  border-color: rgba(240, 199, 94, 0.45);
  box-shadow: 0 10px 30px var(--gold-glow);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  isolation: isolate;
}

.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 1.05rem 1.8rem;
  font-size: 1.05rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange-hot), var(--gold), var(--cream));
  color: #1a1208;
  box-shadow: 0 10px 35px var(--orange-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px var(--gold-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--cream);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 199, 94, 0.45);
  background: rgba(240, 199, 94, 0.08);
}

.btn--copy {
  background: rgba(240, 199, 94, 0.12);
  border: 1px solid rgba(240, 199, 94, 0.35);
  color: var(--gold);
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  white-space: nowrap;
}

.btn--copy.is-copied {
  background: rgba(74, 222, 128, 0.15);
  border-color: rgba(74, 222, 128, 0.45);
  color: #86efac;
}

.btn .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: shimmer 3.2s ease-in-out infinite;
}

/* ---------- Sections shared ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 36rem;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head .section-lead {
  margin-inline: auto;
}

.gradient-text {
  background: linear-gradient(120deg, var(--orange), var(--gold), var(--cream), var(--orange));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s ease infinite;
}

.glass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

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

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(255, 106, 26, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 40% at 80% 25%, rgba(139, 92, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 90%, rgba(240, 199, 94, 0.12), transparent 60%),
    linear-gradient(180deg, #0c0a10 0%, #070709 55%, #0a0708 100%);
  animation: gradient-rotate 14s linear infinite;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: glow-pulse 5s ease-in-out infinite;
}

.hero__orb--1 {
  width: 320px;
  height: 320px;
  top: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.35), transparent 70%);
}

.hero__orb--2 {
  width: 420px;
  height: 420px;
  top: 20%;
  right: 5%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  animation-delay: -2s;
}

.hero__orb--3 {
  width: 260px;
  height: 260px;
  bottom: 10%;
  left: 40%;
  background: radial-gradient(circle, rgba(240, 199, 94, 0.28), transparent 70%);
  animation-delay: -3.5s;
}

.hero__coin {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.55;
  animation: float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px var(--gold-glow));
  z-index: 1;
}

.hero__coin { top: 22%; left: 18%; }
.hero__coin--2 { top: 58%; right: 18%; font-size: 2rem; animation-delay: -1.5s; }
.hero__coin--3 { bottom: 18%; left: 55%; animation-delay: -2.8s; }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border: 2px solid rgba(240, 199, 94, 0.5);
  box-shadow: 0 0 30px var(--gold-glow);
}

.hero__brand {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero__brand span {
  color: var(--gold);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__glow-ring {
  position: absolute;
  width: min(92%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--orange), var(--gold), var(--purple), var(--orange));
  filter: blur(18px);
  opacity: 0.55;
  animation: spin 12s linear infinite;
}

.hero__cat {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px var(--purple-glow);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  z-index: 3;
}

.hero__scroll span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: var(--gold);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(240, 199, 94, 0.12);
}

.about__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 7, 9, 0.55));
  z-index: 1;
  pointer-events: none;
}

.about__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about__frame:hover img {
  transform: scale(1.04);
}

.about__list {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.85rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.about__list i {
  color: var(--gold);
  width: 1.2rem;
}

/* ---------- Why ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why__card {
  padding: 1.75rem 1.5rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.why__card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 199, 94, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(240, 199, 94, 0.1);
}

.why__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px var(--gold-glow));
}

.why__card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.why__card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Token ---------- */
.token__card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.token__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.token__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 199, 94, 0.4);
}

.token__top h3 {
  font-family: var(--display);
  font-size: 1.5rem;
}

.token__ticker {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.token__ticker span {
  color: var(--gold);
  font-weight: 700;
}

.token__ca label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.token__ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
}

.token__ca-row code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--cream);
  word-break: break-all;
}

.token__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ---------- Tokenomics ---------- */
.tokenomics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tokenomics__card {
  text-align: center;
  padding: 2rem 1.25rem;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.tokenomics__card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.35);
}

.tokenomics__ring {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(240, 199, 94, 0.25), rgba(139, 92, 246, 0.12));
  border: 2px solid rgba(240, 199, 94, 0.35);
  box-shadow: 0 0 30px rgba(240, 199, 94, 0.15), inset 0 0 20px rgba(139, 92, 246, 0.12);
  animation: glow-pulse 4.5s ease-in-out infinite;
}

.tokenomics__ring span {
  font-size: 1.8rem;
}

.tokenomics__card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.tokenomics__card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Roadmap ---------- */
.roadmap__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.roadmap__track::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--orange), var(--purple), transparent);
  opacity: 0.55;
  z-index: 0;
}

.roadmap__phase {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 1.75rem;
  text-align: center;
  transition: transform 0.35s var(--ease);
}

.roadmap__phase:hover {
  transform: translateY(-6px);
}

.roadmap__node {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a1208;
  font-weight: 800;
  font-family: var(--display);
  box-shadow: 0 0 28px var(--gold-glow);
  animation: glow-pulse 3.8s ease-in-out infinite;
}

.roadmap__phase h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.roadmap__phase ul {
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
}

.roadmap__phase li::before {
  content: "▹ ";
  color: var(--gold);
}

/* ---------- How to buy ---------- */
.howto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.howto__card {
  padding: 1.75rem 1.4rem;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.howto__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 138, 61, 0.4);
}

.howto__step {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  color: rgba(240, 199, 94, 0.25);
}

.howto__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: rgba(240, 199, 94, 0.1);
  border: 1px solid rgba(240, 199, 94, 0.25);
  color: var(--gold);
  font-size: 1.25rem;
}

.howto__card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.howto__card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Gallery ---------- */
.gallery__masonry {
  columns: 3 280px;
  column-gap: 1.1rem;
}

.gallery__item {
  display: block;
  width: 100%;
  margin: 0 0 1.1rem;
  break-inside: avoid;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-soft);
  padding: 0;
  cursor: zoom-in;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.gallery__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery__item--tall img {
  min-height: 320px;
  object-fit: cover;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(139, 92, 246, 0.15);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

/* ---------- FAQ ---------- */
.faq__wrap {
  max-width: 820px;
}

.faq__list {
  display: grid;
  gap: 0.85rem;
}

.faq__item {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq__item.is-open {
  border-color: rgba(240, 199, 94, 0.35);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
}

.faq__question i {
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.faq__item.is-open .faq__question i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}

.faq__item.is-open .faq__answer {
  max-height: 280px;
}

.faq__answer p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
}

/* ---------- Final CTA ---------- */
.final-cta__card {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 138, 61, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(139, 92, 246, 0.16), transparent 50%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.final-cta__logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(240, 199, 94, 0.45);
  box-shadow: 0 0 40px var(--gold-glow);
}

.final-cta__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.75rem;
}

.final-cta__sub {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
}

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

.footer__brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 199, 94, 0.35);
}

.footer__brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
}

.footer__brand span {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer__links a {
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__disclaimer {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer__copy {
  color: rgba(247, 241, 230, 0.45);
  font-size: 0.8rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 85vh;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: scale-in 0.35s var(--ease);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.2rem;
  transition: background 0.25s, transform 0.25s;
}

.lightbox__close:hover {
  background: rgba(255, 138, 61, 0.25);
  transform: scale(1.05);
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 950;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a1208;
  box-shadow: 0 10px 30px var(--orange-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-top:hover {
  transform: translateY(-3px);
}

/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px var(--gold-glow); }
  50% { transform: scale(1.05); box-shadow: 0 0 40px var(--gold-glow), 0 0 60px var(--purple-glow); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.15); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradient-rotate {
  0% { transform: rotate(0deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1.05); }
}

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

@keyframes shimmer {
  0%, 20% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(18px); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.float {
  animation: float 5s ease-in-out infinite;
}

.logo-pulse {
  animation: logo-pulse 2.8s ease-in-out infinite;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .navbar__nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
    background: rgba(10, 10, 14, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(105%);
    transition: transform 0.35s var(--ease);
    z-index: 1;
  }

  .navbar__nav.is-open {
    transform: none;
  }

  .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
  }

  .navbar__toggle {
    display: flex;
    z-index: 2;
  }

  .navbar__actions .btn--sm {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    order: 2;
  }

  .hero__visual {
    order: 1;
  }

  .hero__logo {
    margin-inline: auto;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__cta {
    justify-content: center;
  }

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

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tokenomics__grid,
  .howto__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap__track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .roadmap__track::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .social-bar {
    right: 0.65rem;
  }

  .social-bar a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .why__grid,
  .tokenomics__grid,
  .howto__grid {
    grid-template-columns: 1fr;
  }

  .gallery__masonry {
    columns: 2 140px;
  }

  .token__ca-row {
    flex-direction: column;
    align-items: stretch;
  }

  .token__actions,
  .hero__cta,
  .final-cta__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .navbar__ticker {
    display: none;
  }

  .mouse-glow {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .gallery__masonry {
    columns: 1;
  }

  .hero__cat {
    border-radius: 28px;
  }
}

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