/* =============================================================
   Chimera website — site.css
   Loud, swiss-grid streetwear. Bone base, ink text, pink accents.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bone);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  cursor: none; /* custom cursor takes over — see .flash */
}
@media (pointer: coarse) { html, body { cursor: auto; } }
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; cursor: none; }
@media (pointer: coarse) { a, button { cursor: pointer; } }
button { cursor: none; }

/* selection in brand pink */
::selection { background: var(--chimera-pink); color: var(--ink); }

/* --- cursor flash ------------------------------------------------ */
.flash {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--chimera-pink);
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--ease-sharp),
              height 200ms var(--ease-sharp),
              background 200ms var(--ease-sharp),
              opacity 200ms var(--ease-sharp);
}
.flash.flash--big { width: 26px; height: 26px; mix-blend-mode: multiply; }
.flash.flash--tiny { width: 8px; height: 8px; }
.flash.flash--pink-bg { background: var(--ink); mix-blend-mode: screen; }
/* on pink CTA section: big SOLID BLACK dot. no blend, no tricks. */
.flash.flash--on-pink {
  background: #0B0B0B !important;
  mix-blend-mode: normal !important;
  width: 14px !important;
  height: 14px !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}
.flash.flash--on-pink.flash--big {
  background: #0B0B0B !important;
  mix-blend-mode: normal !important;
  width: 22px !important;
  height: 22px !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}
/* tiny wins everywhere — including pink sections */
.flash.flash--tiny,
.flash.flash--on-pink.flash--tiny,
.flash.flash--on-pink.flash--big.flash--tiny {
  width: 10px !important;
  height: 10px !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6) !important;
}
@media (pointer: coarse) { .flash { display: none; } }

/* =============================================================
   FIXED FURNITURE — deck-style chrome at the 4 corners
============================================================= */
.furniture {
  position: fixed;
  z-index: 60;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  mix-blend-mode: multiply;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.furniture--tl { top: 20px; left: 20px; }
.furniture--tr { top: 20px; right: 20px; }
.furniture--bl { bottom: 20px; left: 20px; }
.furniture--br { bottom: 20px; right: 20px; font-family: var(--font-mono); }
.furniture .dot {
  width: 8px; height: 8px; background: var(--chimera-pink);
  display: inline-block; animation: pulse 1.8s var(--ease-sharp) infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

/* =============================================================
   NAV
============================================================= */
.nav {
  position: fixed;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 55;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 14px 10px 18px;
  background: rgba(244, 241, 235, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ink);
  width: min(1180px, calc(100vw - 80px));
}
/* ==========================================================
   SRS Monogram — tiled S R S, middle tile pink
   Scales via --srs-tile CSS var. Used in nav, footer, card
   furniture, hero lockup, and favicon-sized app icons.
========================================================== */
.srs-mono {
  --srs-tile: 40px;
  --srs-gap: 3px;
  display: inline-grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, var(--srs-tile));
  gap: var(--srs-gap);
  vertical-align: middle;
  line-height: 0;
}
.srs-mono__t {
  width: var(--srs-tile); height: var(--srs-tile);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 900;
  font-size: calc(var(--srs-tile) * 0.82);
  line-height: 1; letter-spacing: -0.06em;
  background: var(--ink); color: var(--bone);
  /* optical centering — the cap-height of Haas Grotesk sits high
     inside the em-box, so nudge the glyph down a touch */
  padding-top: calc(var(--srs-tile) * 0.04);
}
.srs-mono__t--pink { background: var(--chimera-pink); color: var(--ink); }
/* On-ink reverse: S tiles swap to bone ground */
.srs-mono--inverse .srs-mono__t { background: var(--bone); color: var(--ink); }
.srs-mono--inverse .srs-mono__t--pink { background: var(--chimera-pink); color: var(--ink); }
/* Flush variant (no gap = one brick, for logo lockups) */
.srs-mono--flush { gap: 0; }

.nav__mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__mark-dot {
  width: 8px; height: 8px; background: var(--chimera-pink);
  display: inline-block;
}
.nav__mark-word {
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 12px;
}
/* On the live breakpoint where the nav gets cramped, collapse the
   wordmark to just "SERIOUS" — the monogram still reads "SRS". */
@media (max-width: 1180px) {
  .nav__mark-word { font-size: 11px; letter-spacing: 0.08em; }
}
@media (max-width: 1040px) {
  .nav__mark-word::after { content: ""; }
  .nav__mark-word { font-size: 0; }
  .nav__mark-word::before {
    content: "SRS";
    font-size: 13px; letter-spacing: 0.14em; font-weight: 900;
  }
}
.nav__mark-slash { color: var(--chimera-pink); margin-left: 2px; }

.nav__links {
  display: flex; justify-content: center; gap: 22px;
  list-style: none; padding: 0; margin: 0;
}
.nav__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: baseline; gap: 6px;
  transition: color 120ms var(--ease-sharp);
  position: relative;
}
.nav__links a em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--chimera-pink);
  font-weight: 500;
}
.nav__links a:hover { color: var(--chimera-pink); }

