/* ============================================================
   Wallai · concept-4-instrument · v3 "light world"
   Tasteskill-light: textured canvas, floating collage, photo life.
   Blue = the accent. Navy lives only inside artifact cards.
   Type: Schibsted Grotesk + Source Serif 4 italic accents + JetBrains Mono
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --canvas: oklch(98.2% 0.005 255);
  --canvas-2: oklch(95.8% 0.009 255);
  --ink: oklch(23% 0.035 265);
  --ink-2: oklch(37% 0.028 262);
  --ink-3: oklch(47% 0.024 262);
  --line: oklch(89% 0.012 255);

  --blue: oklch(55.5% 0.185 262);
  --blue-deep: oklch(47.5% 0.17 262);
  --blue-down: oklch(41% 0.155 262);
  --blue-wash: oklch(94.5% 0.026 262);
  --blue-bright: oklch(74% 0.125 262);

  --navy: oklch(17.5% 0.03 262);
  --navy-2: oklch(23% 0.035 262);
  --navy-3: oklch(29% 0.035 262);
  --on-navy: oklch(97.5% 0.005 255);
  --on-navy-soft: oklch(79% 0.022 260);

  --pos: oklch(80% 0.13 155);
  --flag: oklch(75% 0.14 45);
  --flag-deep: oklch(52% 0.17 32);
  --ok-deep: oklch(46% 0.11 155);

  /* type */
  --font: "Schibsted Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --text-display: clamp(2.5rem, 3.6vw + 1rem, 3.9rem);
  --text-h2: clamp(1.85rem, 2.2vw + 0.85rem, 2.7rem);
  --text-lg: 1.25rem;
  --text-body: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;

  /* space & shape */
  --sect: clamp(4.5rem, 8vw, 7.5rem);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 3px oklch(23% 0.035 265 / 0.06), 0 4px 12px oklch(23% 0.035 265 / 0.06);
  --shadow-md: 0 2px 6px oklch(23% 0.035 265 / 0.07), 0 10px 24px oklch(23% 0.035 265 / 0.08);
  --shadow-lg: 0 4px 10px oklch(23% 0.035 265 / 0.08), 0 24px 48px -12px oklch(23% 0.035 265 / 0.18);
  --shadow-xl: 0 6px 14px oklch(23% 0.035 265 / 0.09), 0 40px 80px -20px oklch(23% 0.035 265 / 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 100;
  --z-nav-mobile: 90;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
  /* Clip at the root too: the ambient section glows (::after radials) otherwise
     expand the mobile layout viewport and zoom the whole page out on phones. */
  overflow-x: clip;
}
body {
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  font-kerning: normal;
  overflow-x: clip;
}
/* Full-page tactile canvas: plaster texture under a cool tint.
   NOTE: pre-deploy task — localize all Unsplash images. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(oklch(98.2% 0.005 255 / 0.78), oklch(98.2% 0.005 255 / 0.84)),
    url("../img/bg-160414770628.jpg") center / cover no-repeat;
  pointer-events: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
ul, ol { padding: 0; }
h1, h2, h3 { text-wrap: balance; line-height: 1.15; }
p { text-wrap: pretty; }
::selection { background: var(--blue); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Primitives ---------- */
.wrap {
  width: min(72.5rem, 100% - clamp(2.5rem, 6vw, 5rem));
  margin-inline: auto;
}
.section { padding-block: var(--sect); position: relative; }
.section__head { margin-bottom: clamp(2.5rem, 4.5vw, 3.75rem); }
.section__head--center { text-align: center; }
.section__head--center .section-sub { margin-inline: auto; }

.h2 {
  font-size: var(--text-h2);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.accent-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 550;
  letter-spacing: -0.01em;
}
.hero__title .accent-serif { color: var(--blue); }
.section-sub {
  font-size: 1.15rem;
  color: var(--ink-2);
  margin-top: 0.9rem;
  max-width: 56ch;
}
.body-lg {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--ink-2);
}

/* Ambient glows — brand-hue radials alternating sides down the page */
.industries::after, .services::after, .results::after, .why::after, .fit::after, .audit::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(closest-side, oklch(66% 0.14 262 / 0.18), transparent 70%);
}
.industries::after {
  left: -10%; bottom: -8%; width: 46rem; height: 36rem;
  background: radial-gradient(closest-side, oklch(55% 0.18 285 / 0.14), transparent 70%);
}
.results::after { right: -8%; top: 22%; width: 52rem; height: 42rem; }
.services::after {
  left: -8%; top: 10%; width: 46rem; height: 38rem;
  background: radial-gradient(closest-side, oklch(78% 0.12 220 / 0.2), transparent 70%);
}
.why::after {
  left: -8%; bottom: -4%; width: 42rem; height: 34rem;
  background: radial-gradient(closest-side, oklch(55% 0.18 285 / 0.13), transparent 70%);
}
.fit::after { right: -10%; top: 18%; width: 40rem; height: 34rem; }
.audit::after { right: -10%; bottom: -6%; width: 48rem; height: 38rem; }

.chip {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}
.chip--blue {
  color: var(--blue-deep);
  background: var(--blue-wash);
  border-color: transparent;
}

