:root {
  --wine: #78182b;
  --wine-dark: #2b0610;
  --wine-deep: #170308;
  --pink: #f49aae;
  --pink-soft: #ffd0da;
  --blue: #83a9d3;
  --blue-soft: #c9e0fa;
  --cream: #fff8ef;
  --ink: #0c0809;
  --line: rgba(255, 208, 218, 0.34);
  --panel: rgba(255, 248, 239, 0.92);
  --shadow: 0 30px 86px rgba(23, 3, 8, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 12%, rgba(244, 154, 174, 0.34), transparent 24rem),
    radial-gradient(circle at 86% 22%, rgba(131, 169, 211, 0.25), transparent 24rem),
    linear-gradient(155deg, #4c0d1a 0%, var(--wine) 45%, #24050d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 239, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 82%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 2px solid rgba(255, 248, 239, 0.22);
  border-radius: 18px;
  background: rgba(43, 6, 16, 0.76);
  box-shadow: 0 16px 48px rgba(23, 3, 8, 0.35);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 248, 239, 0.48);
  border-radius: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 22%, var(--pink-soft), transparent 15px),
    linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: inset 0 -8px 0 rgba(43, 6, 16, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  margin-top: 4px;
  color: var(--pink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a,
.nav button,
.primary,
.secondary,
.copy-ticker {
  min-height: 42px;
  border: 2px solid rgba(255, 248, 239, 0.24);
  border-radius: 999px;
  padding: 0 15px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.nav a {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.nav button,
.primary,
.copy-ticker {
  color: var(--ink);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  width: min(1180px, calc(100% - 28px));
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) 0 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 2px solid rgba(255, 248, 239, 0.24);
  border-radius: 999px;
  background: rgba(43, 6, 16, 0.5);
  color: var(--pink-soft);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 14px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  box-shadow: 0 0 24px rgba(244, 154, 174, 0.42);
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(4.4rem, 12vw, 9.8rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 38px rgba(23, 3, 8, 0.42);
}

.hero-sub {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 248, 239, 0.9);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  font-weight: 750;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.description-card {
  width: min(600px, 100%);
  margin-top: 28px;
  padding: 20px;
  border: 2px solid rgba(255, 248, 239, 0.22);
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.12);
  box-shadow: var(--shadow);
}

.description-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--pink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.description-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.94);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 640px;
}

.sticker-board {
  position: absolute;
  inset: 7% 2% 3%;
  border: 3px solid rgba(255, 248, 239, 0.42);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 208, 218, 0.5), rgba(131, 169, 211, 0.24)),
    rgba(255, 248, 239, 0.12);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.sticker-board::before,
.sticker-board::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 28px;
  border: 2px solid rgba(12, 8, 9, 0.2);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.68);
}

.sticker-board::before {
  top: 20px;
  left: 24px;
}

.sticker-board::after {
  right: 24px;
  bottom: 24px;
}

.portrait {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  pointer-events: none;
}

.portrait img {
  width: min(96%, 650px);
  max-height: 700px;
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(23, 3, 8, 0.28));
}

.mini-card {
  position: absolute;
  right: 0;
  top: 13%;
  display: grid;
  gap: 8px;
  width: min(270px, 48%);
  padding: 14px;
  border: 2px solid rgba(255, 248, 239, 0.3);
  border-radius: 18px 0 0 18px;
  background: rgba(43, 6, 16, 0.84);
  box-shadow: 0 18px 44px rgba(23, 3, 8, 0.34);
}

.mini-card span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--pink-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.banner-section {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 30px;
}

.banner-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 248, 239, 0.22);
  border-radius: 24px;
  background: var(--wine-dark);
  box-shadow: var(--shadow);
}

.banner-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.banner-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 2px solid rgba(12, 8, 9, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.content {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 38px 0 64px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 18px;
}

.about,
.token-box {
  border: 2px solid rgba(255, 248, 239, 0.18);
  border-radius: 24px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 0 18px 68px rgba(23, 3, 8, 0.3);
}

.about {
  padding: clamp(22px, 4vw, 42px);
}

.about h2,
.token-box h2 {
  margin: 0;
  color: var(--wine-dark);
  font-size: clamp(2.4rem, 5.8vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about p {
  max-width: 790px;
  margin: 22px 0 0;
  color: #3a1720;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.68;
  font-weight: 750;
}

.note-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.note-list div {
  min-height: 132px;
  padding: 16px;
  border: 2px solid rgba(120, 24, 43, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(244, 154, 174, 0.2), rgba(131, 169, 211, 0.15));
}

.note-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wine);
  font-size: 1rem;
}

.note-list span {
  color: #51303a;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 750;
}

.token-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.token-box h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

.token-lines {
  display: grid;
  gap: 10px;
}

.token-lines span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 2px solid rgba(120, 24, 43, 0.14);
  border-radius: 999px;
  background: rgba(244, 154, 174, 0.16);
  color: #3a1720;
  font-size: 0.9rem;
  font-weight: 900;
}

.token-lines em {
  color: var(--wine);
  font-style: normal;
}

.copy-ticker {
  min-height: 50px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: rgba(255, 248, 239, 0.7);
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 44px;
  }

  .hero-art {
    min-height: 560px;
    order: -1;
  }

  h1 {
    font-size: clamp(3.7rem, 15vw, 7rem);
  }

  .mini-card {
    width: min(320px, 64%);
  }

  .note-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 540px) {
  .topbar,
  .hero,
  .banner-section,
  .content,
  .footer {
    width: min(100% - 20px, 1180px);
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .hero-art {
    min-height: 460px;
  }

  .sticker-board {
    inset: 2% 0 4%;
    border-radius: 22px;
  }

  .mini-card {
    left: 10px;
    right: 10px;
    top: auto;
    bottom: 10px;
    width: auto;
    border-radius: 18px;
  }

  .banner-frame img {
    aspect-ratio: 2 / 1;
  }
}
