/* ============================================================
   Fun On Chain — Global Styles
   ============================================================ */

@font-face {
  font-family: "TheGlitch";
  src: url("fonts/THE-GLITCH.otf") format("opentype");
  font-weight: normal;
  font-display: swap;
}

:root {
  --bg:            #161616;
  --surface-1:     #1E1E1E;
  --surface-2:     #2A2A2A;
  --border:        #2E2E2E;
  --text:          #FFFFFF;
  --muted:         #888888;
  --faint:         #444444;
  --byte-green:    #5FBC5E;
  --chain-green:   #22B350;
  --spark-yellow:  #FED72C;

  --container: 1320px;
  --gutter: 40px;
  --section-pad: 120px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 90px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  margin: -300px 0 0 -300px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(95,188,94,0.04) 0%, transparent 60%);
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 300ms var(--ease), backdrop-filter 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__logo img { max-height: 47px; width: auto; transition: opacity 200ms var(--ease); }
.nav__logo:hover img { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  transition: color 200ms var(--ease);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 0;
  background: var(--byte-green);
  transition: width 250ms var(--ease);
}
.nav__links a:hover { color: var(--byte-green); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 250ms var(--ease), transform 200ms var(--ease-out);
  white-space: nowrap;
}
.nav__cta .btn__arrow { transition: transform 200ms var(--ease-out); }
.nav__cta:hover {
  background: var(--chain-green);
  color: var(--bg);
  border-color: var(--chain-green);
  box-shadow: 0 0 20px rgba(34,179,80,0.35);
}
.nav__cta:hover .btn__arrow { transform: translateX(3px); }

.nav__mobile-toggle {
  display: none;
  position: relative;
  width: 30px; height: 14px;
}
.nav__mobile-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 300ms var(--ease), top 300ms var(--ease);
}
.nav__mobile-toggle span:nth-child(1) { top: 2px; }
.nav__mobile-toggle span:nth-child(2) { top: 10px; }

