/* ============================================
   1. RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   2. VARIABLES
   ============================================ */
:root {
  --bg: #eee8dc;
  --bg-deep: #e4dccb;
  --surface: #f6f1e7;
  --surface-2: #faf7f0;
  --text: #111111;
  --muted: #706d68;
  --muted-2: #9a958c;
  --silver-light: #f4f4f4;
  --silver: #b9b9b9;
  --silver-mid: #8f8f8f;
  --silver-dark: #747474;
  --graphite: #202020;
  --black: #0a0a0a;
  --brown: #6b4f3a;
  --champagne: #c9b896;
  --border: rgba(0, 0, 0, 0.12);
  --border-strong: rgba(0, 0, 0, 0.22);
  --glow: rgba(255, 255, 255, 0.55);
  --shadow: rgba(20, 16, 10, 0.18);
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Arial Black", Impact, Arial Narrow, Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --metal: linear-gradient(180deg, #ffffff 0%, #d8d8d8 35%, #8f8f8f 65%, #eeeeee 100%);
  --metal-side: linear-gradient(135deg, #ffffff 0%, #cfcfcf 25%, #7a7a7a 55%, #e8e8e8 80%, #b0b0b0 100%);
}

/* ============================================
   3. BASE
   ============================================ */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

body.has-touch,
body.reduce-motion {
  cursor: auto;
}

body.is-loading {
  overflow: hidden;
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 3px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 3px
    );
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 10001;
  background: var(--metal-side);
  transform-origin: left center;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10002;
  padding: 0.75rem 1rem;
  background: var(--graphite);
  color: var(--surface);
  border-radius: 8px;
}

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

.section-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
}

.section-head {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.metallic-text {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.15));
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.9rem 1.55rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}

.btn--primary {
  background: var(--graphite);
  color: var(--silver-light);
  border: 1px solid #3a3a3a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 2px 0 #000;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn--primary:hover::before,
.btn--primary:focus-visible::before {
  transform: translateX(120%);
}

.btn--primary:hover .btn__arrow,
.btn--primary:focus-visible .btn__arrow {
  transform: translateX(4px);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--silver-mid);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn--lg {
  min-height: 58px;
  padding: 1rem 1.85rem;
  font-size: 0.92rem;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.btn:focus-visible,
.nav__link:focus-visible,
.footer__links a:focus-visible,
.nav__toggle:focus-visible {
  outline: 2px solid var(--graphite);
  outline-offset: 3px;
}

/* ============================================
   6. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.nav.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(238, 232, 220, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav__link:hover {
  color: var(--text);
}

.nav__buy {
  min-height: 42px;
  padding: 0.65rem 1.15rem;
  margin-left: 0.35rem;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  z-index: 2;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--graphite);
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.nav.is-open .nav__toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav.is-open .nav__toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ============================================
   7. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  background:
    radial-gradient(ellipse 60% 50% at 75% 45%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(ellipse 40% 35% at 20% 80%, rgba(201, 184, 150, 0.18), transparent 70%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--bg) 55%, var(--bg-deep) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
  opacity: 0.5;
}

.hero__bg-type {
  position: absolute;
  right: -4%;
  top: 42%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  right: 8%;
  top: 38%;
  width: min(480px, 42vw);
  height: min(480px, 42vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(185, 185, 185, 0.25) 35%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero__grid {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 900;
  font-style: italic;
  text-transform: lowercase;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.hero__line {
  display: block;
  overflow: visible;
}

.hero__line--metal {
  background: var(--metal-side);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.12));
  position: relative;
  padding-bottom: 0.18em;
  margin-bottom: -0.08em;
  line-height: 1.05;
  overflow: visible;
}

.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.hero__support {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 28ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 58vh, 680px);
}

.hero__rings {
  position: absolute;
  inset: 8%;
  pointer-events: none;
}

.hero__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(120, 120, 120, 0.18);
}

.hero__rings span:nth-child(1) {
  inset: 6%;
  border-color: rgba(140, 140, 140, 0.22);
}

.hero__rings span:nth-child(2) {
  inset: 16%;
  border-style: dashed;
  border-color: rgba(120, 120, 120, 0.14);
  animation: ringSpin 40s linear infinite;
}

.hero__rings span:nth-child(3) {
  inset: 28%;
  border-color: rgba(180, 180, 180, 0.2);
}

.hero__float {
  position: relative;
  width: min(100%, 620px);
  transform-origin: center center;
  animation: heroFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 28px 50px rgba(20, 14, 8, 0.28));
  will-change: transform;
}

.hero__img {
  width: 100%;
  max-width: none;
  transform: scale(1.12) translateY(2%);
  user-select: none;
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--muted-2);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--silver-mid), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================
   8. MARQUEE
   ============================================ */
.marquee {
  position: relative;
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(246, 241, 231, 0.8));
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
}

.marquee__track--left {
  animation: marqueeLeft 42s linear infinite;
  margin-bottom: 0.55rem;
}

.marquee__track--right {
  animation: marqueeRight 48s linear infinite;
}

.marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
  white-space: nowrap;
}

