/* ============================================================
   injctr — site styles
   ============================================================ */

:root {
  /* v2 palette — black / pink / bone / blue */
  --ink: #030d14;          /* Pantone Black 6 C */
  --ink-2: #0a1820;
  --paper: #f0eee9;        /* Cloud Dancer */
  --paper-2: #e6e3dc;
  --cream: #f7f5f0;
  --white: #ffffff;
  --pink: #da1984;         /* Pantone PQ-219C */
  --pink-soft: #f8d6e6;
  --blue: #4BBC77;         /* was Pantone 2717 C — now brand green */
  --blue-soft: #4BBC77;
  --blue-deep: #4BBC77;
  /* legacy aliases retained so existing rules keep compiling */
  --lime: var(--blue);
  --lime-soft: var(--blue-soft);
  --muted: rgba(3, 13, 20, 0.6);
  --muted-paper: rgba(240, 238, 233, 0.7);
  --line: rgba(3, 13, 20, 0.12);
  --line-paper: rgba(240, 238, 233, 0.18);
  --shadow-card: 4px 4px 0 0 var(--ink);
  --shadow-card-lg: 6px 6px 0 0 var(--ink);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ----------- Type system ----------- */

.eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.on-ink .eyebrow {
  color: var(--paper);
}

.display {
  font-family: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
  text-wrap: balance;
  margin: 0;
}

.h-hero {
  font-size: clamp(54px, 7vw, 108px);
}
.h-1 {
  font-size: clamp(40px, 5vw, 72px);
}
.h-2 {
  font-size: clamp(30px, 3.4vw, 48px);
}
.h-3 {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
}

.serif-italic {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* v2 — accent treatment is bold-coloured first, italic reserved for quotes */
.accent {
  font-family: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.025em;
  color: var(--pink);
}
.accent.blue {
  color: var(--blue-deep);
}
/* .accent.ink — used on coloured bands (pink/blue bg) where a bold colour shift can't
   provide contrast. Falls back to italic serif in ink for differentiation. */
.accent.ink {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.shift-page .accent:not(.ink) {
  color: var(--blue-deep);
}

.dot {
  color: var(--pink);
  display: inline-block;
}
.shift-page .dot {
  color: var(--lime);
}

.lead {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.78;
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}
.on-ink .lead {
  color: var(--paper);
  opacity: 0.78;
}

/* ----------- Layout containers ----------- */

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: clamp(64px, 9vw, 128px) 0;
}

.bg-ink {
  background: var(--ink);
  color: var(--paper);
}
.bg-paper {
  background: var(--paper);
  color: var(--ink);
}
.bg-cream {
  background: var(--cream);
  color: var(--ink);
}
.bg-pink {
  background: var(--pink);
  color: var(--ink);
}
.bg-lime {
  background: var(--lime);
  color: var(--ink);
}

/* ----------- Eyebrow w/ em-dash ----------- */
.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
}

/* ----------- Pill / pulse ----------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-pill);
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: rgba(240, 238, 233, 0.04);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(218, 25, 132, 0.6);
  animation: pulse 1.8s infinite;
}
.shift-page .pulse {
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(167, 198, 237, 0.6);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 25, 132, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 25, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 25, 132, 0);
  }
}

/* ----------- Buttons (pill) ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--pink);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 3px 3px 0 0 var(--pink);
}
.shift-page .btn-primary,
.btn-primary.lime {
  background: var(--lime);
}
.shift-page .btn-primary:hover,
.btn-primary.lime:hover {
  box-shadow: 3px 3px 0 0 var(--lime);
}
.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  opacity: 0.85;
}
.on-ink .btn-ghost {
  border-color: rgba(240, 238, 233, 0.4);
  color: var(--paper);
}
.btn-ghost:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.04);
}
.on-ink .btn-ghost:hover {
  background: rgba(240, 238, 233, 0.06);
}

/* ----------- Nav ----------- */

.nav-outer {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 18px 24px 0;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 24px;
  background: rgba(3, 13, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(240, 238, 233, 0.08);
  border-radius: var(--radius-pill);
  color: var(--paper);
}
.nav-logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.nav-logo .dot {
  color: var(--pink);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(240, 238, 233, 0.7);
}
.nav-links a {
  position: relative;
  transition: color 0.18s ease;
  padding: 6px 2px;
}
.nav-links a:hover {
  color: var(--paper);
}
.nav-links a.active {
  color: var(--paper);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.shift-page .nav-links a.active::after {
  background: var(--lime);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--pink);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s ease, transform 0.18s ease;
}
.nav-cta .arrow {
  transition: transform 0.2s ease;
}
.nav-cta:hover .arrow {
  transform: translateX(3px);
}
.shift-page .nav-cta {
  background: var(--lime);
}
.nav-cta:hover {
  background: var(--paper);
}

/* Hamburger toggle — hidden on desktop, shown on tablet/mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 38px;
  height: 38px;
  padding: 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-cta-mobile {
  display: none;
}

/* ----------- Star badge ----------- */

.star-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  transform: rotate(-15deg);
  flex-shrink: 0;
}
.star-badge .outer,
.star-badge .inner {
  position: absolute;
  inset: 0;
}
.star-badge .inner {
  inset: 10%;
}
.star-badge .icon {
  position: relative;
  z-index: 2;
  font-family: "Geist Mono", monospace;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.05;
}
/* Star variants: filter on the inline svg to recolor */
.star-pink svg path,
.star-pink svg polygon {
  fill: var(--pink) !important;
}
.star-lime svg path,
.star-lime svg polygon {
  fill: var(--lime) !important;
}

/* ----------- Generic card ----------- */

.card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-lg);
}

