/* =======================
   DESIGN TOKENS
   ======================= */
:root {
  /* Base — deep void */
  --bg-primary: #0A0A0F;
  --bg-secondary: #0F0F16;
  --bg-elevated: #16161F;
  --bg-card: #13131C;

  /* Text */
  --text-primary: #F4F1EA;
  --text-secondary: #A8A39B;
  --text-muted: #6B6862;

  /* Accents */
  --accent-primary: #E8FF3A;    /* CRT phosphor yellow */
  --accent-secondary: #FF2E63;  /* VHS magenta */
  --accent-tertiary: #00E5FF;   /* Cyan cyberpunk */

  /* Borders & dividers */
  --border: rgba(244, 241, 234, 0.08);
  --border-strong: rgba(244, 241, 234, 0.16);
  --border-accent: rgba(232, 255, 58, 0.2);

  /* Typography */
  --font-display: "Space Grotesk", -apple-system, system-ui, sans-serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --fs-hero: clamp(3rem, 9vw, 8rem);
  --fs-section: clamp(2.25rem, 5.5vw, 4.5rem);
  --fs-card: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);
  --fs-label: 0.75rem;

  /* Layout */
  --container: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =======================
   RESET
   ======================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: var(--fs-body);
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
em { font-style: italic; color: var(--accent-primary); }

/* =======================
   GRAIN OVERLAY
   ======================= */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* =======================
   LAYOUT
   ======================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

.section__header {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.section__desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 560px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.label .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
}

/* =======================
   NAVIGATION
   ======================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  transition: all 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}
.nav__logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-primary);
  animation: dotPulse 2s var(--ease) infinite;
}
.nav__logo-text--accent { color: var(--accent-primary); }
.nav__links {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.nav__mobile span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease);
}

@media (max-width: 840px) {
  .nav__links { display: none; }
  .nav__mobile { display: flex; }
  .nav__inner .btn { display: none; }
}

/* =======================
   BUTTONS
   ======================= */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.875rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-primary);
  color: #0A0A0F;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
}
.btn--primary:hover::before { transform: translateX(100%); }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(232, 255, 58, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: rgba(244, 241, 234, 0.05);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.6875rem 1.375rem;
  font-size: 0.8125rem;
  background: var(--text-primary);
  color: var(--bg-primary);
}
.btn--sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(244, 241, 234, 0.3);
}
.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

/* =======================
   HERO
   ======================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: drift 20s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 255, 58, 0.25), transparent 70%);
  top: -10%;
  left: -10%;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 46, 99, 0.2), transparent 70%);
  bottom: -10%;
  right: 5%;
  animation-delay: -7s;
}
.hero__orb--3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  top: 40%;
  right: 30%;
  animation-delay: -14s;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  padding: 0.625rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 2rem;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(10px);
}
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(232, 255, 58, 0.6);
  animation: pulse 2s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  max-width: 1100px;
}
.hero__title span {
  display: block;
}
.hero__desc {
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.hero__meta {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  max-width: 720px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent-primary));
  animation: scrollLine 2s ease-in-out infinite;
}

/* =======================
   MARQUEE
   ======================= */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  background: var(--bg-secondary);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.marquee__track span:nth-child(even) {
  color: var(--accent-primary);
  font-size: 0.875rem;
}

/* =======================
   STORY
   ======================= */
.story {
  background: var(--bg-secondary);
}
.story__inner {
  max-width: 1100px;
  text-align: center;
}
.story__inner .label {
  justify-content: center;
}
.story__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.story__sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

/* =======================
   COLLECTIONS GRID
   ======================= */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

.card {
  grid-column: span 2;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(232, 255, 58, 0.1);
}

.card--feature {
  grid-column: span 6;
}
.card--feature .card__images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  aspect-ratio: 3 / 1;
  background: var(--border);
}
.card--feature .card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card--feature:hover .card__images img {
  transform: scale(1.03);
}

.card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card__img img {
  transform: scale(1.05);
}

.card__status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.card__status--live {
  border-color: var(--border-accent);
  color: var(--accent-primary);
}

.card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card--feature .card__body {
  padding: 2.5rem;
}

.card__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.card__num { color: var(--accent-primary); }

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-card);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.card--feature .card__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.card__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.card--feature .card__desc {
  font-size: 1.0625rem;
  max-width: 600px;
}
.card__footer {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}
.card__price { color: var(--accent-primary); font-weight: 500; }
.card__chain { color: var(--text-secondary); }

@media (max-width: 960px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .card { grid-column: span 1; }
  .card--feature { grid-column: span 2; }
  .card--feature .card__images { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .collections-grid { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 1; }
  .card--feature .card__images { grid-template-columns: 1fr; aspect-ratio: 1 / 1; }
  .card--feature .card__images img:nth-child(2),
  .card--feature .card__images img:nth-child(3) { display: none; }
}

/* =======================
   PROCESS
   ======================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.process-step {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.process-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.process-step__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.process-step__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* =======================
   GALLERY STRIP
   ======================= */
.gallery-strip {
  padding-bottom: 0;
}
.gallery-track {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.gallery-track__inner {
  display: flex;
  gap: 1.5rem;
  animation: galleryScroll 80s linear infinite;
  width: max-content;
}
.gallery-track__inner img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.gallery-track__inner img:hover {
  transform: scale(1.03);
}

/* =======================
   ROADMAP
   ======================= */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
}
.roadmap-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(to right, var(--accent-primary), var(--border), var(--border));
}
.roadmap-item {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.roadmap-item--active {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(232, 255, 58, 0.04), transparent);
}
.roadmap-item--active::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 2rem;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-primary);
}
.roadmap-item__phase {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}
.roadmap-item__date {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.roadmap-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.roadmap-item__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid::before { display: none; }
}
@media (max-width: 560px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}

/* =======================
   ABOUT
   ======================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.about__text {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 560px;
}
.about__image {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 255, 58, 0.1), transparent 50%);
  pointer-events: none;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 840px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* =======================
   FAQ
   ======================= */
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-item[open] {
  border-color: var(--border-accent);
}
.faq-item summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-primary);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 2rem 1.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 720px;
}

/* =======================
   CTA BAND
   ======================= */
.cta-band {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 255, 58, 0.08), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  max-width: 720px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.cta-band__desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* =======================
   FOOTER
   ======================= */
.footer {
  padding: 5rem 0 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
}
.footer__brand .nav__logo {
  margin-bottom: 1rem;
}
.footer__tagline {
  color: var(--text-secondary);
  max-width: 280px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--text-primary);
}
.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 840px) {
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* =======================
   SCROLL REVEAL
   ======================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }

/* =======================
   ANIMATIONS
   ======================= */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 255, 58, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(232, 255, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 255, 58, 0); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@keyframes galleryScroll {
  to { transform: translateX(-50%); }
}
@keyframes scrollLine {
  0% { top: -60px; }
  100% { top: 60px; }
}

/* =======================
   ACCESSIBILITY
   ======================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
::selection {
  background: var(--accent-primary);
  color: var(--bg-primary);
}
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  border-radius: 4px;
}