.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ============================================
   9. EVOLUTION
   ============================================ */
.evolution {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(255, 255, 255, 0.5), transparent 60%),
    var(--bg);
}

.evolution__intro {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 28ch;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  font-style: italic;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.timeline__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.timeline__progress {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--metal-side);
  transition: width 1.2s var(--ease);
}

.timeline.is-active .timeline__progress {
  width: 100%;
}

.timeline__stage {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  border: 1px solid var(--border);
  background: rgba(246, 241, 231, 0.55);
  min-height: 220px;
  transition: transform 0.45s var(--ease), border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}

.timeline__stage::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 1.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--silver);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.timeline__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  margin-bottom: 1.25rem;
}

.timeline__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.timeline__note {
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline__stage--final {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(220, 220, 220, 0.25) 40%, rgba(246, 241, 231, 0.8));
  border-color: rgba(140, 140, 140, 0.45);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: scale(1.03);
  z-index: 1;
}

.timeline__stage--final.is-inview,
.timeline.is-active .timeline__stage--final {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timeline__highlight {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ============================================
   10. MANIFESTO
   ============================================ */
.manifesto {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  background:
    linear-gradient(180deg, var(--bg-deep), var(--surface) 40%, var(--bg));
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(ellipse 40% 50% at 50% 50%, rgba(255, 255, 255, 0.45), transparent 70%);
  pointer-events: none;
}

.manifesto__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4.5rem);
  padding: 2rem 0 1rem;
}

.manifesto__line {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-style: italic;
  font-weight: 900;
  max-width: 16ch;
}

.manifesto__line--left {
  align-self: flex-start;
  text-align: left;
}

.manifesto__line--right {
  align-self: flex-end;
  text-align: right;
}

.manifesto__line--center {
  align-self: center;
  text-align: center;
  max-width: 18ch;
}

.manifesto__line--lg {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.manifesto__line--xl {
  font-size: clamp(1.6rem, 4.5vw, 3.4rem);
  max-width: 22ch;
}

/* ============================================
   11. COIN
   ============================================ */
.coin {
  position: relative;
  padding: clamp(5rem, 11vw, 8.5rem) 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(255, 255, 255, 0.65), transparent 65%),
    var(--surface);
  overflow: clip;
}

.coin__wrap {
  text-align: center;
}

.coin__head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.coin__sub {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
}

.coin__stage {
  position: relative;
  width: min(560px, 92%);
  margin: 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.coin__glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(185, 185, 185, 0.3) 40%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: glowPulse 5.5s ease-in-out infinite;
}

.coin__frame {
  position: relative;
  width: 78%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(160, 160, 160, 0.45);
  box-shadow:
    0 30px 70px rgba(20, 14, 8, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  transform-style: preserve-3d;
  will-change: transform;
  background: var(--bg);
}

.coin__img {
  width: 100%;
  display: block;
  transform: scale(1.02);
}

.coin__specular {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 180px at 30% 25%,
    rgba(255, 255, 255, 0.45),
    transparent 55%
  );
  mix-blend-mode: soft-light;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.coin__label {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--muted);
  white-space: nowrap;
}

.coin__label--tl { top: 8%; left: 0; }
.coin__label--tr { top: 8%; right: 0; }
.coin__label--bl { bottom: 8%; left: 0; }
.coin__label--br { bottom: 8%; right: 0; }

/* ============================================
   12. WHY / CARDS
   ============================================ */
.why {
  padding: clamp(5rem, 11vw, 8.5rem) 0;
  background: var(--bg);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.why__card {
  position: relative;
  min-height: 280px;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(246, 241, 231, 0.2));
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.why__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.why__card:hover {
  border-color: rgba(120, 120, 120, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.why__card:hover::after {
  opacity: 1;
}

.why__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.why__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 12ch;
}

.why__body {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 28ch;
}

.why__card--final {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.65), rgba(200, 200, 200, 0.18) 45%, rgba(246, 241, 231, 0.5));
  border-color: rgba(130, 130, 130, 0.4);
}

.why__card--final .why__num {
  color: transparent;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  filter: none;
  opacity: 0.55;
}

/* ============================================
   13. BANNER BREAK
   ============================================ */
.banner-break {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), var(--bg-deep));
  border-block: 1px solid var(--border);
}

.banner-break__bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
  user-select: none;
  opacity: 0.05;
}

.banner-break__bg span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 1;
}

.banner-break__bg span:first-child {
  animation: bannerDrift 55s linear infinite;
}

.banner-break__bg span:last-child {
  animation: bannerDriftReverse 60s linear infinite;
  transform: translateX(-20%);
}

