:root {
  --ink: #2b1020;
  --muted: #71485d;
  --rose: #ff4f93;
  --rose-deep: #d91f6d;
  --cream: #fff7f9;
  --gold: #f3b95f;
  --lilac: #9265ff;
  --cyan: #51d6e6;
  --glass: rgba(255, 255, 255, 0.64);
  --line: rgba(122, 44, 84, 0.18);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff7fa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

a, button { cursor: none; }
a { color: inherit; text-decoration: none; }

.background {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 136, 185, 0.34), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(81, 214, 230, 0.24), transparent 28%),
    linear-gradient(135deg, #fff8fb 0%, #ffe1ec 42%, #efe6ff 100%);
}

.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 86%);
}

.aurora {
  position: absolute;
  width: 46vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.46;
  mix-blend-mode: multiply;
  animation: drift 12s ease-in-out infinite alternate;
}
.aurora-one { left: -10vw; top: 10vh; background: #ff85b6; }
.aurora-two { right: -12vw; top: 22vh; background: #8d6cff; animation-delay: -4s; }
.aurora-three { left: 30vw; bottom: -24vw; background: #ffe08a; animation-delay: -7s; }

.heart-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 79, 147, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 1px, transparent 2px);
  background-size: 95px 95px, 42px 42px;
  animation: shimmer 22s linear infinite;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 20;
  translate: -50% -50%;
}
.cursor-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--rose);
  box-shadow: 0 0 22px rgba(255, 79, 147, 0.9);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 31, 109, 0.6);
  border-radius: 99px;
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease;
}
.cursor-ring.is-hovering {
  width: 54px;
  height: 54px;
  border-color: rgba(146, 101, 255, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 60px);
  backdrop-filter: blur(20px);
  background: rgba(255, 247, 250, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font: 800 24px/1 Playfair Display, serif;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  box-shadow: 0 12px 30px rgba(217, 31, 109, 0.26);
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand strong,
.brand small { display: block; }
.brand small { color: var(--muted); margin-top: 2px; }

nav {
  display: flex;
  gap: clamp(12px, 3vw, 36px);
  color: #5e314a;
  font-weight: 700;
}
nav a { position: relative; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  background: var(--rose);
  transition: transform 180ms ease;
}
nav a:hover::after { transform: scaleX(1); }

.header-buy {
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 14px 26px rgba(217, 31, 109, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(34px, 7vw, 96px) clamp(18px, 5vw, 72px) 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 840px;
  margin: 0;
  font: 800 clamp(4rem, 12vw, 9.4rem)/0.86 Playfair Display, Georgia, serif;
  letter-spacing: 0;
}
.tagline {
  max-width: 740px;
  margin: 28px 0 0;
  font-size: clamp(1.25rem, 2.4vw, 2.15rem);
  line-height: 1.15;
  font-weight: 800;
}
.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions,
.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  box-shadow: 0 18px 38px rgba(217, 31, 109, 0.32);
}
.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(122, 44, 84, 0.18);
  box-shadow: 0 12px 28px rgba(75, 25, 54, 0.08);
}

.contract-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 22px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(75, 25, 54, 0.08);
}
.contract-pill span {
  color: var(--rose-deep);
  font-weight: 900;
}
code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #3a1830;
}
.contract-pill button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-weight: 800;
  background: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}
.banner-frame {
  position: absolute;
  left: 4%;
  right: 2%;
  top: 1%;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 2172 / 724;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(75, 25, 54, 0.18);
  transform: rotate(2deg);
  animation: bannerGlow 6s ease-in-out infinite alternate;
}
.banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 16, 32, 0.14), rgba(255, 79, 147, 0.1));
  pointer-events: none;
}
.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-stack {
  position: relative;
  z-index: 1;
  height: min(68vw, 660px);
  min-height: 530px;
  padding-top: min(20vw, 180px);
}
.photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,223,236,0.72)),
    radial-gradient(circle at 30% 20%, rgba(255,79,147,0.38), transparent 38%);
  box-shadow: 0 30px 70px rgba(75, 25, 54, 0.2);
  animation: float 5s ease-in-out infinite;
}
.photo-card.large {
  inset: 21% 10% 0 7%;
  transform: rotate(-3deg);
}
.photo-card.small {
  width: 43%;
  aspect-ratio: 0.85;
  z-index: 2;
}
.photo-card.top {
  right: 1%;
  top: 20%;
  transform: rotate(7deg);
  animation-delay: -1.8s;
}
.photo-card.bottom {
  left: 0;
  bottom: 0;
  transform: rotate(6deg);
  animation-delay: -3s;
}
.photo-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card img[src],
.gallery-grid img[src] {
  background:
    linear-gradient(135deg, rgba(255, 79, 147, 0.18), rgba(146, 101, 255, 0.24)),
    repeating-linear-gradient(-35deg, rgba(255,255,255,0.24) 0 12px, transparent 12px 24px);
}
.photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  background: rgba(43, 16, 32, 0.58);
  backdrop-filter: blur(12px);
}

