/* ==========================================================================
   Calais motion — portfolio styles
   Cinematic dark studio + warm amber/copper accent
   ========================================================================== */

:root {
  --bg-deep: #0a0908;
  --bg-studio: #12100e;
  --bg-elevated: #1a1714;
  --bg-line: rgba(232, 220, 200, 0.12);
  --text-primary: #f3ece2;
  --text-muted: rgba(243, 236, 226, 0.62);
  --text-faint: rgba(243, 236, 226, 0.38);
  --amber: #e8a45a;
  --amber-soft: rgba(232, 164, 90, 0.18);
  --copper: #c4723a;
  --copper-deep: #8a4a22;
  --focus: #f0c48a;

  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-sm: 2px;
  --radius-md: 6px;
  --header-h: 4.25rem;
  --max: 85rem;
  --gutter: clamp(0.9rem, 2.5vw, 2.25rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.55s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sq-anim,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  background:
    radial-gradient(ellipse 90% 55% at 15% -10%, rgba(196, 114, 58, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 8%, rgba(232, 164, 90, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-studio) 40%, var(--bg-deep) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--amber);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--bg-line);
  background: rgba(10, 9, 8, 0.88);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.site-logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(232, 164, 90, 0.45);
  border-radius: 0.35rem;
  background: linear-gradient(145deg, rgba(40, 30, 22, 0.95), rgba(10, 9, 8, 0.98));
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.site-logo__glitch {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  color: #fff6ea;
  animation: logo-glitch 2.8s steps(2, end) infinite;
}

.site-logo__mark::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 164, 90, 0.35), transparent);
  animation: logo-scan 2.8s var(--ease-out) infinite;
}

.site-logo__word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  overflow: hidden;
}

.site-logo__line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: inline-block;
  animation: logo-draw-in 1.1s var(--ease-out) both;
}

.site-logo__line--accent {
  font-weight: 500;
  color: var(--amber);
  animation-delay: 0.12s;
}

@keyframes logo-glitch {
  0%,
  90%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
    text-shadow: none;
  }
  92% {
    opacity: 0.85;
    transform: translate(-1px, 1px);
    text-shadow: 1px 0 #e8a45a, -1px 0 #fff6ea;
  }
  94% {
    opacity: 1;
    transform: translate(1px, -1px);
    text-shadow: -1px 0 #e8a45a;
  }
  96% {
    transform: translate(0, 0);
  }
}

@keyframes logo-scan {
  0% { transform: translateX(0); opacity: 0; }
  15% { opacity: 0.9; }
  45% { transform: translateX(280%); opacity: 0.35; }
  100% { transform: translateX(280%); opacity: 0; }
}

@keyframes logo-draw-in {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.nav-toggle {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bar {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle__bar + .nav-toggle__bar {
  position: absolute;
  margin-top: 0.45rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(0.225rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-0.225rem) rotate(-45deg);
  margin-top: 0;
}

.site-nav__list {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.site-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
  will-change: transform;
}

.btn--primary {
  background: var(--amber);
  color: #1a1008;
  box-shadow: 0 10px 28px rgba(232, 164, 90, 0.22);
}

.btn--primary:hover {
  background: #f0b56e;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(232, 164, 90, 0.32);
}

.btn--ghost {
  border-color: rgba(232, 220, 200, 0.28);
  color: var(--text-primary);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Hero — studio intro (calaischen.com style)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  padding: clamp(3rem, 10vh, 6rem) 0 clamp(3.5rem, 9vh, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero--studio {
  background: #0b0a09;
  padding-top: 0;
  padding-bottom: 0;
  align-items: stretch;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__inner--intro {
  display: block;
}

.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2rem;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media-wash {
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(ellipse 70% 60% at 78% 40%, rgba(232, 164, 90, 0.34), transparent 55%),
    radial-gradient(ellipse 55% 50% at 12% 80%, rgba(138, 74, 34, 0.4), transparent 55%),
    linear-gradient(160deg, #14110e 0%, #0b0a09 45%, #120e0b 100%);
  animation: wash-drift 10s ease-in-out infinite alternate;
}

.hero__media-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.hero__media-orb--a {
  width: min(36vw, 24rem);
  height: min(36vw, 24rem);
  right: 4%;
  top: 8%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 244, 230, 0.5), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(232, 164, 90, 0.4), rgba(20, 14, 10, 0.15) 70%);
  animation: float-a 7s ease-in-out infinite;
}

.hero__media-orb--b {
  width: min(22vw, 12rem);
  height: min(22vw, 12rem);
  left: 6%;
  bottom: 16%;
  background: radial-gradient(circle at 40% 40%, rgba(196, 114, 58, 0.35), transparent 70%);
  animation: float-b 9s ease-in-out infinite;
}

.hero__media-orb--c {
  width: min(14vw, 8rem);
  height: min(14vw, 8rem);
  right: 32%;
  bottom: 22%;
  border: 1px solid rgba(232, 164, 90, 0.35);
  background: transparent;
  animation: float-c 6.5s ease-in-out infinite;
}

.hero__media-grid {
  position: absolute;
  inset: -8%;
  background-image:
    linear-gradient(rgba(243, 236, 226, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 236, 226, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 55% 50% at 72% 42%, black 10%, transparent 70%);
  opacity: 0.55;
  animation: grid-pan 16s linear infinite;
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: radial-gradient(ellipse 65% 70% at 72% 45%, black 20%, transparent 75%);
}

.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 236, 210, 0.95);
  box-shadow: 0 0 12px rgba(232, 164, 90, 0.65);
  animation: particle-rise linear infinite;
  opacity: 0;
}

.hero__scan {
  position: absolute;
  left: 40%;
  right: 0;
  height: 28%;
  top: -30%;
  background: linear-gradient(180deg, transparent, rgba(232, 164, 90, 0.12), transparent);
  animation: scan-sweep 5s ease-in-out infinite;
}

/* Right stage — Motion / 3D visual */
.hero__stage {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: min(62vh, 34rem);
  display: grid;
  place-items: center;
  perspective: 900px;
  transform-style: preserve-3d;
}

.stage__glow {
  position: absolute;
  width: min(78%, 26rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 244, 230, 0.35), transparent 28%),
    radial-gradient(circle, rgba(232, 164, 90, 0.28), transparent 68%);
  filter: blur(8px);
  animation: orb-pulse 4s ease-in-out infinite;
}

.stage__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 164, 90, 0.35);
  box-shadow: 0 0 24px rgba(232, 164, 90, 0.12);
}

.stage__ring--outer {
  width: min(88%, 30rem);
  aspect-ratio: 1;
  border-color: rgba(243, 236, 226, 0.18);
  animation: stage-spin 28s linear infinite;
}

.stage__ring--mid {
  width: min(68%, 23rem);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(232, 164, 90, 0.4);
  animation: stage-spin 18s linear infinite reverse;
}

.stage__ring--inner {
  width: min(42%, 14rem);
  aspect-ratio: 1;
  border-color: rgba(240, 196, 138, 0.55);
  animation: stage-spin 12s linear infinite;
}

.stage__orbit {
  position: absolute;
  width: min(68%, 23rem);
  aspect-ratio: 1;
  animation: stage-spin 10s linear infinite;
}

.stage__sat {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-left: -0.35rem;
  border-radius: 50%;
  background: #fff4e4;
  box-shadow: 0 0 18px rgba(232, 164, 90, 0.85);
}

.stage__sphere {
  position: relative;
  width: min(38%, 11.5rem);
  aspect-ratio: 1;
  z-index: 2;
  animation: float-a 6s ease-in-out infinite;
}

.stage__sphere-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 250, 240, 0.95), transparent 18%),
    radial-gradient(circle at 50% 48%, rgba(240, 180, 110, 0.95), rgba(120, 60, 28, 0.92) 52%, #0a0908 78%);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(232, 164, 90, 0.4),
    inset -14px -18px 36px rgba(0, 0, 0, 0.5);
}