/* ---------- Icon tiles (hand-rolled stroke set) ---------- */
.ico {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: var(--blue-wash);
  color: var(--blue-deep);
  flex-shrink: 0;
}
.ico svg { width: 1.3rem; height: 1.3rem; }
.ico--lg { width: 3rem; height: 3rem; border-radius: 12px; }
.ico--lg svg { width: 1.5rem; height: 1.5rem; }
.ico--sm { width: 2.3rem; height: 2.3rem; }
.ico--sm svg { width: 1.15rem; height: 1.15rem; }
.ico--fill { background: var(--blue); color: #fff; }

/* Tilt utilities (collage language) */
.tilt-l { rotate: -1.5deg; }
.tilt-r { rotate: 2deg; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.975rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.7rem 1.35rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary:active { background: var(--blue-down); transform: translateY(0); box-shadow: none; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); border-color: oklch(80% 0.02 255); }
.btn--lg { padding: 0.95rem 1.75rem; font-size: 1.05rem; border-radius: 12px; }
.btn--block { width: 100%; }

.link-arrow {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.5rem;
}
.link-arrow span { display: inline-block; transition: transform 200ms var(--ease); }
.link-arrow:hover { color: var(--blue-deep); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease);
}
.nav.is-scrolled {
  background: oklch(98.2% 0.005 255 / 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 4.25rem;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 1.8rem; width: auto; }
.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding-block: 0.5rem;
  transition: color 150ms var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 220ms var(--ease), opacity 180ms var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 4.25rem 0 auto 0;
  z-index: var(--z-nav-mobile);
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 2.5rem) 1.75rem;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.5rem);
  opacity: 0;
  visibility: hidden;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease), visibility 0s 240ms;
}
.nav__mobile.is-open {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.65rem 0.25rem;
}
.nav__mobile .btn { margin-top: 0.75rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(7.5rem, 13vw, 10.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, oklch(87% 0.018 255 / 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(87% 0.018 255 / 0.5) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70rem 42rem at 76% -12%, black 18%, transparent 66%);
  mask-image: radial-gradient(70rem 42rem at 76% -12%, black 18%, transparent 66%);
  pointer-events: none;
}
.hero__aurora,
.hero__aurora::before,
.hero__aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero__aurora {
  top: -14rem;
  right: -10rem;
  width: 50rem;
  height: 40rem;
  background: radial-gradient(closest-side, oklch(64% 0.18 262 / 0.5), transparent 72%);
}
.hero__aurora::before {
  top: 11rem;
  right: 18rem;
  width: 30rem;
  height: 26rem;
  background: radial-gradient(closest-side, oklch(55% 0.2 285 / 0.36), transparent 72%);
}
.hero__aurora::after {
  top: -4rem;
  right: 4rem;
  width: 26rem;
  height: 21rem;
  background: radial-gradient(closest-side, oklch(80% 0.12 220 / 0.48), transparent 72%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-2);
}
.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.hero__title {
  font-size: var(--text-display);
  font-weight: 780;
  letter-spacing: -0.026em;
  line-height: 1.05;
  margin-top: 1.1rem;
}
.hero__sub {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 34rem;
  margin-top: 1.35rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.1rem;
}

/* ---------- Hero collage (floating, moving) ---------- */
.collage {
  position: relative;
  min-height: 34rem;
}
.fl { position: absolute; }
.fl__in { will-change: transform; }
.fl--panel { top: 2.75rem; left: 0; width: min(74%, 24.5rem); z-index: 2; }
.fl--panel .fl__in { rotate: -1.5deg; }
.fl--metric { top: 0.25rem; right: 2%; width: 11.5rem; z-index: 1; }
.fl--metric .fl__in { rotate: 2deg; }
.fl--photo { bottom: 0; right: -1%; width: min(44%, 15rem); z-index: 3; }
.fl--photo .fl__in { rotate: 3deg; }
.fl--alert { bottom: 0.25rem; left: -0.5rem; z-index: 4; }
.fl--alert .fl__in { rotate: -2deg; }
.fl--chip { top: -0.5rem; left: 6%; z-index: 5; }
.fl--chip .fl__in { rotate: -1.5deg; }

.panel {
  position: relative;
  background: var(--navy);
  border: 1px solid var(--navy-3);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, oklch(70% 0.14 262 / 0.13), transparent 38%, transparent 72%, oklch(55% 0.2 285 / 0.1));
}
.panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--navy-3);
  font-family: var(--mono);
  font-size: var(--text-xs);
  color: var(--on-navy-soft);
}
.panel__live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--pos);
}
.panel__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
}
.panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pm {
  padding: 1rem 1.1rem 0.9rem;
  border-right: 1px solid var(--navy-3);
}
.pm:last-child { border-right: 0; }
.pm b {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--on-navy);
  line-height: 1.1;
}
.pm--flag b { color: var(--flag); }
.pm--pos b { color: var(--pos); }
.pm span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--on-navy-soft);
}
.panel__chart { padding: 0.9rem 1.25rem 1.25rem; }
.panel__chart-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--on-navy-soft);
  margin-bottom: 0.7rem;
}
.spark { width: 100%; height: 7rem; }
.spark__grid { stroke: var(--navy-3); stroke-width: 1; }
.spark__line { fill: none; stroke-linecap: round; }
.spark__line--base { stroke: var(--on-navy-soft); stroke-width: 2; opacity: 0.45; }
.spark__line--flag { stroke: var(--flag); stroke-width: 2.5; }
.spark__dot { fill: var(--flag); }

.photocard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
}
.photocard img { border-radius: 9px; aspect-ratio: 3 / 2; object-fit: cover; }
.photocard figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  padding: 0.5rem 0.25rem 0.15rem;
}

.minicard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 0.9rem 1.1rem;
}
.minicard__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.minicard b {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-top: 0.2rem;
}
.minicard__label {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-3);
  line-height: 1.4;
  margin-top: 0.15rem;
}
/* Pain-voice minicard: holds a full question, not a big numeral */
.minicard--pain b {
  font-size: 1.05rem;
  line-height: 1.3;
  max-width: 13rem;
}

.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.8rem 1.1rem;
}
.alert__flag {
  font-size: 1.15rem;
  color: var(--flag-deep);
  line-height: 1;
}
.alert__text b {
  display: block;
  font-size: 0.975rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.alert__text span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 0.15rem;
}
.float-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0.95rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-2);
  white-space: nowrap;
}
.float-chip svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--blue-deep);
  flex-shrink: 0;
}

/* ---------- Proof cards ---------- */
.proof { padding-block: clamp(1.5rem, 3vw, 2.5rem) var(--sect); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 1.6rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proof-card__num {
  display: block;
  font-size: clamp(1.9rem, 2.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--blue-deep);
  margin-top: 1rem;
}
.proof-card__num i {
  font-style: normal;
  font-size: 0.48em;
  font-weight: 650;
}
.proof-card__label {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-2);
}

/* ---------- Capability ---------- */
.cap { overflow: hidden; }
.cap__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(oklch(98.2% 0.005 255 / 0.82), oklch(98.2% 0.005 255 / 0.7)),
    url("../img/bg-145449652248.jpg") center 30% / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
  pointer-events: none;
}
.cap__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.cap__copy .body-lg { margin-top: 1.25rem; max-width: 34rem; }
.cap__modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.25rem;
}
.cap__mode .ico { margin-bottom: 0.8rem; }
.cap__mode p {
  margin-top: 0.9rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-2);
}
.cap__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.cap__stage {
  position: relative;
  min-height: 27rem;
}
.cap__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ink-3);
  opacity: 0.55;
}
.term {
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: min(78%, 24rem);
  background: var(--navy);
  border: 1px solid var(--navy-3);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.term::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, oklch(70% 0.14 262 / 0.13), transparent 38%, transparent 72%, oklch(55% 0.2 285 / 0.1));
}
.term:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.term__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--navy-3);
}
.term__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--navy-3);
}
.term__bar b {
  margin-left: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--on-navy-soft);
}
.term__body {
  padding: 1.1rem 1.15rem 1.25rem;
  font-family: var(--mono);
  font-size: 0.83rem;
  line-height: 2.1;
  color: var(--on-navy);
}
.term__tick { color: var(--blue-bright); margin-right: 0.5rem; }
.term__ok { color: var(--pos); font-weight: 600; }
.term__mut { color: var(--on-navy-soft); }
.term__cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  margin-left: 6px;
  vertical-align: -2px;
  background: var(--blue-bright);
}

.sigcard {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(66%, 21rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: 1.4rem 1.5rem 1.5rem;
  transition: transform 250ms var(--ease);
}
.sigcard:hover { transform: translateY(-4px); }
.sigcard__kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.sigcard h3 {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 0.6rem;
}
.sigcard p {
  font-size: var(--text-sm);
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: 0.55rem;
}
.capstat {
  position: absolute;
  top: 0;
  right: clamp(0rem, 4vw, 3rem);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  padding: 0.55rem 1.1rem;
  rotate: 1.5deg;
}
.capstat b {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-deep);
}
.capstat span { font-size: var(--text-xs); color: var(--ink-3); font-weight: 600; }

