/* ============================================================
   $GHOOD · The Green Hood
   Light editorial campaign site. White, gray, one green.
   ============================================================ */

:root {
  --green: #08a02f;
  --green-bright: #00c853;
  --green-dark: #006b2e;
  --green-tint: #eaf6ee;
  --red: #d64545;
  --red-tint: #fbeeee;
  --black: #0a0a0a;
  --off-black: #151515;
  --white: #ffffff;
  --off-white: #f7f7f4;
  --soft-gray: #ededea;
  --gray-text: #6b6b66;
  --border: rgba(10, 10, 10, 0.1);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;

  --header-h: 64px;
  --radius-pill: 999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

::selection { background: var(--green); color: var(--white); }

img, video { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- type utilities ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

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

.display__green { color: var(--green); }

.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.label::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 12px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:active { transform: scale(0.97); }

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(8, 160, 47, 0.28);
}
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8, 160, 47, 0.35);
}

.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--green); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--green); color: var(--green); }

.btn--light { background: var(--white); color: var(--black); }
.btn--light:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn--sm { padding: 9px 18px; font-size: 12px; }
.btn--lg { padding: 17px 36px; font-size: 15px; }

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ---------- header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__brand svg { height: 26px; width: auto; display: block; }

.header__nav {
  display: flex;
  gap: 26px;
  margin-left: 8px;
}

.header__nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-text);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--green); }

.header__nav-coming {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  cursor: default;
  opacity: 0.5;
}

.coming-soon {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: none;
  padding: 0;
  margin-left: 6px;
  opacity: 0.8;
}
}

@keyframes coming-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.header__actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 38%, rgba(8, 160, 47, 0.09), transparent 70%),
    linear-gradient(var(--white), var(--off-white));
}

.hero__stage {
  position: relative;
  width: 100%;
  height: clamp(340px, 52svh, 560px);
  margin-top: clamp(8px, 3svh, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-parallax] {
  --tx: 0px;
  --ty: 0px;
  translate: var(--tx) var(--ty);
}

.hero__logo {
  position: absolute;
  top: 46%;
  left: 50%;
  translate: calc(-50% + var(--tx)) calc(-50% + var(--ty));
  width: min(88vw, 1180px);
  animation: logo-breathe 7s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%, 100% { scale: 1; }
  50% { scale: 1.015; }
}

.hero__video {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  filter: drop-shadow(0 42px 60px rgba(10, 10, 10, 0.28));
  animation: video-float 5.5s ease-in-out infinite;
}

@keyframes video-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(0.8deg); }
}

.hero__token {
  position: absolute;
  z-index: 3;
  width: clamp(72px, 9vw, 140px);
  filter: drop-shadow(0 18px 30px rgba(8, 160, 47, 0.3));
}

.hero__token--left {
  left: clamp(4%, 14vw, 22%);
  top: 12%;
  animation: float-a 6s ease-in-out infinite;
}

.hero__token--right {
  right: clamp(4%, 14vw, 22%);
  bottom: 6%;
  width: clamp(56px, 6.5vw, 100px);
  animation: float-b 7.5s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(14px) rotate(-3deg); }
}

.hero__content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 20px 20px 72px;
  max-width: 1000px;
}

.hero__eyebrow {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--white);
}

.chip--pulse { animation: chip-pulse 2.6s ease-in-out infinite; }

@keyframes chip-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8, 160, 47, 0.35); }
  50% { box-shadow: 0 0 0 9px rgba(8, 160, 47, 0); }
}

.chip--outline {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 7.2vw, 104px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* rotating word: typewriter with a blinking caret */
.hero__word { color: var(--black); }

.hero__word::after {
  content: "";
  display: inline-block;
  width: max(3px, 0.06em);
  height: 0.82em;
  margin-left: 0.08em;
  vertical-align: -0.04em;
  background: var(--green);
  animation: caret-blink 1.05s steps(1) infinite;
}

@keyframes caret-blink {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: 0; }
}

.hero__ghood { color: var(--green); }
.hero__dot { color: var(--black); }