.ticker-band {
  overflow: hidden;
  border-block: 1px solid rgba(122, 44, 84, 0.16);
  background: rgba(255, 255, 255, 0.58);
}
.ticker-band div {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.ticker-band span {
  padding: 18px 30px;
  color: var(--rose-deep);
  font-weight: 900;
  text-transform: uppercase;
}

section {
  padding: clamp(58px, 8vw, 116px) clamp(18px, 5vw, 72px);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}
.section-heading.compact {
  display: block;
  max-width: 760px;
}
h2 {
  margin: 0;
  font: 800 clamp(2.3rem, 6vw, 5.5rem)/0.95 Playfair Display, Georgia, serif;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.story-grid article,
.token-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: var(--glass);
  box-shadow: 0 24px 60px rgba(75, 25, 54, 0.12);
  backdrop-filter: blur(20px);
}
.story-grid article {
  padding: 28px;
  min-height: 260px;
}
.story-grid span {
  color: var(--rose);
  font-weight: 900;
}
h3 {
  margin: 56px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}
.story-grid p,
.token-card p {
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.9fr;
  grid-auto-rows: minmax(190px, 23vw);
  gap: 16px;
}
.gallery-grid figure {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 220, 235, 0.7)),
    radial-gradient(circle at 50% 35%, rgba(255, 79, 147, 0.38), transparent 30%),
    radial-gradient(circle at 62% 55%, rgba(146, 101, 255, 0.26), transparent 36%);
  box-shadow: 0 20px 50px rgba(75, 25, 54, 0.14);
}
.gallery-grid figure:nth-child(1) { grid-row: span 2; }
.gallery-grid figure:nth-child(4) { grid-column: span 2; }
.gallery-grid figure:nth-child(7) { grid-column: span 2; }
.gallery-grid figure::after {
  content: "$ALYCIA";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(43, 16, 32, 0.54);
  backdrop-filter: blur(12px);
}

.token-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  padding: clamp(26px, 5vw, 54px);
}
.token-logo {
  width: min(170px, 46vw);
  aspect-ratio: 1;
  display: block;
  margin: 0 0 20px;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(75, 25, 54, 0.18);
}
.token-card h2 { color: var(--rose-deep); }
dl {
  display: grid;
  gap: 12px;
  margin: 0;
}
dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(122, 44, 84, 0.14);
}
dt {
  color: var(--muted);
  font-weight: 800;
}
dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}
.token-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(122, 44, 84, 0.14);
}
footer p { margin: 0; }
footer span { color: var(--rose-deep); font-weight: 900; }

.sparkle {
  position: fixed;
  z-index: 19;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-radius: 50%;
  background: var(--rose);
  animation: pop 700ms ease-out forwards;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(7vw, -4vh, 0) scale(1.14); }
}
@keyframes shimmer {
  to { background-position: 220px 120px, -80px 160px; }
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}
@keyframes bannerGlow {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.18) brightness(1.06); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes pop {
  to {
    opacity: 0;
    transform: translateY(-22px) scale(0);
  }
}

@media (max-width: 900px) {
  body { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual { min-height: 520px; }
  .section-heading,
  .story-grid,
  .token-card {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(7) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand { min-width: 0; }
  .brand strong { font-size: 0.92rem; }
  .header-buy { padding-inline: 16px; }
  h1 { font-size: clamp(3.5rem, 20vw, 5.4rem); }
  .contract-pill {
    align-items: stretch;
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .contract-pill code { width: 100%; }
  .contract-pill button { flex: 1; }
  .portrait-stack {
    height: 520px;
    min-height: 520px;
    padding-top: 130px;
  }
  .banner-frame {
    left: 0;
    right: 0;
    top: 6%;
    border-radius: 22px;
  }
  .photo-card.large { inset: 26% 2% 8% 2%; }
  .photo-card.small { width: 48%; }
  .photo-card.top { top: 23%; }
  .gallery-grid { grid-template-columns: 1fr; }
  dl div,
  footer {
    display: block;
  }
  dd { text-align: left; margin-top: 6px; }
  footer p + p { margin-top: 8px; }
}
