/* ============================================================
   KRRISP DIGITAL – "Living intelligence, studio craft"
   Design system + layout
   ============================================================ */

:root {
  --ink: #0a0a0b;
  --ink-2: #0f0f11;
  --ink-3: #151517;
  --paper: #efede7;
  --paper-dim: rgba(239, 237, 231, 0.62);
  --paper-faint: rgba(239, 237, 231, 0.38);
  --hairline: rgba(239, 237, 231, 0.12);
  --hairline-strong: rgba(239, 237, 231, 0.22);
  --accent: #ff4e1f;
  --accent-soft: rgba(255, 78, 31, 0.55);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", monospace;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max: 90rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--ink); }

img, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  font-weight: 400;
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}
.cursor {
  width: 6px; height: 6px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid var(--hairline-strong);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  border-color: var(--accent-soft);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.preloader__mark {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}
.preloader__mark em { color: var(--accent); font-style: normal; }
.preloader__line {
  width: 180px; height: 1px;
  background: var(--hairline);
  overflow: hidden;
}
.preloader__fill {
  display: block;
  width: 100%; height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.preloader__status { color: var(--paper-faint); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--gutter);
  mix-blend-mode: normal;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav__mark {
  display: inline-flex;
  align-items: center;
  min-width: clamp(8.5rem, 12vw, 11.5rem);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  font-weight: 500;
}
.nav__mark em { color: var(--accent); font-style: normal; }
.nav__logo {
  width: clamp(8.2rem, 12vw, 11.25rem);
  height: auto;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--paper-dim);
  transition: color 0.3s ease;
  position: relative;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  color: var(--paper) !important;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav__cta:hover {
  background: var(--paper);
  color: var(--ink) !important;
  border-color: var(--paper);
}
@media (max-width: 720px) {
  .nav { padding: 1rem var(--gutter); }
  .nav__mark { min-width: auto; }
  .nav__logo { width: 8.25rem; }
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  will-change: transform;
}
.btn--solid {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}
.btn--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.btn--ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--paper);
}
.btn--ghost:hover { border-color: var(--paper); }
.btn--lg {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  padding: 1.2rem 2.4rem;
}

