/* ============================================================
   IMAGINAL CELLS® — homepage prototype
   Direction: "Pattern Breaking pure" — raw, sharp, dark.
   Colors: Power Black #000, Ocean Wave #00f2ab,
           Vibrant Purple #8060f6 (secondary)
   Type: ABC Diatype Black/Bold (real brand faces) for display,
         Inter for body/UI.
   ============================================================ */

@font-face {
  font-family: "ABC Diatype";
  src: url("assets/fonts/ABCDiatype-Black.woff2") format("woff2");
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("assets/fonts/ABCDiatype-Bold.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --black: #000000;
  --white: #f5f5f5;
  --dim: rgba(245, 245, 245, 0.6);
  --ocean: #00f2ab;
  --dark-green: #207a5a;
  --purple: #8060f6;
  --copper: #d94f00;
  --hairline: rgba(245, 245, 245, 0.18);
  --font: "Inter", system-ui, sans-serif;
  --display: "ABC Diatype", "Inter", system-ui, sans-serif;
  --track-display: -0.03em; /* Diatype Black uses -30 tracking */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Display type — real ABC Diatype Black/Bold on all headline & label elements */
.hero__title, .section-title, .problem__text, .statement__text, .newsletter__title,
.page-hero h1, .question__title, .spark__word, .marquee, .stat b, .hub__city,
.event__date, .topic, .person b, .path h3, .pillar h3, .footer__wordmark,
.section-title, .btn, .tag, .nav__cta, .kv dt { font-family: var(--display); }

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

html { scroll-behavior: auto; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ocean); color: var(--black); }

/* ---------- Grain overlay (raw texture) ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Butterfly cursor ---------- */
.has-bfly, .has-bfly a, .has-bfly button, .has-bfly input,
.has-bfly textarea, .has-bfly .topic, .has-bfly label { cursor: none; }
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99; pointer-events: none;
  width: 32px; height: 32px; margin: -16px 0 0 -16px;   /* center on hotspot */
  opacity: 0;
  transition: opacity 0.3s, width 0.28s var(--ease), height 0.28s var(--ease),
              margin 0.28s var(--ease);
  will-change: transform, left, top;
}
.cursor.is-active { opacity: 1; }
.cursor img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; display: block; object-fit: contain;
  transform-origin: 50% 50%;
  animation: flap 1.7s ease-in-out infinite;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.45));
  transition: opacity 0.22s ease;
}
.cursor .bfly-hover { opacity: 0; }            /* purple, revealed over clickables */
.cursor.is-hover .bfly-base { opacity: 0; }
.cursor.is-hover .bfly-hover { opacity: 1; }
.cursor.is-hover { width: 46px; height: 46px; margin: -23px 0 0 -23px; }
.cursor.is-hover img { animation-duration: 0.5s; }
.cursor.is-click img { animation-duration: 0.28s; }
@keyframes flap {
  0%, 100% { transform: scaleX(1); }
  50%      { transform: scaleX(0.4); }
}
@media (pointer: coarse) { .cursor { display: none; } .has-bfly { cursor: auto; } }

.accent { color: var(--ocean); }
sup { font-size: 0.35em; vertical-align: super; }

/* ---------- Header ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline);
}
.nav__logo {
  display: inline-flex; align-items: center; text-decoration: none;
  opacity: 0.95; transition: opacity 0.25s;
}
.nav__logo:hover { opacity: 1; }
.nav__logo img {
  height: clamp(15px, 1.9vw, 19px); width: auto; display: block;
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__links a {
  color: var(--dim); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--ocean); }
.nav__lang { display: flex; gap: 0.3rem; align-items: center; color: var(--dim); font-size: 0.82rem; }
.nav__lang button {
  background: none; border: none; cursor: pointer;
  color: var(--dim); font: inherit; letter-spacing: 0.08em;
}
.nav__lang button.is-active { color: var(--white); font-weight: 700; }
.nav__links a.nav__cta {
  color: var(--black); background: var(--ocean);
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  transition: background 0.25s, color 0.25s;
}
.nav__links a.nav__cta:hover { background: var(--white); color: var(--black); }
.nav__burger { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font: 700 0.9rem/1 var(--font); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1.05rem 1.9rem; border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn--fill { background: var(--ocean); color: var(--black); }
.btn--fill:hover { background: var(--white); }
.btn--line { border-color: var(--hairline); color: var(--white); }
.btn--line:hover { border-color: var(--ocean); color: var(--ocean); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem clamp(1rem, 4vw, 3rem) 4rem;
  overflow: hidden;
}
.hero__pulse {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 38% at 50% 55%, rgba(0, 242, 171, 0.16), transparent 70%);
  animation: pulse 5.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
.hero__title {
  position: relative; z-index: 1;
  font-weight: 900; letter-spacing: var(--track-display);
  font-size: clamp(3.8rem, 16.5vw, 15rem);
  line-height: 0.88; text-transform: uppercase;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: inline-block; transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: 0.1s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.2s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__sub {
  position: relative; z-index: 1;
  margin-top: 2.2rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 500;
  color: var(--dim);
}
.hero__actions { position: relative; z-index: 1; margin-top: 2.4rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-block: 1px solid var(--hairline);
  padding: 0.9rem 0;
}
.marquee__track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee__track span {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(1rem, 2.2vw, 1.5rem); color: var(--ocean);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Shared ---------- */
.tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 2rem;
}
.tag--purple { color: var(--purple); }
.section-title {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 0.95;
}