.stage__sphere-shine {
  position: absolute;
  inset: 18% 22% auto auto;
  width: 28%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.35);
  filter: blur(2px);
}

.stage__cube {
  position: absolute;
  width: 4.8rem;
  height: 4.8rem;
  top: 18%;
  right: 12%;
  transform-style: preserve-3d;
  animation: stage-cube 14s linear infinite;
  z-index: 3;
}

.stage__cube .face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(243, 236, 226, 0.32);
  background:
    linear-gradient(145deg, rgba(232, 164, 90, 0.4), rgba(26, 23, 20, 0.55)),
    rgba(40, 30, 22, 0.8);
  backface-visibility: hidden;
}

.stage__cube .face--front { transform: translateZ(2.4rem); }
.stage__cube .face--back { transform: rotateY(180deg) translateZ(2.4rem); }
.stage__cube .face--right { transform: rotateY(90deg) translateZ(2.4rem); background: rgba(196, 114, 58, 0.5); }
.stage__cube .face--left { transform: rotateY(-90deg) translateZ(2.4rem); background: rgba(30, 24, 18, 0.9); }
.stage__cube .face--top { transform: rotateX(90deg) translateZ(2.4rem); background: rgba(243, 220, 190, 0.28); }
.stage__cube .face--bottom { transform: rotateX(-90deg) translateZ(2.4rem); background: rgba(10, 9, 8, 0.95); }

.stage__tag {
  position: absolute;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.1vw, 0.78rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 226, 0.72);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(232, 164, 90, 0.28);
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.stage__tag--motion {
  top: 14%;
  left: 8%;
  color: var(--amber);
  animation: tag-float 5s ease-in-out infinite;
}

.stage__tag--gen {
  top: 28%;
  right: 6%;
  animation: tag-float 6.5s ease-in-out -1s infinite;
}

.stage__tag--design {
  bottom: 26%;
  left: 6%;
  animation: tag-float 7s ease-in-out -2s infinite;
}

.stage__tag--generalist {
  bottom: 14%;
  right: 10%;
  color: #f0c48a;
  animation: tag-float 5.5s ease-in-out -0.5s infinite;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.78) 0%, rgba(11, 10, 9, 0.35) 42%, rgba(11, 10, 9, 0.12) 72%, rgba(11, 10, 9, 0.4) 100%),
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 35%, rgba(8, 7, 6, 0.5) 100%);
  z-index: 1;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 2;
}

.hero__content--intro {
  position: relative;
  z-index: 3;
  max-width: 40rem;
}

.hero__hello {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.hero__headline--xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text-primary);
  margin-bottom: 1.15rem;
  text-wrap: balance;
  background: linear-gradient(120deg, #fff8ee 10%, #f3ece2 45%, var(--amber) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__focus {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

.hero__focus em {
  font-style: normal;
  color: var(--amber);
  font-weight: 500;
}

.hero__bio {
  max-width: 36rem;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  color: var(--text-faint);
  margin-bottom: 1.85rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn--hero {
  min-height: 3.15rem;
  padding: 0.8rem 1.55rem;
  font-size: 0.95rem;
  border-radius: 0.35rem;
}

.btn--hero.btn--primary {
  box-shadow:
    0 14px 36px rgba(232, 164, 90, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--hero.btn--ghost {
  backdrop-filter: blur(8px);
  background: rgba(243, 236, 226, 0.03);
  border-color: rgba(232, 220, 200, 0.32);
}

.btn--hero.btn--ghost:hover {
  background: rgba(232, 164, 90, 0.08);
}

/* Squarespace-like clip / fade / blur entrance */
.sq-anim {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(1.75rem);
  clip-path: inset(0 0 100% 0);
  animation: sq-enter 0.95s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes sq-enter {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(1.75rem);
    clip-path: inset(0 0 100% 0);
  }
  55% {
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes wash-drift {
  from { transform: scale(1.04) translate3d(-3%, -1%, 0); }
  to { transform: scale(1.12) translate3d(3%, 2%, 0); }
}

@keyframes float-a {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-10px, -22px, 0); }
}

@keyframes float-b {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -16px, 0); }
}

@keyframes float-c {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(-8px, 12px, 0) rotate(14deg); }
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes grid-pan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-56px, -56px, 0); }
}

@keyframes scan-sweep {
  0% { top: -35%; opacity: 0; }
  20% { opacity: 0.85; }
  80% { opacity: 0.4; }
  100% { top: 110%; opacity: 0; }
}

@keyframes particle-rise {
  0% {
    transform: translateY(20px) scale(0.4);
    opacity: 0;
  }
  20% { opacity: 1; }
  100% {
    transform: translateY(-260px) scale(1.1);
    opacity: 0;
  }
}

@keyframes stage-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes stage-cube {
  0% { transform: rotateX(-18deg) rotateY(0deg); }
  100% { transform: rotateX(-18deg) rotateY(360deg); }
}

@keyframes tag-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.1rem); }
}

@media (max-width: 900px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: auto;
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: 1.75rem;
  }

  .hero__stage {
    min-height: min(42vh, 20rem);
    width: min(100%, 24rem);
    margin-inline: auto;
  }

  .stage__cube {
    width: 3.6rem;
    height: 3.6rem;
  }

  .stage__cube .face--front { transform: translateZ(1.8rem); }
  .stage__cube .face--back { transform: rotateY(180deg) translateZ(1.8rem); }
  .stage__cube .face--right { transform: rotateY(90deg) translateZ(1.8rem); }
  .stage__cube .face--left { transform: rotateY(-90deg) translateZ(1.8rem); }
  .stage__cube .face--top { transform: rotateX(90deg) translateZ(1.8rem); }
  .stage__cube .face--bottom { transform: rotateX(-90deg) translateZ(1.8rem); }

  .stage__tag--design,
  .stage__tag--generalist {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sq-anim {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
  }
}

