/* ─────────────────────────────────────────────
   STASH — home.css
   Brand homepage styles. Extends styles-v2.css.
   All design tokens inherited from styles-v2.css.
─────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* No dot grid on the marketing homepage (styles-v2 sets body pattern globally). */
body {
  background-image: none;
}

/* ══════════════════════════════════════════════
   SHADER HERO (Three.js — Stash palette, parity with web/components/ui/shader-animation.tsx)
══════════════════════════════════════════════ */
.hp-shader-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100dvh - var(--nav-h));
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vh, 100px) clamp(24px, 5vw, 80px) clamp(56px, 8vh, 88px);
}

.hp-shader-hero--scene {
  perspective: 1600px;
}

.hp-shader-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hp-shader-hero__canvas.hp-shader-hero__canvas--visible {
  opacity: 1;
}

.hp-shader-hero__canvas.hp-shader-hero__canvas--static {
  opacity: 1;
  transition: none;
  background:
    radial-gradient(ellipse 85% 65% at 50% 38%, rgba(251, 69, 40, 0.14), transparent 58%),
    radial-gradient(ellipse 70% 55% at 75% 72%, rgba(251, 69, 40, 0.08), transparent 52%),
    radial-gradient(ellipse 55% 50% at 18% 68%, rgba(184, 51, 28, 0.07), transparent 48%),
    var(--dark);
}

@media (max-width: 768px) {
  .hp-shader-hero__canvas.hp-shader-hero__canvas--static {
    background:
      radial-gradient(ellipse 92% 78% at 50% 22%, rgba(251, 69, 40, 0.2), transparent 56%),
      radial-gradient(ellipse 72% 58% at 78% 66%, rgba(251, 69, 40, 0.09), transparent 52%),
      radial-gradient(ellipse 55% 48% at 16% 58%, rgba(184, 51, 28, 0.08), transparent 48%),
      var(--dark);
  }
}

.hp-shader-hero__canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hp-shader-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(15, 15, 14, 0.35) 0%, transparent 35%, transparent 65%, rgba(15, 15, 14, 0.55) 100%),
    radial-gradient(ellipse 90% 70% at 50% 50%, transparent 0%, rgba(15, 15, 14, 0.25) 100%);
}

/* Portrait / narrow: let the canvas read through behind logo + full headline (radial center pulled up). */
@media (max-width: 768px) {
  .hp-shader-hero__vignette {
    background:
      linear-gradient(to bottom, rgba(15, 15, 14, 0.04) 0%, transparent 18%, transparent 62%, rgba(15, 15, 14, 0.48) 100%),
      radial-gradient(ellipse 110% 100% at 50% 26%, transparent 0%, rgba(15, 15, 14, 0.09) 100%);
  }
}

.hp-shader-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
}

@keyframes hp-shader-hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 44px, -140px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hp-shader-hero__rise {
    opacity: 0;
    transform: translate3d(0, 44px, -140px) scale(0.8);
    transform-origin: center center;
    animation: hp-shader-hero-rise 0.92s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
  }

  .hp-shader-hero__inner > .hp-shader-hero__rise:nth-child(1) { animation-delay: 0.04s; }
  .hp-shader-hero__inner > .hp-shader-hero__rise:nth-child(2) { animation-delay: 0.11s; }
  .hp-shader-hero__inner > .hp-shader-hero__rise:nth-child(3) { animation-delay: 0.18s; }
  .hp-shader-hero__inner > .hp-shader-hero__rise:nth-child(4) { animation-delay: 0.25s; }
  .hp-shader-hero__inner > .hp-shader-hero__rise:nth-child(5) { animation-delay: 0.32s; }
}

@media (prefers-reduced-motion: reduce) {
  .hp-shader-hero__rise {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hp-shader-hero__canvas:not(.hp-shader-hero__canvas--static) {
    opacity: 1;
    transition: none;
  }
}

.hp-shader-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.35));
}