/* ---------- Industries (icon cards) ---------- */
.ind-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.ind-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem 1.6rem 1.5rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), rotate 220ms var(--ease);
}
.ind-card:nth-child(odd) { rotate: -1deg; }
.ind-card:nth-child(even) { rotate: 1deg; }
.ind-card::before {
  content: "";
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(94.5% 0.026 262 / 0.95), transparent 70%);
  pointer-events: none;
}
.ind-card:hover { transform: translateY(-6px); rotate: 0deg; box-shadow: var(--shadow-lg); }
.ind-card .ico {
  position: relative;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 6px 14px oklch(47.5% 0.17 262 / 0.32);
}
.ind-card h3 {
  font-size: 1.2rem;
  font-weight: 770;
  letter-spacing: -0.012em;
  margin-top: 1.1rem;
}
.ind-card p {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 0.5rem;
}
/* Receipt as a "stat plate" — the proof number gets its own washed panel */
.ind-card__receipt {
  position: relative;
  display: block;
  margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--blue-wash), oklch(96.5% 0.016 262));
  border: 1px solid oklch(74% 0.125 262 / 0.3);
  border-radius: var(--r-md);
  padding: 0.9rem 1rem 0.85rem;
  font-size: var(--text-xs);
  color: var(--ink-2);
  line-height: 1.45;
}
.ind-card__receipt b {
  display: block;
  color: var(--blue-deep);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}
.ind-card { padding-bottom: 1.6rem; }
.ind-card > p { margin-bottom: 1rem; }

/* ---------- Statement (light kinetic) ---------- */
.statement {
  position: relative;
  padding-block: var(--sect);
  text-align: center;
}
.statement__title {
  font-size: clamp(2.8rem, 5.2vw + 0.7rem, 5.1rem);
  font-weight: 790;
  letter-spacing: -0.026em;
  line-height: 1.1;
  text-wrap: balance;
}
.statement__title .accent-serif { color: var(--ink); font-weight: 500; }
.statement__hot { color: var(--blue-deep); font-weight: 800; }
.statement__spark {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  color: var(--blue);
  vertical-align: 0.05em;
  margin-right: 0.1em;
}
.pill {
  display: inline-block;
  width: 2.1em;
  height: 1.02em;
  border-radius: 999px;
  overflow: hidden;
  vertical-align: -0.12em;
  box-shadow: var(--shadow-sm);
  rotate: -2deg;
}
.pill img { width: 100%; height: 100%; object-fit: cover; }
.statement__lede {
  margin: 1.6rem auto 0;
  font-size: var(--text-lg);
  color: var(--ink-2);
  max-width: 46ch;
}
.gapgrid__title {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  font-size: clamp(1.4rem, 1.5vw + 0.75rem, 1.85rem);
  font-weight: 780;
  letter-spacing: -0.015em;
}
.gapgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.75rem;
  text-align: left;
}
.gapgrid__item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), rotate 220ms var(--ease);
}
.gapgrid__item:nth-child(1) { rotate: -0.6deg; }
.gapgrid__item:nth-child(2) { rotate: 0.5deg; }
.gapgrid__item:nth-child(3) { rotate: 0.5deg; }
.gapgrid__item:nth-child(4) { rotate: -0.6deg; }
.gapgrid__item::before {
  content: "";
  position: absolute;
  top: -3.5rem;
  right: -3.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(94.5% 0.026 262 / 0.95), transparent 70%);
  pointer-events: none;
}
.gapgrid__item:hover { transform: translateY(-5px); rotate: 0deg; box-shadow: var(--shadow-lg); }
.gapgrid__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.gapgrid__top .ico {
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 6px 14px oklch(47.5% 0.17 262 / 0.32);
}
.gapgrid__cat {
  position: relative;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue-deep);
  background: var(--blue-wash);
  border: 1px solid oklch(74% 0.125 262 / 0.35);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  white-space: nowrap;
}
.gapgrid__item h3 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 770;
  letter-spacing: -0.014em;
  line-height: 1.25;
}
.gapgrid__item p {
  position: relative;
  margin-top: 0.6rem;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ---------- Services (skill cards over foliage light) ---------- */
.services { overflow: hidden; }
.services__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(oklch(98.2% 0.005 255 / 0.9), oklch(98.2% 0.005 255 / 0.84)),
    url("../img/bg-151849597354.jpg") center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  pointer-events: none;
}
.svc__wrap { position: relative; }
.svc__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.svc-card {
  position: relative;
  background: oklch(100% 0 0 / 0.92);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.6rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card--hot { border-color: oklch(55.5% 0.185 262 / 0.45); }
.svc-card__step {
  position: absolute;
  top: 1.2rem;
  right: 1.35rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-3);
}
.svc-card .chip { margin-top: 1rem; }
.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.012em;
  margin-top: 0.85rem;
}
.svc-card p {
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 0.6rem;
}
.svc-quote {
  position: absolute;
  top: -5.25rem;
  right: 0;
  width: 15.5rem;
  background: var(--navy);
  border: 1px solid var(--navy-3);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: 1.4rem 1.5rem;
}
.svc-quote img { height: 1.4rem; width: auto; }
.svc-quote p {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--on-navy);
}

/* ---------- Audit ---------- */
.audit__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.audit__copy .h2 { margin-top: 1.25rem; }
.audit__proof { margin-top: 1.5rem; }
.audit__proof p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 46ch;
}
.audit__proof strong { color: var(--ink); font-weight: 700; font-style: normal; font-family: var(--font); }
.audit__copy .btn { margin-top: 1.75rem; }

.steps { list-style: none; display: grid; gap: 0.9rem; }
.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  background: oklch(100% 0 0 / 0.9);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.4rem;
}
.step-row__num {
  font-family: var(--mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue-deep);
  padding-top: 0.25rem;
}
.step-row h3 {
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.step-row p {
  margin-top: 0.4rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-2);
}

.map {
  margin-top: 1.5rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.75rem 1.85rem 1.6rem;
}
.map__kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.map__head h3 {
  font-size: 1.35rem;
  font-weight: 780;
  letter-spacing: -0.016em;
  margin-top: 0.5rem;
}
.map__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-3);
}
.map__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 1rem;
  align-items: center;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.map__row i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: var(--canvas-2);
}
.map__row i:first-child { background: var(--blue-wash); }
.map__note {
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--ink-3);
  line-height: 1.55;
}

/* ---------- Results / case cards ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.case-card__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.case-card__body { padding: 1.5rem 1.6rem 1.6rem; }
.tagmono {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--blue-wash);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.case-card h3 {
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.014em;
  line-height: 1.22;
  margin-top: 0.9rem;
}
.case-card__body > p {
  margin-top: 0.6rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.6;
}
.case-card__stats {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.case-card__stats li { flex: 1; }
.case-card__stats b {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--blue-deep);
}
.case-card__stats span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--ink-3);
  line-height: 1.35;
}
.results__note {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  font-size: var(--text-sm);
  color: var(--ink-3);
  text-align: center;
}

/* ---------- Six facts ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.fact {
  background: oklch(98.2% 0.005 255 / 0.72);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.fact .ico { margin-bottom: 0.9rem; }
.fact b {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.018em;
}
.fact p {
  margin-top: 0.6rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-2);
}

/* ---------- Fit ---------- */
.fit__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.fit__col {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), rotate 220ms var(--ease);
}
.fit__col:hover { transform: translateY(-4px); rotate: 0deg; box-shadow: var(--shadow-lg); }
/* "You're a fit" = navy artifact card (the page's signature card language);
   "Skip Wallai" = quiet white card. The contrast IS the design. */