.banner-break__frame {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  margin-inline: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(140, 140, 140, 0.35);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.banner-break__img {
  width: 100%;
  display: block;
}

/* ============================================
   14. CTA
   ============================================ */
.cta {
  position: relative;
  padding: clamp(5.5rem, 13vw, 10rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 45% at 50% 40%, rgba(255, 255, 255, 0.55), transparent 65%),
    var(--surface);
  overflow: hidden;
}

.cta::before {
  content: "APE";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 30vw, 24rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.06em;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
}

.cta__wrap {
  position: relative;
  z-index: 1;
}

.cta__title {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta__on {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-style: italic;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ============================================
   15. FOOTER
   ============================================ */
.footer {
  padding: clamp(4rem, 10vw, 7rem) 0 2.5rem;
  background: linear-gradient(180deg, var(--bg-deep), #ddd5c4);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 7rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 0.75rem;
}

.footer__ticker {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer__tag {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--graphite);
  transition: opacity 0.25s ease;
}

.footer__links a:hover {
  opacity: 0.55;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* ============================================
   16. CUSTOM CURSOR
   ============================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 10050;
  transform: translate3d(-100px, -100px, 0);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.2s ease;
  opacity: 0;
}

.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor__dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--graphite);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.25);
}

.custom-cursor__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--silver-light);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
  white-space: nowrap;
}

.custom-cursor.is-hover {
  width: 42px;
  height: 42px;
}

.custom-cursor.is-hover .custom-cursor__dot {
  background: rgba(32, 32, 32, 0.92);
  border-color: rgba(255, 255, 255, 0.7);
}

.custom-cursor.is-ape {
  width: 56px;
  height: 56px;
}

.custom-cursor.is-ape .custom-cursor__dot {
  background: var(--graphite);
  border: 1px solid #666;
}

.custom-cursor.is-ape .custom-cursor__label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   17. ANIMATION UTILITIES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  filter: blur(4px);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.reveal[data-delay="1"] { --delay: 1; }
.reveal[data-delay="2"] { --delay: 2; }
.reveal[data-delay="3"] { --delay: 3; }
.reveal[data-delay="4"] { --delay: 4; }
.reveal[data-delay="5"] { --delay: 5; }
.reveal[data-delay="6"] { --delay: 6; }

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.mask-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}

.mask-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-14px) rotate(0.6deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes bannerDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

@keyframes bannerDriftReverse {
  from { transform: translateX(-25%); }
  to { transform: translateX(0); }
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.is-ready .hero__copy .reveal {
  /* delays handled via data-delay */
}

/* ============================================
   18. RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr 0.95fr;
  }

  .hero__title {
    font-size: clamp(3.6rem, 11vw, 6.5rem);
  }

  .coin__label {
    font-size: 0.58rem;
  }
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    background: rgba(238, 232, 220, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease), opacity 0.35s ease;
  }

  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 1rem 0.25rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.2em;
  }

  .nav__buy {
    margin: 1rem 0 0;
    width: 100%;
    min-height: 54px;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 1rem);
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__visual {
    order: -1;
    min-height: clamp(300px, 52vw, 460px);
  }

  .hero__float {
    width: min(100%, 480px);
  }

  .hero__img {
    transform: scale(1.08);
  }

  .hero__bg-type {
    top: 18%;
    right: 50%;
    transform: translate(50%, 0);
    font-size: clamp(6rem, 28vw, 12rem);
  }

  .hero__scroll {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 1.25rem;
  }

  .timeline__line {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline__progress {
    width: 100%;
    height: 0%;
    transition: height 1.2s var(--ease);
  }

  .timeline.is-active .timeline__progress {
    width: 100%;
    height: 100%;
  }

  .timeline__stage {
    min-height: 0;
  }

  .timeline__stage::before {
    top: 2rem;
    left: -1.35rem;
  }

  .timeline__stage--final {
    transform: none;
  }

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

  .coin__label--tl,
  .coin__label--tr,
  .coin__label--bl,
  .coin__label--br {
    position: static;
    display: inline-block;
    margin: 0.35rem 0.55rem;
  }

  .coin__stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .coin__frame {
    width: min(360px, 88%);
    order: -1;
  }

  .coin__glow {
    width: min(360px, 88%);
    aspect-ratio: 1;
    inset: auto;
  }
}

@media (max-width: 600px) {
  .section-wrap {
    width: calc(100% - 1.5rem);
  }

  .hero__title {
    font-size: clamp(3.4rem, 18vw, 4.8rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .manifesto__line,
  .manifesto__line--lg,
  .manifesto__line--xl {
    max-width: 100%;
    align-self: stretch;
    text-align: left;
  }

  .footer__links {
    gap: 1.5rem;
  }

  .btn {
    min-height: 52px;
  }
}

/* ============================================
   19. REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .mask-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
    transition: none;
  }

  .hero__float,
  .hero__glow,
  .hero__rings span,
  .hero__scroll-line,
  .coin__glow,
  .marquee__track--left,
  .marquee__track--right,
  .banner-break__bg span {
    animation: none !important;
  }

  .btn,
  .btn--primary::before,
  .btn__arrow {
    transition: none;
  }

  .custom-cursor {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}