.hp-shader-hero__logo-mark {
  flex-shrink: 0;
}

.hp-shader-hero__logo-word {
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}

.hp-shader-hero__headline {
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 32px;
  max-width: 18ch;
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.35);
}

.hp-shader-hero__headline-muted {
  color: rgba(255, 255, 255, 0.92);
}

.hp-shader-hero__deck {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  max-width: 52ch;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.hp-shader-hero__ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hp-shader-hero__event-roll {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  justify-content: center;
}

.hp-shader-hero .hp-hero__event-roll-label {
  color: rgba(255, 255, 255, 0.22);
}

.hp-shader-hero .hp-hero__chip {
  color: rgba(255, 255, 255, 0.48);
}

.hp-shader-hero .hp-hero__chip-sep {
  color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 600px) {
  .hp-shader-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }
  .hp-shader-hero__ctas .hp-hero__ghost-btn,
  .hp-shader-hero__ctas .btn--primary {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Hastings campaign palette (scoped to card only) ─── */
.hp-featured__card {
  --tap-terracotta: #c85832;
  --tap-mustard:    #c9a84a;
  --tap-olive:      #566838;
  --tap-slate:      #4d6485;
  --tap-earth:      #4a3528;
  --tap-parch:      #efe6d4;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hp-hero {
  background-color: var(--dark);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px, 12vh, 160px) clamp(24px, 5vw, 80px) clamp(64px, 8vh, 96px);
  position: relative;
  overflow: hidden;
}

/* Decorative background circle — Stash brand mark echo */
.hp-hero::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -5%;
  width: min(75vw, 800px);
  height: min(75vw, 800px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.hp-hero::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 12%;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  border-radius: 50%;
  border: 1px solid rgba(251,69,40,0.07);
  pointer-events: none;
}

.hp-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hp-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}

.hp-hero__headline {
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 32px;
  max-width: 18ch;
}

.hp-hero__headline-accent {
  color: rgba(255,255,255,0.92);
}

.hp-hero__deck {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hp-hero__ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hp-hero__ghost-btn {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 140ms var(--ease-out);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .hp-hero__ghost-btn:hover {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.88);
    border-color: rgba(255,255,255,0.3);
  }
}

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

.hp-hero__event-roll {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.hp-hero__event-roll-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.hp-hero__event-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hp-hero__chip {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.42);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-hero__chip::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hp-hero__chip--red::before  { background: var(--red); }
.hp-hero__chip--gold::before { background: var(--gold); }
.hp-hero__chip--blue::before { background: var(--blue); }

.hp-hero__chip-sep {
  color: rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   FEATURED EVENT
══════════════════════════════════════════════ */
.hp-featured {
  background: var(--cream);
  padding: clamp(64px, 8vh, 96px) clamp(24px, 5vw, 80px);
}

.hp-featured__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hp-featured__header {
  margin-bottom: 28px;
}

.hp-featured__card {
  background: var(--dark-2);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 480px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-dark);
}

/* Five-color tapestry stripe — top of card */
.hp-featured__card-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--tap-terracotta) 0%,
    var(--tap-terracotta) 20%,
    var(--tap-mustard) 20%,
    var(--tap-mustard) 40%,
    var(--tap-olive) 40%,
    var(--tap-olive) 60%,
    var(--tap-slate) 60%,
    var(--tap-slate) 80%,
    var(--tap-earth) 80%
  );
  z-index: 2;
}

.hp-featured__card-content {
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(clamp(36px, 5vw, 56px) + 4px); /* account for stripe */
}

.hp-featured__card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hp-featured__card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tap-mustard);
  background: rgba(201,168,74,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(201,168,74,0.2);
}