.mesh {
  position: absolute;
  transform-style: preserve-3d;
}

.mesh {
  position: absolute;
  transform-style: preserve-3d;
}

/* Floating cube */
.mesh--cube {
  width: 7.5rem;
  height: 7.5rem;
  top: 18%;
  left: 42%;
  animation: spin-cube 16s linear infinite;
}

.mesh--cube .face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(243, 236, 226, 0.28);
  background:
    linear-gradient(145deg, rgba(232, 164, 90, 0.35), rgba(26, 23, 20, 0.55)),
    rgba(40, 30, 22, 0.75);
  box-shadow: inset 0 0 30px rgba(232, 164, 90, 0.15);
  backface-visibility: hidden;
}

.face--front { transform: translateZ(3.75rem); }
.face--back { transform: rotateY(180deg) translateZ(3.75rem); background: rgba(90, 50, 28, 0.7); }
.face--right { transform: rotateY(90deg) translateZ(3.75rem); background: rgba(196, 114, 58, 0.45); }
.face--left { transform: rotateY(-90deg) translateZ(3.75rem); background: rgba(30, 24, 18, 0.85); }
.face--top { transform: rotateX(90deg) translateZ(3.75rem); background: rgba(243, 220, 190, 0.22); }
.face--bottom { transform: rotateX(-90deg) translateZ(3.75rem); background: rgba(10, 9, 8, 0.9); }

/* Glossy sphere + orbital rings */
.mesh--sphere {
  width: 11rem;
  height: 11rem;
  top: 34%;
  left: 8%;
  animation: float-y 7s ease-in-out infinite;
}

.sphere__core {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 250, 240, 1), transparent 16%),
    radial-gradient(circle at 48% 42%, rgba(240, 180, 110, 0.95), rgba(120, 60, 28, 0.95) 52%, #0a0908 78%);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.6),
    0 0 55px rgba(232, 164, 90, 0.35),
    inset -18px -22px 40px rgba(0, 0, 0, 0.55),
    inset 8px 10px 20px rgba(255, 244, 230, 0.12);
}

.sphere__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 164, 90, 0.55);
  box-shadow: 0 0 18px rgba(232, 164, 90, 0.15);
}

.sphere__ring--a {
  transform: rotateX(72deg) rotateZ(18deg) scale(1.15);
  animation: ring-spin-a 10s linear infinite;
}

.sphere__ring--b {
  border-color: rgba(243, 236, 226, 0.28);
  transform: rotateX(72deg) rotateY(55deg) scale(1.35);
  animation: ring-spin-b 14s linear infinite reverse;
}

/* Soft torus / donut form */
.mesh--torus {
  width: 8.5rem;
  height: 8.5rem;
  top: 8%;
  right: 6%;
  animation: float-torus 9s ease-in-out infinite;
}

.torus__body {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.65rem solid transparent;
  background:
    linear-gradient(#1a1410, #1a1410) padding-box,
    conic-gradient(from 40deg, #8a4a22, #e8a45a, #f3ece2, #c4723a, #8a4a22) border-box;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 30px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 0 20px rgba(232, 164, 90, 0.2));
}

.torus__body::before {
  content: "";
  position: absolute;
  inset: -0.4rem;
  border-radius: 50%;
  border: 1px solid rgba(243, 236, 226, 0.15);
}

/* Thick product slab */
.mesh--slab {
  width: 10rem;
  height: 1.6rem;
  bottom: 18%;
  left: 28%;
  transform-style: preserve-3d;
  animation: float-y 8s ease-in-out -1s infinite;
}

.slab__face {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  border-radius: 0.35rem;
}

.slab__face--a {
  background: linear-gradient(90deg, #c4723a, #e8a45a 45%, #f0c48a);
  transform: translateZ(0.8rem);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.slab__face--b {
  height: 1.6rem;
  background: #5a3018;
  transform: rotateX(-90deg) translateZ(0.8rem);
  transform-origin: bottom;
}

.slab__face--c {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  transform: rotateY(90deg) translateZ(5rem);
  width: 1.6rem;
  left: auto;
  right: 0;
}

/* Angular prism */
.mesh--prism {
  width: 5.5rem;
  height: 5.5rem;
  bottom: 28%;
  right: 18%;
  animation: spin-prism 18s linear infinite;
}

.prism__face {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border: 1px solid rgba(243, 236, 226, 0.2);
}

.prism__face--a {
  background: linear-gradient(160deg, rgba(232, 164, 90, 0.65), rgba(40, 28, 18, 0.9));
  transform: translateZ(1.4rem);
}

.prism__face--b {
  background: rgba(90, 50, 28, 0.85);
  transform: rotateY(120deg) translateZ(1.4rem);
}

.prism__face--c {
  background: rgba(20, 16, 12, 0.95);
  transform: rotateY(-120deg) translateZ(1.4rem);
}

/* Thin chip / UI panel */
.mesh--chip {
  width: 6.5rem;
  height: 4.2rem;
  top: 58%;
  left: 62%;
  animation: float-chip 6.5s ease-in-out -3s infinite;
}

.chip__body {
  position: absolute;
  inset: 0;
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, rgba(243, 236, 226, 0.12), transparent 40%),
    linear-gradient(180deg, #2a221a, #12100e);
  border: 1px solid rgba(232, 164, 90, 0.35);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.chip__body::before,
.chip__body::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 2px;
  background: rgba(232, 164, 90, 0.45);
}

.chip__body::before { top: 28%; width: 45%; right: auto; }
.chip__body::after { top: 48%; opacity: 0.55; }

.chip__edge {
  position: absolute;
  inset: auto 0 -0.45rem 0;
  height: 0.45rem;
  background: #5a3418;
  border-radius: 0 0 0.45rem 0.45rem;
  transform: skewX(-8deg);
}

@keyframes brand-shimmer {
  0%,
  100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes beam-drift {
  from { opacity: 0.22; }
  to { opacity: 0.55; }
}

@keyframes pedestal-pulse {
  0%,
  100% { opacity: 0.65; transform: translateX(-50%) rotateX(70deg) scale(1); }
  50% { opacity: 0.95; transform: translateX(-50%) rotateX(70deg) scale(1.08); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.06); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.1rem); }
}

@keyframes spin-cube {
  from { transform: rotateX(-18deg) rotateY(0deg); }
  to { transform: rotateX(-18deg) rotateY(360deg); }
}

@keyframes spin-prism {
  from { transform: rotateY(0deg) rotateX(12deg); }
  to { transform: rotateY(360deg) rotateX(12deg); }
}

@keyframes ring-spin-a {
  from { transform: rotateX(72deg) rotateZ(0deg) scale(1.15); }
  to { transform: rotateX(72deg) rotateZ(360deg) scale(1.15); }
}

@keyframes ring-spin-b {
  from { transform: rotateX(72deg) rotateY(55deg) rotateZ(0deg) scale(1.35); }
  to { transform: rotateX(72deg) rotateY(55deg) rotateZ(360deg) scale(1.35); }
}

@keyframes float-chip {
  0%, 100% { transform: rotateY(-25deg) rotateX(18deg) translateY(0); }
  50% { transform: rotateY(-25deg) rotateX(18deg) translateY(-1rem); }
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: var(--space-3xl) 0;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section__header {
  max-width: 36rem;
  margin-bottom: var(--space-xl);
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section__lede {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out),
    filter 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* --------------------------------------------------------------------------
   Cursor + scroll progress
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--copper), var(--amber), #f0c48a);
  box-shadow: 0 0 12px rgba(232, 164, 90, 0.45);
  transform-origin: left center;
  pointer-events: none;
}

.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor.is-on {
  display: block;
}

.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: #fff;
}

.cursor__ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s ease;
}

.cursor.is-hover .cursor__ring {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
}

.cursor.is-press .cursor__ring {
  width: 28px;
  height: 28px;
}

/* --------------------------------------------------------------------------
   Hero extras
   -------------------------------------------------------------------------- */

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black 20%, transparent 75%);
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 236, 210, 0.9);
  box-shadow: 0 0 12px rgba(232, 164, 90, 0.65);
  animation: particle-rise linear infinite;
  opacity: 0;
}