.hero__sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray-text);
  font-weight: 500;
}

.hero__cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__micro {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.hero__scrollhint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  translate: -50%;
  font-size: 13px;
  color: var(--green);
  animation: hint-bob 1.8s ease-in-out infinite;
}

@keyframes hint-bob {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(7px); opacity: 0.4; }
}

/* ---------- ticker ---------- */

.ticker {
  overflow: hidden;
  background: var(--green);
  transform: rotate(-1.2deg) scale(1.02);
  padding: 16px 0;
  margin: -12px 0 12px;
  box-shadow: 0 16px 40px rgba(8, 160, 47, 0.22);
}

.ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker-run 30s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__item {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

.ticker__item::after {
  content: "";
  width: 26px;
  height: 26px;
  background: url("assets/icon.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

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

/* ---------- sections ---------- */

.section {
  padding: clamp(50px, 6vw, 80px) clamp(20px, 6vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
}

/* ---------- vibes ---------- */

.vibes__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.vibes__words {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vibes__word {
  width: min(100%, 440px);
  --r: 0deg;
  rotate: var(--r);
  margin-top: -7%;
  transition: scale 0.3s var(--ease-out);
  animation: word-wobble 5.5s ease-in-out infinite;
}

.vibes__word:first-child { margin-top: 0; }

.vibes__word:hover { scale: 1.06; }

.vibes__word:nth-child(1) { --r: -3.5deg; animation-duration: 5s; }
.vibes__word:nth-child(2) { --r: 2.5deg; animation-delay: 0.4s; }
.vibes__word:nth-child(3) { --r: -2deg; animation-duration: 6.2s; animation-delay: 0.8s; }

@keyframes word-wobble {
  0%, 100% { rotate: var(--r); translate: 0 0; }
  50% { rotate: calc(var(--r) + 2deg); translate: 0 -7px; }
}

.vibes__media {
  position: relative;
  rotate: 1.6deg;
  border-radius: 28px;
  overflow: visible;
  box-shadow:
    0 30px 70px rgba(10, 10, 10, 0.28),
    0 10px 40px rgba(8, 160, 47, 0.22);
}

/* the video is slightly wider than its frame: the source's first
   frame doesn't reach the edges, so the frame crops a few px away */
.vibes__video {
  display: block;
  width: calc(100% + 16px);
  max-width: none;
  margin-left: -8px;
}

.vibes__sound {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}

.vibes__sound:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.vibes__sound-hint {
  position: absolute;
  right: 14px;
  bottom: -55px;
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  rotate: -3deg;
  animation: hint-wiggle 2s ease-in-out infinite;
}

.vibes__sound-arrow {
  display: inline-block;
  font-size: 28px;
  margin-left: 2px;
  animation: arrow-point 1.2s ease-in-out infinite;
}

@keyframes hint-wiggle {
  0%, 100% { rotate: -3deg; }
  25% { rotate: -1deg; }
  75% { rotate: -5deg; }
}

@keyframes arrow-point {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ---------- about ---------- */

.about { padding-bottom: clamp(45px, 6vw, 75px); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  margin-top: clamp(36px, 5vw, 64px);
  align-items: start;
}

.about__copy p { margin-bottom: 18px; font-size: clamp(17px, 1.5vw, 20px); color: var(--gray-text); }
.about__copy strong { color: var(--green); }

/* Q&A as a chat thread */
.chat {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__copy p.chat__bubble {
  max-width: 78%;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.4;
  padding: 12px 20px;
  border-radius: 22px;
  margin-bottom: 0;
}

.about__copy p.chat__bubble--in {
  align-self: flex-start;
  background: var(--soft-gray);
  color: var(--black);
  border-bottom-left-radius: 6px;
}

.about__copy p.chat__bubble--out {
  align-self: flex-end;
  background: var(--green);
  color: var(--white);
  border-bottom-right-radius: 6px;
  box-shadow: 0 8px 20px rgba(8, 160, 47, 0.25);
}

.about__copy p.chat__status {
  align-self: flex-end;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin: 2px 8px 0 0;
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 32px;
  transition: transform 0.35s var(--ease-out), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

/* hood watermark peeking from the corner */
.card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  background: url("assets/icon.svg") center / contain no-repeat;
  opacity: 0.1;
  transition: opacity 0.35s, transform 0.45s var(--ease-out);
}

.card:hover {
  transform: translateX(10px) rotate(-0.5deg);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 20px 44px rgba(8, 160, 47, 0.35);
}

.card:hover::after {
  opacity: 0.35;
  transform: rotate(-10deg) scale(1.12);
  filter: brightness(0) invert(1);
}

.card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 30px;
  color: rgba(8, 160, 47, 0.25);
  transition: color 0.35s;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.35s;
}

.card p {
  color: var(--gray-text);
  font-size: 15.5px;
  transition: color 0.35s;
}

.card:hover h3 { color: var(--white); }
.card:hover p { color: rgba(255, 255, 255, 0.85); }
.card:hover .card__num { color: rgba(255, 255, 255, 0.45); }

/* GOOD → GHOOD morph */
[data-morph] .morph-h {
  display: inline-block;
  color: var(--green);
  max-width: 0;
  overflow: hidden;
  vertical-align: bottom;
  transition: max-width 0.6s var(--ease-out);
}
[data-morph].morphed .morph-h { max-width: 1.2em; }

/* ---------- mood check ---------- */

.mood {
  background: var(--green-tint);
  transition: background 0.6s;
}

.mood[data-mood="red"] { background: var(--red-tint); }

.mood__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 6vw, 80px);
}

.mood__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mood__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 104px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--green);
  transition: color 0.4s;
}

.mood[data-mood="red"] .mood__statement { color: var(--black); }

.mood__toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: box-shadow 0.3s;
}

.mood__toggle:hover { box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1); }