/* ---------- Problem ---------- */
.problem { padding: clamp(6rem, 12vw, 10rem) clamp(1rem, 4vw, 3rem); max-width: 78rem; }
.problem__text {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem); line-height: 1.02;
}
.strike { text-decoration: line-through; text-decoration-thickness: 0.08em; color: var(--dim); }
.problem__body {
  margin-top: 2.4rem; max-width: 40rem;
  font-size: 1.08rem; color: var(--dim);
}

/* ---------- SPARK ---------- */
.spark { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.spark__head { max-width: 78rem; }
.spark__word { color: var(--purple); }
/* real SPARK wordmark inline in the section heading */
.spark__wordmark {
  height: 0.82em; width: auto; display: inline-block;
  vertical-align: baseline; transform: translateY(0.04em);
}
/* real SPARK wordmark as the SPARK page hero */
.page-hero__logo {
  display: block; width: min(72vw, 30rem); height: auto;
  margin-bottom: 0.4rem;
}
.spark__intro { margin-top: 1.8rem; max-width: 38rem; color: var(--dim); font-size: 1.05rem; }
.spark__row {
  margin-top: 3.5rem;
  display: flex; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
}
.cell {
  background: var(--black); padding: 2rem 1.6rem 2.6rem;
  flex: 1 1 0; min-width: 0; text-decoration: none; color: var(--white); display: block;
  transition: background 0.4s, flex-grow 0.55s var(--ease);
}
.cell:hover { background: #0d0d11; flex-grow: 1.9; }
.cell p { opacity: 0.65; transition: opacity 0.4s; }
.cell:hover p { opacity: 1; }
.cell__go {
  display: block; margin-top: 1.4rem; font-style: normal;
  color: var(--ocean); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.cell:hover .cell__go { opacity: 1; transform: none; }
.cell span { color: var(--purple); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; }
.cell h3 {
  margin: 1.8rem 0 0.7rem;
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase; font-size: 1.35rem;
}
.cell p { color: var(--dim); font-size: 0.95rem; }

/* ---------- Statement ---------- */
.statement {
  padding: clamp(6rem, 13vw, 11rem) clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(128, 96, 246, 0.14), transparent 70%),
    var(--black);
}
.statement__text {
  max-width: 72rem; margin: 0 auto; text-align: center;
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(1.9rem, 5.2vw, 4.2rem); line-height: 1.02;
}
.statement__text em { font-style: normal; color: var(--ocean); }

/* ---------- Hubs ---------- */
.hubs { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.hubs__list { border-top: 1px solid var(--hairline); }
.hub {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.6rem 0.2rem; border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: var(--white);
  transition: padding-left 0.3s var(--ease), color 0.25s;
}
.hub:hover { padding-left: 1.2rem; color: var(--ocean); }
.hub__city {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 3.4rem); line-height: 1;
}
.hub__status { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }
.hub__status--soon { color: var(--purple); }
.hub__status--start { color: var(--ocean); }

/* ---------- Events ---------- */
.events { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.events__list { border-top: 1px solid var(--hairline); }
.event {
  display: grid; grid-template-columns: 6rem 1fr auto auto; align-items: center; gap: 1.4rem;
  padding: 1.4rem 0.2rem; border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: var(--white);
  transition: background 0.25s, padding-left 0.3s var(--ease);
}
.event:hover { background: #0d0d11; padding-left: 1rem; }
.event__date { font-weight: 900; letter-spacing: 0.04em; color: var(--ocean); }
.event__name { font-weight: 700; font-size: clamp(1rem, 2vw, 1.3rem); }
.event__city { color: var(--dim); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; }
.event__go { color: var(--purple); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.events__all {
  display: inline-block; margin-top: 2rem;
  color: var(--white); text-decoration: none; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem;
  border-bottom: 2px solid var(--ocean); padding-bottom: 0.3rem;
}
.events__all:hover { color: var(--ocean); }

/* ---------- Voices ---------- */
.voices { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.voices__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.voice { background: var(--black); padding: 2.2rem 1.8rem; }
.voice p { font-size: 1.05rem; font-weight: 500; line-height: 1.5; }
.voice cite { display: block; margin-top: 1.4rem; font-style: normal; color: var(--dim); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Newsletter ---------- */
.newsletter {
  padding: clamp(6rem, 13vw, 11rem) clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--hairline);
  text-align: center;
  background:
    radial-gradient(ellipse 45% 50% at 50% 100%, rgba(0, 242, 171, 0.12), transparent 70%),
    var(--black);
}
.newsletter__title {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 8.5rem); line-height: 0.9;
}
.newsletter__sub { margin: 1.6rem auto 2.4rem; color: var(--dim); max-width: 30rem; }
.newsletter__form { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.newsletter__form input {
  font: 500 1rem var(--font); color: var(--white);
  background: transparent; border: 1px solid var(--hairline);
  padding: 1rem 1.4rem; min-width: min(22rem, 78vw); outline: none;
  transition: border-color 0.25s;
}
.newsletter__form input:focus { border-color: var(--ocean); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) 1.5rem; }
.footer__top { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.footer__contact p { max-width: 26rem; color: var(--dim); }
.footer__contactlink { color: var(--ocean); font-weight: 700; text-decoration: none; }
.footer__contactlink:hover { text-decoration: underline; }
.footer__nav { display: flex; gap: clamp(2rem, 5vw, 4.5rem); }
.footer__nav div { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__nav a { color: var(--dim); text-decoration: none; font-size: 0.92rem; }
.footer__nav a:hover { color: var(--ocean); }
.footer__wordmark {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(2.6rem, 9.2vw, 9rem); line-height: 1; white-space: nowrap;
}
.footer__bottom {
  margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--dim); font-size: 0.8rem;
}

/* ---------- Cookie chip ---------- */
.cookie {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  display: flex; align-items: center; gap: 0.9rem;
  background: #0d0d11; border: 1px solid var(--hairline);
  padding: 0.65rem 1rem; font-size: 0.82rem; color: var(--dim);
}
.cookie.is-hidden { display: none; }
.cookie button {
  background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 0.9rem; line-height: 1;
}
.cookie button:hover { color: var(--ocean); }

/* ---------- Topics ---------- */
.topics { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.topics__cloud { display: flex; flex-wrap: wrap; gap: 0.7rem; max-width: 62rem; }
.topic {
  display: inline-block; text-decoration: none;
  color: var(--white); border: 1px solid var(--hairline);
  padding: 0.7rem 1.3rem; font-size: clamp(0.95rem, 1.8vw, 1.25rem); font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.topic:hover { border-color: var(--ocean); color: var(--ocean); transform: translateY(-3px); }

/* ---------- Question ("what's on your mind") ---------- */
.question { padding: clamp(5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.question__title {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 4rem); line-height: 1; max-width: 60rem;
}
.question__form { margin-top: 2.2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; max-width: 44rem; }
.question__form input {
  flex: 1; min-width: 16rem;
  font: 500 1rem var(--font); color: var(--white);
  background: transparent; border: 0; border-bottom: 2px solid var(--hairline);
  padding: 0.9rem 0.2rem; outline: none; transition: border-color 0.25s;
}
.question__form input:focus { border-bottom-color: var(--ocean); }

/* ---------- Sub-page hero ---------- */
.page-hero {
  padding: clamp(9rem, 16vw, 13rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.page-hero h1 {
  font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8.5rem); line-height: 0.9;
}
.page-hero p {
  margin-top: 1.8rem; max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--dim);
}
.page-hero--restrained h1 { font-size: clamp(2.4rem, 7vw, 5.5rem); }

/* ---------- Generic content section ---------- */
.section { padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem); border-top: 1px solid var(--hairline); }
.section__inner { max-width: 78rem; }
.section p.lead { max-width: 44rem; font-size: 1.1rem; color: var(--dim); }
.prose { max-width: 44rem; color: var(--dim); display: grid; gap: 1.1rem; }
.prose strong { color: var(--white); }
.prose a { color: var(--ocean); }

/* ---------- Pillars (About approach) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 3rem; }
.pillar { background: var(--black); padding: 2.2rem 1.8rem 2.8rem; }
.pillar h3 { font-weight: 900; text-transform: uppercase; letter-spacing: var(--track-display); font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--ocean); }
.pillar p { color: var(--dim); font-size: 0.98rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 3rem; }
.stat { background: var(--black); padding: 2.2rem 1.8rem; }
.stat b {
  display: block; font-weight: 900; letter-spacing: var(--track-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1; color: var(--white);
}
.stat span { display: block; margin-top: 0.7rem; color: var(--dim); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Team ---------- */
.team { margin-top: 3rem; border-top: 1px solid var(--hairline); }
.person {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline;
  padding: 1.3rem 0.2rem; border-bottom: 1px solid var(--hairline);
}
.person b { font-weight: 900; text-transform: uppercase; letter-spacing: var(--track-display); font-size: clamp(1.2rem, 3vw, 1.9rem); }
.person span { color: var(--dim); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; text-align: right; }

/* ---------- Paths (Join us) ---------- */
.paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 3rem; }
.path { background: var(--black); padding: 2.4rem 2rem 2.8rem; text-decoration: none; transition: background 0.3s; display: block; }
.path:hover { background: #0d0d11; }
.path h3 { font-weight: 900; text-transform: uppercase; letter-spacing: var(--track-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); }
.path p { margin-top: 0.8rem; color: var(--dim); font-size: 0.98rem; }
.path .go { display: inline-block; margin-top: 1.4rem; color: var(--ocean); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Logo wall ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 3rem; }
.logos span {
  flex: 1 1 10rem; background: var(--black); padding: 2rem 1rem; text-align: center;
  color: var(--dim); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem;
}

/* ---------- Doc list (ANBI) ---------- */
.docs { margin-top: 2.5rem; border-top: 1px solid var(--hairline); max-width: 44rem; }
.doc {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 1.1rem 0.2rem; border-bottom: 1px solid var(--hairline);
  color: var(--white); text-decoration: none; font-weight: 500;
}
.doc:hover { color: var(--ocean); }
.doc span { color: var(--dim); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Key-value table (ANBI) ---------- */
.kv { margin-top: 2.5rem; max-width: 44rem; border-top: 1px solid var(--hairline); }
.kv div { display: grid; grid-template-columns: 40% 1fr; gap: 1rem; padding: 0.9rem 0.2rem; border-bottom: 1px solid var(--hairline); font-size: 0.95rem; }
.kv dt { color: var(--dim); }
.kv dd { color: var(--white); }

@media (max-width: 900px) {
  .pillars, .stats, .paths { grid-template-columns: 1fr; }
}

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.has-gsap .reveal { transition: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .voices__row { grid-template-columns: 1fr; }
  .spark__row { flex-direction: column; }
  .cell__go { opacity: 1; transform: none; }
  .event { grid-template-columns: 4.4rem 1fr; }
  .event__city, .event__go { display: none; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center;
    background: var(--black);
    opacity: 0; pointer-events: none; transition: opacity 0.35s;
  }
  .nav__links a { font-size: 1.25rem; }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; z-index: 1; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 6px; z-index: 2;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav__burger span { width: 26px; height: 2px; background: var(--white); transition: transform 0.3s var(--ease); }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .footer__wordmark { white-space: normal; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__title .line > span { animation: none; transform: none; }
  .hero__pulse, .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Impressions strip (past events — placeholder imagery) ---------- */
.impressions { padding: clamp(5rem, 10vw, 8rem) 0; border-top: 1px solid var(--hairline); }
.impressions__head { padding: 0 clamp(1rem, 4vw, 3rem); margin-bottom: 2.6rem; }
.impressions__row {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 clamp(1rem, 4vw, 3rem) 1rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.impressions__row::-webkit-scrollbar { display: none; }
.impression {
  flex: 0 0 auto; width: clamp(15rem, 26vw, 20rem); aspect-ratio: 3 / 4;
  scroll-snap-align: start; overflow: hidden; background: #0d0d11;
  border: 1px solid var(--hairline);
}
.impression img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease); filter: saturate(1.05);
}
.impression:hover img { transform: scale(1.05); }
.impressions__note {
  padding: 1.2rem clamp(1rem, 4vw, 3rem) 0; color: var(--dim);
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   V2 REDESIGN — from Josine's mockups
   Blue→black hero · light zones · pills · stacked cards
   ============================================================ */
:root {
  --blue: #295add;      /* True Blue */
  --cream: #f4f2ec;     /* light-section background */
  --ink: #0b0b0d;       /* text on light */
}

/* ---------- HERO (sticky, blue → black, butterfly zoom) ---------- */
.heroX { position: relative; height: 300vh; }
.heroX__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.heroX__bg { position: absolute; inset: 0; background: var(--blue); z-index: 0; will-change: background-color; }
/* both butterflies pinned to the exact same spot → the green→purple swap is a clean crossfade */
.heroX__bfly {
  position: absolute; z-index: 1; pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  will-change: transform, opacity;
}
.partbf { width: min(96vw, 1240px); aspect-ratio: 928 / 502; display: block; }
#bflyPurple { opacity: 0; }
/* titleA and titleB share one position, so only colour + opacity change */
.heroX__title {
  position: absolute; z-index: 2; left: 0; width: 100%; top: 50%; margin-top: -1.55em;
  text-align: center;
  font-family: var(--display); font-weight: 900; letter-spacing: var(--track-display);
  text-transform: uppercase; line-height: 0.92;
  font-size: clamp(2.6rem, 8.5vw, 8rem);
  will-change: opacity;
}
.heroX__title--a { color: #fff; }
.heroX__title--b { color: var(--ocean); opacity: 0; }
/* mobile: title sits just ABOVE the edge-to-edge butterfly; the pair is centred in the screen */
@media (max-width: 700px) {
  .partbf { width: 100vw; }
  .heroX__bfly { top: 57%; }
  .heroX__title { top: 30%; margin-top: 0; font-size: clamp(2rem, 9vw, 3.4rem); }
  .heroX__foot { gap: 0.6rem; }
  .heroX__find { font-size: 0.78rem; white-space: nowrap; }
  .heroX__scroll { display: none; }
}

.heroX__film {
  position: absolute; z-index: 3; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
}
.heroX__film { overflow: hidden; }
.heroX__film.is-live { pointer-events: auto; }
.film__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.heroX__film::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.12), rgba(0,0,0,0.5));
}
.film__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.philosophy__play {
  display: grid; place-items: center;
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.14); color: #fff; backdrop-filter: blur(4px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.philosophy__play svg { width: 34px; height: 34px; margin-left: 4px; }
.philosophy__play:hover { transform: scale(1.09); background: var(--ocean); color: #000; }

/* Fullscreen film player */
.ytmodal {
  position: fixed; inset: 0; z-index: 200; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.ytmodal[hidden] { display: none; }
.ytmodal__frame { width: 100%; height: 100%; }
.ytmodal__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.ytmodal__close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.14); color: #fff; font-size: 1.2rem; line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.ytmodal__close:hover { background: var(--ocean); color: #000; transform: rotate(90deg); }
.philosophy__label { font-family: var(--display); letter-spacing: 0.14em; font-size: 0.8rem; color: #fff; text-transform: uppercase; }
.philosophy__note { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

.heroX__foot {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 2.5rem);
}
.heroX__chip { display: inline-flex; }
.heroX__chip img { height: 16px; width: auto; }
.heroX__find { color: #fff; text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.heroX__find:hover { color: var(--ocean); }
.heroX__scroll { color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.18em; font-family: var(--display); }

.philosophy { background: #000; padding: clamp(4rem,9vw,8rem) clamp(1rem,4vw,3rem); }
.philosophy__line {
  max-width: 46rem; margin: 0 auto; text-align: center;
  font-size: clamp(1.2rem, 2.6vw, 2rem); font-weight: 500; line-height: 1.4; color: var(--white);
}
.philosophy__line::first-line { color: var(--dim); }

/* ---------- LIGHT ZONE ---------- */
.light { background: var(--cream); color: var(--ink); }
.light .cursor img { filter: drop-shadow(0 3px 7px rgba(0,0,0,0.25)); }

/* pills */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  border: none; border-radius: 999px; text-decoration: none;
  font: 700 0.95rem var(--font); padding: 0.85rem 1.5rem;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
}
.pill:hover { transform: translateY(-2px); }
.pill--dark { background: var(--ink); color: #fff; }
.pill--purple { background: var(--purple); color: #fff; }
.pill--green { background: var(--ocean); color: #000; }

/* Our movement */
.movement { padding: clamp(4rem,8vw,7rem) clamp(1rem,4vw,3rem) clamp(5rem,9vw,8rem); }
.movement__head { display: flex; align-items: center; gap: 1.5rem; justify-content: flex-end; }
.movement__rule { flex: 1; height: 3px; background: var(--ink); }
.movement__head h2 {
  font-family: var(--display); font-weight: 900; letter-spacing: var(--track-display);
  text-transform: uppercase; font-size: clamp(2.4rem, 6.5vw, 5.5rem); line-height: 0.9; color: var(--ink);
}
/* controls + titles above; map below (dropdown sits above the map) */
.movement__bar { position: relative; z-index: 10; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.movement__lead { font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 500; line-height: 1.25; max-width: 26rem; }
.movement__controls { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }
.movement__stat { font-family: var(--display); font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.05; color: var(--ink); text-align: right; }
.hl-purple { color: var(--purple); }
.hl-green { color: var(--dark-green); }

/* city selector dropdown */
.citysel { position: relative; }
.citymenu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 20; min-width: 240px;
  list-style: none; margin: 0; padding: 6px;
  background: #fff; border-radius: 16px; box-shadow: 0 22px 55px rgba(0,0,0,0.22); border: 1px solid rgba(11,11,13,0.08);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.citysel.is-open .citymenu { opacity: 1; visibility: visible; transform: none; }
.citymenu li { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.citymenu li em { margin-left: auto; font-style: normal; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(11,11,13,0.45); }
.citymenu li:hover { background: rgba(11,11,13,0.06); }
.cdot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.cdot--active { background: var(--purple); }
.cdot--soon { background: rgba(11,11,13,0.5); }
.cdot--contact { background: var(--dark-green); }

.movement__map {
  position: relative; z-index: 1; width: 100%; height: min(56vh, 560px); margin-top: 1.8rem; border-radius: 14px;
  background-color: #e7e3d9;  /* sea */
  overflow: hidden;
}
.map__img {
  position: absolute; left: 0; top: 0; width: 100%; height: auto; display: block;
  transform-origin: 0 0; will-change: transform;
}
.map__pins { position: absolute; inset: 0; pointer-events: none; }
/* pin = a dot always visible; the name appears on hover (avoids label collisions when zoomed) */
.mappin {
  position: absolute; transform: translate(-50%,-50%); text-decoration: none;
  pointer-events: auto; z-index: 2;
}
.mappin i {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  border: 2.5px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.15s var(--ease);
}
.mappin span {
  position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
  background: var(--ink); color: #fff; white-space: nowrap;
  font-family: var(--display); font-size: 0.66rem; letter-spacing: 0.04em;
  padding: 0.35rem 0.6rem; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.mappin:hover { z-index: 6; }
.mappin:hover i { transform: scale(1.35); }
.mappin:hover span { opacity: 1; }
.mappin--active i { background: var(--purple); }
.mappin--soon i { background: rgba(11,11,13,0.65); }
.mappin--contact i { background: var(--dark-green); }
.map__hint {
  position: absolute; left: 14px; bottom: 12px; z-index: 6;
  font-family: var(--display); font-size: 0.62rem; letter-spacing: 0.12em;
  color: rgba(11,11,13,0.5); text-transform: uppercase; pointer-events: none;
}

/* ---------- Attention: full-screen pinned narrative (grey→white text + notifications) ---------- */
.attention { position: relative; background: #000; height: 340vh; }
.attention__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.attention__center {
  position: relative; z-index: 3; max-width: 62rem; margin: 0 auto; text-align: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
.attention__title {
  font-family: var(--display); font-weight: 900; letter-spacing: var(--track-display);
  font-size: clamp(2.4rem, 6.2vw, 5.2rem); line-height: 1.02;
  color: rgba(245,245,245,0.2);
}
.at-part { display: block; }
.attention__body {
  max-width: 42rem; margin: clamp(1.6rem, 4vw, 3rem) auto 0; display: grid; gap: 1.2rem;
}
.attention__body p { font-size: clamp(1.05rem, 1.9vw, 1.4rem); line-height: 1.45; color: rgba(245,245,245,0.2); }
.attention__body strong { color: rgba(245,245,245,0.2); font-weight: 700; }
.attention__body { transform-origin: center center; will-change: transform; }
.attention .fw { color: inherit; }

/* the "outward pull" — social notifications (drift in + gently float) */
.attention__notifs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.notif { position: absolute; width: 330px; max-width: 82vw; opacity: 0; }
.notif__inner {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px; border-radius: 18px;
  background: rgba(28,28,32,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08); color: #fff;
  animation: notifFloat 5s ease-in-out infinite;
}
.notif--snap .notif__inner { animation-duration: 6.2s; animation-delay: -1.5s; }
.notif--msg  .notif__inner { animation-duration: 5.6s; animation-delay: -0.8s; }
.notif--wa   .notif__inner { animation-duration: 6.8s; animation-delay: -2.2s; }
@keyframes notifFloat {
  0%, 100% { transform: translate(0, 0) rotate(-1deg); }
  33% { transform: translate(4px, -6px) rotate(1.2deg); }
  66% { transform: translate(-4px, 4px) rotate(-0.6deg); }
}
.notif__icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 21px; }
.notif--ig .notif__icon { background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.notif--snap .notif__icon { background: #FFFC00; }
.notif--msg .notif__icon { background: linear-gradient(#5df07a,#16b74a); }
.notif--wa .notif__icon { background: #25D366; }
.notif__text { min-width: 0; flex: 1; }
.notif__top { display: flex; justify-content: space-between; gap: 10px; font-size: 0.82rem; }
.notif__top b { font-weight: 700; }
.notif__top span { color: rgba(255,255,255,0.5); }
.notif__text p { font-size: 0.86rem; color: rgba(255,255,255,0.85); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif--ig   { top: 13%;  left: 6%; }
.notif--snap { top: 23%;  right: 5%; }
.notif--msg  { bottom: 26%; left: 8%; }
.notif--wa   { bottom: 15%; right: 7%; }
@media (max-width: 860px) {
  .notif { width: 84vw; }
  .notif--ig { top: 7%; left: 8%; }
  .notif--snap { top: 19%; right: 8%; left: auto; }
  .notif--msg { bottom: 22%; left: 8%; }
  .notif--wa { bottom: 8%; right: 8%; left: auto; }
}

/* SPARK formats — stacked cards */
.formats { padding: clamp(4rem,8vw,7rem) clamp(1rem,4vw,3rem) clamp(6rem,11vw,10rem); }
.formats__head { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.formats__logo { height: clamp(28px, 4vw, 48px); width: auto; }
.formats__head p { color: rgba(11,11,13,0.6); font-size: 1.05rem; }
.stack { display: flex; flex-direction: column; gap: 1.2rem; }
.stackcard {
  position: sticky; top: 90px; border-radius: 18px; padding: clamp(1.8rem,3vw,2.8rem);
  min-height: 300px; box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  display: flex; align-items: stretch; gap: 0; overflow: hidden; cursor: pointer;
}
.stackcard__main { flex: 1 1 auto; display: grid; grid-template-rows: auto 1fr auto auto; gap: 1rem; align-content: center; }
.stackcard h3 { font-family: var(--display); font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 0.92; }
.stackcard p { max-width: 34rem; font-size: 1.05rem; line-height: 1.5; }
.stackcard__meta { display: flex; gap: 1.4rem; font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.1em; opacity: 0.7; }
.stackcard__go { justify-self: start; font-weight: 700; font-size: 0.95rem; padding: 0.7rem 1.3rem; border-radius: 999px; }
/* image appears on the right on hover */
.stackcard__thumb {
  flex: 0 0 auto; width: 36%; max-width: 0; opacity: 0; align-self: stretch; margin-left: 0;
  border-radius: 12px; overflow: hidden; display: grid; place-items: center;
  background: rgba(255,255,255,0.14);
  transition: max-width 0.45s var(--ease), opacity 0.4s var(--ease), margin-left 0.45s var(--ease);
}
.stackcard:hover .stackcard__thumb, .stackcard:focus-visible .stackcard__thumb { max-width: 36%; opacity: 1; margin-left: clamp(1rem, 3vw, 2.5rem); }
.stackcard__thumb span { font-family: var(--display); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; text-align: center; }
.stackcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.stackcard--black { background: var(--ink); color: #fff; }
.stackcard--black .stackcard__go { background: var(--ocean); color: #000; }
.stackcard--purple { background: var(--purple); color: #fff; }
.stackcard--purple .stackcard__go { background: #fff; color: var(--purple); }
.stackcard--green { background: #12d093; color: #002; }
.stackcard--green .stackcard__go { background: var(--ink); color: #fff; }

/* ---------- Event popup: full-screen detour (image left, scrollable info right) ---------- */
.emodal { position: fixed; inset: 0; z-index: 210; }
.emodal[hidden] { display: none; }
.emodal__panel {
  position: absolute; inset: 0; background: var(--cream); color: var(--ink);
  display: grid; grid-template-columns: minmax(300px, 38%) 1fr;
  animation: emIn 0.4s var(--ease);
}
@keyframes emIn { from { opacity: 0; } to { opacity: 1; } }
.emodal__img { position: relative; overflow: hidden; display: grid; place-items: center;
  background: linear-gradient(155deg, #1a1a22, #0b0b0f); }
.emodal__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.emodal__ph { font-family: var(--display); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.emodal__cta {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; color: var(--ink); text-decoration: none;
  font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 1.4rem; border-radius: 999px; transition: transform 0.2s;
}
.emodal__cta:hover { transform: translateY(-3px); }
.emodal__info {
  position: relative; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 6rem);
  display: flex; flex-direction: column; gap: 1.3rem;
}
.emodal__close {
  position: absolute; top: 24px; right: 28px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(11,11,13,0.15);
  background: transparent; color: var(--ink); cursor: pointer; font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.emodal__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.emodal__title { font-family: var(--display); font-weight: 900; letter-spacing: var(--track-display); text-transform: uppercase; line-height: 0.9; font-size: clamp(2.4rem, 5.5vw, 5rem); display: flex; flex-direction: column; }
.emodal__title em { font-style: normal; color: #b7b7bd; }
.emodal__meta { font-family: var(--display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(11,11,13,0.5); display: flex; gap: 1.4rem; }
.emodal__logo { margin: clamp(1.5rem, 4vw, 3rem) auto; }
.emodal__logo img { height: clamp(40px, 6vw, 64px); width: auto; display: block; }
.emodal__label { font-family: var(--display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(11,11,13,0.45); }
.emodal__desc { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; max-width: 40rem; color: rgba(11,11,13,0.82); }
.emodal__actions { display: flex; gap: 0.8rem; margin-top: 1.2rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .movement__bar { flex-direction: column; align-items: flex-start; }
  .movement__stat { text-align: left; }
  .movement__head { justify-content: space-between; }
  .stackcard { position: relative; top: 0; flex-direction: column; }
  .stackcard__thumb { display: none; }
  .emodal__panel { grid-template-columns: 1fr; grid-template-rows: 40vh 1fr; }
  .emodal__info { padding-top: 2.5rem; }
}

/* ---------- Nav adapts over light sections ---------- */
.nav--onlight .nav__links a { color: rgba(11,11,13,0.55); }
.nav--onlight .nav__links a:hover { color: var(--ink); }
.nav--onlight .nav__logo img { filter: invert(1); }
.nav--onlight .nav__lang { color: rgba(11,11,13,0.55); }
.nav--onlight .nav__lang button { color: rgba(11,11,13,0.55); }
.nav--onlight .nav__lang button.is-active { color: var(--ink); }
.nav--onlight .nav__burger span { background: var(--ink); }
.nav--onlight.is-scrolled { background: rgba(244,242,236,0.9); border-bottom-color: rgba(11,11,13,0.12); }

/* ---------- Stories from the community (green testimonials) ---------- */
.stories {
  background: #12d093; color: var(--ink);
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem);
}
.stories__title {
  text-align: center; font-family: var(--display); font-weight: 900;
  letter-spacing: var(--track-display); text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 6rem); line-height: 0.9; color: var(--ink);
}
.stories__cards {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 2rem); margin-top: clamp(2.5rem, 5vw, 4rem);
}
.storycard {
  position: relative; background: #fff; color: var(--ink);
  width: min(340px, 88vw); border-radius: 5px;
  padding: 1.6rem 1.6rem 4rem; box-shadow: 0 22px 55px rgba(0,0,0,0.16);
  transition: transform 0.3s var(--ease); cursor: default;
}
.storycard--a { transform: rotate(-3deg); }
.storycard--b { transform: rotate(1.5deg); margin-top: 1.6rem; }
.storycard--c { transform: rotate(-1.5deg); }
.storycard:hover { transform: rotate(0deg) translateY(-4px); z-index: 3; }
.storycard__mark { display: block; font-family: var(--display); font-weight: 900; font-size: 3rem; line-height: 0.5; }
.storycard__who { font-family: var(--display); font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(11,11,13,0.55); margin: 0.9rem 0 0.7rem; }
.storycard__text { font-size: 1.06rem; line-height: 1.42; }
.storycard__avatar {
  position: absolute; left: 1.6rem; bottom: 1.3rem; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--ocean));
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ---------- Giant footer wordmark (real logo, with butterfly) ---------- */
.footer__wordmark-img {
  display: block; width: 100%; height: auto;
  margin: clamp(2rem, 6vw, 5rem) 0 1.5rem;
}
