:root {
  --base: #0052ff;
  --base-deep: #0033cc;
  --base-soft: #4d82ff;
  --base-mist: #e8efff;
  --base-wash: #f3f7ff;
  --ink: #0a1628;
  --ink-soft: #3a4a63;
  --line: rgba(0, 82, 255, 0.18);
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #eaf1ff;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

/* ===== Shining background system ===== */
.bg-shine {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 20% 15%, rgba(0, 82, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 25%, rgba(90, 150, 255, 0.5), transparent 50%),
    radial-gradient(ellipse 55% 45% at 50% 80%, rgba(0, 120, 255, 0.4), transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 70%, rgba(120, 180, 255, 0.45), transparent 50%),
    linear-gradient(160deg, #dce8ff 0%, #f4f8ff 35%, #e3edff 70%, #d4e4ff 100%);
  background-size: 200% 200%;
  animation: meshShift 14s ease-in-out infinite alternate;
  filter: saturate(1.15);
}

@keyframes meshShift {
  0% {
    background-position: 0% 40%, 100% 0%, 50% 100%, 0% 80%, 0% 0%;
    transform: scale(1) rotate(0deg);
  }
  50% {
    background-position: 40% 0%, 60% 50%, 20% 60%, 80% 30%, 50% 50%;
    transform: scale(1.06) rotate(1.5deg);
  }
  100% {
    background-position: 100% 60%, 0% 100%, 80% 20%, 40% 10%, 100% 100%;
    transform: scale(1.02) rotate(-1deg);
  }
}

.bg-aurora {
  position: absolute;
  inset: -30%;
  background:
    conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(0, 82, 255, 0.18) 40deg,
      transparent 80deg,
      rgba(100, 170, 255, 0.22) 140deg,
      transparent 180deg,
      rgba(0, 100, 255, 0.16) 240deg,
      transparent 280deg,
      rgba(160, 200, 255, 0.2) 320deg,
      transparent 360deg
    );
  animation: auroraSpin 28s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.85;
  filter: blur(40px);
}

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

.bg-beams {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.55;
}

.bg-beams span {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(0, 82, 255, 0.55) 48%,
    rgba(180, 210, 255, 0.7) 50%,
    rgba(0, 82, 255, 0.45) 52%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent 100%
  );
  filter: blur(1.5px);
  transform-origin: center center;
  animation: beamPulse 5s ease-in-out infinite;
}

.bg-beams span:nth-child(1) { transform: rotate(-28deg) translateX(-38vw); animation-delay: 0s; }
.bg-beams span:nth-child(2) { transform: rotate(-12deg) translateX(-16vw); animation-delay: -1s; width: 3px; }
.bg-beams span:nth-child(3) { transform: rotate(4deg) translateX(4vw); animation-delay: -2.2s; width: 2.5px; }
.bg-beams span:nth-child(4) { transform: rotate(18deg) translateX(24vw); animation-delay: -3.1s; }
.bg-beams span:nth-child(5) { transform: rotate(32deg) translateX(42vw); animation-delay: -4s; width: 3px; }

@keyframes beamPulse {
  0%, 100% { opacity: 0.25; filter: blur(2px); }
  50% { opacity: 0.95; filter: blur(0.5px); }
}

.bg-sweep {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(0, 140, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.35) 52%,
    rgba(0, 82, 255, 0.2) 55%,
    transparent 65%
  );
  animation: shineSweep 7s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

@keyframes shineSweep {
  0% { transform: translateX(-40%) rotate(8deg); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateX(20%) rotate(8deg); opacity: 0.9; }
  85% { opacity: 1; }
  100% { transform: translateX(55%) rotate(8deg); opacity: 0; }
}

.bg-stars {
  position: absolute;
  inset: 0;
}

.bg-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px 2px rgba(0, 82, 255, 0.9),
    0 0 14px 4px rgba(120, 180, 255, 0.55);
  animation: twinkle var(--dur, 2.4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.bg-star::before,
.bg-star::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-star::before {
  width: 18px;
  height: 1px;
}

.bg-star::after {
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  40%, 60% { opacity: 1; transform: scale(1.15); }
}

/* Ambient layers */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  opacity: 0.65;
  animation: floatOrb 14s ease-in-out infinite;
  mix-blend-mode: screen;
}

.orb-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.75) 0%, rgba(0, 82, 255, 0) 70%);
  top: 5%;
  left: -140px;
  animation-name: floatOrb, orbPulse;
  animation-duration: 14s, 4s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.orb-b {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(100, 170, 255, 0.7) 0%, rgba(100, 170, 255, 0) 70%);
  top: 50%;
  right: -120px;
  animation-delay: -6s, -1.5s;
  animation-name: floatOrb, orbPulse;
  animation-duration: 16s, 5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.orb-c {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.55) 0%, transparent 70%);
  bottom: 0%;
  left: 30%;
  animation-delay: -11s, -2.5s;
  animation-name: floatOrb, orbPulse;
  animation-duration: 18s, 3.5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.orb-d {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 225, 255, 0.85) 0%, rgba(0, 82, 255, 0.25) 40%, transparent 70%);
  top: 35%;
  left: 45%;
  animation-delay: -3s, -0.8s;
  animation-name: floatOrb, orbPulse;
  animation-duration: 12s, 2.8s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
  filter: blur(30px);
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(50px, -60px, 0) scale(1.18); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.45; filter: blur(50px); }
  50% { opacity: 0.85; filter: blur(35px); }
}

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