/* ----------- Two-arm split cards ----------- */
.arm-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--ink);
  padding: 40px;
  box-shadow: var(--shadow-card-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 540px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.arm-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--ink);
}
.arm-card.px {
  background: var(--pink);
  color: var(--ink);
}
.arm-card.shift {
  background: var(--blue);
  color: var(--ink);
}
.arm-card .product-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 3.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.arm-card .product-mark .suffix {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.arm-card.px .suffix {
  color: var(--ink);
}
.arm-card.shift .suffix {
  color: var(--ink);
}

/* ----------- Stat strip ----------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}
.stat-strip .stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line-paper);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-strip .stat:last-child {
  border-right: none;
}
.stat-strip .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-strip .label {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 238, 233, 0.6);
}

/* ----------- Numbered process cards ----------- */
.num-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.num-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.num-card .n {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--pink);
  font-weight: 500;
}
.shift-page .num-card .n {
  color: var(--blue-deep);
}
.num-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.num-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.78;
}

/* ----------- Operating-model row (4 pillar cards) ----------- */
.op-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.op-pillar {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.op-pillar .n {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--pink);
  font-weight: 500;
}
.op-pillar h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0;
}
.op-pillar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.78;
}
@media (max-width: 980px) {
  .op-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .op-row { grid-template-columns: 1fr; }
}

