/* apeonstonk — Light Theme */

:root {
  --cream: #f1eadb;
  --cream-dark: #e8dfd0;
  --white: #ffffff;
  --paper: #faf8f5;
  --surface: #ffffff;
  --surface-alt: #f4f8fa;
  --charcoal: #141a1f;
  --charcoal-soft: #2a3439;
  --ice: #5eb8d9;
  --ice-bright: #9bd9ef;
  --ice-pale: #d4eef8;
  --ice-deep: #3a9ec4;
  --steel: #70838e;
  --silver: #a8b8c0;
  --text: #141a1f;
  --muted: #70838e;
  --border: rgba(20, 26, 31, 0.08);
  --border-strong: rgba(20, 26, 31, 0.14);
  --shadow-sm: 0 2px 8px rgba(20, 26, 31, 0.06);
  --shadow-md: 0 8px 32px rgba(20, 26, 31, 0.08);
  --shadow-lg: 0 20px 60px rgba(20, 26, 31, 0.1);
  --shadow-ice: 0 8px 40px rgba(94, 184, 217, 0.2);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-height: 72px;
  --container: 1160px;
  --radius: 16px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.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;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding-block: clamp(4.5rem, 10vw, 7.5rem); position: relative; }
.section--alt { background: var(--cream); }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice-deep);
  margin-bottom: 0.625rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 22ch;
  margin-inline: auto;
}

/* Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1000; pointer-events: none;
}
.scroll-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ice-deep), var(--ice-bright));
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  position: relative; overflow: hidden; white-space: nowrap;
}

.btn--sm { padding: 0.55rem 1.35rem; font-size: 0.75rem; }
.btn--lg { padding: 1rem 2rem; font-size: 0.875rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--ice-deep) 0%, var(--ice) 100%);
  color: var(--white);
  box-shadow: var(--shadow-ice);
}
.btn--primary:hover, .btn--primary:focus-visible {
  box-shadow: 0 12px 48px rgba(94, 184, 217, 0.35);
}

.btn--secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover, .btn--secondary:focus-visible {
  border-color: var(--ice);
  color: var(--ice-deep);
  box-shadow: var(--shadow-md);
}

.btn--light {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn--light:hover, .btn--light:focus-visible { box-shadow: var(--shadow-lg); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow, .btn:focus-visible .btn__arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

.shine::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  transform: translateX(-120%);
}
.shine:hover::after { transform: translateX(120%); transition: transform 0.65s var(--ease); }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}

.navbar__logo { height: 34px; width: auto; }

.navbar__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; z-index: 2; padding: 10px;
}

.navbar__toggle-bar {
  display: block; width: 100%; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}

.navbar.is-open .navbar__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.is-open .navbar__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar.is-open .navbar__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__list { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.5rem); }

.navbar__link {
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  position: relative; padding-block: 0.25rem; transition: color 0.25s;
}

.navbar__link::after {
  content: ""; position: absolute; bottom: -3px; left: 0; width: 100%; height: 2px;
  background: var(--ice-deep); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.navbar__link:hover, .navbar__link:focus-visible, .navbar__link.is-active { color: var(--charcoal); }
.navbar__link:hover::after, .navbar__link:focus-visible::after, .navbar__link.is-active::after {
  transform: scaleX(1); transform-origin: left;
}

.navbar__cta { margin-left: 0.25rem; }

/* Hero */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-height); background: var(--cream); overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
}

.hero__blob--1 {
  width: 55vw; height: 55vw; max-width: 520px; max-height: 520px;
  top: -10%; right: -5%; background: radial-gradient(circle, var(--ice-pale) 0%, transparent 70%);
}

.hero__blob--2 {
  width: 40vw; height: 40vw; max-width: 400px; max-height: 400px;
  bottom: 5%; left: -8%; background: radial-gradient(circle, rgba(232,223,208,0.8) 0%, transparent 70%);
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,26,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,26,31,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 10%, transparent 75%);
}

.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem); position: relative; z-index: 1;
  padding-block: clamp(2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ice-deep);
  background: var(--white); border: 1px solid var(--border);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
}

.hero__tag {
  font-size: 1rem; color: var(--muted); margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero__wordmark { margin-bottom: 1.5rem; }

.hero__banner {
  width: min(100%, 480px); height: auto;
  filter: drop-shadow(0 12px 24px rgba(20,26,31,0.08));
}

.hero__mantra { margin-bottom: 2rem; }

.hero__line {
  font-family: var(--font-display); font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700; letter-spacing: 0.02em; line-height: 1.45; color: var(--charcoal-soft);
}

.hero__line span {
  display: inline-block;
  padding: 0.1rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.hero__line--accent { color: var(--ice-deep); font-style: italic; }
.hero__line--accent span { border-bottom-color: var(--ice-pale); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 1.25rem; }

.hero__sub { font-size: 0.875rem; color: var(--muted); letter-spacing: 0.02em; }

.hero__visual { display: flex; justify-content: center; align-items: flex-end; }

.hero__frame {
  position: relative; width: min(100%, 460px); will-change: transform;
}

.hero__frame-glow {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  width: 65%; height: 35%;
  background: radial-gradient(ellipse, rgba(94,184,217,0.2) 0%, transparent 70%);
  filter: blur(24px);
}

.hero__ape {
  width: 100%; position: relative; z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(20,26,31,0.12));
}

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; transition: opacity 0.3s;
}