/* ---------- Shared section bits ---------- */
.section-label {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section-title em {
  font-weight: 300;
  color: var(--paper-dim);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 85%, rgba(10, 10, 11, 0.66) 0%, rgba(10, 10, 11, 0.12) 55%, transparent 100%),
    linear-gradient(to top, rgba(10, 10, 11, 0.72) 0%, transparent 36%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(6rem, 12vh, 9rem);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--paper-dim);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 78, 31, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 7px rgba(255, 78, 31, 0); }
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.hero__title em { color: var(--paper); }
.hero__title em::after {
  content: "";
  display: inline-block;
  width: 0.14em; height: 0.14em;
  margin-left: 0.08em;
  background: var(--accent);
  border-radius: 50%;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line > span {
  display: block;
  will-change: transform;
}
.hero__sub {
  max-width: 34rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--paper-dim);
  margin-bottom: clamp(1.75rem, 3.5vh, 2.75rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: clamp(1.75rem, 3.5vh, 2.75rem);
}
.hero__status {
  color: var(--paper-faint);
  min-height: 1.2em;
}
.hero__status-prefix { color: var(--accent); margin-right: 0.5em; }
.caret { animation: blink 1s steps(1) infinite; color: var(--accent); }
@keyframes blink { 50% { opacity: 0; } }
.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem var(--gutter);
  border-top: 1px solid var(--hairline);
  color: var(--paper-faint);
}
.hero__foot-line { flex: 1; height: 1px; background: var(--hairline); }
@media (max-width: 720px) {
  .hero__foot span:last-child { display: none; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--ink);
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.ticker__group {
  color: var(--paper-faint);
  padding-right: 2rem;
  flex-shrink: 0;
}
.ticker__group i {
  font-style: normal;
  color: var(--accent);
  margin: 0 1.2rem;
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: clamp(7rem, 16vh, 12rem) var(--gutter);
  max-width: 72rem;
  margin: 0 auto;
}
.manifesto__label { color: var(--accent); margin-bottom: 2.5rem; }
.manifesto__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.5vw, 3.6rem);
  line-height: 1.24;
  letter-spacing: -0.01em;
}
.manifesto__text .w {
  display: inline-block;
  opacity: 0.14;
  transition: opacity 0.2s linear;
}
.manifesto__text em { color: var(--accent); font-style: italic; }
.manifesto__foot {
  margin-top: 3rem;
  max-width: 30rem;
  color: var(--paper-dim);
  font-size: 0.95rem;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars {
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(5rem, 10vh, 8rem);
}
.pillars__head {
  padding: 0 var(--gutter) clamp(3rem, 6vh, 5rem);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.pillars__stack {
  display: flex;
  flex-direction: column;
}
.pillar {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--hairline);
}
.pillar[data-pillar="2"] { background: var(--ink-2); }
.pillar[data-pillar="3"] { background: var(--ink-3); }
.pillar__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 10vh, 7rem) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: auto 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.pillar__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1.25rem;
}
.pillar__index {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0;
  color: var(--accent);
  font-weight: 400;
}
.pillar__tag { color: var(--paper-faint); }
.pillar__body { align-self: center; }
.pillar__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.pillar__lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 400;
  color: var(--paper-dim);
  margin-bottom: 1.25rem;
}
.pillar__lede em { color: var(--accent); }
.pillar__copy {
  max-width: 32rem;
  color: var(--paper-dim);
  margin-bottom: 2rem;
}
.pillar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pillar__list li {
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  color: var(--paper-dim);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.pillar__list li:hover { border-color: var(--accent-soft); color: var(--paper); }
.pillar__visual {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(90% 75% at 68% 28%, rgba(255, 78, 31, 0.05), transparent 62%),
    linear-gradient(rgba(239, 237, 231, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 237, 231, 0.028) 1px, transparent 1px),
    rgba(255, 255, 255, 0.015);
  background-size: auto, 30px 30px, 30px 30px, auto;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.45);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.pillar__visual:hover {
  border-color: rgba(255, 78, 31, 0.32);
  box-shadow:
    inset 0 0 90px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(255, 78, 31, 0.07);
}
.pillar__visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(to top, rgba(10, 10, 11, 0.5), transparent);
  pointer-events: none;
}
.pillar__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pv-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  z-index: 3;
  opacity: 0.85;
  pointer-events: none;
}
.pv-corner--tl { top: 10px; left: 10px; border-top: 1px solid var(--accent-soft); border-left: 1px solid var(--accent-soft); }
.pv-corner--tr { top: 10px; right: 10px; border-top: 1px solid var(--accent-soft); border-right: 1px solid var(--accent-soft); }
.pv-corner--bl { bottom: 10px; left: 10px; border-bottom: 1px solid var(--accent-soft); border-left: 1px solid var(--accent-soft); }
.pv-corner--br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--accent-soft); border-right: 1px solid var(--accent-soft); }
.pillar__visual-meta {
  position: absolute;
  top: 1.05rem;
  right: 1.15rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper-faint);
  font-size: 0.58rem;
  pointer-events: none;
}
.pillar__visual-meta::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
.pillar__visual-label {
  position: absolute;
  left: 1.15rem;
  bottom: 1rem;
  z-index: 3;
  color: var(--paper-dim);
  font-size: 0.6rem;
}
@media (max-width: 900px) {
  .pillar { position: relative; min-height: 0; }
  .pillar__inner {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .pillar__visual { min-height: 260px; }
}

/* ============================================================
   THREAD
   ============================================================ */
.thread {
  border-top: 1px solid var(--hairline);
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.thread__head { max-width: 46rem; }
.thread__copy {
  margin-top: 2rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.7;
}
.thread__diagram { margin-top: clamp(3rem, 7vh, 5rem); }
.thread__stage {
  position: relative;
  height: clamp(240px, 40vh, 360px);
}
.thread__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.thread__labels {
  display: flex;
  justify-content: space-between;
  color: var(--paper-faint);
  margin-top: 1rem;
}
@media (max-width: 720px) {
  .thread__labels span { font-size: 0.55rem; }
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  border-top: 1px solid var(--hairline);
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.approach__head { margin-bottom: clamp(3rem, 7vh, 5rem); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.principle {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  transition: background 0.4s ease;
}
.principle:hover { background: rgba(255, 255, 255, 0.025); }
.principle__num {
  color: var(--accent);
  display: block;
  margin-bottom: 2.5rem;
}
.principle h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.principle p {
  color: var(--paper-dim);
  font-size: 0.92rem;
}

/* ============================================================
   STUDIO
   ============================================================ */
.studio {
  border-top: 1px solid var(--hairline);
  padding: clamp(6rem, 14vh, 10rem) var(--gutter);
}
.studio__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.studio__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 56rem;
}
.studio__title em { color: var(--paper-dim); }
.studio__facts {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.fact {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fact__k { color: var(--accent); }
.fact__v { font-size: 1rem; color: var(--paper); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding: clamp(8rem, 20vh, 14rem) var(--gutter);
  overflow: hidden;
  text-align: center;
}
.cta__field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.cta__content { position: relative; z-index: 2; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 4vh, 3rem);
}
.cta__title em { color: var(--accent); }
.cta__actions { margin-bottom: 2.25rem; }
.cta__note { color: var(--paper-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline);
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) 2rem;
}
.footer__row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.footer__row--main { align-items: flex-start; }
.footer__brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: min(18rem, 100%);
}
.footer__logo {
  width: clamp(11rem, 18vw, 17rem);
  height: auto;
  object-fit: contain;
}
.footer__tagline { color: var(--paper-faint); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.75rem;
}
.footer__links a {
  color: var(--paper-dim);
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--accent); }
.footer__legal {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.35rem;
}
.footer__legal a {
  color: var(--paper-faint);
  transition: color 0.3s ease;
}
.footer__legal a:hover { color: var(--accent); }
.footer__row--meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  color: var(--paper-faint);
  font-size: 0.6rem;
}
@media (max-width: 720px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__links {
    justify-content: flex-start;
    gap: 0.9rem 1.1rem;
  }
  .footer__legal {
    justify-content: flex-start;
  }
}

/* ============================================================
   LEGAL PAGES – premium concept shell for policy content
   ============================================================ */