.hp-featured__card-date {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.hp-featured__card-title {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: #fff;
  margin-bottom: 24px;
}

.hp-featured__card-sub {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
  max-width: 52ch;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hp-featured__card-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
  max-width: 52ch;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hp-featured__card-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hp-featured__card-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hp-featured__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-featured__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.hp-featured__stat-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.01em;
}

/* Decorative visual side of the card */
.hp-featured__card-visual {
  position: relative;
  background: linear-gradient(135deg, #161210 0%, #1f1814 60%, #1a1510 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.04);
}

/* Diagonal stripe texture */
.hp-featured__card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 14px,
    rgba(201,168,74,0.03) 14px,
    rgba(201,168,74,0.03) 15px
  );
  pointer-events: none;
}

/* Outer circle ring */
.hp-featured__card-visual::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,74,0.08);
  pointer-events: none;
}

.hp-featured__card-crest {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-featured__crest-img {
  /* Landscape hero (e.g. joust tapestry); was tuned for a tall heraldic crest */
  width: min(440px, 92%);
  max-height: min(240px, 32vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}

.hp-featured__crest-shape {
  width: 148px;
  height: 168px;
  border: 1px solid rgba(201,168,74,0.15);
  border-radius: 3px 3px 74px 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  position: relative;
}

/* Inner shield line */
.hp-featured__crest-shape::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,168,74,0.07);
  border-radius: 2px 2px 58px 58px;
  pointer-events: none;
}

.hp-featured__crest-year {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(201,168,74,0.35);
  text-transform: uppercase;
}

.hp-featured__crest-name {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(201,168,74,0.2);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   WHAT IS STASH?
══════════════════════════════════════════════ */
.hp-brand {
  background-color: var(--dark-2);
  padding: clamp(72px, 10vh, 112px) clamp(24px, 5vw, 80px);
}

.hp-brand__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: stretch;
}

.hp-brand__heading {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 28px;
  color: #fff;
}

.hp-brand__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 54ch;
}

.hp-brand__body:last-child { margin-bottom: 0; }

.hp-brand__body:nth-last-child(2) {
  margin-bottom: 0;
}

.hp-brand__asterisk {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 0.06em;
}

.hp-brand__footnote {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: -0.01em;
  margin: 12px 0 0;
  max-width: 54ch;
}

.hp-brand__visual {
  position: relative;
  margin: 0;
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  overflow: hidden;
  min-height: 0;
}

.hp-brand__visual-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ══════════════════════════════════════════════
   TWO ARMS
══════════════════════════════════════════════ */
.hp-arms {
  background-color: var(--dark-3);
  padding: 0 clamp(24px, 5vw, 80px) clamp(80px, 10vh, 120px);
}

.hp-arms__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hp-arms__events,
.hp-arms__studio {
  padding: clamp(48px, 6vh, 72px) clamp(32px, 4vw, 56px);
}

.hp-arms__events {
  border-right: 1px solid rgba(255,255,255,0.05);
}

.hp-arms__heading {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.97;
  color: #fff;
  margin-bottom: 24px;
}

.hp-arms__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  max-width: 50ch;
  margin-bottom: 28px;
}

.hp-arms__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  padding-left: 0;
}

.hp-arms__list li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hp-arms__list li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}

.hp-arms__cta {
  /* uses .btn .btn--primary .btn--lg */
}

/* Studio column: multi-color bullets (platform bands) */
.hp-arms__list--studio li:nth-child(1)::before {
  background: var(--red);
  opacity: 0.75;
}

.hp-arms__list--studio li:nth-child(2)::before {
  background: var(--blue);
  opacity: 0.75;
}

.hp-arms__list--studio li:nth-child(3)::before {
  background: var(--gold);
  opacity: 0.85;
}

.hp-arms__cta--studio {
  background: var(--blue);
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 140ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .hp-arms__cta--studio:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 4px 24px rgba(207, 162, 40, 0.38);
  }
}

.hp-arms__cta--studio:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════
   CURRENT WORK
══════════════════════════════════════════════ */
.hp-work {
  background: var(--cream);
  padding: clamp(64px, 8vh, 96px) clamp(24px, 5vw, 80px);
}

.hp-work__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hp-work__header {
  margin-bottom: 48px;
}

.hp-work__heading {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
}