.fit__col--yes {
  rotate: -0.75deg;
  background: linear-gradient(155deg, var(--navy), var(--navy-2));
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.fit__col--yes::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(55.5% 0.185 262 / 0.5), transparent 70%);
  pointer-events: none;
}
.fit__col--yes::after {
  content: "";
  position: absolute;
  bottom: -6rem;
  left: -6rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(80% 0.13 155 / 0.16), transparent 70%);
  pointer-events: none;
}
.fit__col--no { rotate: 0.75deg; background: oklch(100% 0 0 / 0.72); }
.fit__col h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 780;
  letter-spacing: -0.012em;
}
.fit__col h3 svg {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.5rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.fit__col--yes h3 { color: #fff; }
.fit__col--yes h3 svg {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 6px 14px oklch(20% 0.05 262 / 0.55);
}
.fit__col--no h3 svg { background: oklch(95% 0.008 255); color: var(--ink-3); }
.fit__col ul { position: relative; list-style: none; margin-top: 1.4rem; display: grid; gap: 0.9rem; }
.fit__col li {
  position: relative;
  padding-left: 2.05rem;
  line-height: 1.5;
  font-weight: 550;
  color: var(--ink-2);
}
.fit__col--yes li { color: var(--on-navy-soft); }
.fit__col--yes li strong, .fit__col--yes li b { color: #fff; }
.fit__col li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}
.fit__col--yes li::before { content: "✓"; background: var(--pos); color: var(--navy); }
.fit__col--no li::before { content: "✕"; background: oklch(93% 0.01 255); color: var(--ink-3); }

/* ---------- Quote ---------- */
.quote__inner {
  max-width: 52rem;
  text-align: center;
}
.quote__inner::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 0.6;
  color: var(--blue);
  margin-bottom: 1.4rem;
}
.quote__text {
  font-size: clamp(1.35rem, 1.4vw + 0.85rem, 1.8rem);
  font-weight: 640;
  letter-spacing: -0.014em;
  line-height: 1.42;
  text-wrap: balance;
}
.quote__attr {
  margin-top: 1.75rem;
  font-size: var(--text-sm);
}
.quote__name { font-weight: 750; }
.quote__role { color: var(--ink-3); }
.quote__role::before { content: " · "; color: var(--ink-3); }

/* ---------- Closing (light, mountains and sun) ---------- */
.closing {
  position: relative;
  padding-block: var(--sect);
  background:
    linear-gradient(to bottom, var(--canvas) 0%, oklch(98.2% 0.005 255 / 0.78) 26%, oklch(98.2% 0.005 255 / 0.55) 70%, oklch(98.2% 0.005 255 / 0.42) 100%),
    url("../img/bg-147007145960.jpg") center 62% / cover no-repeat;
}
.closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 26.5rem);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.closing__copy .body-lg {
  color: var(--ink-2);
  margin-top: 1.2rem;
  max-width: 30rem;
}
.closing__list {
  list-style: none;
  margin-top: 1.9rem;
  display: grid;
  gap: 0.85rem;
}
.closing__list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-2);
  font-weight: 550;
  line-height: 1.5;
}
.closing__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--blue-deep);
}

.book__form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 650;
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.85rem;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.field textarea { resize: vertical; min-height: 4.5rem; }
.field input:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-wash);
}
.field.is-error input,
.field.is-error textarea { border-color: var(--flag-deep); }
.field__msg {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--flag-deep);
}
.book__fineprint {
  margin-top: 0.9rem;
  font-size: var(--text-xs);
  color: var(--ink-3);
  text-align: center;
}
.book__done {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--ok-deep);
  text-align: center;
}
.book__form.is-done .field,
.book__form.is-done button,
.book__form.is-done .book__fineprint { display: none; }
.book__form.is-done .book__done { display: block; }

/* Closing: TidyCal booking panel (live calendar embed, replaces the legacy form) */
.book__cal { min-height: 23rem; margin-bottom: 1rem; }
.book__cal .tidycal-embed { width: 100%; }
.book__cal iframe { width: 100% !important; border: 0; border-radius: var(--r-md); }
.book__panel .btn { margin-top: 0.25rem; }
.book__fineprint a { color: var(--blue-deep); font-weight: 650; text-decoration: none; }
.book__fineprint a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--canvas);
  padding-block: 2.75rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__logo { height: 1.5rem; width: auto; }
.footer__tag {
  margin-top: 0.7rem;
  font-size: var(--text-sm);
  color: var(--ink-3);
}
.footer__meta { text-align: right; font-size: var(--text-sm); color: var(--ink-3); }
.footer__meta a {
  font-weight: 650;
  color: var(--ink-2);
  text-decoration: none;
}
.footer__meta a:hover { color: var(--blue-deep); }
.footer__meta p { margin-top: 0.3rem; }
.footer__copy { font-size: var(--text-xs); }

/* ============================================================
   Motion — gated on .js so no-JS users get the full static page
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
  }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes fadein { to { opacity: 1; } }
  @keyframes blink { 50% { opacity: 0; } }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 oklch(80% 0.13 155 / 0.5); }
    70% { box-shadow: 0 0 0 7px oklch(80% 0.13 155 / 0); }
    100% { box-shadow: 0 0 0 0 oklch(80% 0.13 155 / 0); }
  }

  .js .hero__copy > * { animation: rise 620ms var(--ease) both; }
  .js .hero__copy > *:nth-child(2) { animation-delay: 70ms; }
  .js .hero__copy > *:nth-child(3) { animation-delay: 140ms; }
  .js .hero__copy > *:nth-child(4) { animation-delay: 210ms; }

  .js .fl__in { animation: rise 620ms var(--ease) both, bob 8.5s ease-in-out infinite; }
  .js .fl--panel  .fl__in { animation-delay: 150ms, 1.4s; }
  .js .fl--metric .fl__in { animation-delay: 350ms, 2.1s; }
  .js .fl--photo  .fl__in { animation-delay: 500ms, 2.8s; }
  .js .fl--alert  .fl__in { animation-delay: 850ms, 3.4s; }
  .js .fl--chip   .fl__in { animation-delay: 1000ms, 1.9s; }

  .js .spark__line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw 1100ms var(--ease) 600ms forwards;
  }
  .js .spark__dot { opacity: 0; animation: fadein 300ms 1550ms forwards; }
  .js .panel__live i { animation: pulse 2.2s infinite; }
  .js .term__cursor { animation: blink 1.1s steps(1) infinite; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .hero__grid { grid-template-columns: 1fr; }
  .collage { max-width: 34rem; margin-top: 1.5rem; }

  .cap__grid { grid-template-columns: 1fr; }
  .cap__stage { max-width: 34rem; min-height: 25rem; }

  .audit__grid { grid-template-columns: 1fr; }
  .closing__grid { grid-template-columns: 1fr; }
  .book__form { max-width: 30rem; }

  .svc-quote { position: static; width: auto; max-width: 20rem; margin-top: 1.5rem; rotate: 0deg; }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  /* Keep a compact booking CTA in the mobile nav (was hidden — killed mobile conversion) */
  .nav__cta { margin-left: auto; padding: 0.55rem 1rem; font-size: 0.9rem; }
  .nav__toggle { display: flex; }
  .nav {
    background: oklch(98.2% 0.005 255 / 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--line);
  }
}

