/* stacyonfone — black / neon pink / cream */

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --surface: #111111;
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --pink: #ff2d95;
  --pink-bright: #ff4aad;
  --pink-deep: #d1006b;
  --cream: #f3e9d9;
  --cream-ink: #1a1410;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --header-h: 4rem;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120%;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--pink);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    color 0.2s var(--ease);
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.btn--sm {
  min-height: 2.35rem;
  padding: 0.5rem 1.05rem;
  font-size: 0.85rem;
}

.btn--lg {
  min-height: 3.25rem;
  padding: 0.9rem 1.7rem;
  font-size: 1.02rem;
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 36px rgba(255, 45, 149, 0.4);
}

.btn--pink:hover {
  background: var(--pink-bright);
  box-shadow: 0 14px 44px rgba(255, 45, 149, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--copy {
  min-height: 2.25rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

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

.btn--copy[data-copied="true"] {
  background: var(--pink-deep);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.nav__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__link {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--white);
}

/* Hero — full-bleed artwork */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: hero-breathe 7s var(--ease) infinite;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 28%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.35) 42%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0.35) 100%
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3.25rem;
}

.hero__ticker {
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 14vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero__tagline {
  max-width: 18ch;
  margin-bottom: 1.75rem;
  font-size: clamp(1.15rem, 3.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes hero-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

/* Shared type */

.heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: var(--cream-ink);
}

.heading--light {
  color: var(--white);
}

.lead {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(26, 20, 16, 0.75);
  margin-bottom: 1rem;
}

.lead--muted {
  color: var(--muted);
}

.copy {
  font-size: 1.05rem;
  color: rgba(26, 20, 16, 0.68);
  max-width: 34ch;
  margin-inline: auto;
}

/* About — cream band for banner */

.about {
  background: var(--cream);
  padding: 4.5rem 1.25rem;
}

.about__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about__banner {
  width: min(100%, 560px);
  margin: 0 auto 2rem;
  border-radius: 12px;
}

/* Token */

.token {
  background: var(--black-soft);
  padding: 4.5rem 1.25rem;
  border-top: 1px solid var(--line);
}

.token__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.token__list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.token__row {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.token__row:hover {
  border-color: rgba(255, 45, 149, 0.45);
  transform: translateY(-2px);
}

.token__row dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.token__row dd {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.token__row--ca dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
}

.token__row--ca code {
  color: var(--white);
  word-break: break-all;
}

/* Join CTA */

.join {
  position: relative;
  padding: 5rem 1.25rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 45, 149, 0.22), transparent 60%),
    var(--black);
  border-top: 1px solid var(--line);
  text-align: center;
}

.join__inner {
  max-width: 640px;
  margin: 0 auto;
}

.join__logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  animation: float-y 4.5s var(--ease) infinite;
}

.join__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Footer */

.footer {
  padding: 1.75rem 1.25rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer__note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__links a {
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--pink);
}

/* Reveals */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .join__logo {
    animation: none;
  }

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

/* Breakpoints */

@media (min-width: 700px) {
  .nav__link {
    display: inline;
  }

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

  .token__row--ca {
    grid-column: 1 / -1;
  }

  .hero__content {
    padding-bottom: 4.5rem;
  }

  .hero__tagline {
    max-width: 22ch;
  }
}

@media (min-width: 960px) {
  .hero {
    align-items: center;
  }

  .hero__media {
    object-position: 70% center;
  }

  .hero__veil {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.72) 28%,
        rgba(0, 0, 0, 0.2) 58%,
        rgba(0, 0, 0, 0.05) 78%,
        rgba(0, 0, 0, 0.25) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.55) 100%
      );
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: 3rem;
    max-width: 48%;
    margin-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
    margin-right: auto;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