.nav__cta {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bone);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 120ms var(--ease-sharp), color 120ms var(--ease-sharp);
}
.nav__cta:hover { background: var(--chimera-pink); color: var(--ink); }
.nav__cta span { font-family: var(--font-mono); }

/* =============================================================
   SECTION HEAD — sticky numbered crumb shared pattern
============================================================= */
.sec-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 32px 64px 20px;
  border-bottom: 1px solid var(--ink);
  margin: 0 48px;
}
.sec-head .sec-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chimera-pink);
  font-weight: 500;
}
.sec-head .sec-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.sec-head .sec-rule {
  height: 1px; background: var(--ink); opacity: 0.25;
  align-self: center; margin: 0 8px;
}
.sec-head .sec-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg2);
}
.sec-head--inverse {
  border-bottom-color: var(--bone);
  color: var(--bone);
}
.sec-head--inverse .sec-rule { background: var(--bone); }
.sec-head--inverse .sec-meta { color: rgba(244,241,235,.7); }
.sec-head--pink { border-bottom-color: var(--ink); }

/* =============================================================
   HERO
============================================================= */
.hero {
  min-height: 100vh;
  padding: 148px 64px 48px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 24px 48px;
  flex: 1;
  align-content: space-between;
}

.lingual {
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lingual div { display: grid; grid-template-columns: 50px 1fr; gap: 8px; }
.lingual em {
  font-style: normal;
  font-family: var(--font-mono);
  color: var(--chimera-pink);
  font-size: 10px;
  font-weight: 600;
  padding-top: 3px;
}

.hero__meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: right;
  align-self: start;
}
.meta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 3px 0;
  border-bottom: 1px solid var(--hair-soft);
}
.meta-row:first-child { border-top: 1px solid var(--hair-soft); }
.meta-row span:first-child { color: var(--fg3); }

.hero__h1 {
  grid-column: 1 / -1;
  position: relative;
  font-weight: 900;
  font-size: clamp(96px, 16vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 24px 0 0;
  align-self: end;
}
.hero__line { display: block; position: relative; }
.hero__line--slash .slash-deco {
  color: var(--chimera-pink);
  font-weight: 400;
  display: inline-block;
  margin-left: 0.08em;
  transform: translateY(-0.08em);
}
.hero__line--pink {
  color: var(--chimera-pink);
  position: relative;
}
.hero__strike {
  display: block;
  font-size: clamp(20px, 2.2vw, 36px);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--chimera-pink);
  color: var(--fg2);
  margin-top: 18px;
  letter-spacing: 0.14em;
}

.hero__lede {
  grid-column: 1 / span 1;
  max-width: 460px;
  align-self: end;
}
.hero__lede .eyebrow {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg2);
  margin-bottom: 12px;
  font-weight: 600;
}
.hero__lede p {
  font-size: 16px; line-height: 1.45;
  margin: 0 0 24px;
}
.hero__actions { display: flex; gap: 12px; }