/* ---- Nav overlay ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 max(var(--gutter), 6vw);
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay__close {
  position: absolute;
  top: 24px; right: var(--gutter);
  display: flex; align-items: center; gap: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  transition: color 200ms var(--ease);
}
.nav-overlay__close:hover { color: var(--byte-green); }

.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-overlay__link {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 300ms var(--ease), transform 300ms var(--ease);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.nav-overlay.is-open .nav-overlay__link {
  animation: linkIn 500ms var(--ease-out) forwards;
}
.nav-overlay.is-open .nav-overlay__link:nth-child(1) { animation-delay: 120ms; }
.nav-overlay.is-open .nav-overlay__link:nth-child(2) { animation-delay: 180ms; }
.nav-overlay.is-open .nav-overlay__link:nth-child(3) { animation-delay: 240ms; }
.nav-overlay.is-open .nav-overlay__link:nth-child(4) { animation-delay: 300ms; }
.nav-overlay__link:hover {
  color: var(--byte-green);
  transform: translateX(10px);
}
@keyframes linkIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav-overlay__social {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-overlay__social a { transition: color 200ms var(--ease); }
.nav-overlay__social a:hover { color: var(--spark-yellow); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-pad) 0; position: relative; }
.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  text-align: left;
  align-items: flex-start;
}
.section__label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--byte-green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section__label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.section__label--center {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 32px;
}
.section__head--center {
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.section__head--center .section__title { text-align: center; }
.section--clients {
  padding: 80px 0;
}
.section--clients .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-align: left;
}

/* Reveal state */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero::before {
  /* Extra depth: subtle vignette */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.6), transparent 60%),
    radial-gradient(ellipse at 0% 0%, rgba(0,0,0,0.4), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hero__glow--green {
  top: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: rgba(34, 179, 80, 0.10);
}
.hero__glow--yellow {
  top: 30%;
  right: 10%;
  width: 40vw;
  height: 40vw;
  background: rgba(254, 215, 44, 0.05);
}

.hero__character {
  position: absolute;
  left: var(--char-x, 49%);
  top: var(--char-y, 67%);
  transform: translate(-50%, -50%);
  height: var(--char-h, 66vh);
  max-height: 1040px;
  width: auto;
  z-index: 3;
  mix-blend-mode: normal;
  will-change: transform;
  pointer-events: none;
  opacity: 0;
  animation: characterIn 1200ms var(--ease-out) 200ms forwards;
}
@keyframes characterIn {
  to { opacity: 1; }
}
@keyframes characterIn {
  to { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(var(--tagline-y, -16vh));
}

.hero__subtitle:empty { display: none; margin: 0; }

.hero__tagline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.03em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em 0.35em;
  -webkit-text-stroke: 0.5px var(--text);
}
.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordIn 800ms var(--ease-out) forwards;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__word--glitch {
  position: relative;
  font-family: "Bricolage Grotesque", sans-serif;
  animation: wordIn 800ms var(--ease-out) forwards, glitch 2.6s infinite 1.2s;
}
@keyframes glitch {
  0%, 55% {
    text-shadow: none;
    transform: skewX(0) translate(0, 0);
    color: var(--text);
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
  62% {
    text-shadow: 3px 0 var(--byte-green), -3px 0 var(--spark-yellow);
    transform: skewX(-2deg) translate(-1px, 0);
    color: var(--byte-green);
    font-family: "TheGlitch", "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0;
  }
  72% {
    text-shadow: -3px 0 var(--spark-yellow), 3px 0 var(--byte-green);
    transform: skewX(1.5deg) translate(2px, -1px);
    color: var(--text);
    font-family: "TheGlitch", "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0;
  }
  82% {
    text-shadow: 2px 0 var(--byte-green);
    transform: skewX(-1deg) translate(-1px, 1px);
    color: var(--byte-green);
    font-family: "TheGlitch", "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0;
  }
  92% {
    text-shadow: 3px 0 var(--spark-yellow), -2px 0 var(--byte-green);
    transform: skewX(0.5deg);
    color: var(--text);
    font-family: "TheGlitch", "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0;
  }
  98%, 100% {
    text-shadow: none;
    transform: skewX(0);
    color: var(--text);
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
  }
}

.hero__subtitle {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  opacity: 0;
  animation: subIn 800ms var(--ease-out) 900ms forwards;
}
@keyframes subIn { to { opacity: 1; } }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: opacity 300ms var(--ease);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
.hero__scroll.is-hidden { opacity: 0; pointer-events: none; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat__value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   BENTO (PLATFORMS)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento__card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 220px;
  padding: 32px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
  color: var(--text);
}
/* Hover-reveal background image (set per platform via content.js) */
.bento__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 400ms var(--ease);
  z-index: 0;
  pointer-events: none;
}
.bento__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,11,11,0.55), rgba(11,11,11,0.9));
}
.bento__card:hover .bento__bg { opacity: 1; }
/* Touch devices have no hover — show the image always (dimmed) */
@media (hover: none) {
  .bento__bg { opacity: 1; }
}
.bento__top, .bento__bottom { position: relative; z-index: 1; }

.bento__card[data-size="3"] { grid-column: span 3; }
.bento__card[data-size="4"] { grid-column: span 4; }
.bento__card[data-size="5"] { grid-column: span 5; }
.bento__card[data-size="6"] { grid-column: span 6; }
.bento__card[data-size="12"] { grid-column: span 12; }

/* MAIN channel — subtle border tint + star next to logo */
.bento__card--main {
  border-color: rgba(95, 188, 94, 0.3);
}
.bento__card--main:hover {
  border-color: var(--byte-green);
}
.bento__icon-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bento__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  color: var(--byte-green);
  text-shadow: 0 0 12px rgba(95, 188, 94, 0.6);
  line-height: 1;
}

.bento__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.bento__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background-color 250ms var(--ease), color 250ms var(--ease);
}
.bento__icon svg { width: 22px; height: 22px; }
/* Image-based icon with filter recoloring — adapts to each context like the SVG currentColor pattern */
.icon-img {
  display: block;
  object-fit: contain;
  pointer-events: none;
  /* default size + tinted muted gray for the footer (slightly larger than SVGs to compensate for PNG padding) */
  width: 24px; height: 24px;
  filter: brightness(0) invert(0.55);
  transition: filter 250ms var(--ease);
}
/* Hover state in the footer → spark-yellow (matches other social icons) */
.footer__social a:hover .icon-img {
  filter: brightness(0) invert(1) sepia(1) saturate(8) hue-rotate(-10deg);
}
/* In the bento platforms grid → bigger, pure white, green on hover */
.bento__icon .icon-img {
  width: 34px; height: 34px;
  filter: brightness(0) invert(1);
}
.bento__card:hover .bento__icon .icon-img {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(75deg);
}