.mood__toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mood__toggle-hint {
  font-family: "Fredoka", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  animation: hint-bounce 1.4s ease-in-out infinite;
  transition: opacity 0.4s;
}

.mood[data-mood="red"] .mood__toggle-hint { color: var(--red); }

.mood__toggle-arrow {
  display: inline-block;
  font-size: 20px;
  animation: arrow-bounce 1.4s ease-in-out infinite;
}

@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.mood__side {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  transition: color 0.3s;
}

.mood[data-mood="green"] .mood__side--green { color: var(--green); }
.mood[data-mood="red"] .mood__side--red { color: var(--red); }

.mood__knob {
  position: relative;
  width: 64px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--green);
  transition: background 0.4s;
}

.mood[data-mood="red"] .mood__knob { background: var(--red); }

.mood__knob::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white) url("assets/icon.svg") center / 65% no-repeat;
  transition: translate 0.35s var(--ease-out);
}

.mood[data-mood="red"] .mood__knob::after { translate: 32px 0; }

.mood__sub {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-text);
}

/* ---------- story (dark) ---------- */

.story {
  max-width: none;
  background:
    radial-gradient(50% 55% at 50% 30%, rgba(8, 160, 47, 0.18), transparent 70%),
    var(--black);
  text-align: center;
  color: var(--white);
}

.story__orb {
  position: relative;
  width: clamp(110px, 14vw, 180px);
  aspect-ratio: 1;
  margin: 0 auto 44px;
  display: grid;
  place-items: center;
}

.story__icon {
  position: relative;
  width: 100%;
  animation: icon-glow 4s ease-in-out infinite;
}

/* soft breathing glow behind the icon */
.story__glow {
  position: absolute;
  inset: -55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.32), transparent 65%);
  animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.6; scale: 1; }
  50% { opacity: 1; scale: 1.12; }
}

/* sonar rings rippling outwards */
.story__ring {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 200, 83, 0.55);
  animation: ring-ripple 3.9s ease-out infinite;
}

.story__ring:nth-of-type(2) { animation-delay: 1.3s; }
.story__ring:nth-of-type(3) { animation-delay: 2.6s; }

@keyframes ring-ripple {
  0% { scale: 0.92; opacity: 0; }
  12% { opacity: 0.75; }
  100% { scale: 2; opacity: 0; }
}