.legal-page {
  padding: clamp(8rem, 18vh, 12rem) var(--gutter) clamp(5rem, 11vh, 8rem);
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 78, 31, 0.09), transparent 26rem),
    var(--ink);
}
.legal-page .container,
.legal-page .max-w-4xl {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 0;
}
.legal-page header {
  max-width: 58rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.legal-page h1 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.legal-page h2 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.legal-page h3,
.legal-page .text-foreground,
.legal-page .font-semibold,
.legal-page .font-medium {
  color: var(--paper) !important;
}
.legal-page p,
.legal-page li,
.legal-page address,
.legal-page .text-muted-foreground {
  color: var(--paper-dim) !important;
}
.legal-page p,
.legal-page li {
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.78;
}
.legal-page a {
  color: var(--accent) !important;
  text-decoration: none;
}
.legal-page a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.legal-page nav,
.legal-page [class*="bg-secondary"],
.legal-page [class*="bg-amber"],
.legal-page section > div[class*="border"] {
  background: rgba(255, 255, 255, 0.026) !important;
  border: 1px solid var(--hairline) !important;
  border-radius: 1.2rem !important;
}
.legal-page nav,
.legal-page [class*="bg-secondary"],
.legal-page [class*="bg-amber"] {
  padding: clamp(1.25rem, 2.4vw, 2rem) !important;
}
.legal-page nav h2 {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.legal-page button {
  color: var(--paper-dim);
  font-family: var(--font-body);
}
.legal-page button:hover {
  color: var(--accent);
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.legal-page section {
  scroll-margin-top: 7rem;
}
.legal-page section + section {
  margin-top: clamp(2.6rem, 5vw, 4rem);
}
@media (max-width: 720px) {
  .legal-page {
    padding-top: 7rem;
  }
  .legal-page .container,
  .legal-page .max-w-4xl,
  .legal-page header,
  .legal-page nav,
  .legal-page [class*="bg-secondary"],
  .legal-page [class*="bg-amber"],
  .legal-page section > div[class*="border"] {
    width: 100%;
    max-width: min(100%, 22rem);
    margin-left: 0;
    margin-right: 0;
  }
  .legal-page h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    overflow-wrap: anywhere;
  }
  .legal-page h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
    overflow-wrap: anywhere;
  }
  .legal-page p,
  .legal-page li,
  .legal-page button {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* ============================================================
   PILLAR PAGES
   ============================================================ */
.ppage-hero {
  padding: clamp(9rem, 20vh, 13rem) var(--gutter) 0;
  max-width: var(--max);
  margin: 0 auto;
}
.ppage-hero__crumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper-faint);
  margin-bottom: 2rem;
}
.ppage-hero__crumb a { color: var(--paper-dim); transition: color 0.3s ease; }
.ppage-hero__crumb a:hover { color: var(--accent); }
.ppage-hero__crumb i { font-style: normal; color: var(--accent); }
.ppage-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 60rem;
}
.ppage-hero__title em { color: var(--paper-dim); }
.ppage-hero__sub {
  max-width: 36rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  margin-top: 1.75rem;
}
.ppage-figure {
  position: relative;
  max-width: var(--max);
  margin: clamp(3rem, 6vh, 4.5rem) var(--gutter) 0;
  height: clamp(320px, 52vh, 520px);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(90% 75% at 68% 28%, rgba(255, 78, 31, 0.05), transparent 62%),
    linear-gradient(rgba(239, 237, 231, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 237, 231, 0.028) 1px, transparent 1px),
    rgba(255, 255, 255, 0.015);
  background-size: auto, 30px 30px, 30px 30px, auto;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.45);
}
@media (min-width: 96rem) {
  .ppage-figure { margin-left: auto; margin-right: auto; }
}
.ppage-figure canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ppage-section {
  border-top: 1px solid var(--hairline);
  padding: clamp(5rem, 12vh, 8rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.ppage-section--flush { border-top: none; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vh, 4rem);
}
.case-card {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.case-card:hover {
  border-color: rgba(255, 78, 31, 0.32);
  background: rgba(255, 255, 255, 0.03);
}
.case-card__tag { color: var(--accent); display: block; margin-bottom: 1rem; }
.case-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.case-card__copy { color: var(--paper-dim); font-size: 0.92rem; }
.case-card__readout {
  position: relative;
  height: 130px;
  margin: 1.4rem 0 0;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(10, 10, 11, 0.5);
}
.case-card__readout canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.case-card__stats { display: flex; gap: 2.25rem; margin-top: 1.25rem; }
.case-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.case-stat__v {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--paper);
}
.case-stat__v em { color: var(--accent); font-style: normal; }
.case-stat__k { color: var(--paper-faint); }
.ppage-cta {
  border-top: 1px solid var(--hairline);
  text-align: center;
  padding: clamp(6rem, 15vh, 10rem) var(--gutter);
}
.ppage-cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.75rem, 4vh, 2.75rem);
}
.ppage-cta__title em { color: var(--accent); }

/* ============================================================
   REVEAL DEFAULTS (JS enhances; no-JS stays visible)
   ============================================================ */
.motion-ready [data-reveal] { transform: translateY(28px); }
.motion-ready [data-hero-fade] { opacity: 0; }
.motion-ready .hero__line > span { transform: translateY(110%); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .motion-ready [data-reveal],
  .motion-ready [data-hero-fade] { opacity: 1; transform: none; }
  .motion-ready .hero__line > span { transform: none; }
  .cursor, .cursor-ring { display: none; }
  .pillar { position: relative; min-height: 0; }
}