.scroll-indicator__line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ice-deep), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* Evolution */
.evolution__track {
  position: relative; max-width: 640px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.evolution__rail {
  position: absolute; left: 28px; top: 0; bottom: 0; width: 2px;
  background: var(--border-strong);
}

.evolution__rail-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--silver), var(--ice-deep));
  transition: height 0.6s var(--ease);
}

.evolution__rail-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ice-deep); border: 3px solid var(--cream);
  box-shadow: var(--shadow-ice); top: 0;
  transition: top 0.6s var(--ease); opacity: 0;
}

.evolution__track.is-active .evolution__rail-dot { opacity: 1; }

.evo-card {
  position: relative; margin-left: 0; padding: 1.5rem 1.75rem 1.5rem 4.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  opacity: 0.45; transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
}

.evo-card.is-active {
  opacity: 1; transform: translateY(0);
  border-color: rgba(94,184,217,0.3);
  box-shadow: var(--shadow-md);
}

.evo-card--now.is-active {
  background: linear-gradient(135deg, var(--white) 0%, var(--surface-alt) 100%);
  border-color: var(--ice);
  box-shadow: var(--shadow-ice);
  transform: scale(1.02);
}

.evo-card__label {
  display: block; font-family: var(--font-display); font-size: 0.6875rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ice-deep); margin-bottom: 0.35rem;
}

.evo-card__name {
  font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; text-transform: lowercase; color: var(--charcoal-soft);
}

.evo-card--now .evo-card__name {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  background: linear-gradient(135deg, var(--ice-deep), var(--ice-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Manifesto */
.manifesto { background: var(--white); }

.manifesto__headlines { margin-bottom: clamp(3rem, 7vw, 5rem); }

.manifesto__line {
  font-family: var(--font-display); font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--charcoal);
}

.manifesto__line--accent {
  background: linear-gradient(90deg, var(--ice-deep), var(--ice-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifesto__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start;
}

.manifesto__quote {
  font-size: clamp(1.125rem, 2vw, 1.375rem); line-height: 1.75;
  color: var(--charcoal-soft); border-left: 4px solid var(--ice);
  padding-left: 1.5rem; font-style: normal;
}

.manifesto__tags {
  display: flex; flex-wrap: wrap; gap: 0.625rem 1rem; margin-bottom: 1.25rem;
}

.manifesto__tags span {
  font-family: var(--font-display); font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 800; text-transform: uppercase; color: var(--charcoal);
  background: var(--cream); padding: 0.35rem 0.85rem; border-radius: 8px;
}

.manifesto__text { font-size: 1rem; color: var(--muted); margin-bottom: 0.75rem; }

.manifesto__text--bold {
  font-family: var(--font-display); font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 700; color: var(--ice-deep); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0;
}

/* Coin */
.coin__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.coin__tilt {
  position: relative; width: min(100%, 340px); aspect-ratio: 1;
  margin-inline: auto; perspective: 900px; cursor: pointer;
}

.coin__float { width: 100%; height: 100%; animation: coinFloat 5s ease-in-out infinite; }

.coin__disc {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  border: 5px solid var(--silver);
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(20,26,31,0.08);
  transform-style: preserve-3d; will-change: transform;
}

.coin__crop {
  width: 290%; height: 290%; object-fit: cover; object-position: 52% 58%;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.coin__shine {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none; z-index: 2;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.5) 0%, transparent 45%);
  opacity: 0.7;
}

.coin__heading {
  font-family: var(--font-display); font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.08;
  color: var(--charcoal); margin-bottom: 0.75rem;
}

.coin__lead {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700; color: var(--ice-deep); margin-bottom: 1.75rem;
}

.coin__figure {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}

.coin__scene { width: 100%; }

/* Steps */
.steps__row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem; align-items: stretch; margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94,184,217,0.35);
}

.step__num {
  display: block; font-family: var(--font-display); font-size: 2.25rem;
  font-weight: 900; color: var(--ice-pale); line-height: 1; margin-bottom: 0.75rem;
}

.step__title {
  font-family: var(--font-display); font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem;
}

.step__desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }

.steps__arrow {
  align-self: center; font-family: var(--font-display); font-size: 1.5rem;
  color: var(--ice); font-weight: 700;
}