.hp-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.hp-work__card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  position: relative;
}

.hp-work__card-stripe {
  height: 3px;
  width: 100%;
}

.hp-work__card-stripe--hastings {
  background: linear-gradient(to right, #c85832, #c9a84a, #566838);
}

.hp-work__card-stripe--mess {
  background: var(--red);
}

.hp-work__card-stripe--lovetrails {
  background: linear-gradient(to right, var(--green), var(--blue));
}

.hp-work__card-inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hp-work__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hp-work__card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.hp-work__card-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.hp-work__card-status--upcoming {
  background: rgba(251,69,40,0.08);
  color: var(--red);
}

.hp-work__card-status--ongoing {
  background: rgba(39,107,60,0.09);
  color: var(--green);
}

.hp-work__card-status--soon {
  background: rgba(25,53,196,0.08);
  color: var(--blue);
}

.hp-work__card-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 12px;
}

.hp-work__card-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--muted);
  letter-spacing: -0.005em;
  flex: 1;
  margin-bottom: 24px;
}

.hp-work__card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.hp-work__card-link {
  /* uses .btn--naked */
  font-size: 13px;
}

/* ══════════════════════════════════════════════
   ORIGIN / ABOUT
══════════════════════════════════════════════ */
.hp-origin {
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 95% 70% at 92% 28%, rgba(251, 69, 40, 0.09), transparent 52%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(255, 255, 255, 0.05), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 38%);
  padding: clamp(56px, 8vh, 96px) clamp(24px, 5vw, 80px);
}

.hp-origin__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hp-origin__content {
  /* inherits reveal */
}

/*
 * One text column + globe in a single grid row so row heights are not coupled
 * (a 2-row left column + globe spanning 2 rows stretched row 1 and created a huge gap under the headline).
 */
.hp-origin__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  grid-template-rows: auto;
  column-gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.hp-origin__text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hp-origin__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-origin__intro .section-mark {
  margin-bottom: 0;
}

.hp-origin__intro .eyebrow {
  margin-bottom: 0;
}

.hp-origin__headline {
  /* Align with .hp-brand__heading */
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.04em;
  font-style: normal;
  margin: 0;
  padding: 0;
  border: none;
  max-width: 18ch;
}

.hp-origin__copy {
  max-width: 54ch;
}

.hp-origin__lede {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.hp-origin__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: 54ch;
}


.hp-origin__cta-wrap {
  margin-top: 14px;
  margin-bottom: 0 !important;
}

.hp-origin__cta-wrap .btn {
  gap: 8px;
}

.hp-origin__globe-col {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  width: 100%;
  max-width: min(100%, 620px);
  display: flex;
  justify-content: flex-end;
}

.hp-origin__globe-wrap {
  position: relative;
  width: 100%;
  max-width: min(100%, 580px);
  aspect-ratio: 1;
  margin: 0;
  isolation: isolate;
}

/* COBE’s inner wrapper: allow marker labels to sit just outside the canvas circle */
.hp-origin__globe-wrap > div {
  overflow: visible;
}

/* Single soft pool behind globe (avoids busy concentric rings) */
.hp-origin__globe-wrap::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 42% 36%,
    rgba(255, 255, 255, 0.12),
    rgba(251, 69, 40, 0.06) 42%,
    transparent 68%
  );
  opacity: 1;
}

/* COBE anchor-positioned labels (Chromium); see cobe README */
.hp-origin__globe-labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  font-family: var(--font, "DM Sans", system-ui, sans-serif);
}

/* Position (left/top/transform) is driven by home-globe.js from COBE’s anchor divs */
.hp-origin__globe-label {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  padding: 6px 11px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 14, 0.88);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 8px));
  transition: opacity 0.22s ease;
  pointer-events: none;
  will-change: left, top, opacity;
}