@media (max-width: 760px) {
  .gapgrid { grid-template-columns: 1fr; }
  .fit__cols { grid-template-columns: 1fr; }
  .collage { min-height: 30rem; }
  .fl--metric { display: none; }
  .fl--panel { width: 100%; }
  .fl--photo { width: 52%; bottom: 0.5rem; }
  .fl--chip { left: auto; right: 2%; }
}

@media (max-width: 620px) {
  .facts { grid-template-columns: 1fr; }
  .cap__modes { grid-template-columns: 1fr; }
  .hero__actions { gap: 0.85rem; }
  .cap__stage { min-height: 0; display: grid; gap: 1.25rem; }
  .term, .sigcard, .capstat { position: static; width: 100%; rotate: 0deg; }
  .capstat { justify-self: start; }
  .cap__wires { display: none; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
  .footer__meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   concept-5-ways · additions
   One-funnel layout on the concept-4 system: bigger nav,
   neural-graph hero card, 3 ways-to-work, start-here ramp,
   Meet Steve, lean resources. Unique class names; the only
   overrides are the deliberate nav/logo size bumps.
   ============================================================ */

/* ---- Bigger, more prevalent brand + nav (Steve's ask) ---- */
html { scroll-padding-top: 6rem; }
.nav__inner { height: 4.9rem; }
.brand__logo { height: 2.75rem; }
.nav__links { gap: 1.9rem; }
.nav__links a { font-size: 1.05rem; font-weight: 650; }
.nav__mobile { top: 4.9rem; }
.footer__logo { height: 1.9rem; }

/* ---- Hero: neural-graph card (replaces the laptop stock photo) ---- */
.fl--graph { bottom: 0; right: -1%; width: min(49%, 16.5rem); z-index: 3; }
.fl--graph .fl__in { rotate: 3deg; }
.graphcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem 0.65rem 0.45rem;
}
.graphcard__svg {
  width: 100%;
  height: auto;
  aspect-ratio: 300 / 190;
  border-radius: 9px;
  background: radial-gradient(120% 120% at 30% 8%, oklch(96% 0.02 262 / 0.95), oklch(98% 0.006 255 / 0.95));
  color: oklch(70% 0.035 262);
}
.gc-edges path { stroke: currentColor; opacity: 0.5; }
.gc-node {
  fill: var(--navy-2);
  transform-box: fill-box;
  transform-origin: center;
}
.gc-node--blue { fill: var(--blue); }
.gc-node--pos  { fill: var(--ok-deep); }
.gc-node--flag { fill: var(--flag-deep); }
.graphcard figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-3);
  padding: 0.5rem 0.25rem 0.1rem;
}

/* ---- statement foot ---- */
.statement__foot {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink-2);
}
.link-arrow--inline { padding-block: 0; color: var(--blue-deep); }

/* ---- Ambient glow continuity for the new sections ---- */
.ways::after, .about::after, .resources::after, .start::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(closest-side, oklch(66% 0.14 262 / 0.16), transparent 70%);
}
.ways::after      { right: -10%; top: 8%;    width: 48rem; height: 40rem; }
.start::after     { left: -10%;  bottom: -6%; width: 46rem; height: 36rem;
  background: radial-gradient(closest-side, oklch(78% 0.12 220 / 0.18), transparent 70%); }
.about::after     { right: -10%; bottom: -6%; width: 44rem; height: 34rem;
  background: radial-gradient(closest-side, oklch(55% 0.18 285 / 0.12), transparent 70%); }
.resources::after { left: -8%;   top: 10%;    width: 40rem; height: 32rem; }

/* ---- THREE WAYS TO WORK ---- */
.ways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.way-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.9rem 1.75rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.way-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.way-card--hot {
  border-color: oklch(55.5% 0.185 262 / 0.5);
  box-shadow: 0 6px 14px oklch(23% 0.035 265 / 0.09), 0 30px 60px -18px oklch(55% 0.185 262 / 0.3);
}
.way-card__flag {
  position: absolute;
  top: -0.8rem;
  left: 1.75rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  box-shadow: var(--shadow-sm);
}
.way-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.05rem;
}
.way-card__tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-3);
  text-align: right;
  line-height: 1.35;
}
.way-card__tag em { font-style: normal; color: var(--blue-deep); font-weight: 600; }
.way-card h3 {
  font-size: 1.4rem;
  font-weight: 780;
  letter-spacing: -0.018em;
}
.way-card__lede {
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
.way-card__list {
  list-style: none;
  margin-top: 1.15rem;
  display: grid;
  gap: 0.6rem;
}
.way-card__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--ink-2);
}
.way-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  border: 2px solid var(--blue);
}
.way-card__for {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
}
.way-card__for b { color: var(--ink); font-weight: 700; }
.way-card .btn { margin-top: 1.1rem; }

/* ---- START HERE (entry ramp) ---- */
.start__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.ramp { list-style: none; display: grid; gap: 1.1rem; }
.ramp-step {
  position: relative;
  display: grid;
  gap: 0.85rem;
  background: oklch(100% 0 0 / 0.9);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.6rem;
}
.ramp-step--team { background: var(--blue-wash); border-color: transparent; }
.ramp-step__badge {
  justify-self: start;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ok-deep);
  background: oklch(80% 0.13 155 / 0.16);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}
.ramp-step__badge--paid { color: var(--blue-deep); background: var(--blue-wash); }
.ramp-step__badge--team { color: var(--blue-deep); background: #fff; }
.ramp-step__body { position: relative; }
.ramp-step__num {
  position: absolute;
  top: -0.1rem;
  right: 0;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-3);
  opacity: 0.55;
}
.ramp-step h3 {
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -0.014em;
  padding-right: 2rem;
}
.ramp-step p {
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--ink-2);
}
.ramp-step .link-arrow { display: inline-block; margin-top: 0.7rem; font-size: var(--text-sm); }
.start__aside { display: grid; gap: 1.25rem; position: relative; }
.start__aside .map { margin-top: 0; }
.start__proof {
  background: var(--navy);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.6rem;
}
.start__proof p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--on-navy);
}
.start__proof strong { font-style: normal; font-family: var(--font); font-weight: 700; color: var(--blue-bright); }

