/* ==========================================================================
   Tempsys — landing page
   Built on the tokens in variables.css (dark canvas, cream type, taxonomy hues)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--color-just-black);
  color: var(--color-surface-cream);
  font-family: var(--font-mori);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--color-shockingly-green); color: var(--color-just-black); }

/* ---------- Utilities ---------- */
.section {
  width: min(100% - 32px, var(--page-max-width));
  margin-inline: auto;
}
@media (min-width: 768px) { .section { width: min(100% - 64px, var(--page-max-width)); } }

.muted { color: var(--color-surface-50); }
.c-green  { color: var(--color-shockingly-green); }
.c-pink   { color: var(--color-pink); }
.c-orange { color: var(--color-orangey); }
.c-lilac  { color: var(--color-lilac); }
.c-blue   { color: var(--color-blue); }

.text-gradient {
  background: var(--gradient-shockingly-green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  padding-right: 0.04em;
}

.annotation {
  font-size: var(--text-body);
  color: var(--color-surface-cream);
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing-24);
}

.label {
  color: var(--accent, var(--color-shockingly-green));
  font-size: 24px;
  margin-bottom: var(--spacing-12);
}

.h-lg {
  font-size: clamp(44px, 7.4vw, var(--text-heading-lg));
  line-height: var(--leading-heading-lg);
  letter-spacing: -0.011em;
  font-weight: var(--font-weight-semibold);
}
.h-md {
  font-size: clamp(32px, 3.4vw, var(--text-heading-sm));
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: var(--font-weight-semibold);
}
.body-lg {
  font-size: clamp(19px, 1.6vw, var(--text-body-lg));
  line-height: var(--leading-body-lg);
  letter-spacing: var(--tracking-body-lg);
  color: var(--color-surface-50);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: var(--radius-buttons);
  border: 1px solid var(--color-surface-cream);
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.05;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: border-color .3s, color .3s, transform .3s;
}
.btn:hover { border-color: rgba(255, 252, 225, .6); }