/* Homepage "Proof" two-up — desktop side-by-side, stacks on mobile */
.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .proof-row { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPONENT — homepage scrolling marquee
   Spec ref: injctr-site-components.html (locked tokens)
   ============================================================ */
.marquee {
  background: #ED1D7E;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
}
/* Soft pink edge fades, left + right */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg,  #ED1D7E, transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, #ED1D7E, transparent); }
.marquee__track {
  display: flex;
  align-items: center;
  flex: none;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee__item { display: inline-flex; align-items: center; height: 74px; }
.marquee__seg {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: #1B1B1B;
  padding: 0 30px;
}
.marquee__lbl {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.55);
  padding: 0 30px;
}
.marquee__lbl--cred { color: #1B1B1B; }
.marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1B1B1B;
  opacity: 0.85;
  flex: none;
}
@media (max-width: 860px) {
  .marquee__seg { font-size: 18px; padding: 0 22px; }
  .marquee__lbl { padding: 0 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ============================================================
   COMPONENT — testimonials grid (Option D attribution)
   Spec ref: injctr-site-components.html (locked tokens)
   ============================================================ */
.testimonials { max-width: 1200px; margin: 0 auto; padding: 96px 40px; }
.testimonials__eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ED1D7E;
  margin-bottom: 16px;
}
.testimonials__head {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 48px;
  color: #1B1B1B;
}
.testimonials__head em {
  font-style: normal;
  color: #ED1D7E;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: #EEECE8;
  border: 1px solid rgba(27, 27, 27, 0.13);
  border-radius: 18px;
  padding: 34px 32px 32px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.quote-card__eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.40);
  margin-bottom: 18px;
}
.quote-card__quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.34;
  letter-spacing: -0.012em;
  color: #1B1B1B;
  margin-bottom: 28px;
}
.quote-card__quote .hl { color: #ED1D7E; }
.quote-card__attr { margin-top: auto; }
.quote-card__name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #1B1B1B;
  display: inline;
  padding: 0 3px;
  background: linear-gradient(transparent 56%, rgba(237, 29, 126, 0.32) 56%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.quote-card__role {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4BBC77;
  margin-top: 13px;
}
@media (max-width: 860px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials { padding: 72px 24px; }
}

/* ============================================================
   Footer — Variant A (PNG lockup + IMANZ endorsement)
   ============================================================ */
footer.foot {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  width: 100%;
}
footer.foot::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(218, 25, 132, 0.10) 0%, transparent 62%);
  pointer-events: none;
}
.foot-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 72px 0;
  position: relative;
}
.f-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  position: relative;
}
.f-eyebrow {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(240, 238, 233, 0.70);
  margin-bottom: 20px;
}
.f-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.f-logo {
  height: 86px;
  width: auto;
  display: block;
}
.f-site {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(240, 238, 233, 0.45);
  margin-top: 28px;
}
.f-site .soon { color: var(--pink); }

.f-col h5 {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 238, 233, 0.45);
  margin-bottom: 22px;
  font-weight: 500;
}
.f-col a,
.f-col span {
  display: block;
  font-size: 15px;
  color: rgba(240, 238, 233, 0.70);
  text-decoration: none;
  margin-bottom: 13px;
  transition: color 0.2s ease;
}
.f-col a:hover { color: var(--paper); }
.f-col .soon {
  color: rgba(240, 238, 233, 0.45);
  font-size: 13px;
}

.endorse {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(240, 238, 233, 0.14);
  position: relative;
}
.endorse .tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  white-space: nowrap;
}
.endorse img {
  height: 46px;
  width: auto;
  display: block;
}
.endorse .sep {
  width: 1px;
  height: 42px;
  background: rgba(240, 238, 233, 0.14);
  flex: none;
}
.endorse .line {
  font-size: 14px;
  color: rgba(240, 238, 233, 0.70);
  line-height: 1.45;
  max-width: 380px;
}

.f-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(240, 238, 233, 0.14);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 238, 233, 0.45);
  position: relative;
}
.f-base a {
  color: rgba(240, 238, 233, 0.45);
  text-decoration: none;
}
.f-base a:hover { color: var(--paper); }

@media (max-width: 820px) {
  .foot-inner { padding: 56px 28px 0; }
  .f-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .f-logo { height: 64px; }
  .endorse {
    flex-wrap: wrap;
    gap: 18px;
  }
  .endorse .sep { display: none; }
  .f-base {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .f-top { grid-template-columns: 1fr; gap: 32px; }
  .f-logo { height: 56px; }
}

/* ----------- Offering grid ----------- */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offering-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.offering-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-lg);
}
.offering-card .tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 500;
}
.shift-page .offering-card .tag {
  color: var(--blue-deep);
}
.offering-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.offering-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  opacity: 0.78;
}
.offering-card .best-for {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.offering-card .best-for em {
  font-style: normal;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.55;
  display: block;
  margin-bottom: 6px;
}

/* ----------- Tech band ----------- */
.tech-band {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.tech-band .points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tech-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid currentColor;
  opacity: 1;
}
.tech-point:last-child {
  border-bottom: 1px solid currentColor;
}
.tech-point .n {
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-top: 5px;
}
.tech-point h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.tech-point p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  opacity: 0.78;
}

/* ----------- Future-arm tease band ----------- */
.future-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(240, 238, 233, 0.75);
}
.future-band .right {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--blue);
}
.future-band .tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(240, 238, 233, 0.25);
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-right: 12px;
  color: var(--paper);
}