/* ============================================================
   CONTACT PAGE – concept design system
   ============================================================ */
.contact-hero {
  padding: clamp(9rem, 20vh, 13rem) var(--gutter) clamp(4.5rem, 10vh, 7rem);
  min-height: 92svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 78, 31, 0.16), transparent 34rem),
    radial-gradient(circle at 15% 80%, rgba(239, 237, 231, 0.06), transparent 28rem),
    var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.contact-hero__content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.contact-hero h1 {
  max-width: 68rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 11rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.contact-hero h1::first-letter { color: var(--paper); }
.contact-hero__content > p:not(.ppage-hero__crumb) {
  max-width: 48rem;
  margin-top: 2rem;
  color: var(--paper-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.contact-section {
  padding: clamp(5rem, 11vh, 8rem) var(--gutter);
  background: var(--ink);
}
.contact-section--paths {
  border-top: 1px solid var(--hairline);
  background: var(--ink-2);
}
.contact-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-panel,
.contact-form,
.contact-success,
.contact-path {
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.contact-panel,
.contact-form,
.contact-success { border-radius: 1.6rem; }
.contact-panel { padding: clamp(1.75rem, 3vw, 2.75rem); }
.contact-panel h2,
.contact-form__head h2,
.contact-paths__head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.contact-panel h2 { margin-top: 1rem; font-size: clamp(2.3rem, 4.8vw, 4.4rem); }
.contact-steps { margin-top: 2.2rem; display: grid; gap: 1rem; }
.contact-steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--hairline);
}
.contact-steps span { color: var(--accent); }
.contact-steps p { color: var(--paper-dim); line-height: 1.65; }
.contact-direct { margin-top: 2.5rem; display: grid; gap: 0.75rem; }
.contact-direct__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 1rem;
  color: var(--paper-dim);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.contact-direct__item:hover { border-color: var(--accent-soft); color: var(--paper); background: rgba(255, 78, 31, 0.06); }
.contact-direct__icon { width: 1.05rem; height: 1.05rem; color: var(--accent); flex-shrink: 0; }
.contact-direct__item small { display: block; color: var(--paper-faint); font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-form { padding: clamp(1.5rem, 3vw, 2.5rem); }
.contact-form__head { margin-bottom: 1.5rem; }
.contact-form__head h2 { margin-top: 0.85rem; font-size: clamp(2rem, 4vw, 3.6rem); }
.contact-form__head p { margin-top: 1rem; color: var(--paper-dim); line-height: 1.65; }
.contact-grid { display: grid; gap: 1rem; }
.contact-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-field { display: grid; gap: 0.55rem; margin-top: 1rem; }
.contact-field span {
  color: var(--paper-faint);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 1rem;
  background: rgba(10, 10, 11, 0.74);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-field textarea { resize: vertical; min-height: 10rem; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--paper-faint); }
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 4px rgba(255, 78, 31, 0.09);
  background: rgba(10, 10, 11, 0.92);
}
.contact-captcha { margin-top: 1.25rem; min-height: 70px; }
.contact-error { margin-top: 1rem; color: #ff8f76; font-size: 0.92rem; }
.contact-submit { width: 100%; margin-top: 1rem; gap: 0.55rem; }
.contact-submit:disabled { opacity: 0.52; cursor: not-allowed; }
.contact-submit__icon { width: 1rem; height: 1rem; }
.is-spinning { animation: contact-spin 1s linear infinite; }
@keyframes contact-spin { to { transform: rotate(360deg); } }
.contact-privacy { margin-top: 1rem; color: var(--paper-faint); font-size: 0.78rem; text-align: center; }
.contact-privacy a,
.contact-text-button { color: var(--accent); }
.contact-success { padding: clamp(2rem, 4vw, 3rem); text-align: center; }
.contact-success__icon { width: 3rem; height: 3rem; color: var(--accent); margin: 0 auto 1.25rem; }
.contact-success h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.contact-success p { color: var(--paper-dim); max-width: 34rem; margin: 1rem auto 0; }
.contact-text-button { margin-top: 1.4rem; background: transparent; border: 0; font: inherit; cursor: pointer; }
.contact-paths { max-width: var(--max); margin: 0 auto; }
.contact-paths__head { max-width: 58rem; }
.contact-paths__head h2 { margin-top: 1rem; font-size: clamp(2.5rem, 6vw, 5.6rem); }
.contact-paths__grid { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.contact-path { border-radius: 1.4rem; padding: clamp(1.4rem, 2.5vw, 2rem); }
.contact-path > span { color: var(--accent); }
.contact-path h3 { margin-top: 2.5rem; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 300; }
.contact-path p { margin-top: 1rem; color: var(--paper-dim); line-height: 1.65; }
.contact-path a { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-size: 0.92rem; }
.contact-path__arrow { width: 1rem; height: 1rem; }
@media (max-width: 900px) {
  .contact-shell,
  .contact-paths__grid,
  .contact-grid--two { grid-template-columns: 1fr; }
  .contact-hero { min-height: 0; }
}

/* ============================================================
   CASE STUDIES – proof index + detail pages
   ============================================================ */
.proof-hero,
.case-hero {
  padding: clamp(9rem, 20vh, 13rem) var(--gutter) clamp(4.5rem, 10vh, 7rem);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 78, 31, 0.15), transparent 34rem),
    radial-gradient(circle at 12% 86%, rgba(239, 237, 231, 0.055), transparent 28rem),
    var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.proof-hero__inner,
.case-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.proof-hero h1,
.case-hero h1 {
  max-width: 74rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.proof-hero__inner > p:not(.ppage-hero__crumb),
.case-hero__lede {
  max-width: 52rem;
  margin-top: 2rem;
  color: var(--paper-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}
.proof-index {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 11vh, 8rem) var(--gutter);
}
.proof-group + .proof-group {
  margin-top: clamp(5rem, 10vh, 8rem);
  padding-top: clamp(4rem, 8vh, 6rem);
  border-top: 1px solid var(--hairline);
}
.proof-group__head {
  max-width: 62rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.proof-group__head h2,
.proof-cta h2,
.case-copy h2 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.proof-group__head h2 {
  margin-top: 1rem;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}
.proof-group__head > p:not(.section-label) {
  margin-top: 1rem;
  color: var(--paper-dim);
  max-width: 44rem;
  line-height: 1.65;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.proof-card {
  display: block;
  min-height: 100%;
  border: 1px solid var(--hairline);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}
.proof-card:hover {
  border-color: var(--accent-soft);
  background: rgba(255, 78, 31, 0.055);
  transform: translateY(-4px);
}
.proof-card article { padding: clamp(1.4rem, 2.8vw, 2.35rem); }
.proof-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--paper-faint);
}
.proof-card__topline span:first-child,
.case-client { color: var(--accent); }
.proof-card__client {
  margin-top: 2.5rem;
  color: var(--accent);
  font-size: 0.92rem;
}
.proof-card h3 {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.proof-card__copy {
  margin-top: 1rem;
  color: var(--paper-dim);
  line-height: 1.65;
}
.proof-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.proof-card__stats div {
  border: 1px solid var(--hairline);
  border-radius: 1rem;
  padding: 1rem;
}
.proof-card__stats strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1;
}
.proof-card__stats span {
  display: block;
  margin-top: 0.5rem;
  color: var(--paper-faint);
  line-height: 1.35;
}
.proof-card__link,
.case-links__items a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  color: var(--accent);
}
.proof-card__arrow,
.case-link__icon { width: 1rem; height: 1rem; }
.proof-cta {
  padding: clamp(5rem, 11vh, 8rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--hairline);
  background: var(--ink-2);
}
.proof-cta h2 {
  max-width: 54rem;
  margin: 1rem auto 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}
.proof-cta p:not(.section-label) {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  color: var(--paper-dim);
  line-height: 1.65;
}
.proof-cta .btn { margin-top: 2rem; }
.case-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--paper-faint);
  margin-bottom: 2rem;
}
.case-back:hover { color: var(--accent); }
.case-back__icon { width: 0.95rem; height: 0.95rem; }
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.case-tags span {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--paper-dim);
  font-size: 0.8rem;
}
.case-client { margin-bottom: 0.75rem; }
.case-results-band {
  padding: 0 var(--gutter) clamp(4rem, 8vh, 6rem);
  background: var(--ink);
}
.case-results-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.case-result {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(1.25rem, 2.6vw, 2rem);
}
.case-result strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
}
.case-result span { display: block; margin-top: 0.75rem; color: var(--paper-faint); line-height: 1.35; }
.case-section,
.case-quote-section,
.case-links-section {
  padding: clamp(5rem, 11vh, 8rem) var(--gutter);
  background: var(--ink);
}
.case-section--alt { background: var(--ink-2); border-block: 1px solid var(--hairline); }
.case-copy {
  max-width: 58rem;
  margin: 0 auto;
}
.case-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
}
.case-prose {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}
.case-prose--featured {
  border: 1px solid var(--hairline);
  border-radius: 1.4rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.035);
}
.case-disclaimer {
  margin-top: 1rem;
  color: var(--paper-faint);
  font-size: 0.78rem;
  line-height: 1.6;
}
.case-approach {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
.case-approach__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border: 1px solid var(--hairline);
  border-radius: 1.35rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.025);
}
.case-approach__icon {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--hairline);
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.case-approach__icon svg { width: 1.2rem; height: 1.2rem; }
.case-approach__item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 300;
}
.case-approach__item p { margin-top: 0.6rem; color: var(--paper-dim); line-height: 1.7; }
.case-quote {
  max-width: 68rem;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  border-radius: 1.6rem;
  padding: clamp(1.75rem, 4vw, 3.2rem);
  background: rgba(255, 255, 255, 0.035);
}
.case-quote__icon { width: 2rem; height: 2rem; color: var(--accent); opacity: 0.68; }
.case-quote p {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
}
.case-quote footer { margin-top: 1.5rem; color: var(--paper-dim); }
.case-links { max-width: var(--max); margin: 0 auto; }
.case-links__items { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }
.case-links__items a {
  margin-top: 0;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.8rem 1rem;
}
.case-links__items a:hover { border-color: var(--accent-soft); }
@media (max-width: 900px) {
  .proof-grid,
  .case-results-grid { grid-template-columns: 1fr; }
  .case-approach__item { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE – premium studio positioning
   ============================================================ */
.about-hero {
  padding: clamp(9rem, 20vh, 13rem) var(--gutter) clamp(4.5rem, 10vh, 7rem);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 78, 31, 0.15), transparent 34rem),
    radial-gradient(circle at 12% 86%, rgba(239, 237, 231, 0.055), transparent 28rem),
    var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.about-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.about-hero h1 {
  max-width: 78rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.8rem, 9vw, 9.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}
.about-hero__inner > p:not(.ppage-hero__crumb) {
  max-width: 54rem;
  margin-top: 2rem;
  color: var(--paper-dim);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}
.about-founder,
.about-disciplines,
.about-principles,
.about-proof {
  padding: clamp(5rem, 11vh, 8rem) var(--gutter);
  background: var(--ink);
}
.about-disciplines,
.about-proof {
  border-top: 1px solid var(--hairline);
}
.about-principles {
  background: var(--ink-2);
  border-block: 1px solid var(--hairline);
}
.about-founder__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about-founder__portrait {
  position: sticky;
  top: 6rem;
}
.about-founder__portrait img {
  width: min(100%, 24rem);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.6rem;
  border: 1px solid var(--hairline);
  filter: saturate(0.92) contrast(1.03);
}
.about-founder__portrait span {
  display: block;
  margin-top: 1rem;
  color: var(--paper-faint);
}
.about-founder__copy h2,
.about-section-head h2,
.about-cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.about-founder__copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 6.6vw, 6.4rem);
}
.about-prose {
  margin-top: 2rem;
  display: grid;
  gap: 1.15rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}