/* ---- MEET STEVE ---- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.about__portrait { position: relative; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  padding: 0.6rem;
  rotate: -1.5deg;
}
.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 14px;
}
.portrait__badge {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  background: var(--navy);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-md);
}
.portrait__badge b { font-size: 1.15rem; font-weight: 800; color: var(--on-navy); letter-spacing: -0.01em; }
.portrait__badge span { font-family: var(--mono); font-size: 0.68rem; color: var(--on-navy-soft); }
.about__chip {
  position: absolute;
  bottom: -0.9rem;
  right: -0.6rem;
  rotate: -2deg;
}
.about__copy .h2 { margin-top: 1rem; }
.about__copy .body-lg { margin-top: 1.2rem; }
.about__body { margin-top: 1rem; color: var(--ink-2); line-height: 1.7; }
.about__signature { margin-top: 1.6rem; }
.about__name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.about__role {
  display: block;
  margin-top: 0.3rem;
  font-size: var(--text-sm);
  color: var(--ink-3);
}

/* ---- RESOURCES ---- */
.res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.res-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.9rem;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.res-card__kind {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.res-card h3 {
  font-size: 1.3rem;
  font-weight: 760;
  letter-spacing: -0.016em;
  margin-top: 0.5rem;
}
.res-card p {
  margin-top: 0.6rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.6;
}
.res-card__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
}
.res-card__cta span { display: inline-block; transition: transform 200ms var(--ease); }
.res-card:hover .res-card__cta span { transform: translateX(4px); }

/* ---- Motion for the new bits ---- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes gc-pulse {
    0%, 100% { opacity: 0.55; transform: scale(0.82); }
    50% { opacity: 1; transform: scale(1.14); }
  }
  @keyframes gc-flow { to { stroke-dashoffset: -28; } }
  .js .fl--graph .fl__in { animation-delay: 500ms, 2.8s; }
  .js .gc-node--blue,
  .js .gc-node--pos,
  .js .gc-node--flag {
    animation: gc-pulse 3.2s ease-in-out infinite;
    animation-delay: var(--d, 0s);
  }
  .js .gc-edges path {
    stroke-dasharray: 3 4;
    animation: gc-flow 4s linear infinite;
  }
}

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .ways__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .start__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 22rem; }
  .about__chip { position: static; margin-top: 1.1rem; right: auto; bottom: auto; rotate: 0deg; display: inline-flex; }
  .res-grid { grid-template-columns: 1fr; }
}
/* fix: give the pain minicard its own clear lane right of the readiness panel
   (panel caps at 74%/24.5rem, so a 9rem card at right:0 never covers its text) */
.fl--metric { top: -0.75rem; right: 0; width: 9rem; z-index: 6; }
/* narrow-desktop band: the lane is too thin — tuck the card rather than clip the panel */
@media (min-width: 1021px) and (max-width: 1240px) {
  .fl--metric { display: none; }
}

@media (max-width: 760px) {
  .fl--graph { width: 56%; bottom: 0.5rem; }
}

/* ============================================================
   concept-5-ways · council-fix pass
   ============================================================ */
/* data-safety strip (resolves the privacy pain) */
.safe::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -8%; top: 8%; width: 44rem; height: 34rem;
  background: radial-gradient(closest-side, oklch(78% 0.12 220 / 0.16), transparent 70%);
}
.safe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.safe-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 1.8rem;
}
.safe-card .ico { margin-bottom: 1rem; }
.safe-card h3 { font-size: 1.15rem; font-weight: 750; letter-spacing: -0.012em; line-height: 1.3; }
.safe-card p { margin-top: 0.6rem; font-size: var(--text-sm); color: var(--ink-2); line-height: 1.6; }

/* funnel bridge line under the three ways */
.ways__foot {
  text-align: center; margin-top: clamp(1.75rem, 3vw, 2.5rem);
  font-size: var(--text-lg); color: var(--ink-2); font-weight: 600;
}
.ways__foot .link-arrow--inline { font-weight: 700; }

/* break the why/fit/quote text valley with ambient glows */
.fit::after, .quote::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  background: radial-gradient(closest-side, oklch(66% 0.14 262 / 0.14), transparent 70%);
}
.fit::after { left: -10%; top: 12%; width: 42rem; height: 34rem; }
.quote::after {
  right: -8%; bottom: -6%; width: 40rem; height: 32rem;
  background: radial-gradient(closest-side, oklch(55% 0.18 285 / 0.12), transparent 70%);
}

/* a11y: strengthen the closing veil so text stays >=4.5:1 over any localized photo */
.closing {
  background:
    linear-gradient(to bottom, var(--canvas) 0%, oklch(98.2% 0.005 255 / 0.9) 30%, oklch(98.2% 0.005 255 / 0.74) 72%, oklch(98.2% 0.005 255 / 0.62) 100%),
    url("../img/bg-147007145960.jpg") center 62% / cover no-repeat;
}

@media (max-width: 900px) {
  .safe-grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
}

/* 4-case results grid: 2x2 on desktop, 1 col on mobile */
.case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .case-grid { grid-template-columns: 1fr; } }

/* ============================================================
   concept-5-ways · hero pain-diagnostic panel + real headshot
   ============================================================ */
/* Hero panel repurposed from sales jargon to a 3-pain AI-readiness diagnostic */
.panel__gaps { padding: 1rem 1.25rem 0.5rem; display: grid; gap: 0.9rem; }
.pgap { display: grid; grid-template-columns: 1fr auto; gap: 0.45rem 0.7rem; }
.pgap__label { grid-column: 1; grid-row: 1; font-size: 0.82rem; font-weight: 600; color: var(--on-navy); }
.pgap__state { grid-column: 2; grid-row: 1; justify-self: end; align-self: center; font-family: var(--mono); font-size: 0.6rem; color: var(--on-navy-soft); white-space: nowrap; }
.pgap__state--flag { color: var(--flag); }
.pgap__state--pos { color: var(--pos); }
.pgap__track { grid-column: 1 / -1; grid-row: 2; height: 6px; border-radius: 999px; background: var(--navy-3); overflow: hidden; }
.pgap__fill { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright)); }
.pgap:nth-child(1) .pgap__fill { background: linear-gradient(90deg, var(--flag-deep), var(--flag)); }
.pgap:nth-child(2) .pgap__fill { background: linear-gradient(90deg, var(--ok-deep), var(--pos)); }
.panel__foot { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 1.25rem 0.9rem; border-top: 1px solid var(--navy-3); font-family: var(--mono); font-size: 0.68rem; color: var(--on-navy-soft); }
.panel__foot-r { color: var(--blue-bright); font-weight: 600; }

/* pain micro-card variant of the minicard */
.minicard--pain b { font-size: 1rem; font-weight: 780; line-height: 1.25; letter-spacing: -0.01em; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes pgap-grow { from { width: 0; } to { width: var(--w); } }
  .js .pgap__fill { animation: pgap-grow 1100ms var(--ease) 550ms both; }
}

/* ============================================================
   concept-5-ways · owner-audit fix pass (2026-07-08)
   Honest resources, real PDF, pricing, mobile conversion,
   crafted case artifacts, legitimacy layer.
   ============================================================ */

/* ---- compact nav CTA label swap (full text desktop, short <900px) ---- */
.nav__cta-s { display: none; }
@media (max-width: 900px) {
  .nav__cta-l { display: none; }
  .nav__cta-s { display: inline; }
}