.bento__arrow {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease-out);
}
.bento__arrow svg { width: 14px; height: 14px; }

.bento__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.bento__name {
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.bento__hint {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-top: 6px;
  transition: color 250ms var(--ease);
}

.bento__stats {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  top: 0;
  z-index: 3;
  padding: 32px;
  background:
    linear-gradient(to top,
      rgba(10,10,10,0.98) 0%,
      rgba(10,10,10,0.95) 60%,
      rgba(10,10,10,0.85) 85%,
      rgba(10,10,10,0) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  gap: 36px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.bento__stat-num {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--byte-green);
  line-height: 1;
  letter-spacing: -0.01em;
}
.bento__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hover */
.bento__card:hover {
  border-color: var(--byte-green);
  box-shadow: 0 0 0 1px var(--byte-green), 0 20px 60px rgba(0,0,0,0.5);
}
.bento__card:hover .bento__icon {
  background: var(--chain-green);
  color: var(--bg);
}
.bento__card:hover .bento__arrow {
  color: var(--byte-green);
  border-color: var(--byte-green);
  transform: translate(3px, -3px);
}
.bento__card:hover .bento__hint { color: var(--byte-green); }
.bento__card:hover .bento__stats { transform: translateY(0); opacity: 1; }

/* ============================================================
   MOMENTS
   ============================================================ */
.moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.moment {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color 250ms var(--ease), transform 300ms var(--ease-out), box-shadow 300ms var(--ease);
  cursor: pointer;
}
.moment__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, #1a1a1a, #262626);
  display: flex;
  align-items: center;
  justify-content: center;
}
.moment__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 10px);
}
.moment__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.moment__placeholder {
  color: var(--faint);
}
.moment__placeholder svg { width: 44px; height: 44px; }

.moment__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.06);
}

.moment__body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.moment__metric {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 250ms var(--ease);
}
.moment__metric-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.moment__caption {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #BBB;
  line-height: 1.5;
}

.moment:hover {
  border-color: var(--byte-green);
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px var(--byte-green),
    0 0 12px rgba(95,188,94,0.55),
    0 0 32px rgba(34,179,80,0.35),
    0 0 64px rgba(34,179,80,0.18),
    0 20px 50px rgba(0,0,0,0.4);
}
.moment:hover .moment__img { transform: scale(1.04); }
.moment:hover .moment__metric { color: var(--byte-green); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  overflow: hidden;
}
.marquee__row {
  display: flex;
  gap: 14px;
  width: max-content;
  flex-wrap: nowrap;
}
.marquee__row--left  { animation: scroll-left  90s linear infinite; }
.marquee__row--right { animation: scroll-right 100s linear infinite; }
@keyframes scroll-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: border-color 250ms var(--ease), transform 250ms var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.85);
  transition: filter 250ms var(--ease);
  pointer-events: none;
}
.chip:hover {
  border-color: var(--byte-green);
  transform: translateY(-2px);
}
.chip:hover img { filter: grayscale(0) brightness(1); }
.chip__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 0;
  background: var(--surface-2);
  transition: color 250ms var(--ease), background 250ms var(--ease);
}
.chip:hover .chip__initials {
  color: var(--byte-green);
  background: rgba(95, 188, 94, 0.1);
}

/* ============================================================
   TESTIMONIALS — what they said
   ============================================================ */
.section--testimonials { padding-top: 40px; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.tcard {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 250ms var(--ease), transform 250ms var(--ease);
}
.tcard:hover {
  border-color: rgba(95, 188, 94, 0.45);
  transform: translateY(-2px);
}
.tcard__mark {
  position: absolute;
  top: 10px;
  left: 22px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--byte-green);
  opacity: 0.35;
  pointer-events: none;
}
.tcard__quote {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-1, #f3f4f6);
  margin: 0;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.tcard__attr {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tcard__name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.tcard__brand {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--byte-green);
  font-weight: 600;
}
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; gap: 16px; }
  .tcard { padding: 28px 22px 20px; }
}

/* ============================================================
   WHAT I DO — SERVICES
   ============================================================ */
.services-section .section__head { margin-bottom: 0; }

.services-list { margin-top: 64px; }

.services-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.service-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  cursor: default;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    background 0.4s var(--ease);
}
.service-row.in-view {
  opacity: 1;
  transform: translateX(0);
}
.service-row:hover {
  background: rgba(95, 188, 94, 0.018);
}