@keyframes particle-rise {
  0% {
    transform: translateY(30px) scale(0.35);
    opacity: 0;
  }
  20% { opacity: 1; }
  100% {
    transform: translateY(-260px) scale(1.15);
    opacity: 0;
  }
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.75rem;
  animation: rise-in 1s var(--ease-out) 0.48s both;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3.25rem;
  background: linear-gradient(180deg, var(--amber), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
  box-shadow: 0 0 12px rgba(232, 164, 90, 0.35);
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--bg-line);
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.7), rgba(10, 9, 8, 0.9));
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-move 32s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding-right: 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: -0.01em;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(232, 164, 90, 0.45);
  flex-shrink: 0;
}

@keyframes marquee-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Craft / process
   -------------------------------------------------------------------------- */

.craft {
  border-top: 1px solid var(--bg-line);
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(196, 114, 58, 0.1), transparent 55%),
    transparent;
}

.craft__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: var(--space-xl);
  perspective: 1000px;
}

.craft-card {
  position: relative;
  padding: 1.35rem 1.2rem 1.5rem;
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(40, 32, 24, 0.85), rgba(14, 12, 10, 0.95));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.craft-card:hover {
  border-color: rgba(232, 164, 90, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(232, 164, 90, 0.08);
}

.craft-card__index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.craft-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0.65rem 0 0.45rem;
}

.craft-card__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.craft-card__visual {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 55%;
  aspect-ratio: 1;
  opacity: 0.45;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.3s ease;
}

.craft-card:hover .craft-card__visual {
  opacity: 0.75;
  transform: translateY(-8px) scale(1.05);
}

.craft-card__visual--concept {
  background:
    radial-gradient(circle at 40% 40%, rgba(232, 164, 90, 0.55), transparent 55%),
    conic-gradient(from 120deg, transparent, rgba(243, 236, 226, 0.15), transparent 60%);
  border-radius: 50%;
  animation: float-y 6s ease-in-out infinite;
}

.craft-card__visual--build {
  background: linear-gradient(145deg, rgba(232, 164, 90, 0.55), rgba(60, 35, 18, 0.9));
  transform: rotate(18deg) skewY(-8deg);
  box-shadow: 12px 16px 0 rgba(0, 0, 0, 0.3);
}

.craft-card__visual--animate {
  border-radius: 50%;
  border: 2px solid rgba(232, 164, 90, 0.5);
  box-shadow: inset 0 0 30px rgba(232, 164, 90, 0.2);
  animation: orbit-spin 10s linear infinite;
}

.craft-card__visual--deliver {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(160deg, rgba(232, 164, 90, 0.7), rgba(40, 28, 18, 0.95));
}

.tool-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tool-rail li {
  padding: 0.45rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-sm);
  background: rgba(26, 23, 20, 0.65);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.tool-rail li:hover {
  color: var(--amber);
  border-color: rgba(232, 164, 90, 0.4);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Demo reel
   -------------------------------------------------------------------------- */

.reel {
  border-top: 1px solid var(--bg-line);
  background:
    linear-gradient(180deg, rgba(26, 23, 20, 0.55) 0%, transparent 40%),
    transparent;
}

.reel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.reel__frame {
  perspective: 1200px;
}

.reel__player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(232, 164, 90, 0.22), transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(138, 74, 34, 0.4), transparent 50%),
    linear-gradient(145deg, #1c1814 0%, #0d0c0b 100%);
  border: 1px solid var(--bg-line);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(232, 164, 90, 0.12);
  transform: rotateY(-4deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease-out);
}

.reel__frame:hover .reel__player {
  transform: rotateY(0deg) rotateX(0deg);
}

.reel__depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

.reel__orb {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  top: 22%;
  left: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 244, 230, 0.7), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(232, 164, 90, 0.55), rgba(20, 14, 10, 0.95) 70%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: float-y 6s ease-in-out infinite;
}

.reel__box {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  right: 20%;
  bottom: 28%;
  background: linear-gradient(145deg, rgba(232, 164, 90, 0.55), rgba(60, 35, 18, 0.9));
  border: 1px solid rgba(243, 236, 226, 0.2);
  transform: rotate(18deg) skewY(-6deg);
  box-shadow: 12px 18px 0 rgba(0, 0, 0, 0.35);
  animation: float-y 7.5s ease-in-out -1.5s infinite;
}

.reel__player::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 236, 226, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 236, 226, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
  transform: perspective(600px) rotateX(55deg) scale(1.4);
  transform-origin: center 80%;
  mask-image: linear-gradient(180deg, transparent, black 40%, transparent);
}

.reel__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background 0.3s ease;
}

.reel__play:hover {
  background: rgba(10, 9, 8, 0.18);
}

.reel__play-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid rgba(243, 236, 226, 0.35);
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(8px);
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out), background 0.25s ease;
  animation: play-breathe 2.8s ease-in-out infinite;
}

@keyframes play-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 164, 90, 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(232, 164, 90, 0); }
}

.reel__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent var(--amber);
}

.reel__play:hover .reel__play-icon,
.reel__player.is-active .reel__play-icon {
  border-color: var(--amber);
  background: rgba(232, 164, 90, 0.12);
  transform: scale(1.05);
}

.reel__timecode {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  pointer-events: none;
}

.reel__timecode-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.reel__timecode-value {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--amber);
  transition: transform 0.25s var(--ease-out), opacity 0.25s ease;
}

.reel__timecode-value.is-tick {
  animation: time-tick 0.35s var(--ease-out);
}

@keyframes time-tick {
  from { opacity: 0.35; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.reel__active-title {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 3;
  max-width: 45%;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  pointer-events: none;
}

.reel__chapters-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-md);
}