/* ----------- Proof / Quote ----------- */
.proof {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
  border-top: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
  position: relative;
}
.proof blockquote {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.proof blockquote .accent {
  color: var(--pink);
}
.proof .attr {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ----------- Footer ----------- */
footer.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.foot .brand-block .wordmark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 16px 0 20px;
}
.foot .brand-block .wordmark .dot {
  color: var(--pink);
}
.foot .brand-block .acknowledgement {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.6;
}
.foot .col h4 {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
  margin: 0 0 16px;
}
.foot .col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot .col a,
.foot .col li {
  font-size: 15px;
  color: var(--paper);
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.foot .col a:hover {
  opacity: 1;
  text-decoration: underline;
}
.foot .col .muted {
  opacity: 0.4;
}
.foot-italic-eyebrow {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.55;
}
.foot-base {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(240, 238, 233, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(240, 238, 233, 0.55);
}

/* ----------- CTA band ----------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
}
.cta-band .display {
  margin-bottom: 28px;
}
.cta-band .lead {
  margin: 0 auto 36px;
  text-align: center;
  color: var(--paper);
  opacity: 0.8;
}

/* ----------- Misc utilities ----------- */
.row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.center {
  text-align: center;
}
.mt-sm {
  margin-top: 16px;
}
.mt-md {
  margin-top: 32px;
}
.mt-lg {
  margin-top: 56px;
}
.mt-xl {
  margin-top: 96px;
}

.two-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

.breadcrumb {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin-bottom: 28px;
}
.on-ink .breadcrumb {
  color: var(--paper);
  opacity: 0.55;
}

/* product mark for hero */
.product-mark-hero {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(60px, 8vw, 132px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 28px;
}
.product-mark-hero .suffix {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.product-mark-hero.pink .suffix {
  color: var(--pink);
}
.product-mark-hero.lime .suffix {
  color: var(--blue-deep);
}

/* hero image / placeholder shape */
.shape {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 320px 320px 24px 24px;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.shape.pink {
  background: linear-gradient(180deg, var(--pink-soft), var(--pink));
}
.shape.lime {
  background: linear-gradient(180deg, var(--lime-soft), var(--lime));
}
.shape.cream {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}
.shape .placeholder-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-lg);
}
.contact-card .tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-card.pink .tag {
  color: var(--pink);
}
.contact-card.lime .tag {
  color: var(--blue-deep);
}
.contact-card .label {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.55;
  text-transform: uppercase;
}
.contact-card .value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.contact-card .micro {
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.78;
}
.contact-card .action {
  margin-top: auto;
  padding-top: 18px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* principle grid (about) */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.principle {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.principle .n {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--pink);
  margin-bottom: 8px;
}
.principle h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
}
.principle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.78;
}

/* arrow */
.arrow::after {
  content: "→";
}
.arrow {
  font-family: "Geist Mono", monospace;
}

/* responsive */
@media (max-width: 980px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip .stat {
    border-right: 1px solid var(--line-paper);
    border-bottom: 1px solid var(--line-paper);
  }
  .stat-strip .stat:nth-child(2n) {
    border-right: none;
  }
  .stat-strip .stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .two-col,
  .tech-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .num-row,
  .offering-grid,
  .contact-grid,
  .principles {
    grid-template-columns: 1fr;
  }
  .principles {
    border-left: none;
  }
  .principle {
    border-right: none;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* ---- Mobile nav: hamburger + drawer ---- */
  .nav-outer {
    padding: 8px 12px 0;
  }
  .nav {
    padding: 8px 8px 8px 16px;
    position: relative;
  }
  .nav-logo, .nav-logo img {
    height: 26px;
  }
  /* Desktop CTA pill hides on mobile; CTA appears inside the menu drawer instead */
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  /* Hide links by default on mobile; .is-open reveals them as a dropdown */
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 10px;
    background: rgba(3, 13, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 238, 233, 0.10);
    border-radius: 22px;
    font-size: 16px;
    color: var(--paper);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }
  .nav-links.is-open {
    display: flex;
    animation: nav-drawer-in 0.2s ease both;
  }
  @keyframes nav-drawer-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
  }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--paper);
    opacity: 0.85;
  }
  .nav-links a:hover {
    background: rgba(240, 238, 233, 0.06);
    opacity: 1;
  }
  /* Reset the underline indicator for mobile — use a left bar instead */
  .nav-links a.active::after {
    content: none;
  }
  .nav-links a.active {
    background: rgba(218, 25, 132, 0.16);
    color: var(--paper);
    opacity: 1;
  }
  .shift-page .nav-links a.active {
    background: rgba(75, 188, 119, 0.18);
  }
  /* CTA inside the drawer */
  .nav-cta-mobile {
    display: inline-flex;
    margin: 6px 6px 4px;
    padding: 14px 18px;
    background: var(--pink);
    color: var(--ink);
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    justify-content: space-between;
  }
  .shift-page .nav-cta-mobile {
    background: var(--lime);
  }
  /* Hamburger → X animation when open */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
@media (max-width: 640px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .stat-strip .stat {
    border-right: none;
  }
  .future-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Two arm split */
.two-arm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) {
  .two-arm {
    grid-template-columns: 1fr;
  }
}

.arm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.arm-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(3, 13, 20, 0.28);
}
.arm-list li:last-child {
  border-bottom: none;
}
.arm-list li::before {
  content: "—";
  opacity: 0.55;
}
.arm-tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  align-self: flex-start;
  font-weight: 500;
}
.arm-card.shift .arm-tag {
  background: var(--ink);
  color: var(--lime);
}