.hp-origin__globe-caption {
  display: none;
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: -0.01em;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.hp-origin__globe-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: grab;
  touch-action: none;
  opacity: 0;
  transition: opacity 1.2s ease;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    0 0 72px rgba(255, 255, 255, 0.09),
    0 0 120px rgba(251, 69, 40, 0.07);
}

@media (max-width: 820px) {
  .hp-origin__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 20px;
  }

  .hp-origin__text {
    grid-column: 1;
    grid-row: 1;
  }

  .hp-origin__headline {
    max-width: none;
  }

  .hp-origin__copy {
    max-width: none;
  }

  .hp-origin__globe-col {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    max-width: 460px;
  }

  .hp-origin__globe-wrap {
    margin: 0 auto;
    max-width: min(100%, 400px);
  }
}

/* Footer runner strip (canvas, above footer columns) */
.hp-footer__runner {
  --fr-orange: #fb4528;
  --fr-off: #d4d4d4;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-footer__runner-note {
  margin: 0;
  padding: 22px clamp(24px, 5vw, 80px) 16px;
  background: var(--cream);
  color: rgba(0, 0, 0, 0.42);
  font-family: var(--font, "DM Sans", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
}

.hp-footer__runner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px clamp(24px, 5vw, 80px) 6px;
}

.hp-footer__runner-canvas-wrap {
  position: relative;
  width: 100%;
  height: 92px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--dark);
}

.hp-footer__runner-canvas-wrap .hp-footer__runner-playbtn {
  pointer-events: auto;
}

#footer-runner-canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: manipulation;
  cursor: pointer;
}

.hp-footer__runner-actions {
  position: absolute;
  top: 6px;
  right: 10px;
  z-index: 4;
  pointer-events: none;
}

.hp-footer__runner-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 88px;
}

.hp-footer__runner-sidebar > button {
  pointer-events: auto;
  min-width: 0;
}

.hp-footer__runner-jumpbtn {
  font-family: var(--font, "DM Sans", system-ui, sans-serif);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  color: var(--fr-off);
  letter-spacing: 0.04em;
}

.hp-footer__runner-jumpbtn:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hp-footer__runner-jumpbtn:focus-visible {
  outline: 2px solid var(--fr-orange);
  outline-offset: 2px;
}

.hp-footer__runner-playbtn {
  font-family: var(--font, "DM Sans", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  background: var(--fr-orange);
  color: #fff;
  letter-spacing: 0.03em;
  pointer-events: auto;
}

.hp-footer__runner-playbtn:hover {
  filter: brightness(1.08);
}

.hp-footer__runner-playbtn:focus-visible {
  outline: 2px solid var(--fr-off);
  outline-offset: 2px;
}

.hp-footer__runner-hud {
  position: absolute;
  top: 6px;
  left: 10px;
  z-index: 2;
  max-width: calc(100% - 118px);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.hp-footer__runner-accent {
  width: 3px;
  height: 22px;
  background: var(--fr-orange);
  border-radius: 1px;
  flex-shrink: 0;
}

.hp-footer__runner-km {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.hp-footer__runner-km #footer-runner-km {
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--fr-off);
  margin-right: 4px;
}

/* Game over copy sits above the same sidebar buttons */
.hp-footer__runner-dead-copy {
  pointer-events: none;
  text-align: right;
  padding: 2px 0 2px 8px;
  border-right: 3px solid var(--fr-orange);
}

.hp-footer__runner-dead-title {
  margin: 0;
  font-family: var(--font, "DM Sans", system-ui, sans-serif);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hp-footer__runner-dead-line {
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.hp-footer__runner-dead-line #footer-runner-dead-km {
  font-weight: 800;
  font-style: italic;
  color: var(--fr-off);
}

/* ══════════════════════════════════════════════
   BELIEFS
══════════════════════════════════════════════ */
.hp-beliefs {
  background: var(--cream);
  padding: clamp(72px, 10vh, 112px) clamp(24px, 5vw, 80px);
}

.hp-beliefs__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hp-beliefs__header {
  margin-bottom: 56px;
}

.hp-beliefs__heading {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--text);
}

.hp-beliefs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.hp-beliefs__item {
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hp-beliefs__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--border);
  display: block;
}