.about-section-head {
  max-width: var(--max);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.about-section-head h2 {
  margin-top: 1rem;
  max-width: 68rem;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}
.about-discipline-grid,
.about-proof__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.about-discipline,
.about-principle,
.about-proof-card {
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.035);
}
.about-discipline,
.about-principle,
.about-proof-card article {
  border-radius: 1.45rem;
}
.about-discipline,
.about-principle,
.about-proof-card article {
  padding: clamp(1.4rem, 2.8vw, 2.35rem);
}
.about-discipline > span {
  color: var(--accent);
}
.about-discipline h3,
.about-principle h3,
.about-proof-card h3 {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.about-discipline p,
.about-principle p,
.about-proof-card p {
  margin-top: 1rem;
  color: var(--paper-dim);
  line-height: 1.65;
}
.about-discipline a,
.about-proof-card span,
.about-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
  color: var(--accent);
}
.about-link-icon {
  width: 1rem;
  height: 1rem;
}
.about-principles__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.about-principle {
  border-top: 0;
  border-left: 0;
  border-radius: 0;
}
.about-principle__icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
}
.about-proof-card {
  display: block;
  border-radius: 1.45rem;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}
.about-proof-card:hover {
  border-color: var(--accent-soft);
  background: rgba(255, 78, 31, 0.055);
  transform: translateY(-4px);
}
.about-cta {
  padding: clamp(5rem, 11vh, 8rem) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--hairline);
  background: var(--ink-2);
}
.about-cta h2 {
  max-width: 62rem;
  margin: 1rem auto 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}
