:root {
  --bg: #0b1016;
  --bg-elevated: #121b25;
  --card: #1b2633;
  --text: #e9ece8;
  --muted: #9eafc0;
  --accent: #f14f6e;
  --accent-2: #59c5b4;
  --line: #2d3f55;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -10%, rgba(241, 79, 110, 0.18), transparent 40%),
    radial-gradient(circle at 15% 120%, rgba(89, 197, 180, 0.18), transparent 35%),
    linear-gradient(180deg, #101720 0%, #090d13 100%);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#fff 0.35px, transparent 0.35px);
  background-size: 4px 4px;
  z-index: 0;
}

.aurora {
  position: fixed;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}

.aurora-one {
  background: radial-gradient(circle, rgba(241, 79, 110, 0.9), transparent 65%);
  top: -12rem;
  right: -10rem;
  animation: driftA 14s ease-in-out infinite alternate;
}

.aurora-two {
  background: radial-gradient(circle, rgba(89, 197, 180, 0.95), transparent 65%);
  bottom: -14rem;
  left: -10rem;
  animation: driftB 16s ease-in-out infinite alternate;
}

.site-header,
main,
.site-footer {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6d7f56, #3b4335);
  color: #f4f8ef;
  font-size: 0.8rem;
}

.site-nav {
  display: inline-flex;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.button {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f14f6e, #a63deb);
  color: #fff;
  box-shadow: 0 10px 25px rgba(166, 61, 235, 0.32);
}

.button-muted {
  background: rgba(32, 46, 63, 0.8);
  color: #d5e3ef;
  border-color: #40536a;
}

.button-ghost {
  color: #dce7f1;
  border-color: #44566d;
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.2rem 0 2.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 700;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.08;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 4.7vw, 4.1rem);
  max-width: 12ch;
}

h1 span {
  color: #f1b7b7;
}

.hero-description {
  color: #c1c9be;
  max-width: 54ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats article {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(25, 31, 24, 0.6);
  padding: 0.8rem;
}

.hero-stats p {
  margin: 0 0 0.35rem;
  color: #9aa496;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stats strong {
  font-size: 0.95rem;
}

.hero-visual {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  padding: 0.6rem;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.hero-visual img {
  width: 100%;
  display: block;
  border-radius: 0.7rem;
  filter: saturate(0.95) contrast(1.04);
}

.hero-visual:hover {
  transform: translateY(-5px);
}

.hero-visual figcaption {
  margin: 0.75rem 0 0.25rem;
  color: #aeb8ab;
  font-size: 0.85rem;
}

.panel {
  margin-top: 2.2rem;
  border: 1px solid #3b4c63;
  background: linear-gradient(160deg, rgba(24, 35, 49, 0.9) 0%, rgba(16, 24, 34, 0.9) 100%);
  border-radius: 1rem;
  padding: 1.3rem 1.2rem;
}

.panel p {
  color: #bec7bb;
  max-width: 68ch;
}

.sightings {
  margin-top: 1.2rem;
  border: 1px solid #37506e;
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(18, 28, 40, 0.9) 0%, rgba(14, 21, 31, 0.9) 100%);
  display: grid;
  gap: 1rem;
}

.sightings-copy p {
  margin: 0;
  color: #bcc5b9;
  max-width: 72ch;
}

.sightings-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
}

.sighting-card {
  margin: 0;
  border: 1px solid #3d5169;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #141914;
}

.sighting-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.sighting-card figcaption {
  margin: 0;
  padding: 0.75rem 0.85rem;
  color: #acb7a9;
  font-size: 0.85rem;
}

.quote-card {
  margin: 0;
  border: 1px solid #70415d;
  border-radius: 0.9rem;
  background: linear-gradient(140deg, #2c1e37, #1a1f33);
  padding: 1rem;
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

.quote-card p {
  margin: 0;
  color: #ead7d7;
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.quote-card span {
  margin-top: 1rem;
  color: #b7a0a0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reel {
  margin-top: 1.2rem;
  border-radius: 1rem;
  border: 1px solid #3f4869;
  padding: 1rem;
  background: linear-gradient(140deg, rgba(26, 28, 47, 0.9), rgba(20, 28, 44, 0.88));
}

.reel-track {
  margin: 0.4rem 0 0.9rem;
  display: flex;
  gap: 0.55rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reel-track span {
  color: #d2d8ea;
  border: 1px solid #4d5575;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  white-space: nowrap;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  animation: tapeMove 12s linear infinite;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.reel-card {
  margin: 0;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid #405173;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.23);
}

.reel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

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

.grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card {
  border: 1px solid #3d4f64;
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(20, 30, 42, 0.75);
}

.card p {
  color: #b2bbb0;
  margin: 0;
}

.token {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid #644371;
  background: linear-gradient(140deg, rgba(41, 23, 57, 0.92) 0%, rgba(24, 24, 47, 0.92) 70%);
  padding: 1.2rem;
}

.token p {
  color: #c9c2c2;
}

dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

dl div {
  border: 1px solid #5b4566;
  border-radius: 0.8rem;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.17);
}

.contract-box dd {
  font-size: 0.9rem;
  line-height: 1.35;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  word-break: break-all;
}

.copy-contract-button {
  margin-top: 0.65rem;
  width: 100%;
}

dt {
  font-size: 0.73rem;
  text-transform: uppercase;
  color: #b8a5a5;
  letter-spacing: 0.08em;
}

dd {
  margin: 0.3rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Lora', Georgia, serif;
}

.site-footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #3f4d63;
  border-radius: 1rem;
  background: rgba(17, 24, 35, 0.95);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: #c0c8bd;
}

.footer-actions {
  display: flex;
  gap: 0.6rem;
}

.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-stats,
  .sightings-grid,
  .reel-grid,
  .grid,
  .token {
    grid-template-columns: 1fr;
  }
}

@keyframes driftA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-40px, 26px, 0) scale(1.08);
  }
}

@keyframes driftB {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(45px, -22px, 0) scale(1.06);
  }
}

@keyframes tapeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-90px);
  }
}