.chapter-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  max-height: min(28rem, 70vh);
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: var(--copper-deep) transparent;
}

.chapter {
  width: 100%;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  text-align: left;
  padding: 0.7rem 0.65rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.chapter:hover {
  background: rgba(243, 236, 226, 0.04);
}

.chapter.is-active {
  background: var(--amber-soft);
  border-left-color: var(--amber);
}

.chapter__time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
}

.chapter.is-active .chapter__time {
  color: var(--amber);
}

.chapter__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.chapter.is-active .chapter__name {
  color: var(--text-primary);
}

.chapter__range {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   Work / Projects — bento gallery
   -------------------------------------------------------------------------- */

.work {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-line);
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(196, 114, 58, 0.1), transparent 55%),
    transparent;
}

.work__glow {
  position: absolute;
  width: min(50vw, 30rem);
  height: min(50vw, 30rem);
  left: -10%;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 164, 90, 0.12), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.work__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: var(--space-xl);
}

.work__header {
  margin-bottom: 0;
  max-width: 36rem;
}

.work__stats {
  display: flex;
  gap: 1rem;
}

.work__stat {
  min-width: 5.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(232, 220, 200, 0.14);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(40, 32, 24, 0.9), rgba(14, 12, 10, 0.95));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.work__stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #fff6ea, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.work__stat-label {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  max-width: 100%;
  margin-bottom: var(--space-xl);
  padding: 0.4rem;
  border: 1px solid rgba(232, 220, 200, 0.12);
  border-radius: 999px;
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(12px);
}

.filter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.25s var(--ease-out);
}

.filter:hover {
  color: var(--text-primary);
  background: rgba(243, 236, 226, 0.06);
}

.filter.is-active {
  color: #1a1008;
  background: linear-gradient(135deg, #f0b56e, var(--amber) 55%, var(--copper));
  box-shadow: 0 6px 18px rgba(232, 164, 90, 0.28);
}

.filter__count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
  min-width: 1.1rem;
  text-align: center;
}

.filter:not(.is-active) .filter__count {
  color: var(--text-faint);
  opacity: 1;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}

.project {
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.project--featured,
.project--wide {
  grid-column: auto;
}

.project.is-hidden {
  display: none;
}

.project__link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 200, 0.12);
  background: linear-gradient(180deg, #1c1814 0%, #110e0c 100%);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out), box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.project__link:hover {
  border-color: rgba(232, 164, 90, 0.45);
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(232, 164, 90, 0.1),
    0 0 40px rgba(232, 164, 90, 0.08);
}

.project__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  flex: 1;
  background: #14110e;
}

.project__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.45s ease;
  filter: saturate(1.05) contrast(1.02);
}

.project__link:hover .project__img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05) brightness(1.04);
}

.project__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 9, 8, 0.15) 70%, rgba(10, 9, 8, 0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

.project__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 244, 230, 0.18) 48%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}

.project__link:hover .project__shine {
  animation: shine-sweep 0.9s var(--ease-out);
}

@keyframes shine-sweep {
  to { transform: translateX(120%); }
}

.project__mesh {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  z-index: 1;
  transition: transform 0.55s var(--ease-out);
}

.project__mesh::before,
.project__mesh::after {
  content: "";
  position: absolute;
  transform-style: preserve-3d;
}