/* slow rotating dashed orbit */
.story__spin {
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 200, 83, 0.3);
  animation: orbit-spin 28s linear infinite;
}

@keyframes orbit-spin {
  to { rotate: 360deg; }
}

@keyframes icon-glow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 200, 83, 0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(0, 200, 83, 0.55)); }
}

.story__copy {
  max-width: 620px;
  margin: 40px auto 0;
}

.story__copy p {
  margin-bottom: 16px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255, 255, 255, 0.66);
}

.story__closing {
  margin-top: clamp(48px, 6vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}

.story__closing span { color: var(--green-bright); }

/* ---------- speak ghood ---------- */

.speak { text-align: center; padding-top: clamp(45px, 6vw, 75px); }

.speak__intro {
  margin-top: 14px;
  font-size: 18px;
  color: var(--gray-text);
  font-weight: 500;
}

.speak__grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.phrase {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--black);
  cursor: default;
  transition: background 0.22s, color 0.22s, transform 0.22s var(--ease-out), border-color 0.22s, box-shadow 0.22s;
}

.phrase:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 14px 30px rgba(8, 160, 47, 0.3);
}

/* meme looping slider (full-bleed) */

.memes {
  margin-top: clamp(48px, 6vw, 72px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 24px 0 34px;
}

.memes__track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
  animation: ticker-run 55s linear infinite;
}

.memes:hover .memes__track { animation-play-state: paused; }

.meme {
  width: clamp(200px, 24vw, 300px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.16);
  rotate: 1.6deg;
  transition: rotate 0.3s var(--ease-out), scale 0.3s var(--ease-out), box-shadow 0.3s;
}

.meme:nth-child(odd) { rotate: -1.6deg; }

.meme:hover {
  rotate: 0deg;
  scale: 1.05;
  box-shadow: 0 20px 44px rgba(8, 160, 47, 0.3);
}

.meme img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ---------- tokenomics ---------- */

.tokenomics {
  position: relative;
  text-align: center;
}

.tokenomics__token {
  position: absolute;
  width: clamp(70px, 8vw, 120px);
  filter: drop-shadow(0 18px 30px rgba(8, 160, 47, 0.3));
  pointer-events: none;
}

.tokenomics__token--left {
  left: clamp(8px, 3vw, 48px);
  top: 14%;
  animation: float-a 6.5s ease-in-out infinite;
}

.tokenomics__token--right {
  right: clamp(8px, 3vw, 48px);
  bottom: 16%;
  width: clamp(54px, 6vw, 92px);
  animation: float-b 8s ease-in-out infinite;
}

.tokenomics__grid {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(30px, 4vw, 52px) 20px;
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
}

.stat:hover {
  transform: translateY(-6px);
  background: var(--green-tint);
  border-color: rgba(8, 160, 47, 0.35);
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  color: var(--green);
}

.stat__label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.tokenomics__sub {
  margin-top: 36px;
  font-size: 17px;
  color: var(--gray-text);
  font-weight: 500;
}

.contract {
  margin: 36px auto 0;
  max-width: 720px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border: 1.5px dashed rgba(8, 160, 47, 0.5);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  overflow: hidden;
  box-sizing: border-box;
}

.contract__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.contract__value {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  overflow-wrap: break-word;
  word-break: break-all;
  max-width: 100%;
  text-align: center;
}

/* ---------- waitlist (spot 2) ---------- */

.waitlist {
  text-align: center;
  padding-block: 80px;
}

.waitlist__sub {
  font-size: 16px;
  color: var(--gray-text);
  margin-top: 12px;
  line-height: 1.6;
}

.waitlist__form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waitlist__fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.waitlist__input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: 2px solid rgba(8, 160, 47, 0.3);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist__input:focus {
  border-color: var(--green);
}

.waitlist__input::placeholder {
  color: #999;
}

.waitlist__btn {
  min-width: 200px;
}

.waitlist__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-text);
  opacity: 0.7;
}

/* ---------- join capture (spot 1) ---------- */

.join__capture {
  margin-top: 28px;
  text-align: center;
}