/* Custom cursor */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
}

.cursor {
  width: 40px;
  height: 40px;
  border: 2px solid var(--base);
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.cursor.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(0, 82, 255, 0.12);
  border-color: var(--base-deep);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--base);
  transform: translate(-50%, -50%);
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  button, a { cursor: pointer; }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(247, 250, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
  z-index: 2;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(0, 82, 255, 0.35);
  animation: logoPulse 3.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); border-color: rgba(0, 82, 255, 0.35); }
  50% { transform: scale(1.04); border-color: rgba(0, 82, 255, 0.8); }
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--base);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  flex-direction: column;
  gap: 7px;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(247, 250, 255, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s;
  white-space: nowrap;
}

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

.btn-buy {
  background: var(--base);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.28);
}

.btn-buy:hover {
  background: var(--base-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 82, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border: 1.5px solid rgba(0, 82, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--base);
  color: var(--base);
}

.magnetic {
  will-change: transform;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  z-index: 2;
}

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

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.08);
  will-change: transform;
  animation: heroKen 22s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(0, -2%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.35) 45%, rgba(10, 22, 40, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 82, 255, 0.25), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 14vh, 9rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 10vh, 6rem);
  max-width: 920px;
  color: var(--white);
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d6e4ff;
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  margin-bottom: 1.1rem;
}

.hero h1 .line {
  display: inline-block;
  background: linear-gradient(120deg, #fff 20%, #b8ceff 55%, #fff 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4.5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.4; }
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--base);
  color: var(--white);
  padding: 0.9rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.15);
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: tickerMove 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.ticker-track span::after {
  content: "·";
  margin-left: 2.5rem;
  opacity: 0.5;
}

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

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

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--base);
  margin-bottom: 0.85rem;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.section-sub,
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36rem;
  line-height: 1.6;
}

.about p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 36rem;
}

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

.token-meta {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.meta-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: center;
}

.meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--base);
  font-weight: 600;
}

.meta-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.ca-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(0, 82, 255, 0.08);
  border: 1px solid var(--line);
  transition: background 0.25s, transform 0.25s;
}

.ca-btn:hover {
  background: rgba(0, 82, 255, 0.14);
  transform: translateY(-1px);
}

.ca-btn code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  color: var(--ink);
}

.copy-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--base);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-visual {
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.about-logo {
  width: 72%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid rgba(0, 82, 255, 0.4);
  box-shadow: 0 25px 60px rgba(0, 82, 255, 0.22);
  position: relative;
  z-index: 2;
  animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1.5deg); }
}

.logo-ring {
  position: absolute;
  inset: 4%;
  border: 1.5px dashed rgba(0, 82, 255, 0.45);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.logo-ring.ring-2 {
  inset: -2%;
  border-style: solid;
  border-color: transparent;
  border-top-color: var(--base);
  border-right-color: rgba(0, 82, 255, 0.25);
  animation-duration: 10s;
  animation-direction: reverse;
}

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

/* How to buy */
.howto {
  background:
    linear-gradient(180deg, transparent, rgba(0, 82, 255, 0.05) 30%, rgba(0, 82, 255, 0.05) 70%, transparent);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 2rem;
}

.step {
  padding: 1.6rem 1.4rem 1.7rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
  counter-increment: none;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 82, 255, 0.45);
  background: var(--white);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--base);
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--base), var(--base-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}

.howto-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.ca-inline {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.ca-inline-btn {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--base);
  font-weight: 600;
  border-bottom: 1px dashed rgba(0, 82, 255, 0.5);
  transition: color 0.2s;
}

.ca-inline-btn:hover {
  color: var(--base-deep);
}

/* Gallery */
.gallery {
  overflow: hidden;
}

.gallery .section-inner {
  margin-bottom: 1.5rem;
}

.marquee {
  overflow: hidden;
  margin: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeLeft 40s linear infinite;
}

.marquee-right .marquee-track {
  animation-name: marqueeRight;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

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

.shot {
  width: min(280px, 70vw);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(0, 82, 255, 0.2);
  flex-shrink: 0;
}

.shot img,
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.shot:hover img,
.g-item:hover img {
  transform: scale(1.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.g-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(0, 82, 255, 0.18);
  background: var(--base-mist);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.g-item:nth-child(odd) {
  transform: translateY(12px);
}

.g-item:hover {
  border-color: var(--base);
}

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

.join-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.join .section-sub {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 1rem;
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform 0.35s var(--ease), border-color 0.3s, background 0.3s;
}

.social:hover {
  border-color: rgba(0, 82, 255, 0.5);
  background: var(--white);
  transform: translateY(-4px);
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 82, 255, 0.1);
  color: var(--base);
  flex-shrink: 0;
}

.social-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.social-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.social-text span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 1.75rem 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 600;
  color: var(--base);
}

.footer-links a:hover {
  color: var(--base-deep);
}

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

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

/* Responsive */
@media (max-width: 960px) {
  .nav-links,
  .nav-buy {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .about-visual {
    order: -1;
  }

  .logo-stage {
    width: min(260px, 70vw);
  }

  .g-item:nth-child(odd) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .steps,
  .gallery-grid,
  .socials {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 5rem;
  }

  .hero-scroll {
    display: none;
  }

  .meta-row {
    grid-template-columns: 72px 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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