.hero__signoff {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  align-self: end;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-bar { height: 1px; background: var(--hair-soft); position: relative; overflow: hidden; }
.scroll-bar span {
  position: absolute; inset: 0 auto 0 0; width: 30%;
  background: var(--chimera-pink);
  animation: scrollbar 2.2s var(--ease-sharp) infinite;
}
@keyframes scrollbar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* =============================================================
   BUTTONS
============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 140ms var(--ease-sharp), color 140ms var(--ease-sharp), transform 100ms var(--ease-sharp);
}
.btn:hover { background: var(--chimera-pink); color: var(--ink); border-color: var(--chimera-pink); }
/* in CTA section, bg is already pink — invert hover to stay visible */
.cta .btn:hover { background: var(--ink); color: var(--chimera-pink); border-color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn span { font-family: var(--font-mono); font-size: 12px; font-weight: 400; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--pink { background: var(--chimera-pink); color: var(--ink); border-color: var(--chimera-pink); }
.btn--pink:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--ink { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* =============================================================
   MARQUEE
============================================================= */
.marquee {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  align-items: center;
  animation: mtrack 38s linear infinite;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.marquee__track em {
  color: var(--chimera-pink);
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
}
@keyframes mtrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   MANIFESTO
============================================================= */
.manifesto {
  padding: 96px 0 48px;
  position: relative;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  padding: 64px 112px;
}
.manifesto__side { position: sticky; top: 180px; align-self: start; }
.manifesto__kicker {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 16px 0 48px;
}
.manifesto__kicker br + {}
.manifesto__signature {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg2);
  font-weight: 500;
  line-height: 1.8;
}

.manifesto__body {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  max-width: 820px;
}
.manifesto__body p {
  margin: 0 0 48px;
  color: var(--fg3);
  transition: color 360ms var(--ease-sharp);
}
.manifesto__body p em {
  font-style: italic;
  color: inherit;
}
.manifesto__body p[data-revealed="true"] { color: var(--ink); }
.manifesto__body .pop {
  position: relative; display: inline-block;
  color: var(--chimera-pink);
}
.manifesto__body .pop::before {
  content: "["; margin-right: 4px; color: var(--ink);
  font-weight: 400;
}
.manifesto__body .pop::after {
  content: "]"; margin-left: 4px; color: var(--ink);
  font-weight: 400;
}

/* BIG STATEMENT — marquee-ish rows of huge type */
.big-statement {
  margin-top: 96px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  padding: 48px 0;
}
.big-statement__row {
  display: flex; gap: 48px;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(90px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  align-items: baseline;
}
.big-statement__row--a { animation: mtrack 32s linear infinite; }
.big-statement__row--b {
  animation: mtrack 28s linear infinite reverse;
  color: var(--chimera-pink);
  margin-top: 8px;
}
.big-statement .muted { color: transparent; -webkit-text-stroke: 2px currentColor; }
.big-statement__row--b .muted { color: transparent; -webkit-text-stroke: 2px var(--chimera-pink); }

/* =============================================================
   WORK — horizontal scroll via sticky + translateX
============================================================= */
.work {
  background: var(--ink);
  color: var(--bone);
}
.work__pinwrap {
  /* tall container; the .work__pin inside sticks and translates */
  height: 500vh;
  position: relative;
}
.work__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding-top: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.work__pin .sec-head { grid-row: 1; padding-top: 100px; }
.work__pin .work__track { grid-row: 2; }
.work__pin .work__progress { grid-row: 3; }

.work__track {
  display: flex;
  gap: 32px;
  padding: 32px 64px 32px;
  will-change: transform;
  align-items: stretch;
  min-height: 520px;
  box-sizing: border-box;
  width: max-content;
}

/* each card is a fixed-width column */
.work__intro, .case, .work__end {
  flex: 0 0 auto;
  width: 600px;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.work__intro {
  width: 560px;
  justify-content: flex-end;
  padding: 24px 16px;
  margin-right: 96px;
}
.work__intro .eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: rgba(244,241,235,0.65);
  margin-bottom: 24px;
}
.work__intro h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 32px;
}
.work__intro h2 .pink { color: var(--chimera-pink); }
.work__intro-foot {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,241,235,.6);
  padding-top: 16px; border-top: 1px solid rgba(244,241,235,.3);
}

.case {
  background: var(--bone);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.case .case__img { flex: 1 1 0; min-height: 200px; }
.case .case__meta { flex: 0 0 auto; }
.case--dark { background: var(--ink-2); color: var(--bone); border: 1px solid rgba(244,241,235,.2); }
.case--pink { background: var(--chimera-pink); color: var(--ink); }
.case__img {
  position: relative;
  overflow: hidden;
}
.case__img svg { display: block; width: 100%; height: 100%; }
.case__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case__img--photo {
  background: var(--ink);
}
.case__collabs {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(11,11,11,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 12px;
}
.case__collabs span { color: var(--chimera-pink); }
.case__collabs em {
  font-style: normal;
  padding: 0 6px;
}
.case__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: var(--bone);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.case__tag--pink { background: var(--chimera-pink); color: var(--ink); }

.case__meta {
  padding: 16px 20px 20px;
  display: flex; flex-direction: column;
  gap: 10px;
  border-top: 1px solid currentColor;
}
.case__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chimera-pink);
  font-weight: 500;
}
.case--pink .case__num { color: var(--ink); font-weight: 700; }
.case__meta h3 {
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 4px 0 0;
}
.case__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.case__meta p {
  font-size: 14px;
  line-height: 1.45;
  color: inherit;
  margin: 0;
  max-width: 460px;
}
.case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid currentColor;
  padding-top: 16px;
}
.case__stats > div { display: flex; flex-direction: column; gap: 4px; }
.case__stats--two { grid-template-columns: repeat(2, 1fr); }
.case__stats strong {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.case__stats span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* quote case — replaces image/meta pattern with a pull-quote block */
.case--quote {
  background: var(--bone);
  color: var(--ink);
  display: flex;
  padding: 48px 40px;
  justify-content: space-between;
  width: 680px;
}
.case__quote { display: flex; flex-direction: column; gap: 24px; height: 100%; justify-content: space-between; }
.case__quote .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg2);
}
.case__quote blockquote {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
}
.case__quote blockquote .pink { color: var(--chimera-pink); }
.case__quote-meta {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg2);
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}