.steps__cta { text-align: center; }

.steps__punch {
  font-family: var(--font-display); font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 900; text-transform: uppercase; line-height: 1;
  background: linear-gradient(135deg, var(--ice-deep), var(--ice-bright));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.75rem;
}

/* Community */
.community__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}

.terminal {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
}

.terminal__header {
  display: flex; align-items: center; gap: 6px;
  padding: 0.75rem 1rem; background: var(--surface-alt); border-bottom: 1px solid var(--border);
}

.terminal__dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal__dot--red { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green { background: #28c840; }

.terminal__label {
  margin-left: 0.5rem; font-family: "Courier New", monospace;
  font-size: 0.75rem; color: var(--muted);
}

.terminal__content {
  padding: 1.5rem; font-family: "Courier New", monospace; font-size: 0.875rem;
  line-height: 1.8; color: var(--charcoal-soft);
}

.terminal__chev { color: var(--ice-deep); margin-right: 0.35rem; }
.terminal__highlight { color: var(--ice-deep); font-weight: 600; }
.terminal__dim { color: var(--muted); }
.terminal__blink { animation: blink 1s step-end infinite; }

.community__title {
  font-family: var(--font-display); font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.1;
  margin-bottom: 0.625rem;
}

.community__sub { color: var(--muted); margin-bottom: 1.75rem; }

/* Final CTA */
.final {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(145deg, var(--charcoal) 0%, #1e2830 100%);
  color: var(--white); padding-block: clamp(5rem, 12vw, 9rem);
}

.final__decor { position: absolute; inset: 0; pointer-events: none; }

.final__ape {
  position: absolute; right: -4%; bottom: -20%; width: min(42vw, 380px);
  opacity: 0.08; filter: grayscale(0.2); transform: scaleX(-1);
}

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

.final__lines {
  display: flex; flex-direction: column; margin-bottom: 2.5rem;
}

.final__lines span {
  font-family: var(--font-display); font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900; text-transform: uppercase; line-height: 0.98;
  letter-spacing: -0.01em;
}

.final__accent {
  background: linear-gradient(90deg, var(--ice-bright), var(--ice));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final__buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.875rem;
}

/* Footer */
.footer {
  background: var(--cream); border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.footer__grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.footer__logo { height: 30px; width: auto; margin-bottom: 0.4rem; }

.footer__ticker {
  font-family: var(--font-display); font-weight: 700; color: var(--ice-deep);
  letter-spacing: 0.06em; font-size: 0.9375rem;
}

.footer__chain { font-size: 0.8125rem; color: var(--muted); margin-top: 0.15rem; }

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

.footer__links a {
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  transition: color 0.25s;
}

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

.footer__tagline {
  width: 100%; text-align: center; padding-top: 1.5rem; margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--steel);
}

/* Reveals */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--delay, 0s);
}

.reveal { transform: none; }
.reveal-up { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-scale { transform: scale(0.94); }

.reveal.is-visible, .reveal-up.is-visible, .reveal-left.is-visible,
.reveal-right.is-visible, .reveal-scale.is-visible {
  opacity: 1; transform: none;
}

.hero.is-loaded .reveal, .hero.is-loaded .reveal-up { opacity: 1; transform: none; }

.float-idle { animation: breathe 4.5s ease-in-out infinite; }

/* Keyframes */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .coin__float, .float-idle { animation: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__badge { margin-inline: auto; }
  .hero__banner { margin-inline: auto; }
  .hero__mantra { display: inline-block; text-align: left; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__frame { width: min(75%, 340px); margin-inline: auto; }

  .manifesto__grid { grid-template-columns: 1fr; }
  .coin__layout { grid-template-columns: 1fr; text-align: center; }
  .coin__figure { max-width: 400px; margin-inline: auto; }

  .steps__row { grid-template-columns: 1fr; }
  .steps__arrow { transform: rotate(90deg); justify-self: center; }

  .community__layout { grid-template-columns: 1fr; }
  .community__copy { text-align: center; }
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }

  .navbar__nav {
    position: fixed; inset: 0;
    background: rgba(241, 234, 219, 0.97);
    backdrop-filter: blur(24px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }

  .navbar.is-open .navbar__nav { opacity: 1; visibility: visible; }

  .navbar__list { flex-direction: column; gap: 1.25rem; }
  .navbar__link { font-size: 1rem; }
  .navbar__cta { margin-left: 0; margin-top: 0.5rem; }

  .footer__grid { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .final__buttons { flex-direction: column; align-items: center; }
  .final__buttons .btn, .hero__actions .btn { width: min(100%, 280px); }
}

@media (max-width: 480px) {
  .manifesto__line { font-size: clamp(1.75rem, 9vw, 2.25rem); }
  .evo-card { padding-left: 3.75rem; }
  .evolution__rail { left: 20px; }
}