.about-cta p:not(.section-label) {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  color: var(--paper-dim);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .about-founder__grid,
  .about-discipline-grid,
  .about-proof__grid,
  .about-principles__grid {
    grid-template-columns: 1fr;
  }
  .about-founder__portrait {
    position: relative;
    top: auto;
  }
}

/* ============================================================
   HOMEPAGE SELECTED WORK STRIP
   ============================================================ */
.selected {
  padding: clamp(4.5rem, 10vh, 7rem) var(--gutter);
  border-block: 1px solid var(--hairline);
  background: var(--ink-2);
}
.selected__head {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.selected__title {
  max-width: 42rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-align: right;
}
.selected__title em { color: var(--paper-dim); }
.selected__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.selected__item {
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.018);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.selected__item:hover {
  background: rgba(255, 78, 31, 0.055);
  border-color: var(--accent-soft);
  transform: translateY(-3px);
}
.selected__name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.selected__tag {
  color: var(--paper-faint);
}
.selected__item:hover .selected__tag { color: var(--accent); }
@media (max-width: 1050px) {
  .selected__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .selected__head {
    display: block;
  }
  .selected__title {
    margin-top: 1rem;
    text-align: left;
  }
  .selected__grid { grid-template-columns: 1fr; }
  .selected__item { min-height: 7.5rem; }
}

/* ============================================================
   HOMEPAGE GOOGLE REVIEWS, PREMIUM TREATMENT
   ============================================================ */
.reviews-band {
  padding: clamp(4.5rem, 10vh, 7rem) var(--gutter);
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 78, 31, 0.08), transparent 28rem),
    var(--ink);
}
.reviews-band__head {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.reviews-band__head > div {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}
.reviews-band__rating {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.reviews-band__source {
  color: var(--paper-faint);
}
.reviews-band__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.reviews-band__quote {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 2.8vw, 2.35rem);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.018);
}
.reviews-band__quote p {
  color: var(--paper-dim);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 2.15rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.reviews-band__quote footer {
  display: grid;
  gap: 0.3rem;
  color: var(--paper);
}
.reviews-band__quote small {
  color: var(--paper-faint);
}
@media (max-width: 900px) {
  .reviews-band__head {
    display: block;
  }
  .reviews-band__head > div {
    margin-top: 1rem;
  }
  .reviews-band__grid {
    grid-template-columns: 1fr;
  }
  .reviews-band__quote {
    min-height: 0;
  }
}

/* ============================================================
   FINAL VISUAL BALANCE PASS – readability, daylight contrast, type scale
   ============================================================ */
:root {
  --ink: #101012;
  --ink-2: #151518;
  --ink-3: #1a1a1d;
  --paper: #f4f1ea;
  --paper-dim: rgba(244, 241, 234, 0.74);
  --paper-faint: rgba(244, 241, 234, 0.52);
  --hairline: rgba(244, 241, 234, 0.16);
  --hairline-strong: rgba(244, 241, 234, 0.28);
}

.hero__title {
  font-size: clamp(3.1rem, 9.2vw, 8.2rem);
  line-height: 0.98;
  max-width: min(100%, 74rem);
}

.ppage-hero__title {
  font-size: clamp(2.7rem, 6.2vw, 5.2rem);
  line-height: 1.04;
}

.contact-hero h1,
.proof-hero h1,
.case-hero h1,
.about-hero h1 {
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.99;
  max-width: min(100%, 74rem);
}

.section-title,
.selected__title,
.proof-group__head h2,
.proof-cta h2,
.case-copy h2,
.about-section-head h2,
.about-cta h2,
.contact-paths__head h2 {
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  line-height: 1.07;
}

.manifesto__text {
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.27;
}

.reviews-band__rating {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.reviews-band__quote p,
.case-quote p {
  color: var(--paper-dim);
}

.pillar__copy,
.ppage-hero__sub,
.thread__copy,
.contact-hero__content > p:not(.ppage-hero__crumb),
.proof-hero__inner > p:not(.ppage-hero__crumb),
.case-hero__lede,
.about-hero__inner > p:not(.ppage-hero__crumb),
.about-prose,
.case-prose,
.contact-form__head p,
.proof-group__head > p:not(.section-label),
.proof-cta p:not(.section-label),
.about-cta p:not(.section-label) {
  color: var(--paper-dim);
}

.nav.is-scrolled {
  background: rgba(16, 16, 18, 0.84);
}

.btn--solid {
  color: #101012;
}

@media (max-width: 900px) {
  .hero__title,
  .contact-hero h1,
  .proof-hero h1,
  .case-hero h1,
  .about-hero h1 {
    font-size: clamp(3rem, 14vw, 5.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .ppage-hero__title {
    font-size: clamp(2.65rem, 12vw, 4.8rem);
  }

  .section-title,
  .selected__title,
  .proof-group__head h2,
  .proof-cta h2,
  .case-copy h2,
  .about-section-head h2,
  .about-cta h2,
  .contact-paths__head h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 1.15rem;
  }

  .hero__title,
  .contact-hero h1,
  .proof-hero h1,
  .case-hero h1,
  .about-hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.35rem);
    line-height: 1.04;
  }

  .hero__content {
    bottom: 14vh;
  }

  .hero__sub,
  .ppage-hero__sub,
  .contact-hero__content > p:not(.ppage-hero__crumb),
  .proof-hero__inner > p:not(.ppage-hero__crumb),
  .case-hero__lede,
  .about-hero__inner > p:not(.ppage-hero__crumb) {
    font-size: 1rem;
    line-height: 1.68;
  }

  .mono {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
  }

  .nav__cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.76rem;
  }
}