.work__end {
  width: 480px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 32px;
  padding: 0 16px;
  border-left: 1px dashed rgba(244,241,235,.3);
  padding-left: 40px;
}
.work__end h4 {
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.work__end .btn {
  align-self: flex-start;
}

.work__progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 64px 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,235,.65);
}
.work__progress-track {
  height: 1px;
  background: rgba(244,241,235,.25);
  position: relative;
}
.work__progress-track span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--chimera-pink);
  width: 5%;
  transition: width 80ms linear;
}
.work__progress-count {
  font-family: var(--font-mono);
  color: var(--chimera-pink);
}

/* horizontal-scroll WORK: ensure enough columns to translate */
.work__track { will-change: transform; }

/* =============================================================
   SERVICES
============================================================= */
.services { padding: 128px 0 96px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 48px 0;
  border: 1px solid var(--ink);
  border-bottom: 0;
}
.svc {
  position: relative;
  padding: 36px 28px 28px;
  min-height: 300px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
  transition: background 180ms var(--ease-sharp), color 180ms var(--ease-sharp);
}
.svc:nth-child(3n) { border-right: 0; }
.svc__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chimera-pink);
  font-weight: 500;
}
.svc h4 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}
.svc p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
  color: var(--fg2);
  transition: color 180ms var(--ease-sharp);
}
.svc__hover {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chimera-pink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms var(--ease-sharp), transform 180ms var(--ease-sharp);
}
.svc:hover {
  background: var(--ink);
  color: var(--bone);
}
.svc:hover p { color: rgba(244,241,235,.75); }
.svc:hover .svc__hover { opacity: 1; transform: translateY(0); color: var(--chimera-pink); }
.svc:hover .svc__num { color: var(--chimera-pink); }

/* KPI strip */
/* services pitch — big one-liner that replaces the 4-KPI strip */
.svc-pitch {
  margin: 64px 48px 0;
  padding: 72px 64px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  position: relative;
}
.svc-pitch::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(244,241,235,0.05) 79px 80px);
  pointer-events: none;
}
.svc-pitch__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chimera-pink);
  margin-bottom: 28px;
  position: relative;
}
.svc-pitch__line {
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
  position: relative;
}
.svc-pitch__pink { color: var(--chimera-pink); }
.svc-pitch .strike {
  position: relative;
  opacity: 0.55;
  white-space: nowrap;
}
.svc-pitch .strike::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 6px;
  background: var(--chimera-pink);
  transform: rotate(-1.5deg);
}