.project__mesh[data-shape="bars"]::before {
  width: 55%;
  height: 42%;
  background: linear-gradient(90deg, transparent 0 8%, rgba(232, 164, 90, 0.8) 8% 14%, transparent 14% 28%, rgba(243, 236, 226, 0.55) 28% 34%, transparent 34% 48%, rgba(196, 114, 58, 0.75) 48% 56%, transparent 56%);
  transform: rotateX(48deg) rotateZ(-8deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.project__mesh[data-shape="type"]::before {
  width: 48%;
  height: 48%;
  border: 2px solid rgba(232, 164, 90, 0.7);
  border-radius: 0.35rem;
  transform: rotateY(-28deg) rotateX(18deg);
  box-shadow: 16px 18px 0 rgba(90, 50, 28, 0.55);
}

.project__mesh[data-shape="punch"]::before {
  width: 38%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #e8a45a, #5a3018);
  transform: rotateX(-20deg) rotateY(35deg);
  box-shadow: 18px 22px 0 rgba(0, 0, 0, 0.4);
}

.project__mesh[data-shape="orbit"]::before {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(232, 164, 90, 0.55);
  box-shadow: inset 0 0 30px rgba(232, 164, 90, 0.2);
  animation: orbit-spin 12s linear infinite;
}

.project__mesh[data-shape="orbit"]::after {
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff6ea, #c4723a 55%, #1a1008);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.project__mesh[data-shape="product"]::before {
  width: 52%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, #8a4a22, #e8a45a 50%, #f3ece2);
  transform: rotateX(60deg) scaleY(1.4);
  box-shadow: 0 28px 40px rgba(0, 0, 0, 0.45);
}

.project__mesh[data-shape="mark"]::before {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6ea, #e8a45a 40%, #3a2010 75%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.project__mesh[data-shape="toy"]::before,
.project__mesh[data-shape="toy"]::after {
  width: 28%;
  aspect-ratio: 1;
  border-radius: 30% 70% 55% 45%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 244, 230, 0.7), #c4723a 55%, #2a1810);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.project__mesh[data-shape="toy"]::before {
  transform: translate(-35%, -10%) rotate(-12deg);
}

.project__mesh[data-shape="toy"]::after {
  transform: translate(40%, 18%) rotate(18deg) scale(0.85);
  opacity: 0.85;
}

.project__mesh[data-shape="ear"]::before {
  width: 26%;
  aspect-ratio: 0.7;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0c48a, #8a4a22);
  transform: rotateX(20deg) rotateZ(-18deg);
  box-shadow: 10px 16px 0 rgba(0, 0, 0, 0.35);
}

.project__mesh[data-shape="ornament"]::before {
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff6ea, #e8a45a 35%, #4a2010 75%);
  box-shadow: 0 0 40px rgba(232, 164, 90, 0.25), 0 18px 30px rgba(0, 0, 0, 0.4);
}

.project__mesh[data-shape="play"]::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4rem 0 1.4rem 2.3rem;
  border-color: transparent transparent transparent rgba(232, 164, 90, 0.9);
  filter: drop-shadow(12px 14px 0 rgba(0, 0, 0, 0.35));
  transform: rotateY(-20deg);
}

.project__mesh[data-shape="moon"]::before {
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 35%, #2a221a, #0a0908 70%);
  box-shadow:
    inset -12px -8px 0 rgba(232, 164, 90, 0.35),
    0 16px 30px rgba(0, 0, 0, 0.45);
}

.project__mesh[data-shape="ui"]::before {
  width: 48%;
  height: 34%;
  border-radius: 0.45rem;
  background: linear-gradient(160deg, rgba(243, 236, 226, 0.12), rgba(26, 20, 14, 0.95));
  border: 1px solid rgba(232, 164, 90, 0.4);
  transform: rotateX(28deg) rotateY(-22deg);
  box-shadow: 14px 22px 0 rgba(0, 0, 0, 0.35);
}

.project__link:hover .project__mesh {
  transform: scale(1.08) translateY(-6px);
}

@keyframes mesh-nudge {
  0% { transform: translateZ(0) scale(1); }
  50% { transform: translateZ(24px) scale(1.06); }
  100% { transform: translateZ(12px) scale(1.03); }
}

@keyframes orbit-spin {
  from { transform: rotateZ(0deg) rotateX(65deg); }
  to { transform: rotateZ(360deg) rotateX(65deg); }
}

@keyframes float-torus {
  0%, 100% { transform: rotateX(18deg) rotateZ(-8deg) translateY(0); }
  50% { transform: rotateX(28deg) rotateZ(10deg) translateY(-1rem); }
}

@keyframes tilt-torus {
  0%, 100% { transform: rotateX(18deg) rotateZ(-8deg); }
  50% { transform: rotateX(28deg) rotateZ(10deg); }
}

.project__visual--typo {
  background:
    linear-gradient(135deg, rgba(232, 164, 90, 0.25), transparent 50%),
    repeating-linear-gradient(-12deg, transparent, transparent 18px, rgba(243, 236, 226, 0.06) 18px, rgba(243, 236, 226, 0.06) 19px),
    #1e1a16;
}

.project__visual--typo-alt {
  background:
    linear-gradient(200deg, rgba(196, 114, 58, 0.3), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(243, 236, 226, 0.08), transparent 40%),
    #181512;
}

.project__visual--punch {
  background:
    radial-gradient(circle at 40% 60%, rgba(232, 164, 90, 0.35), transparent 40%),
    linear-gradient(160deg, #2a2118, #0f0e0c);
}

.project__visual--ai {
  background:
    conic-gradient(from 210deg at 60% 40%, rgba(232, 164, 90, 0.2), transparent 40%, rgba(138, 74, 34, 0.35)),
    #151310;
}

.project__visual--product {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(232, 164, 90, 0.4), transparent 45%),
    linear-gradient(180deg, #221c16, #0c0b0a);
}

.project__visual--logo {
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 236, 226, 0.12), transparent 35%),
    linear-gradient(45deg, #1a1511, #0e0d0b);
}

.project__visual--toys {
  background:
    radial-gradient(circle at 30% 40%, rgba(232, 164, 90, 0.28), transparent 35%),
    radial-gradient(circle at 75% 65%, rgba(196, 114, 58, 0.25), transparent 40%),
    #17130f;
}

.project__visual--earphone {
  background:
    linear-gradient(125deg, rgba(232, 164, 90, 0.18), transparent 40%),
    radial-gradient(circle at 65% 45%, rgba(243, 236, 226, 0.1), transparent 30%),
    #14110e;
}

.project__visual--xmas {
  background:
    radial-gradient(circle at 50% 20%, rgba(232, 164, 90, 0.35), transparent 40%),
    linear-gradient(180deg, #2a1810, #0d0b0a);
}

.project__visual--play {
  background:
    linear-gradient(90deg, rgba(232, 164, 90, 0.15) 0 2px, transparent 2px) 0 0 / 28px 28px,
    linear-gradient(rgba(232, 164, 90, 0.15) 0 2px, transparent 2px) 0 0 / 28px 28px,
    radial-gradient(circle at 40% 50%, rgba(196, 114, 58, 0.3), transparent 50%),
    #161310;
}

.project__visual--midnight {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(90, 70, 50, 0.45), transparent 50%),
    linear-gradient(180deg, #0a0a0c, #1a1410);
}

.project__visual--figma {
  background:
    linear-gradient(160deg, rgba(232, 164, 90, 0.22), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(243, 236, 226, 0.08), transparent 35%),
    #171412;
}

.project__body {
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0;
  padding: 1.1rem 1.15rem 1.2rem;
  border-top: 1px solid rgba(232, 220, 200, 0.08);
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.95), rgba(12, 10, 9, 0.98));
}

.project__tags {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  pointer-events: none;
}

.project__tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.project.is-flash .project__link {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(232, 164, 90, 0.35);
}

.project__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0;
}

.project__year,
.project__status {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 226, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.project__status {
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.5rem;
  border: 1px solid rgba(232, 164, 90, 0.4);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(6px);
  text-shadow: none;
}

.project__meta {
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

.project__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.project__cta::after {
  content: "→";
  transition: transform 0.25s var(--ease-out);
}

.project__link:hover .project__cta {
  color: var(--amber);
  transform: translateX(2px);
}

.project__link:hover .project__cta::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Ai lab — from sound-and-song page
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Play lab — from /play page
   -------------------------------------------------------------------------- */

.play-lab {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-line);
  padding-bottom: 0;
  background:
    radial-gradient(ellipse 50% 45% at 100% 10%, rgba(232, 164, 90, 0.1), transparent 55%),
    transparent;
}

.play-lab__glow {
  position: absolute;
  width: min(40vw, 26rem);
  height: min(40vw, 26rem);
  left: -8%;
  bottom: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 114, 58, 0.16), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.play-lab__header {
  max-width: 36rem;
}

.play-lab__intro {
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 var(--space-xl);
}

.play-lab__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: var(--space-xl);
  perspective: 1000px;
}

.play-card {
  position: relative;
  min-height: 12.5rem;
  padding: 1.25rem 1.15rem 1.35rem;
  border: 1px solid rgba(232, 220, 200, 0.12);
  border-radius: 0.85rem;
  background: linear-gradient(160deg, rgba(40, 32, 24, 0.88), rgba(14, 12, 10, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.play-card:hover {
  border-color: rgba(232, 164, 90, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 28px rgba(232, 164, 90, 0.08);
}

.play-card__index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.play-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.4rem;
  position: relative;
  z-index: 1;
}

.play-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
  max-width: 16rem;
}

.play-card__visual {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 55%;
  aspect-ratio: 1;
  opacity: 0.45;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.3s ease;
}

.play-card:hover .play-card__visual {
  opacity: 0.75;
  transform: translateY(-8px) scale(1.05);
}

.play-card__visual--type {
  background:
    repeating-linear-gradient(-12deg, transparent, transparent 10px, rgba(232, 164, 90, 0.35) 10px, rgba(232, 164, 90, 0.35) 12px),
    radial-gradient(circle at 40% 40%, rgba(243, 236, 226, 0.12), transparent 55%);
  border-radius: 0.4rem;
  transform: rotate(-8deg);
}

.play-card__visual--trans {
  background: linear-gradient(115deg, transparent 35%, rgba(232, 164, 90, 0.55) 48%, transparent 62%);
  border-radius: 50%;
  animation: float-y 6s ease-in-out infinite;
}

.play-card__visual--mat {
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 244, 230, 0.75), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(232, 164, 90, 0.7), rgba(20, 14, 10, 0.95) 72%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.play-card__visual--form {
  background: linear-gradient(145deg, rgba(232, 164, 90, 0.65), rgba(60, 35, 18, 0.95));
  transform: rotate(18deg) skewY(-8deg);
  box-shadow: 12px 16px 0 rgba(0, 0, 0, 0.3);
}

.play-card__visual--move {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(160deg, rgba(232, 164, 90, 0.75), rgba(40, 28, 18, 0.95));
}

.play-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 164, 90, 0.18), transparent 45%),
    linear-gradient(160deg, rgba(50, 38, 28, 0.95), rgba(14, 12, 10, 0.98));
}