.btn--gradient {
  position: relative;
  border-color: transparent;
  background:
    linear-gradient(var(--color-just-black), var(--color-just-black)) padding-box,
    var(--gradient-shockingly-green) border-box;
  border-width: 1.5px;
}
.btn--gradient:hover { color: var(--color-light-green); border-color: transparent; }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--color-just-black);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: var(--spacing-24);
}
.loader__word {
  display: flex;
  overflow: hidden;
  font-size: clamp(56px, 12vw, 160px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.loader__word span { display: inline-block; }
.loader__bar {
  width: min(280px, 60vw);
  height: 2px;
  background: var(--color-surface-25);
  border-radius: 2px;
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  background: var(--gradient-shockingly-green);
  transform-origin: left;
  transform: scaleX(0);
}
.loader__count { font-size: var(--text-caption); color: var(--color-surface-50); font-variant-numeric: tabular-nums; }
.no-js .loader { display: none; }

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--color-surface-cream);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 90;
  display: grid;
  place-items: center;
  opacity: 0;
}
.cursor__label {
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-just-black);
  opacity: 0;
  white-space: nowrap;
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Progress ---------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 60;
  pointer-events: none;
}
.progress i {
  display: block;
  height: 100%;
  background: var(--gradient-shockingly-green);
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--spacing-24);
  padding: 16px;
  transition: background .4s;
}
@media (min-width: 768px) { .nav { padding: 18px 32px; } }
.nav.is-scrolled {
  background: rgba(14, 16, 15, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: var(--font-weight-semibold);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nav__mark { width: 30px; height: 30px; }
.nav__links { display: none; gap: 6px; }
.nav__links a {
  position: relative;
  padding: 10px 12px;
  font-size: var(--text-body-sm);
  color: var(--color-surface-50);
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 6px;
  height: 1px;
  background: var(--color-surface-cream);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.nav__links a:hover { color: var(--color-surface-cream); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: none; padding: 12px 20px; font-size: 16px; }

.nav__toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-surface-25);
  display: grid; place-content: center; gap: 6px;
}
.nav__toggle i { display: block; width: 18px; height: 1.5px; background: var(--color-surface-cream); transition: transform .4s; }
.nav__toggle[aria-expanded="true"] i:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] i:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--color-just-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 96px 16px 32px;
  clip-path: circle(0% at calc(100% - 38px) 38px);
  visibility: hidden;
}
.menu a {
  font-size: clamp(44px, 12vw, 76px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.menu__cta { color: var(--color-shockingly-green); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 16px 48px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 140px 32px 56px; } }

.hero__blobs { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.blob-drag {
  position: absolute;
  left: var(--x); top: var(--y);
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
}
.blob-drag:active { cursor: grabbing; }
.blob { display: block; will-change: transform; }

.blob--sphere-pink {
  width: clamp(140px, 22vw, 320px); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fffce1 0%, rgba(255,252,225,0) 22%),
    radial-gradient(circle at 70% 80%, #00bae2 0%, rgba(0,186,226,0) 55%),
    radial-gradient(circle at 40% 40%, #fec5fb 0%, #f100cb 70%, #6b0a8f 100%);
}
.blob--pill-orange {
  width: clamp(160px, 20vw, 300px); aspect-ratio: 2.3;
  border-radius: 999px;
  transform: rotate(-24deg);
  background:
    radial-gradient(ellipse at 30% 25%, #fffce1 0%, rgba(255,252,225,0) 30%),
    linear-gradient(160deg, #ffd08a 0%, #ff8709 50%, #c7410a 100%);
}
.blob--morph { width: clamp(150px, 20vw, 300px); height: auto; overflow: visible; }
.blob--sphere-lilac {
  width: clamp(70px, 8vw, 120px); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fffce1 0%, rgba(255,252,225,0) 30%),
    radial-gradient(circle at 50% 50%, #9d95ff 0%, #4b3fd1 90%);
}
.blob--ring-blue {
  width: clamp(70px, 9vw, 130px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 38%, #00bae2 40%, #abff84 62%, #0ae448 68%, transparent 70%);
}

.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow { margin-bottom: var(--spacing-16); }
.hero__title {
  font-size: clamp(64px, 14.5vw, var(--text-display));
  line-height: var(--leading-display);
  letter-spacing: -0.035em;
  font-weight: var(--font-weight-semibold);
  margin-left: -0.05em;
}
.hero__line { display: block; }
.hero__title .char { display: inline-block; will-change: transform; }

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--spacing-24);
  margin-top: var(--spacing-32);
  position: relative;
  z-index: 3;
}
.hero__lede {
  max-width: 460px;
  font-size: var(--text-body);
  line-height: 1.4;
  color: var(--color-surface-50);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__scroll {
  position: absolute;
  right: 32px; top: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: var(--text-caption);
  color: var(--color-surface-50);
  writing-mode: vertical-rl;
}
.hero__scroll i { width: 1px; height: 64px; background: var(--color-surface-25); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; left: 0; top: -40%; width: 100%; height: 40%;
  background: var(--color-surface-cream);
  animation: scrollhint 1.8s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollhint { to { top: 110%; } }
@media (min-width: 1100px) { .hero__scroll { display: flex; } }

/* ---------- Marquee ---------- */
.marquee {
  padding: var(--spacing-32) 0;
  border-block: 1px solid var(--color-surface-25);
  overflow: hidden;
}
.marquee__row { display: flex; white-space: nowrap; }
.marquee__row--alt { margin-top: 8px; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  flex-shrink: 0;
  font-size: clamp(40px, 6vw, 89px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.marquee__row--alt .marquee__track { color: transparent; -webkit-text-stroke: 1px var(--color-surface-50); }
.marquee__row--alt .marquee__track span[class^="c-"] { -webkit-text-stroke: 0; color: currentColor; }
.marquee__row--alt .c-green { color: var(--color-shockingly-green); }
.marquee__row--alt .c-blue  { color: var(--color-blue); }
.marquee__row--alt .c-pink  { color: var(--color-pink); }
.marquee__row--alt .c-lilac { color: var(--color-lilac); }
.marquee__track b { font-size: 0.4em; color: var(--color-surface-25); -webkit-text-stroke: 0; }

/* ---------- Manifesto ---------- */
.manifesto { padding-block: clamp(96px, 16vw, 200px); }
.manifesto__text {
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: var(--font-weight-semibold);
  max-width: 1200px;
}

/* ---------- Services ---------- */
.services { padding-top: var(--section-gap); }
.services__head { margin-bottom: var(--spacing-76); }
.services__pin { overflow: hidden; }
.services__track {
  display: flex;
  flex-direction: column;
}
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-32);
  padding: var(--spacing-32) 16px var(--spacing-76);
  border-top: 1px solid var(--color-surface-25);
}
.service__art {
  position: relative;
  aspect-ratio: 1.2;
  border-radius: var(--radius-cards);
  background: radial-gradient(circle at 50% 60%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 65%), var(--color-off-black);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.service__body { display: flex; flex-direction: column; justify-content: center; gap: var(--spacing-16); }
.service__body .label { margin-bottom: 0; }
.service__num { font-size: var(--text-caption); color: var(--color-surface-50); font-variant-numeric: tabular-nums; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tags li {
  font-size: var(--text-caption);
  padding: 6px 12px;
  border: 1px solid var(--color-surface-25);
  border-radius: var(--radius-pills);
  color: var(--color-surface-cream);
}

@media (min-width: 900px) {
  .services__pin { height: 100vh; display: flex; align-items: center; }
  .services__track { flex-direction: row; width: max-content; padding-left: max(32px, calc((100vw - var(--page-max-width)) / 2)); gap: 32px; }
  .service {
    width: min(78vw, 1100px);
    height: min(70vh, 620px);
    grid-template-columns: 1.05fr 1fr;
    gap: var(--spacing-76);
    padding: 0 var(--spacing-32) 0 0;
    border-top: 0;
    border-right: 1px solid var(--color-surface-25);
  }
  .service:last-child { margin-right: 32px; }
  .service__art { aspect-ratio: auto; height: 100%; }
}

/* 3D-ish shapes — depth via internal gradients, never box-shadow */
.shape { position: relative; }
.shape--dome {
  width: 62%; aspect-ratio: 1.3;
  border-radius: 50% 50% 12% 12% / 70% 70% 12% 12%;
  background:
    radial-gradient(ellipse at 35% 25%, #fffce1 0%, rgba(255,252,225,0) 25%),
    linear-gradient(170deg, #fec5fb 0%, #f100cb 55%, #00bae2 110%);
}
.shape--pill {
  width: 70%; aspect-ratio: 2.4;
  border-radius: 999px;
  transform: rotate(-18deg);
  background:
    radial-gradient(ellipse at 28% 25%, #fffce1 0%, rgba(255,252,225,0) 28%),
    linear-gradient(165deg, #ffd9a0 0%, #ff8709 45%, #b53507 100%);
}
.shape--stack { width: 58%; aspect-ratio: 1; }
.shape--stack i {
  position: absolute; left: 0; right: 0;
  height: 30%;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(255,252,225,.8) 0%, rgba(255,252,225,0) 35%),
    linear-gradient(160deg, #7ae8ff 0%, #00bae2 50%, #005e7a 100%);
}
.shape--stack i:nth-child(1) { top: 6%; }
.shape--stack i:nth-child(2) { top: 36%; background: radial-gradient(ellipse at 25% 20%, rgba(255,252,225,.7) 0%, rgba(255,252,225,0) 35%), linear-gradient(160deg, #abff84 0%, #0ae448 60%, #04702a 100%); }
.shape--stack i:nth-child(3) { top: 66%; }
.shape--orbit { width: 60%; aspect-ratio: 1; }
.shape--orbit b {
  position: absolute; inset: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fffce1 0%, rgba(255,252,225,0) 30%),
    radial-gradient(circle, #9d95ff 0%, #4b3fd1 90%);
}
.shape--orbit i {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(157,149,255,.5);
  border-radius: 50%;
}
.shape--orbit i:nth-child(2) { inset: 12%; border-color: rgba(254,197,251,.5); transform: rotateX(62deg); }
.shape--orbit i::after {
  content: ""; position: absolute; top: -8px; left: 50%;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--color-pink);
}

/* ---------- Process ---------- */
.process { padding-top: var(--section-gap); }
.process__pin { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-block: 88px 32px; }
.process__head { margin-bottom: var(--spacing-32); }
.process__stage { position: relative; width: min(100% - 32px, var(--page-max-width)); margin-inline: auto; }
.process__svg { width: 100%; height: clamp(180px, 38vh, 420px); display: block; overflow: visible; }
.process__ghost { fill: none; stroke: var(--color-surface-25); stroke-width: 2; stroke-dasharray: 4 10; stroke-linecap: round; }
.process__path { fill: none; stroke: url(#pathGrad); stroke-width: 5; stroke-linecap: round; }
.process__dot { fill: var(--color-surface-cream); }
.process__nodes circle { fill: var(--color-just-black); stroke: var(--color-surface-25); stroke-width: 2; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-24) var(--spacing-16);
  margin-top: var(--spacing-32);
}
@media (min-width: 900px) { .process__steps { grid-template-columns: repeat(4, 1fr); } }
.process__steps li { border-top: 1px solid var(--color-surface-25); padding-top: var(--spacing-16); position: relative; }
.process__steps li::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(var(--fill, 0)); transform-origin: left;
}
.process__steps span { font-size: var(--text-caption); color: var(--accent); }
.process__steps h3 { font-size: clamp(24px, 2.4vw, 34px); font-weight: var(--font-weight-semibold); letter-spacing: -0.01em; margin: 6px 0 8px; }
.process__steps p { font-size: var(--text-body-sm); line-height: 1.4; color: var(--color-surface-50); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-surface-25);
  border: 1px solid var(--color-surface-25);
  border-radius: var(--radius-cards);
  overflow: hidden;
  margin-block: var(--section-gap);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--color-just-black); padding: var(--spacing-32) var(--spacing-24); }
.stat__num {
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label { margin-top: 12px; font-size: var(--text-body-sm); color: var(--color-surface-50); }

/* ---------- Work ---------- */
.work { padding-block: var(--section-gap); }
.work__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: var(--spacing-32);
  margin-bottom: var(--spacing-76);
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  padding: 10px 18px;
  border-radius: var(--radius-pills);
  border: 1px solid var(--color-surface-25);
  font-size: var(--text-body-sm);
  color: var(--color-surface-50);
  transition: color .3s, border-color .3s;
}
.filter:hover { color: var(--color-surface-cream); }
.filter.is-active { border-color: var(--accent, var(--color-surface-cream)); color: var(--accent, var(--color-surface-cream)); }

.grid { display: grid; grid-template-columns: 1fr; gap: var(--spacing-24); }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--color-off-black);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  transform-style: preserve-3d;
  will-change: transform;
}
.card.is-hidden { display: none; }
.card__art {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  margin-bottom: var(--spacing-20);
  overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 70% 80%, color-mix(in srgb, var(--b) 35%, transparent), transparent 60%),
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--a) 22%, transparent), transparent 55%),
    var(--color-just-black);
}
.card__shape { transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.card:hover .card__shape { transform: scale(1.12) rotate(-8deg); }
.card__shape--circle {
  width: 42%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fffce1 0%, rgba(255,252,225,0) 26%), radial-gradient(circle, var(--a), var(--b));
}
.card__shape--pill {
  width: 56%; aspect-ratio: 2.4; border-radius: 999px; rotate: -20deg;
  background: radial-gradient(ellipse at 28% 25%, #fffce1 0%, rgba(255,252,225,0) 30%), linear-gradient(160deg, var(--a), var(--b));
}
.card__shape--blob {
  width: 46%; aspect-ratio: 1;
  border-radius: 58% 42% 63% 37% / 45% 55% 45% 55%;
  background: radial-gradient(circle at 32% 28%, #fffce1 0%, rgba(255,252,225,0) 26%), linear-gradient(140deg, var(--a), var(--b));
  animation: wobble 8s ease-in-out infinite;
}
@keyframes wobble { 50% { border-radius: 40% 60% 38% 62% / 60% 40% 60% 40%; } }
.card__shape--stack {
  width: 44%; aspect-ratio: 1; border-radius: 20px;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(255,252,225,.8), rgba(255,252,225,0) 35%),
    linear-gradient(160deg, var(--a), var(--b));
  rotate: 45deg;
}
.card__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.card__meta h3 { font-size: clamp(24px, 2.2vw, 33px); font-weight: var(--font-weight-semibold); letter-spacing: -0.01em; line-height: 1.05; }
.card__meta span { font-size: var(--text-body-sm); flex-shrink: 0; }
.card > p { font-size: var(--text-body-sm); line-height: 1.4; color: var(--color-surface-50); }

/* ---------- CTA ---------- */
.cta {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 16px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; left: 50%; top: 55%;
  width: 90vmin; aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,228,72,.16) 0%, rgba(157,149,255,.08) 40%, transparent 70%);
  pointer-events: none;
}
.cta__title {
  font-size: clamp(64px, 13vw, 190px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: var(--font-weight-semibold);
  position: relative;
}
.cta__line { display: block; }
.cta__magnet { margin-top: var(--spacing-76); padding: 40px; position: relative; }
.cta__button {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 28px 44px;
  border-radius: var(--radius-buttons);
  border: 2px solid transparent;
  background:
    linear-gradient(var(--color-just-black), var(--color-just-black)) padding-box,
    var(--gradient-shockingly-green) border-box;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: var(--font-weight-semibold);
}
.cta__button svg { width: 26px; height: 26px; transition: transform .4s; }
.cta__button:hover svg { transform: translateX(6px); }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-off-black);
  border-top: 1px solid var(--color-surface-25);
  padding: var(--spacing-76) 16px var(--spacing-32);
  overflow: hidden;
}
@media (min-width: 768px) { .footer { padding-inline: 32px; } }
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-32);
  max-width: var(--page-max-width);
  margin-inline: auto;
}
@media (min-width: 900px) { .footer__cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: var(--text-body-sm); }
.footer__col:first-child { grid-column: 1 / -1; }
@media (min-width: 900px) { .footer__col:first-child { grid-column: auto; } }
.footer__col .annotation { margin-bottom: 4px; }
.footer__col h4 { font-size: var(--text-caption); font-weight: 400; color: var(--color-surface-50); margin-bottom: 4px; }
.footer__col a { transition: color .3s; }
.footer__col a:hover { color: var(--color-light-green); }
.footer__col p { line-height: 1.4; }
.footer__word {
  display: flex;
  justify-content: space-between;
  font-size: clamp(64px, 20.5vw, 340px);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.04em;
  line-height: 0.8;
  margin-top: var(--spacing-76);
  overflow: hidden;
  padding-top: 0.06em;
}
.footer__word span { display: inline-block; }
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: var(--spacing-32);
  padding-top: var(--spacing-24);
  border-top: 1px solid var(--color-surface-25);
  font-size: var(--text-caption);
  color: var(--color-surface-50);
}
.back-top:hover { color: var(--color-surface-cream); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .loader { display: none; }
}

/* Gradient text that has been split into chars: paint each char instead of the parent */
.text-gradient.is-split { background: none; color: inherit; }
.grad-char {
  background: var(--gradient-shockingly-green);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (hover: none), (pointer: coarse) {
  .blob-drag { pointer-events: none; }
}

/* Keep blobs clear of the copy on small screens */
@media (max-width: 640px) {
  .blob-drag:nth-child(2) { --x: -8% !important; --y: 30% !important; }
  .blob-drag:nth-child(4) { display: none; }
}