/* =============================================================
   PRESS
============================================================= */
.press { padding: 96px 0; border-top: 1px solid var(--ink); margin-top: 64px; }
.press__rail {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  margin: 48px 0 0;
  padding: 20px 0;
}
.press__track {
  display: flex;
  white-space: nowrap;
  animation: mtrack 22s linear infinite;
  align-items: center;
  width: max-content;
}
.press__track > * { margin-right: 72px; }
.plogo {
  height: 44px;
  width: auto;
  flex: none;
  opacity: 0.9;
  transition: opacity 180ms var(--ease-sharp), transform 180ms var(--ease-sharp), filter 180ms var(--ease-sharp);
}
.plogo:hover { opacity: 1; transform: translateY(-2px); }
.plogo--img { object-fit: contain; object-position: center; }
.plogo--tall { height: 64px; } /* Dexerto's mark stacked above wordmark */

.press__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 64px 48px 0;
}
.pquote { border-top: 1px solid var(--ink); padding-top: 24px; }
.pquote .eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg2);
  margin-bottom: 12px;
}
.pquote blockquote {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.pquote blockquote .pink { color: var(--chimera-pink); }

/* =============================================================
   CTA — pink full-bleed with kinetic background grid
============================================================= */
.cta {
  background: var(--chimera-pink);
  color: var(--ink);
  padding: 96px 0 96px;
  position: relative;
  overflow: hidden;
}
.cta__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* diagonal hairline pattern, barely there — keeps headline crisp */
.cta__grid::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.08) 0 1px,
    transparent 1px 14px
  );
  animation: ctaDrift 48s linear infinite;
}
/* WAVES signature removed */

.cta__content {
  position: relative; z-index: 2;
  padding: 0 48px;
}
.cta__h2 {
  font-size: clamp(72px, 10vw, 180px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 48px 64px 64px;
}
.cta__h2 .stroke {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin: 0 64px;
  max-width: 1000px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
}
/* Reset native fieldset chrome — used as semantic group for chip checkboxes */
fieldset.field { border: 0; padding: 0; margin: 0; min-width: 0; }
.field > span,
.field > legend {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11,11,11,.75);
  padding: 0;
  display: block;
}

/* Honeypot: hidden from sight + AT, but in the DOM so bots fill it */
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  outline: none;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(11,11,11,.35);
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.field--wide { grid-column: 1 / -1; }
.field--chips { grid-column: 1 / -1; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: none;
  user-select: none;
}
.chip input { appearance: none; width: 10px; height: 10px; margin: 0; border: 1px solid var(--ink); background: transparent; }
.chip input:checked { background: var(--ink); }
.chip:has(input:checked) { background: var(--ink); color: var(--chimera-pink); }
.chip:has(input:checked) input { background: var(--chimera-pink); border-color: var(--chimera-pink); }
.chip:hover { background: var(--ink); color: var(--chimera-pink); }
.chip:hover input { border-color: var(--chimera-pink); }

.cta__form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 8px;
}

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 0 0 24px;
  position: relative;
}
.footer__big {
  padding: 96px 48px 24px;
  border-bottom: 1px solid rgba(244,241,235,.2);
}
.footer__big-top {
  font-size: clamp(64px, 9vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.footer__big-mid {
  display: flex; align-items: baseline; gap: 32px;
  color: var(--chimera-pink);
  font-size: clamp(120px, 18vw, 320px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.footer__big-word {
  background: linear-gradient(180deg, var(--chimera-pink) 0 55%, var(--chimera-pink-hot) 55% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__big-arrow {
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--bone);
  font-size: 0.5em;
  transform: translateY(-0.2em);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 48px 48px 48px;
  border-bottom: 1px solid rgba(244,241,235,.2);
}
.footer__mark {
  display: inline-flex; align-items: center; gap: 18px;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1;
}
.footer__mark-slash { color: var(--chimera-pink); }
.footer__col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chimera-pink);
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.85;
}
.footer__col a:hover { color: var(--chimera-pink); opacity: 1; }

.lingual--inverse { font-size: 11px; color: rgba(244,241,235,.7); margin-top: 16px; }
.lingual--inverse div { grid-template-columns: 40px 1fr; }
.lingual--inverse em { color: var(--chimera-pink); }

.footer__bar {
  padding: 16px 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,235,.55);
}
.footer__bar > :nth-child(2) { text-align: center; color: var(--chimera-pink); font-weight: 700; }
.footer__bar > :last-child { text-align: right; font-family: var(--font-mono); }


/* =============================================================
   UTILS
============================================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg2);
}