.play-card--cta .btn {
  width: fit-content;
  margin-top: 0.35rem;
}

.play-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-line);
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.55), rgba(10, 9, 8, 0.9));
  padding: 1.35rem 0;
}

.play-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-move 28s linear infinite;
}

.play-marquee:hover .play-marquee__track {
  animation-play-state: paused;
}

.play-marquee__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  white-space: nowrap;
}

.play-marquee__dash {
  color: var(--amber);
  font-weight: 500;
}

.ai-lab {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-line);
  background:
    radial-gradient(ellipse 55% 50% at 0% 30%, rgba(232, 164, 90, 0.1), transparent 55%),
    transparent;
}

.ai-lab__glow {
  position: absolute;
  width: min(45vw, 28rem);
  height: min(45vw, 28rem);
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 114, 58, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.ai-lab__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: var(--space-xl);
}

.ai-lab__header {
  margin-bottom: 0;
}

.ai-lab__intro {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 32rem;
  margin: 0;
}

.ai-lab__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: var(--space-xl);
}

.ai-step {
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid rgba(232, 220, 200, 0.12);
  border-radius: 0.75rem;
  background: linear-gradient(160deg, rgba(40, 32, 24, 0.85), rgba(14, 12, 10, 0.95));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.ai-step:hover {
  border-color: rgba(232, 164, 90, 0.4);
  transform: translateY(-4px);
}

.ai-step__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.ai-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.4rem;
}

.ai-step__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ai-case {
  display: grid;
  grid-template-columns: minmax(14rem, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(232, 220, 200, 0.12);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(28, 22, 18, 0.95), rgba(12, 10, 9, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.ai-case__visual {
  position: relative;
  min-height: 16rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 200, 0.1);
  background:
    radial-gradient(circle at 40% 40%, rgba(232, 164, 90, 0.28), transparent 45%),
    linear-gradient(160deg, #221a14, #0c0b0a);
}

.ai-case__orb {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  top: 28%;
  left: 27%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 244, 230, 0.8), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(232, 164, 90, 0.7), rgba(20, 14, 10, 0.95) 72%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  animation: float-y 7s ease-in-out infinite;
}

.ai-case__ring {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 164, 90, 0.4);
  animation: orbit-spin 14s linear infinite;
}

.ai-case__badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(232, 164, 90, 0.35);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(6px);
}

.ai-case__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.55rem;
}

.ai-case__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}

.ai-case__text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.ai-case__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ai-meta-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(232, 220, 200, 0.1);
  border-radius: 0.55rem;
  background: rgba(18, 14, 12, 0.75);
}

.ai-meta-card__label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.ai-meta-card__value {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.ai-case__workflow {
  margin-bottom: 1.35rem;
  padding-top: 0.25rem;
}

.ai-case__sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}

.ai-case__workflow p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ai-case__workflow strong {
  color: var(--amber);
  font-weight: 600;
}

.about {
  border-top: 1px solid var(--bg-line);
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(196, 114, 58, 0.12), transparent 55%),
    transparent;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.about__header {
  margin-bottom: var(--space-md);
  max-width: none;
}

.about__media {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
}

.about__portrait {
  position: relative;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(232, 220, 200, 0.14);
  background: #0c0b0a;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(232, 164, 90, 0.08);
  transform: rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.about__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.about__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10, 9, 8, 0.72) 100%),
    linear-gradient(135deg, rgba(232, 164, 90, 0.12), transparent 40%);
  pointer-events: none;
}

.about__portrait-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(243, 236, 226, 0.85);
}

.about__lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  max-width: 34rem;
}

.about__bio {
  display: grid;
  gap: 0.95rem;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 40rem;
}

.about__bio p {
  margin: 0;
}

.about__invite {
  color: var(--text-primary) !important;
}

.about__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
  padding-left: 0;
}

.about__focus li {
  position: relative;
  padding: 0.45rem 0.85rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  border: 1px solid rgba(232, 220, 200, 0.14);
  border-radius: 999px;
  background: rgba(26, 23, 20, 0.65);
}

.about__focus li::before {
  display: none;
}

.about__contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: var(--space-lg);
}

.about__contact-link {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--amber);
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
  width: fit-content;
}

.about__contact-link:hover {
  color: var(--focus);
  transform: translateX(3px);
}

.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.about__name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Footer — balanced columns + studio depth
   -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-line);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 80% at 85% 0%, rgba(196, 114, 58, 0.14), transparent 55%),
    linear-gradient(180deg, #12100e 0%, #0a0908 100%);
}

.site-footer__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-footer__glow {
  position: absolute;
  width: min(40vw, 28rem);
  height: min(40vw, 28rem);
  right: -6%;
  bottom: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 164, 90, 0.22), transparent 70%);
  filter: blur(40px);
}

.site-footer__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5%;
  height: 55%;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(243, 236, 226, 0.04) 40px, rgba(243, 236, 226, 0.04) 41px),
    repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(243, 236, 226, 0.035) 40px, rgba(243, 236, 226, 0.035) 41px);
  transform: perspective(700px) rotateX(62deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(180deg, transparent, black 45%, transparent 95%);
  opacity: 0.7;
}

.site-footer__orb {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  right: clamp(2rem, 10vw, 8rem);
  top: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 244, 230, 0.75), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(232, 164, 90, 0.7), rgba(20, 14, 10, 0.95) 72%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(232, 164, 90, 0.15);
  animation: float-y 7s ease-in-out infinite;
  opacity: 0.85;
}

.site-footer__cube {
  position: absolute;
  width: 2.75rem;
  height: 2.75rem;
  right: clamp(7rem, 18vw, 14rem);
  top: 42%;
  background: linear-gradient(145deg, rgba(232, 164, 90, 0.65), rgba(60, 35, 18, 0.95));
  border: 1px solid rgba(243, 236, 226, 0.2);
  transform: rotate(22deg) skewY(-8deg);
  box-shadow: 10px 14px 0 rgba(0, 0, 0, 0.35);
  animation: float-y 8.5s ease-in-out -2s infinite;
  opacity: 0.75;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
}

.site-footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.site-footer__logo span {
  color: var(--amber);
  font-weight: 500;
}