.hp-beliefs__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
}

.hp-beliefs__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: -0.005em;
}

/* ══════════════════════════════════════════════
   STASH STUDIO TEASER
══════════════════════════════════════════════ */
.hp-studio {
  background-color: var(--dark-2);
  padding: clamp(72px, 10vh, 112px) clamp(24px, 5vw, 80px);
}

.hp-studio__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hp-studio__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 20px;
}

.hp-studio__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.48);
  letter-spacing: -0.01em;
  max-width: 50ch;
  margin-bottom: 36px;
}

.hp-studio__ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.hp-studio__ghost-btn {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 140ms var(--ease-out);
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .hp-studio__ghost-btn:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.25);
  }
}

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

/* App mockup */
.hp-studio__mock {
  background: #0a0a0a;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  font-size: 11px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.hp-studio__mock-chrome {
  background: #141414;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-studio__mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

.hp-studio__mock-title {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
  margin-left: 8px;
}

.hp-studio__mock-body {
  display: grid;
  grid-template-columns: 44px 1fr;
}

.hp-studio__mock-sidebar {
  background: #111;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp-studio__mock-nav-item {
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}

.hp-studio__mock-nav-item--active {
  background: rgba(251,69,40,0.18);
}

.hp-studio__mock-main {
  padding: 0;
}

.hp-studio__mock-row {
  display: grid;
  grid-template-columns: 1fr 80px 90px 60px;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}

.hp-studio__mock-row--header {
  background: #111;
}

.hp-studio__mock-cell {
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-studio__mock-cell--text {
  color: rgba(255,255,255,0.6);
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.hp-studio__mock-cell--name {
  font-weight: 500;
}

.hp-studio__mock-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hp-studio__mock-badge--confirmed {
  background: rgba(39,107,60,0.15);
  color: #5aab7c;
}

.hp-studio__mock-badge--pending {
  background: rgba(207,162,40,0.12);
  color: #cfb240;
}

.hp-studio__mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hp-studio__mock-stat {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.hp-studio__mock-stat:last-child { border-right: none; }

.hp-studio__mock-stat-val {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.02em;
}

.hp-studio__mock-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   EMAIL SIGNUP
══════════════════════════════════════════════ */
.hp-signup {
  background: var(--cream);
  padding: clamp(72px, 10vh, 112px) clamp(24px, 5vw, 80px);
}

.hp-signup__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hp-signup__heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 16px;
}

.hp-signup__deck {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  letter-spacing: -0.01em;
  max-width: 46ch;
  margin: 0 auto 36px;
}

.hp-signup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hp-signup__fields {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.hp-signup__input {
  flex: 1;
  height: 46px;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  letter-spacing: -0.01em;
  -webkit-appearance: none;
}

.hp-signup__input::placeholder { color: var(--muted); }

.hp-signup__input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(251,69,40,0.1);
}

.hp-signup__status {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
  min-height: 1.2em;
  max-width: 42ch;
  color: var(--muted);
}

.hp-signup__status--success {
  color: #166534;
}

.hp-signup__status--error {
  color: #b42318;
}

.hp-signup__note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.hp-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
}

.hp-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(56px, 7vh, 80px) clamp(24px, 5vw, 80px) 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}

.hp-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hp-footer__logo span {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.7);
}

.hp-footer__tagline {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.24);
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.hp-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.hp-footer__nav-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.hp-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hp-footer__nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.01em;
  transition: color 140ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hp-footer__nav a:hover { color: rgba(255,255,255,0.82); }
}

.hp-footer__bottom {
  border-top: 1px solid var(--border-dark);
  margin-top: clamp(40px, 5vh, 56px);
}

.hp-footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hp-footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
}

.hp-footer__bottom-links {
  display: flex;
  gap: 16px;
}

.hp-footer__bottom-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  transition: color 140ms ease;
  letter-spacing: 0.01em;
}