/* ============================================================
   CASE DETAIL HEADLINE BALANCE – long dynamic article titles
   ============================================================ */
.case-hero {
  padding-top: clamp(7.5rem, 14vh, 10rem);
  padding-bottom: clamp(3.5rem, 7vh, 5rem);
}
.case-hero__inner {
  max-width: 76rem;
}
.case-hero h1 {
  max-width: 68rem;
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.case-hero__lede {
  max-width: 46rem;
  margin-top: 1.4rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.62;
}
.case-tags {
  margin-bottom: 1rem;
}
.case-back {
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .case-hero {
    padding-top: 7rem;
    padding-bottom: 3.25rem;
  }
  .case-hero h1 {
    font-size: clamp(2.5rem, 9.5vw, 4rem);
    line-height: 1.07;
  }
}
@media (max-width: 520px) {
  .case-hero h1 {
    font-size: clamp(2.2rem, 8.8vw, 3.25rem);
    line-height: 1.1;
  }
}

/* Reviews should read editorial, not justified. */
.reviews-band__quote p {
  text-align: left;
  text-wrap: pretty;
  word-spacing: normal;
  hyphens: none;
}

/* ============================================================
   AUDIT POLISH – keep client/proof words premium, not dominant
   ============================================================ */
.selected__item {
  min-height: 7.4rem;
  gap: 1.15rem;
}
.selected__name {
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.08;
}
.reviews-band__rating {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: -0.035em;
}
.reviews-band__quote {
  min-height: 14rem;
  gap: 1.4rem;
}
.reviews-band__quote p {
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: -0.012em;
}
.proof-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.12;
}
.proof-card__stats strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}
@media (max-width: 720px) {
  .selected__item {
    min-height: 5.8rem;
  }
  .reviews-band__head > div {
    align-items: center;
  }
  .reviews-band__quote {
    min-height: 0;
  }
  .nav__cta {
    display: none;
  }
  .hero__content {
    max-width: 100vw;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .hero__sub,
  .thread__copy,
  .ppage-hero__sub,
  .contact-hero__content > p:not(.ppage-hero__crumb),
  .proof-hero__inner > p:not(.ppage-hero__crumb),
  .case-hero__lede,
  .about-hero__inner > p:not(.ppage-hero__crumb) {
    max-width: min(100%, 22rem);
    overflow-wrap: anywhere;
  }
  .hero__actions {
    max-width: min(100%, 22rem);
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .hero__status {
    max-width: min(100%, 22rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Narrow viewport guardrails: prevent premium type and controls clipping. */
@media (max-width: 520px) {
  .nav {
    gap: 0.75rem;
  }
  .nav__logo {
    width: 7.5rem;
  }
  .nav__links {
    flex: 0 0 auto;
    min-width: 0;
  }
  .nav__cta {
    white-space: nowrap;
    padding: 0.45rem 0.72rem;
    font-size: 0.68rem;
  }
}

/* ============================================================
   HOMEPAGE PILLAR + FINAL CTA BALANCE
   ============================================================ */
.pillar {
  min-height: auto;
}
.pillar__inner {
  padding-top: clamp(3.5rem, 7vh, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.pillar__inline-more {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1.5rem;
  color: var(--accent);
  transition: color 0.3s ease, transform 0.3s ease;
}
.pillar__inline-more:hover {
  color: var(--paper);
  transform: translateX(3px);
}
.pillar__more {
  display: none;
}
.cta {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 78, 31, 0.24), transparent 28rem),
    radial-gradient(circle at 22% 74%, rgba(244, 241, 234, 0.08), transparent 24rem),
    var(--ink-2);
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(6rem, 14vh, 10rem);
}
.cta__field {
  opacity: 0.9;
  mix-blend-mode: screen;
}
.cta__content {
  max-width: 72rem;
  margin: 0 auto;
}
.cta__title {
  text-shadow: 0 0 34px rgba(255, 78, 31, 0.12);
}
.cta__note {
  color: var(--paper-dim);
}
@media (max-width: 900px) {
  .pillar__inner {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .pillar__inline-more {
    margin-top: 1.25rem;
  }
}

/* Match final homepage CTA to the hero's quieter canvas treatment. */
.cta {
  background: var(--ink);
  padding-top: clamp(8rem, 20vh, 14rem);
  padding-bottom: clamp(8rem, 20vh, 14rem);
}
.cta__field {
  opacity: 1;
  mix-blend-mode: normal;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 85%, rgba(16, 16, 18, 0.66) 0%, rgba(16, 16, 18, 0.12) 55%, transparent 100%),
    linear-gradient(to top, rgba(16, 16, 18, 0.72) 0%, transparent 36%);
  pointer-events: none;
}
.cta__content {
  max-width: var(--max);
  margin: 0 auto;
}
.cta__title {
  text-shadow: none;
}
.cta__note {
  color: var(--paper-faint);
}

/* ============================================================
   SERVICES AS SUPPORTING CAPABILITIES
   ============================================================ */
.capability-hero {
  padding: clamp(8rem, 16vh, 11rem) var(--gutter) clamp(4rem, 8vh, 6rem);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 78, 31, 0.12), transparent 30rem),
    var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.capability-hero__inner { max-width: var(--max); margin: 0 auto; }
.capability-hero h1 {
  max-width: 70rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.capability-hero__inner > p:not(.ppage-hero__crumb):not(.section-label) {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}
.capability-section { padding: clamp(5rem, 11vh, 8rem) var(--gutter); background: var(--ink); }
.capability-section--alt { background: var(--ink-2); border-block: 1px solid var(--hairline); }
.capability-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); }
.capability-aside, .capability-copy, .capability-proof { border: 1px solid var(--hairline); border-radius: 1.45rem; padding: clamp(1.5rem, 3vw, 2.5rem); background: rgba(255,255,255,.03); }
.capability-aside h2, .capability-copy h2, .capability-proof h2, .capability-fit h2 { margin-top: 1rem; font-family: var(--font-display); font-weight: 300; font-size: clamp(2.1rem, 4.5vw, 4.4rem); line-height: 1.06; letter-spacing: -.03em; }
.capability-aside p, .capability-proof p { margin-top: 1rem; color: var(--paper-dim); line-height: 1.65; }
.capability-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem; color: var(--accent); }
.capability-link__icon { width: 1rem; height: 1rem; }
.capability-list { display: grid; gap: .85rem; margin-top: 2rem; }
.capability-list__item { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; padding: 1rem; border: 1px solid var(--hairline); border-radius: 1rem; color: var(--paper-dim); }
.capability-list__item svg { width: 1rem; height: 1rem; color: var(--accent); margin-top: .2rem; }
.capability-proof { max-width: 70rem; margin: 0 auto; }
.capability-fit { max-width: var(--max); margin: 0 auto; }
.capability-fit__grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.capability-fit__grid article { border: 1px solid var(--hairline); border-radius: 1.25rem; padding: 1.25rem; color: var(--paper-dim); background: rgba(255,255,255,.025); line-height: 1.55; }
@media (max-width: 900px) { .capability-layout, .capability-fit__grid { grid-template-columns: 1fr; } .capability-hero h1 { font-size: clamp(2.6rem, 10vw, 4.4rem); } }