.site-footer__tag {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

.site-footer__pitch {
  max-width: 24rem;
  color: var(--text-faint);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.site-footer__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.site-footer__nav,
.site-footer__links,
.site-footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.site-footer__nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
}

.site-footer__nav a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.site-footer__chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(232, 220, 200, 0.18);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(40, 32, 24, 0.9), rgba(18, 14, 12, 0.95));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.site-footer__chip:hover {
  border-color: rgba(232, 164, 90, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(232, 164, 90, 0.08);
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.25s var(--ease-out);
}

.social-pill:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.social-pill__mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.35rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 244, 230, 0.55), transparent 35%),
    linear-gradient(145deg, rgba(232, 164, 90, 0.7), rgba(60, 35, 18, 0.95));
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.social-pill__mark--web {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 244, 230, 0.7), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(232, 164, 90, 0.75), #1a1008 75%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.social-pill__mark--about {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.35));
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 2rem;
  align-items: end;
}

.site-footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer__disclaimer {
  grid-column: 1 / -1;
  max-width: 42rem;
  color: var(--text-faint);
  font-size: 0.8rem;
  line-height: 1.55;
}

.site-footer__top-link {
  justify-self: end;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-footer__top-link:hover {
  border-bottom-color: var(--amber);
  color: var(--focus);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .craft__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-lab__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-lab__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: clamp(0.9rem, 4vw, 1.25rem);
    --header-h: 3.85rem;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 55;
    background: rgba(10, 9, 8, 0.97);
    border-bottom: 1px solid var(--bg-line);
    padding: 0.85rem var(--gutter) 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.25s ease, visibility 0.25s;
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.2rem;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.15rem;
    font-size: 1.05rem;
  }

  .reel__layout,
  .about__layout,
  .site-footer__top,
  .ai-lab__head,
  .ai-case,
  .work__head {
    grid-template-columns: 1fr;
  }

  .ai-case__meta {
    grid-template-columns: 1fr;
  }

  .about__media {
    position: static;
    max-width: 22rem;
    width: 100%;
  }

  .about__portrait {
    transform: none;
    width: 100%;
  }

  .site-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__orb,
  .site-footer__cube {
    opacity: 0.4;
  }

  .reel__active-title {
    max-width: min(58%, 14rem);
    font-size: 0.82rem;
  }

  .chapter-list {
    max-height: 16rem;
  }

  .filters {
    width: 100%;
    max-width: 100%;
    border-radius: 1rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .section__header {
    max-width: 100%;
  }

  .cursor {
    display: none !important;
  }

  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: auto;
  }

  body {
    background-attachment: scroll;
    font-size: 1rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero--studio {
    min-height: auto;
  }

  .hero__inner--split {
    padding-top: calc(var(--header-h) + 0.85rem);
    padding-bottom: 1.5rem;
  }

  .hero__content--intro {
    max-width: 100%;
  }

  .hero__headline--xl {
    font-size: clamp(2rem, 9.5vw, 3.1rem);
    max-width: 12ch;
  }

  .hero__focus,
  .hero__bio {
    max-width: 100%;
  }

  .hero__stage {
    min-height: 16.5rem;
    width: 100%;
    max-width: 20rem;
  }

  .stage__tag {
    font-size: 0.6rem;
    padding: 0.28rem 0.5rem;
    letter-spacing: 0.12em;
  }

  .stage__cube {
    width: 3rem;
    height: 3rem;
    right: 8%;
    top: 14%;
  }

  .stage__cube .face--front { transform: translateZ(1.5rem); }
  .stage__cube .face--back { transform: rotateY(180deg) translateZ(1.5rem); }
  .stage__cube .face--right { transform: rotateY(90deg) translateZ(1.5rem); }
  .stage__cube .face--left { transform: rotateY(-90deg) translateZ(1.5rem); }
  .stage__cube .face--top { transform: rotateX(90deg) translateZ(1.5rem); }
  .stage__cube .face--bottom { transform: rotateX(-90deg) translateZ(1.5rem); }

  .hero__media-orb--a {
    width: min(70vw, 16rem);
    height: min(70vw, 16rem);
    opacity: 0.45;
  }

  .hero__media-orb--b,
  .hero__media-orb--c {
    opacity: 0.35;
  }

  .hero__scroll {
    display: none !important;
  }

  .reel__player {
    transform: none;
  }

  .reel__timecode,
  .reel__active-title {
    bottom: 0.75rem;
  }

  .reel__timecode {
    left: 0.75rem;
    font-size: 0.72rem;
  }

  .reel__active-title {
    right: 0.75rem;
    max-width: 52%;
  }

  .project-list,
  .craft__grid,
  .ai-lab__steps,
  .play-lab__grid,
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .site-footer__cols {
    gap: 1.75rem;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-footer__top-link {
    justify-self: start;
  }

  .site-footer__orb {
    width: 3.25rem;
    height: 3.25rem;
    top: 8%;
  }

  .site-footer__cube {
    width: 1.85rem;
    height: 1.85rem;
    top: 22%;
  }

  .section {
    padding: clamp(3rem, 10vw, 4.5rem) 0;
  }

  .section__title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .marquee__group {
    font-size: 0.9rem;
    gap: 1rem;
    padding-right: 1rem;
  }

  .play-marquee__track,
  .marquee__track {
    animation-duration: 26s;
  }

  .about__ctas {
    flex-wrap: wrap;
  }

  .tool-rail {
    gap: 0.45rem;
  }

  .tool-rail li {
    font-size: 0.66rem;
    padding: 0.4rem 0.65rem;
  }

  .project__link,
  .play-card,
  .craft-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 0.85rem;
  }

  .site-logo__word {
    gap: 0;
  }

  .site-logo__line {
    font-size: 0.92rem;
  }

  .hero__hello {
    font-size: 1.2rem;
  }

  .hero__headline--xl {
    font-size: clamp(1.85rem, 10vw, 2.45rem);
    margin-bottom: 0.85rem;
  }

  .hero__focus {
    font-size: 1rem;
  }

  .hero__bio {
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
  }

  .hero__stage {
    min-height: 14.5rem;
    max-width: 100%;
  }

  .stage__tag--gen {
    display: none;
  }

  .hero__ctas,
  .about__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn--hero {
    width: 100%;
    justify-content: center;
  }

  .chapter {
    grid-template-columns: 4.5rem 1fr;
    gap: 0.45rem;
    padding: 0.65rem 0.4rem;
  }

  .chapter__name {
    font-size: 0.9rem;
  }

  .filters {
    padding: 0.3rem;
    gap: 0.3rem;
    border-radius: 0.85rem;
  }

  .filter {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .ai-step,
  .play-card,
  .craft-card {
    min-width: 0;
  }

  .site-footer__disclaimer {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .hero__stage {
    min-height: 12.5rem;
  }

  .stage__tag--motion {
    left: 2%;
    top: 10%;
  }
}