@media (hover: hover) and (pointer: fine) {
  .hp-footer__bottom-links a:hover { color: rgba(255,255,255,0.5); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1020px) {
  .hp-brand__inner       { grid-template-columns: 1fr; gap: 48px; }
  .hp-brand__visual      { min-height: min(52vw, 440px); }
  .hp-arms__inner        { grid-template-columns: 1fr; }
  .hp-arms__events       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hp-studio__inner      { grid-template-columns: 1fr; gap: 56px; }
  .hp-footer__inner      { grid-template-columns: 1fr; gap: 48px; }
  .hp-footer__nav        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hp-featured__card     { grid-template-columns: 1fr; min-height: auto; }
  .hp-featured__card-visual { min-height: 240px; border-left: none; border-top: 1px solid rgba(255,255,255,0.04); }
  .hp-beliefs__grid      { grid-template-columns: repeat(2, 1fr); }
  .hp-work__grid         { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hp-hero__headline     { font-size: clamp(42px, 12vw, 64px); }
  .hp-hero__ctas         { flex-direction: column; align-items: flex-start; }
  .hp-hero__ghost-btn    { width: 100%; justify-content: center; }
  .hp-hero .btn--primary { width: 100%; justify-content: center; }
  .hp-beliefs__grid      { grid-template-columns: 1fr; }
  .hp-footer__runner-canvas-wrap { height: 84px; }
  .hp-footer__nav        { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hp-signup__fields     { flex-direction: column; }
  .hp-signup__fields .btn { width: 100%; justify-content: center; }
  .hp-studio__mock       { display: none; }
  .hp-studio__inner      { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   HOME — load + scroll motion (index only; home.css)
══════════════════════════════════════════════ */
@keyframes hp-home-banner-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hp-home-nav-inner-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hp-home .site-top-banner {
    animation: hp-home-banner-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* Animate inner only — transform on .nav breaks sticky positioning */
  .hp-home .nav__inner {
    animation: hp-home-nav-inner-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.09s;
  }
}

/* Richer scroll reveals than global defaults */
.hp-home .reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.988);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hp-home .reveal.in-view {
  opacity: 1;
  transform: none;
  will-change: auto;
}

article.hp-featured__card.reveal:not(.in-view) {
  transform: translateY(52px) scale(0.965);
  transition-duration: 0.85s, 0.9s;
}

.hp-work__grid > article.hp-work__card.reveal:not(.in-view) {
  transform: translateY(44px) scale(0.97);
}

@media (min-width: 861px) {
  .hp-work__grid > article.hp-work__card.reveal:nth-child(1):not(.in-view) {
    transform: translateY(44px) translateX(-16px) scale(0.97);
  }

  .hp-work__grid > article.hp-work__card.reveal:nth-child(3):not(.in-view) {
    transform: translateY(44px) translateX(16px) scale(0.97);
  }
}

.hp-brand__visual.reveal:not(.in-view) {
  transform: translateX(48px) translateY(36px) scale(0.97);
  transition-duration: 0.88s, 0.92s;
}

.hp-origin__globe-wrap.reveal:not(.in-view) {
  transform: scale(0.94) translateY(32px);
  transition-duration: 0.85s, 0.9s;
}

.hp-studio__mock.reveal:not(.in-view) {
  transform: translateY(36px) scale(0.97);
  transition-duration: 0.82s, 0.88s;
}

.hp-beliefs__item.reveal:not(.in-view) {
  transform: translateY(36px) scale(0.99);
}

@media (prefers-reduced-motion: reduce) {
  .hp-home .site-top-banner,
  .hp-home .nav__inner {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hp-home .reveal,
  article.hp-featured__card.reveal,
  .hp-work__grid > article.hp-work__card.reveal,
  .hp-brand__visual.reveal,
  .hp-origin__globe-wrap.reveal,
  .hp-studio__mock.reveal,
  .hp-beliefs__item.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}
