:root {
  --navy: #07101f;
  --navy-2: #0c1a33;
  --ink: #eef4ff;
  --muted: #9bb0d0;
  --orange: #ff9a3c;
  --orange-2: #f07820;
  --gold: #ffe27a;
  --cyan: #5ce1ff;
  --pink: #ff8ec8;
  --violet: #8b6cff;
  --green: #3dce6a;
  --glass: rgba(12, 26, 51, 0.62);
  --line: rgba(255, 226, 122, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--navy);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
}

body {
  overflow-x: hidden;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
}

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

#fx-cursor {
  z-index: 50;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.has-custom-cursor .cursor {
  opacity: 1;
}

.cursor-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255, 226, 122, 0.85);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 18px rgba(92, 225, 255, 0.35);
  animation: spin 8s linear infinite;
}

.cursor-core {
  position: absolute;
  inset: 13px;
  background: radial-gradient(circle, #fff 0%, var(--orange) 55%, transparent 70%);
  clip-path: polygon(50% 6%, 94% 50%, 50% 94%, 6% 50%);
  filter: drop-shadow(0 0 10px var(--cyan));
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6vw;
  background: rgba(7, 16, 31, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Fredoka, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(255, 154, 60, 0.55), 0 0 18px rgba(255, 154, 60, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: #1a0d04;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(255, 154, 60, 0.45);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 8px;
  background: #fff;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 88px 6vw 36px;
  overflow: hidden;
  z-index: 1;
}

.hero-banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05);
  animation: ken 28s ease-in-out infinite alternate;
}

@keyframes ken {
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

.hero-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 154, 60, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.18) 0%, rgba(7, 16, 31, 0.42) 38%, rgba(7, 16, 31, 0.82) 72%, var(--navy) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero-logo {
  position: relative;
  width: 118px;
  margin: 0 auto 12px;
}

.hero-logo img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 32px;
  border: 3px solid rgba(255, 226, 122, 0.7);
  box-shadow: var(--shadow), 0 0 40px rgba(92, 225, 255, 0.35);
}

.logo-glow {
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle, rgba(255, 154, 60, 0.55), transparent 68%);
  filter: blur(8px);
  z-index: -1;
  animation: pulse 2.8s ease-in-out infinite;
}

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

@keyframes floaty {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.55;
    transform: scale(1.08);
  }
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: Fredoka, sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 0.92;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.25), 0 0 32px rgba(255, 154, 60, 0.45);
}

.ticker {
  display: inline-block;
  margin: 12px 0 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 226, 122, 0.14);
  border: 1px solid var(--line);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.lede {
  color: #d7e4f8;
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 auto 22px;
  max-width: 560px;
}

.ca-pill,
.ca-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 22px;
  padding: 10px 12px 10px 14px;
  width: fit-content;
  max-width: 100%;
  background: rgba(7, 16, 31, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(139, 108, 255, 0.18);
}

.ca-label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

code,
.ca-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  color: #fff;
}

.copy-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #081018;
  font-weight: 700;
  font-family: Outfit, sans-serif;
}

.hero-actions,
.buy-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ffc14d);
  color: #2a1404;
  box-shadow: 0 10px 30px rgba(255, 154, 60, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 154, 60, 0.12), rgba(92, 225, 255, 0.08), rgba(139, 108, 255, 0.12));
}

.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 14px 0;
  font-family: Fredoka, sans-serif;
  letter-spacing: 0.12em;
  animation: slide 22s linear infinite;
}

.marquee-track span::after {
  content: " ◆ ";
  color: var(--orange);
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 6vw;
  scroll-margin-top: 78px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.section-sub {
  color: var(--muted);
  margin: 14px auto 0;
  max-width: 520px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.about-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow), 0 0 40px rgba(255, 154, 60, 0.12);
}

.about-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-copy p {
  color: #d3e0f4;
  line-height: 1.7;
  font-size: 1.05rem;
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.traits li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(92, 225, 255, 0.1);
  border: 1px solid rgba(92, 225, 255, 0.22);
  font-size: 0.88rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.gallery-frame {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0a1428;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-meta {
  padding: 16px 18px 20px;
}

.gallery-meta span {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-meta p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 28px;
}

.stat-card {
  padding: 22px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
}

.stat-card h3 {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 6px;
  font-family: Outfit, sans-serif;
}

.stat-card p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.ca-banner {
  border-radius: 18px;
  width: min(1000px, 100%);
  justify-content: space-between;
  padding: 18px 20px;
}

.ca-banner .btn {
  border: 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 860px;
  display: grid;
  gap: 16px;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
}

.steps li span {
  grid-row: 1 / span 2;
  font-family: Fredoka, sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
}

.steps h3 {
  margin-bottom: 6px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.buy-links {
  margin-top: 28px;
}

.join-panel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 154, 60, 0.28), transparent 40%),
    linear-gradient(135deg, rgba(12, 26, 51, 0.9), rgba(20, 12, 48, 0.9));
  border: 1px solid var(--line);
  box-shadow: 0 0 80px rgba(139, 108, 255, 0.18);
}

.join-cat {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 0 30px rgba(255, 154, 60, 0.4);
}

.join-panel p {
  color: #d5e2f5;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.social svg {
  width: 18px;
  height: 18px;
}

.social:hover {
  background: rgba(255, 154, 60, 0.16);
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 6vw 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.fine {
  font-size: 0.82rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  z-index: 70;
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.gallery-card:nth-child(2) {
  animation-delay: 0.1s;
}
.gallery-card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .gallery,
  .stat-grid,
  .about-grid,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .hero-logo,
  .hero-logo img {
    width: 96px;
    height: 96px;
  }

  .join-cat {
    width: 120px;
    height: 120px;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 18px 6vw 24px;
    background: rgba(7, 16, 31, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 72px 5vw;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 100svh;
    overflow: hidden;
    padding: 78px 5vw 24px;
  }

  .hero-logo,
  .hero-logo img {
    width: 78px;
    height: 78px;
  }

  .lede {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .ca-pill {
    margin-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