.join__capture-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.join__capture-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.join__capture-input {
  padding: 10px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
  min-width: 140px;
  transition: border-color 0.2s;
}

.join__capture-input:focus {
  border-color: var(--green-bright);
}

.join__capture-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- join ---------- */

.join {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  text-align: center;
  padding: clamp(50px, 7vw, 90px) 24px;
  color: var(--white);
}

.join__token {
  position: absolute;
  right: -60px;
  top: -60px;
  width: clamp(180px, 22vw, 320px);
  opacity: 0.18;
  transform: rotate(14deg);
  pointer-events: none;
}

.join__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 130px);
  text-transform: uppercase;
  line-height: 0.95;
}

.join__sub {
  margin-top: 18px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.join__hold {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 22px 52px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.join__hold:hover { transform: translateY(-3px); }

.join__hold-fill {
  position: absolute;
  inset: 0;
  background: var(--black);
  transform-origin: left center;
  transform: scaleX(0);
}

.join__hold.is-holding .join__hold-fill {
  transform: scaleX(1);
  transition: transform 1.6s linear;
}

.join__hold:not(.is-holding) .join__hold-fill {
  transition: transform 0.3s var(--ease-out);
}

.join__hold-label {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.join__hold.is-holding .join__hold-label { color: var(--white); }

.join__hold.is-joined {
  background: var(--black);
  color: var(--white);
}

.join__hold.is-joined .join__hold-fill { display: none; }

.join__socials {
  margin-top: 52px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- footer ---------- */

.footer {
  background: var(--black);
  color: #fff;
  padding: 60px clamp(20px, 6vw, 80px) 48px;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.footer__brand { display: flex; flex-direction: column; }

.footer__brand strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--green);
}

.footer__brand span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer__center {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

.footer__links { display: flex; gap: 20px; }

.footer__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--green); }

.footer__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  max-width: 1240px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer__contact-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
  background: var(--green);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer__contact-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer__disclaimer {
  max-width: 1240px;
  margin: 32px auto 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ---------- sticky mobile CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  translate: 0 120px;
  transition: translate 0.4s var(--ease-out);
}

.sticky-cta .btn { width: 100%; }

.sticky-cta.is-visible { translate: 0 0; }

/* ---------- toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  translate: -50% 80px;
  z-index: 200;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transition: translate 0.35s var(--ease-out), opacity 0.35s;
}

.toast.is-visible { translate: -50% 0; opacity: 1; }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out);
}

.reveal.in { opacity: 1; translate: 0 0; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .header__nav { display: none; }

  .vibes__grid { grid-template-columns: 1fr; }
  .vibes__word { width: min(80%, 360px); }

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

  .mood__row { flex-direction: column; justify-content: center; text-align: center; align-items: center; }
  .mood__inner { text-align: center; }
  .mood__toggle-wrapper { margin-top: 16px; }

  .tokenomics__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .tokenomics__token { display: none; }

  .vibes__sound-hint { text-align: center; font-size: 14px; }
}

@media (max-width: 720px) {
  .header__actions .btn--ghost { display: none; }

  .hero__stage { height: clamp(280px, 42svh, 420px); }
  .hero__token--left { left: 2%; top: 4%; }
  .hero__token--right { right: 2%; }

  .mood__statement { font-size: clamp(36px, 10vw, 56px); }
  .mood__toggle-hint { font-size: 15px; }

  .sticky-cta { display: block; }

  .footer { padding-bottom: 110px; }
  .footer__row { flex-direction: column; text-align: center; }
  .footer__contact { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(28px, 9vw, 52px); white-space: normal; }
  .hero__sub { font-size: 14px; }
  .hero__cta .btn { padding: 14px 24px; font-size: 13px; }

  .display { font-size: clamp(32px, 9vw, 52px); }
  .mood__statement { font-size: clamp(30px, 9vw, 44px); }

  .vibes__sound { font-size: 10px; padding: 8px 14px; }
  .vibes__sound-hint { font-size: 13px; }
}

/* ---------- 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 { opacity: 1; translate: 0 0; }
}