/* ---- mobile sticky mini-CTA (shown by main.js after ~40% scroll) ---- */
.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  box-shadow: 0 10px 30px oklch(41% 0.155 262 / 0.45);
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  transition: transform 260ms var(--ease), opacity 220ms var(--ease), visibility 0s 260ms;
}
.sticky-cta.is-visible {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
@media (max-width: 900px) {
  .sticky-cta { display: inline-flex; }
}

/* ---- hero founder chip (LinkedIn face-match for warm arrivals) ---- */
.hero__founder {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.7rem;
  text-decoration: none;
}
.hero__founder img {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid #fff;
  box-shadow: var(--shadow-md);
}
.hero__founder b { display: block; font-size: var(--text-sm); font-weight: 750; color: var(--ink); line-height: 1.25; }
.hero__founder i { display: block; font-style: normal; font-size: var(--text-xs); color: var(--ink-3); line-height: 1.3; }
.hero__founder:hover i { color: var(--blue-deep); }
@media (prefers-reduced-motion: no-preference) {
  .js .hero__copy > *:nth-child(5) { animation-delay: 280ms; }
}

/* ---- honest industry note (no receipt plate until a real case exists) ---- */
.ind-card__note {
  display: block;
  margin-top: 1.25rem;
  background: oklch(97.5% 0.006 255 / 0.85);
  border: 1px dashed oklch(80% 0.02 255);
  border-radius: var(--r-md);
  padding: 0.9rem 1rem 0.85rem;
  font-size: var(--text-xs);
  font-weight: 550;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---- crafted case artifacts (replace stock photos; real figures only) ---- */
.case-art {
  position: relative;
  aspect-ratio: 21 / 9;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: linear-gradient(155deg, var(--navy), var(--navy-2));
  border-bottom: 1px solid var(--navy-3);
  padding: 0.85rem 1.15rem 0.8rem;
  overflow: hidden;
}
.case-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, oklch(70% 0.14 262 / 0.12), transparent 40%, transparent 74%, oklch(55% 0.2 285 / 0.09));
}
.case-art__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--on-navy-soft);
}
.case-art__tag { color: var(--blue-bright); white-space: nowrap; }
.case-art__viz { flex: 1; width: 100%; min-height: 0; }
.ca-base { stroke: var(--navy-3); stroke-width: 1.5; }
.ca-bars rect { fill: oklch(60% 0.09 262 / 0.75); }
.ca-bars .ca-warn { fill: oklch(75% 0.14 45 / 0.6); }
.ca-bars .ca-flag { fill: var(--flag); }
.case-art__foot {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--on-navy-soft);
}
.case-art__foot b { font-size: 0.8rem; font-weight: 700; color: var(--on-navy); }
.case-art__foot em { font-style: normal; margin-left: auto; color: var(--flag); white-space: nowrap; }

.case-art__rows { flex: 1; display: grid; align-content: center; gap: 0.7rem; }
.ca-row {
  display: grid;
  grid-template-columns: minmax(9.5rem, auto) 1fr auto;
  align-items: center;
  gap: 0.7rem;
}
.ca-row > span { font-family: var(--mono); font-size: 0.62rem; color: var(--on-navy-soft); white-space: nowrap; }
.ca-row i { position: relative; display: block; height: 9px; border-radius: 999px; background: var(--navy-3); overflow: hidden; }
.ca-row i::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
}
.ca-row--hot i::before { background: linear-gradient(90deg, var(--ok-deep), var(--pos)); }
.ca-row b { font-family: var(--mono); font-size: 0.78rem; font-weight: 700; color: var(--on-navy); }
.ca-row--hot b { color: var(--pos); }

.ca-segs {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  min-height: 0;
}
.ca-seg {
  display: flex;
  align-items: flex-end;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: oklch(60% 0.09 262 / 0.28);
  border: 1px solid var(--navy-3);
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--on-navy-soft);
  grid-column: span 2;
}
.ca-seg--a { grid-row: span 2; background: oklch(55.5% 0.185 262 / 0.55); color: var(--on-navy); }
.ca-seg--b { background: oklch(60% 0.09 262 / 0.4); }
.ca-seg--f { grid-column: span 2; background: oklch(80% 0.13 155 / 0.24); }

.ca-axes line { stroke: var(--navy-3); stroke-width: 1.5; }
.ca-axis { font-family: var(--mono); font-size: 9px; fill: var(--on-navy-soft); }
.ca-dots circle { fill: oklch(60% 0.09 262 / 0.8); }
.ca-win { fill: var(--pos); stroke: oklch(80% 0.13 155 / 0.3); stroke-width: 6; }

@media (max-width: 460px) {
  .case-art { aspect-ratio: auto; min-height: 11.5rem; }
  .ca-row { grid-template-columns: minmax(7.5rem, auto) 1fr auto; }
}

/* ---- testimonial: references-on-request line ---- */
.quote__refs { margin-top: 0.9rem; font-size: var(--text-xs); color: var(--ink-3); }

/* ---- About: LinkedIn link ---- */
.about__linkedin {
  display: inline-flex;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--blue-deep);
  text-decoration: none;
}
.about__linkedin span { display: inline-block; transition: transform 200ms var(--ease); }
.about__linkedin:hover span { transform: translateX(4px); }

/* ---- resources: live-teardown card accent ---- */
.res-card--live { border-color: oklch(55.5% 0.185 262 / 0.4); }

/* ---- data commitments + day-one rules (legitimacy layer) ---- */
.safe-pledge {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: 1.4rem;
}
.safe-pledge__commit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.8rem;
}
.safe-pledge__commit h3 {
  font-size: 1.3rem;
  font-weight: 770;
  letter-spacing: -0.014em;
  margin-top: 0.9rem;
}
.safe-pledge__commit ul { list-style: none; margin-top: 1.1rem; display: grid; gap: 0.75rem; }
.safe-pledge__commit li {
  position: relative;
  padding-left: 1.9rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.55;
}
.safe-pledge__commit li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  background: var(--blue-wash);
  color: var(--blue-deep);
}
.safe-pledge__commit li b { color: var(--ink); font-weight: 700; }
.safe-pledge__commit li a { color: var(--blue-deep); font-weight: 650; text-decoration: none; }
.safe-pledge__commit li a:hover { text-decoration: underline; }
.safe-pledge__more { margin-top: 1.2rem; font-size: var(--text-xs); color: var(--ink-3); }
.safe-pledge__more a { color: var(--blue-deep); font-weight: 650; text-decoration: none; }
.safe-pledge__more a:hover { text-decoration: underline; }
.safe-rules {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy), var(--navy-2));
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem;
  rotate: 0.75deg;
}
.safe-rules::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: -4.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(55.5% 0.185 262 / 0.45), transparent 70%);
  pointer-events: none;
}
.safe-rules__kicker {
  position: relative;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.safe-rules ol {
  position: relative;
  list-style: none;
  counter-reset: rules;
  margin-top: 1.15rem;
  display: grid;
  gap: 0.95rem;
}
.safe-rules li {
  counter-increment: rules;
  position: relative;
  padding-left: 2.1rem;
  font-size: var(--text-sm);
  color: var(--on-navy-soft);
  line-height: 1.55;
}
.safe-rules li::before {
  content: counter(rules, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.12em;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue-bright);
}
@media (max-width: 900px) {
  .safe-pledge { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .safe-rules { rotate: 0deg; }
}

/* ---- closing: quiet self-serve line above the booking panel ---- */
.closing__alt { margin-top: 1.6rem; font-size: var(--text-sm); color: var(--ink-3); }
.closing__alt a { color: var(--blue-deep); font-weight: 650; text-decoration: none; }
.closing__alt a:hover { text-decoration: underline; }

/* ---- footer: link row ---- */
.footer__links a { text-decoration: none; }

/* ============================================================
   concept-5-ways · P2 pass (2026-07-08): receipt strip,
   capacity line, healthcare click-through
   ============================================================ */

/* ---- P2-16: honest capacity line above the booking calendar ---- */
.book__capacity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-2);
  margin-bottom: 0.9rem;
}
.book__capacity i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 3px oklch(80% 0.13 155 / 0.22);
  flex-shrink: 0;
}