.arm-card h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.arm-card p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.82;
}
.arm-card .footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(3, 13, 20, 0.35);
}
.arm-card .footer .cta {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: gap 0.2s ease;
}
.arm-card .footer .cta:hover {
  gap: 14px;
}

/* hero layout for home */
.hero-home {
  padding: 64px 0 120px;
  position: relative;
}
.hero-home .pill-row {
  margin-bottom: 36px;
}
.hero-home .lead {
  color: var(--paper);
  opacity: 0.78;
  margin: 28px 0 36px;
  max-width: 64ch;
}

/* About-style page hero */
.page-hero {
  padding: 96px 0 48px;
}

/* Section header common */
.sec-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.sec-head .display {
  margin-bottom: 18px;
}

/* big section header centered variant */
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* product hero w/ side shape */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 980px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
  }
}

.callout-box {
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: rgba(3, 13, 20, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bg-lime .callout-box {
  background: rgba(3, 13, 20, 0.08);
}
.bg-pink .callout-box {
  background: rgba(3, 13, 20, 0.06);
}
.callout-box .tag {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.callout-box .statement {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ============================================================
   Brand lockup — replaces the old CSS-text wordmark with the
   final PNG lockup (assets/logo-wordmark-v2.png).
   ============================================================ */
.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.foot .brand-block .wordmark {
  margin: 16px 0 20px;
  display: block;
  font-size: 0; /* drop any inherited type metrics around the img */
  line-height: 0;
}
.foot .brand-block .wordmark img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 980px) {
  .nav-logo, .nav-logo img { height: 28px; }
  .foot .brand-block .wordmark img { width: 180px; }
}

/* ============================================================
   Motion — scroll-reveal + entrance choreography
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }
.reveal.delay-5 { transition-delay: 400ms; }

/* Stat strip: each stat lifts in sequence */
.stat-strip .stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.stat-strip.in-view .stat { opacity: 1; transform: none; }
.stat-strip.in-view .stat:nth-child(1) { transition-delay: 60ms; }
.stat-strip.in-view .stat:nth-child(2) { transition-delay: 180ms; }
.stat-strip.in-view .stat:nth-child(3) { transition-delay: 300ms; }
.stat-strip.in-view .stat:nth-child(4) { transition-delay: 420ms; }

/* Two-arm cards: lift in, then hover */
.two-arm .arm-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease;
}
.two-arm.in-view .arm-card { opacity: 1; transform: none; }
.two-arm.in-view .arm-card:nth-child(1) { transition-delay: 80ms; }
.two-arm.in-view .arm-card:nth-child(2) { transition-delay: 220ms; }
.arm-card:hover { transform: translate(-3px, -3px) !important; box-shadow: 9px 9px 0 0 var(--ink); }

/* Three-step "How I work" cards stagger */
.num-row .num-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.num-row.in-view .num-card { opacity: 1; transform: none; }
.num-row.in-view .num-card:nth-child(1) { transition-delay: 60ms; }
.num-row.in-view .num-card:nth-child(2) { transition-delay: 180ms; }
.num-row.in-view .num-card:nth-child(3) { transition-delay: 300ms; }

/* Operating-model pillars stagger */
.op-row .op-pillar {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.op-row.in-view .op-pillar { opacity: 1; transform: none; }
.op-row.in-view .op-pillar:nth-child(1) { transition-delay: 50ms; }
.op-row.in-view .op-pillar:nth-child(2) { transition-delay: 150ms; }
.op-row.in-view .op-pillar:nth-child(3) { transition-delay: 250ms; }
.op-row.in-view .op-pillar:nth-child(4) { transition-delay: 350ms; }

/* Tech-points (Why I exist, px/scale stacks) stagger */
.points .tech-point {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.points.in-view .tech-point { opacity: 1; transform: none; }
.points.in-view .tech-point:nth-child(1) { transition-delay: 60ms; }
.points.in-view .tech-point:nth-child(2) { transition-delay: 200ms; }
.points.in-view .tech-point:nth-child(3) { transition-delay: 340ms; }

/* Offering cards (px / scale pages) */
.offering-grid .offering-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease;
}
.offering-grid.in-view .offering-card { opacity: 1; transform: none; }
.offering-grid.in-view .offering-card:nth-child(1) { transition-delay: 60ms; }
.offering-grid.in-view .offering-card:nth-child(2) { transition-delay: 200ms; }
.offering-grid.in-view .offering-card:nth-child(3) { transition-delay: 340ms; }
.offering-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(3, 13, 20, 0.08); }

/* Six principles tiles */
.principles .principle {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.principles.in-view .principle { opacity: 1; transform: none; }
.principles.in-view .principle:nth-child(1) { transition-delay: 40ms; }
.principles.in-view .principle:nth-child(2) { transition-delay: 110ms; }
.principles.in-view .principle:nth-child(3) { transition-delay: 180ms; }
.principles.in-view .principle:nth-child(4) { transition-delay: 250ms; }
.principles.in-view .principle:nth-child(5) { transition-delay: 320ms; }
.principles.in-view .principle:nth-child(6) { transition-delay: 390ms; }

/* Contact-grid card stagger + hover */
.contact-grid .contact-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease;
}
.contact-grid.in-view .contact-card { opacity: 1; transform: none; }
.contact-grid.in-view .contact-card:nth-child(1) { transition-delay: 60ms; }
.contact-grid.in-view .contact-card:nth-child(2) { transition-delay: 200ms; }
.contact-grid.in-view .contact-card:nth-child(3) { transition-delay: 340ms; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(3, 13, 20, 0.12); }

/* Future-band pulse: subtle gradient breath */
.future-band {
  background-size: 200% 100%;
  animation: future-shimmer 9s ease-in-out infinite;
}
@keyframes future-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Hero pill float */
.hero-home .pill { animation: pill-float 6s ease-in-out infinite; }
@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Button arrow gentle slide */
.btn .arrow, .cta .arrow, .nav-cta .arrow, .action .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow, .cta:hover .arrow, .nav-cta:hover .arrow, .contact-card:hover .action .arrow { transform: translateX(4px); }

/* Proof quote reveal handled via .reveal; small italic warm-up */
.proof blockquote .accent {
  background-image: linear-gradient(transparent 88%, color-mix(in srgb, var(--pink) 38%, transparent) 88%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-bottom: 1px;
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stat-strip .stat,
  .two-arm .arm-card,
  .num-row .num-card,
  .points .tech-point,
  .offering-grid .offering-card,
  .principles .principle,
  .contact-grid .contact-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .future-band,
  .hero-home .pill,
  .pulse {
    animation: none !important;
  }
}
