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

:root {
  --bg: #0a0a0a;
  --card: #141414;
  --ink: #f5f5f5;
  --mute: #999;
  --pink: #ff1493;
  --pink-deep: #c4106e;
  --line: rgba(255, 255, 255, 0.1);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

.pink { color: var(--pink); }

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, 94vw);
  margin: 0 auto;
  padding: 0.45rem 0.55rem 0.45rem 0.85rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-right: 0.4rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

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

.nav-socials {
  display: flex;
  gap: 0.45rem;
  margin-left: 0.2rem;
  padding-left: 0.9rem;
  border-left: 1px solid var(--line);
}

.nav-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0;
  font-weight: 700;
}

.nav-socials a:hover {
  background: var(--pink-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.55rem 0.7rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 75% 45%, rgba(255, 20, 147, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255, 20, 147, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.hero-glow {
  position: absolute;
  top: 50%;
  right: 18%;
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  transform: translate(0, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.35) 0%, rgba(255, 20, 147, 0.08) 45%, transparent 70%);
  filter: blur(40px);
  animation: hero-pulse 4s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.85; transform: translate(0, -50%) scale(1); }
  50% { opacity: 1; transform: translate(0, -50%) scale(1.06); }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-top: 3rem;
}

.hero-copy {
  max-width: 36em;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-stage {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--pink);
  opacity: 0.7;
  animation: ring-spin 12s linear infinite;
}

.hero-logo-ring-2 {
  inset: -14px;
  border-style: dashed;
  opacity: 0.35;
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow:
    0 0 0 4px var(--pink),
    0 24px 80px rgba(255, 20, 147, 0.45),
    0 8px 32px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
}

.hero-deco {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  animation: deco-float 3s ease-in-out infinite;
}

.hero-deco-star {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--pink);
  color: var(--pink);
  font-size: 1.1rem;
}

.hero-deco-heart {
  color: var(--pink);
  font-size: 1.6rem;
  text-shadow: 0 0 12px rgba(255, 20, 147, 0.6);
}

.hero-deco-1 { top: 4%; left: 8%; animation-delay: 0s; }
.hero-deco-2 { bottom: 10%; right: 4%; animation-delay: 0.8s; }
.hero-deco-3 { top: 18%; right: -2%; animation-delay: 1.2s; }
.hero-deco-4 { bottom: 2%; left: 12%; animation-delay: 0.4s; }

@keyframes deco-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(6deg); }
}

.hero-chip {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 20, 147, 0.5);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 20, 147, 0.25);
  color: var(--pink);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.2em;
  margin: 0.4rem 0 1rem;
  color: var(--pink);
}

.hero-bio {
  max-width: 38em;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, 92vw);
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 2;
  gap: 0.8rem;
}

.hero-stats li {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--pink);
  letter-spacing: 0.04em;
}

.hero-stats span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

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

.btn-pink {
  background: var(--pink);
  color: #fff;
}

.btn-pink:hover { background: var(--pink-deep); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero .btn-ghost:hover {
  background: #fff;
  color: var(--bg);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-lg { padding: 1.05rem 1.65rem; }

button.btn { font: inherit; }

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 5rem;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 34em;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.section-head h2,
.profile-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.section-head p,
.profile-copy p {
  color: var(--mute);
  font-size: 1.05rem;
}

.profile-copy p { margin-bottom: 0.9rem; }
.profile-copy strong { color: var(--ink); }
.profile-copy a { color: var(--pink); text-decoration: none; }
.profile-copy a:hover { text-decoration: underline; }

/* About */
.about {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 20, 147, 0.08), transparent 28%),
    var(--bg);
}

.profile {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 3.5rem;
  align-items: center;
}

.profile-photo {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid var(--pink);
  box-shadow: 0 24px 50px rgba(255, 20, 147, 0.2);
}

.sticker {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 2rem;
  background: var(--card);
  border: 2px solid var(--pink);
  border-radius: 50%;
  transform: rotate(12deg);
}

.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.chips li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
}

.chips span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

/* Banner showcase */
.banner-showcase {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.full-banner {
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* CA ticket */
.ticket {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--card);
  border: 1px dashed var(--pink);
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--bg);
  border-radius: 50%;
  left: 169px;
}

.ticket::before { top: -11px; }
.ticket::after { bottom: -11px; }

.ticket-stub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.4rem 1.1rem;
  background: var(--pink);
  color: #fff;
  text-align: center;
}

.ticket-stub p {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ticket-stub strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.ticket-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
}

.ca-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  width: 100%;
  font-weight: 600;
}

.ca-address {
  flex: 1;
  font-size: clamp(0.82rem, 1.8vw, 1.05rem);
  word-break: break-all;
  color: var(--ink);
}

.ticket .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.ticket .btn-ghost:hover,
.ticket .btn.copied {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.copy-toast {
  min-height: 1.4rem;
  margin-top: 0.8rem;
  color: var(--pink);
  opacity: 0;
  transition: opacity 0.25s;
}

.copy-toast.show { opacity: 1; }

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

.stamps article {
  text-align: center;
  padding: 1.4rem 0.8rem;
}

.stamp-value {
  width: 118px;
  height: 118px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 3px solid var(--pink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pink);
  letter-spacing: 0.02em;
  transform: rotate(-8deg);
}

.stamps article:nth-child(2) .stamp-value { transform: rotate(6deg); }
.stamps article:nth-child(3) .stamp-value { transform: rotate(-4deg); }
.stamps article:nth-child(4) .stamp-value { transform: rotate(9deg); }

.stamps h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.stamps p { color: var(--mute); font-size: 0.92rem; }

/* Buy */
.buy {
  background: #050505;
  border-top: 1px solid var(--line);
}

.buy .kicker { color: var(--pink); }
.buy h2 { color: #fff; }
.buy .section-head { margin-bottom: 2.2rem; }

.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(255, 20, 147, 0.35);
  margin: 0 0 2.2rem 0.7rem;
}

.timeline li {
  position: relative;
  padding: 0 0 1.8rem 1.6rem;
}

.timeline li:last-child { padding-bottom: 0; }

.timeline span {
  position: absolute;
  left: -0.7rem;
  top: 0.15rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--pink);
  color: transparent;
  font-size: 0;
}

.timeline h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.timeline p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
}

.buy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.buy .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.buy .btn-ghost:hover {
  background: #fff;
  color: var(--bg);
}

/* Footer */
.footer {
  padding: 2.4rem 0;
  background: #000;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 2rem;
  align-items: center;
}

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

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--pink);
}

.footer-inner strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.footer-inner span,
.footer-disclaimer {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
}

.footer-links a {
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 46em;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-logo-stage {
    width: min(72vw, 320px);
    margin: 0 auto;
  }

  .hero-glow {
    right: 50%;
    transform: translate(50%, -50%);
  }

  .hero-actions {
    justify-content: center;
  }

  .profile,
  .ticket,
  .stamps,
  .hero-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .ticket::before,
  .ticket::after { display: none; }

  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav {
    border-radius: 1.4rem;
    padding-right: 0.35rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.8rem;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.2rem;
  }

  .nav-socials {
    margin: 0;
    padding: 0.5rem 1.2rem 0.2rem;
    border: 0;
  }

  .nav-toggle { display: flex; }

  .section { padding: 4.4rem 0 3.6rem; }

  .hero {
    padding: 5rem 0 3.5rem;
  }

  .hero h1 { letter-spacing: 0.02em; }
}