/* ---- P2-15: healthcare click-through on the H&LS industry card ---- */
.ind-card__link {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: var(--text-sm);
  color: var(--blue-deep);
}

/* ============================================================
   concept-5-ways · Steve feedback round (2026-07-08 late)
   ============================================================ */

/* ---- proof cards: icon + number share a row (kills the dead corner) ---- */
.proof-card__head { display: flex; align-items: center; gap: 1rem; }
.proof-card__head .proof-card__num { margin-top: 0; }
.proof-card__label { margin-top: 0.85rem; }

/* ---- wide construction case card (5th case, full row) ---- */
.case-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.case-card--wide .case-art {
  aspect-ratio: auto;
  height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--navy-3);
}
.ca-flow {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 0.45rem;
}
.ca-step {
  font-family: var(--mono);
  font-size: 0.64rem;
  color: var(--on-navy-soft);
  background: oklch(60% 0.09 262 / 0.22);
  border: 1px solid var(--navy-3);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  white-space: nowrap;
}
.ca-step--hot { color: var(--on-navy); background: oklch(55.5% 0.185 262 / 0.5); }
.ca-step--pos { color: var(--navy); background: var(--pos); border-color: transparent; font-weight: 600; }
.ca-arrow { font-family: var(--mono); font-size: 0.7rem; color: var(--on-navy-soft); }
@media (max-width: 760px) {
  .case-card--wide { grid-template-columns: 1fr; }
  .case-card--wide .case-art { border-right: 0; border-bottom: 1px solid var(--navy-3); min-height: 12rem; height: auto; }
}

/* ---- one-pager email gate ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.res-gate { display: flex; gap: 0.6rem; margin-top: 1.15rem; }
.res-gate input[type="email"] {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.85rem;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.res-gate input[type="email"]:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-wash);
}
.res-gate .btn { flex-shrink: 0; }
.res-gate__honey { position: absolute; left: -9999px; width: 1px; height: 1px; }
.res-gate__note { margin-top: 0.65rem; font-size: var(--text-xs); color: var(--ink-3); }
@media (max-width: 460px) {
  .res-gate { flex-wrap: wrap; }
  .res-gate .btn { width: 100%; }
}

/* ---------- Strategy-call page links (orphan fix) ---------- */
.ramp-step__links { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 1.5rem; }
.link-arrow--quiet { color: var(--ink-3); font-weight: 650; }

/* ---------- Resources: three-card ladder + stacked three-field gates ---------- */
.res-grid--three { grid-template-columns: repeat(3, 1fr); align-items: start; }
@media (max-width: 1200px) and (min-width: 1021px) {
  .res-grid--three { gap: 1.1rem; }
  .res-grid--three .res-card { padding: 1.5rem; }
}
.res-gate--stack { flex-direction: column; gap: 0.55rem; }
.res-gate--stack input[type="text"] {
  min-width: 0;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.62rem 0.85rem;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease);
}
.res-gate--stack input[type="text"]:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-wash);
}
.res-gate--stack .btn { width: 100%; }
.results__more { color: var(--blue-deep); font-weight: 700; text-decoration: none; margin-left: 0.35rem; }
.results__more span { display: inline-block; transition: transform 200ms var(--ease); }
.results__more:hover span { transform: translateX(4px); }
@media (max-width: 1020px) {
  .res-grid--three { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
}

/* ---------- Round-4 fixes (Steve's annotated screenshots) ---------- */
/* 2: give the pain minicard room so "company?" doesn't wrap ugly
   (measured against the readiness-panel text at 1250–1920px) */
.fl--metric { width: 10.5rem; }
.fl--metric .minicard--pain b { max-width: none; }
/* 3: skeptic link under the industries head */
.industries__proof { display: inline-block; margin-top: 1rem; color: var(--blue-deep); }
/* 4: testimonial wider + matching closing mark */
.quote__inner { max-width: 66rem; }
.quote__text::after {
  content: "\201D";
  display: block;
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 0.6;
  color: var(--blue);
  margin-top: 1.6rem;
}
.quote__attr { margin-top: 0.4rem; }
/* 6: free-tools strip under the hero — floating card treatment so it pops */
.toolstrip { position: relative; z-index: 2; padding-block: 0.25rem 1.75rem; }
.toolstrip__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #fff 30%, var(--blue-wash));
  border: 1px solid oklch(74% 0.125 262 / 0.5);
  border-radius: var(--r-lg);
  box-shadow: inset 0 1px 0 #fff, var(--shadow-lg);
  padding: 1.05rem 1.4rem;
  rotate: -0.4deg;
  transition: rotate 250ms var(--ease), transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.toolstrip__inner:hover { rotate: 0deg; transform: translateY(-3px); box-shadow: inset 0 1px 0 #fff, var(--shadow-xl); }
.toolstrip__ico { rotate: -4deg; }
.toolstrip__txt { flex: 1; min-width: 18rem; }
.toolstrip__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.15rem;
}
.toolstrip__msg { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.5; }
.toolstrip__msg b { color: var(--ink); }
.toolstrip__cta { white-space: nowrap; }
.toolstrip__cta span { display: inline-block; transition: transform 200ms var(--ease); }
.toolstrip__cta:hover span { transform: translateX(4px); }
@media (max-width: 640px) {
  .toolstrip__inner { rotate: 0deg; padding: 1.1rem 1.25rem; }
  .toolstrip__cta { width: 100%; }
}
/* 2b: the opening quote mark hung too far above the testimonial text */
.quote__inner::before { margin-bottom: 0.3rem; }
/* 8: gate fields hidden until first click (class added by JS) */
.res-gate--collapsed input { display: none; }

/* ---------- Responsive QA fixes (agent findings, verified in screenshots) ---------- */
/* nav: navy cards scrolling underneath bled through at 82% alpha — raise to near-opaque */
.nav { background: oklch(98.2% 0.005 255 / 0.93); }
/* nav links wrapped to two ragged lines at ~1024px */
.nav__links a { white-space: nowrap; }
@media (max-width: 1120px) {
  .nav__links { gap: 1.05rem; }
}