.service-row::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--gutter));
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--byte-green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-row:hover::before { transform: scaleY(1); }

.service-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  color: #242424;
  width: 120px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.4s ease;
  user-select: none;
}
.service-row:hover .service-number { color: rgba(95, 188, 94, 0.25); }

.service-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-left: 32px;
  transition: transform 0.4s ease;
  white-space: nowrap;
}
.service-row:hover .service-name { transform: translateX(8px); }

.service-descriptor {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #666666;
  max-width: 340px;
  text-align: right;
  line-height: 1.5;
  margin-left: auto;
  transition: color 0.4s ease;
}
.service-row:hover .service-descriptor { color: #999999; }

.service-arrow {
  margin-left: 40px;
  flex-shrink: 0;
  color: #333333;
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease, color 0.4s ease;
}
.service-row:hover .service-arrow {
  color: var(--byte-green);
  transform: translate(5px, -5px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: none;
}
.about__left { display: flex; flex-direction: column; gap: 28px; }
.about__media { position: relative; }
.about__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #000;
  cursor: pointer;
}
.about__sound {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 200ms var(--ease), color 200ms var(--ease);
}
.about__sound svg { width: 20px; height: 20px; }
.about__sound:hover { background: var(--byte-green); color: #000; }
.about__body { display: flex; flex-direction: column; gap: 20px; line-height: 1.75; }
.about__body p:first-child { font-size: 1.15rem; color: var(--text); }
.about__body p           { font-size: 1.05rem; color: #AAAAAA; }

.video-card {
  width: 100%;
  min-height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(34,179,80,0.08), transparent 60%),
    var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: border-color 250ms var(--ease);
  position: relative;
  overflow: hidden;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0 2px, transparent 2px 12px);
  pointer-events: none;
}
.video-card__play {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--byte-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: background-color 250ms var(--ease), color 250ms var(--ease), transform 250ms var(--ease-out);
  z-index: 1;
}
.video-card__play svg { margin-left: 3px; }
.video-card__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.video-card:hover { border-color: var(--byte-green); }
.video-card:hover .video-card__play {
  background: var(--chain-green);
  color: var(--bg);
  transform: scale(1.05);
}

/* ============================================================
   CONTACT
   ============================================================ */
.section--contact { padding: calc(var(--section-pad) + 20px) 0; }
.contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  text-align: left;
}
.contact__headline {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 12ch;
}
.contact__subtitle {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.contact__cta-row .btn { text-decoration: none; }
.btn__icon {
  flex-shrink: 0;
  display: inline-flex;
}

/* ============================================================
   BUTTONS — Neon Glow
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border: 1px solid var(--byte-green);
  border-radius: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  transition: background 250ms var(--ease), color 250ms var(--ease), border-color 250ms var(--ease), box-shadow 300ms var(--ease), transform 250ms var(--ease-out);
  font-size: 13px;
  will-change: transform;
  position: relative;
}
.btn__arrow { transition: transform 250ms var(--ease-out); }
.btn:hover {
  background: var(--chain-green);
  color: var(--bg);
  border-color: var(--chain-green);
  box-shadow:
    0 0 10px var(--byte-green),
    0 0 30px rgba(34,179,80,0.5),
    0 0 60px rgba(34,179,80,0.2);
  text-shadow: 0 0 10px rgba(254,215,44,0.4);
  transform: translateY(-2px);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0F0F0F;
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer__community-row {
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
}
.footer__community {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: rgba(95, 188, 94, 0.08);
  border: 1px solid rgba(95, 188, 94, 0.35);
  border-radius: 999px;
  color: var(--byte-green);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
  cursor: pointer;
}
.footer__community:hover {
  background: rgba(95, 188, 94, 0.16);
  border-color: rgba(95, 188, 94, 0.6);
}
.footer__community-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer__community .btn__arrow {
  transition: transform 250ms var(--ease);
}
.footer__community:hover .btn__arrow { transform: translateX(4px); }
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__logo { justify-self: start; }
.footer__logo img { height: 52px; opacity: 0.6; transition: opacity 250ms var(--ease); }
.footer__logo:hover img { opacity: 1; }
.footer__copy { font-size: 12px; color: var(--faint); letter-spacing: 0.04em; text-align: center; justify-self: center; }
.footer__social {
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer__social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: var(--faint);
  transition: color 250ms var(--ease);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { color: var(--spark-yellow); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.modal.is-open { display: block; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 250ms var(--ease);
}
.modal__box {
  position: relative;
  width: min(560px, calc(100% - 40px));
  margin: 8vh auto;
  background: #1A1A1A;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  animation: modalIn 350ms var(--ease-out) forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { to { transform: translateY(0) scale(1); opacity: 1; } }

.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.modal__close:hover { background: var(--byte-green); color: var(--bg); }
.modal__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--byte-green);
  font-weight: 700;
}
.modal__title {
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.form__field em { font-style: normal; color: var(--faint); font-size: 10px; }
.form__field input,
.form__field textarea {
  background: #111;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--byte-green);
  background: #141414;
}
.form .btn { align-self: stretch; justify-content: center; margin-top: 10px; }

.form__success {
  text-align: center;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: var(--byte-green);
}
.form__success p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* ============================================================
   WHAT I MAKE — combined work section
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.work-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 250ms var(--ease), transform 250ms var(--ease);
}
.work-card:hover {
  border-color: var(--byte-green);
  transform: translateY(-4px);
}
.work-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #262626);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease);
}
.work-card:hover .work-card__img { transform: scale(1.04); }
.work-card__video { display: block; pointer-events: none; }
.work-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(95,188,94,0.15);
  border: 1.5px solid var(--byte-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--byte-green);
}
.work-card__icon svg { width: 26px; height: 26px; }
.work-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}
.work-card__count {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--byte-green);
  background: rgba(0,0,0,0.7);
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 250ms var(--ease);
  z-index: 1;
}
.work-card:hover .work-card__overlay { background: rgba(0,0,0,0.4); }
.work-card__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--byte-green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease);
}
.work-card__play svg { width: 24px; height: 24px; margin-left: 3px; }
.work-card:hover .work-card__play { opacity: 1; transform: scale(1); }
.work-card__body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.work-card__cat {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}
.work-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.work-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--byte-green);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.work-card__cta svg { width: 16px; height: 16px; transition: transform 250ms var(--ease); }
.work-card__cta:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   ARCHIVE MODAL (opens when "view archive" is clicked)
   ============================================================ */
.work-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.work-modal.is-open { display: flex; }
.work-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.work-modal__panel {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: min(1100px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
}
.work-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 60px;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 250ms var(--ease);
  font-family: inherit;
}
.work-modal__close:hover { border-color: var(--byte-green); }
.work-modal__title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 8px;
}
.work-modal__sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}
.work-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.wm-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 250ms var(--ease);
}
.wm-item:hover { transform: translateY(-2px); }
.wm-item__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a, #262626);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 250ms var(--ease);
}
.wm-item:hover .wm-item__thumb { border-color: var(--byte-green); }
.wm-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease);
}
.wm-item:hover .wm-item__img { transform: scale(1.04); }
.wm-item__play {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.8;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), opacity 250ms var(--ease);
}
.wm-item:hover .wm-item__play {
  background: var(--byte-green);
  border-color: var(--byte-green);
  color: #000;
  opacity: 1;
}
.wm-item__play svg { width: 18px; height: 18px; margin-left: 2px; }
.wm-item__caption {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wm-item:hover .wm-item__caption { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  :root { --section-pad: 80px; --gutter: 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__mobile-toggle { display: block; color: var(--text); }
  .nav--open .nav__mobile-toggle span:nth-child(1) { top: 6px; transform: rotate(45deg); }
  .nav--open .nav__mobile-toggle span:nth-child(2) { top: 6px; transform: rotate(-45deg); }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__card[data-size="5"],
  .bento__card[data-size="4"],
  .bento__card[data-size="3"],
  .bento__card[data-size="6"] { grid-column: span 6; }
  .moments { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card__body { padding: 20px; }
  .work-card__cat { font-size: 22px; }
  .work-modal__panel { padding: 24px 20px; max-height: 90vh; }
  .work-modal__title { font-size: 26px; }
  .work-modal__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .video-card { aspect-ratio: 16 / 9; min-height: 0; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 0; padding: 40px var(--gutter); }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); padding: 20px 12px; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .hero__character { height: 40vh; opacity: 0.95; }
  .hero__content { padding: 0 var(--gutter); }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__logo, .footer__social { justify-self: center; }
  .form__row { grid-template-columns: 1fr; }
  .modal__box { padding: 36px 28px; margin: 5vh auto; }
}
