/* ==========================================================================
   WESTON CLICK — about.css
   Page-specific styles for about.html only.

   This page is about the COMPANY, not the people behind it — there are no
   founder or team portraits anywhere in it.

   Layout DNA — no two sections share a shape:
     1  Hero ............. own hero, see HERO below
     1b Origin ........... split: disconnected-vendor diagram + copy
     2  Philosophy ....... dark band, one rule stated large + 3 principles
     3  What we build .... tinted, orbit diagram facing a capability list
     4  Who we build for . light, compact niche row
     5  Final CTA ........ framed card with a rotating sweep
   ========================================================================== */

/* ==========================================================================
   HERO — editorial reversed split on bone (.ahero)
   Arched picture with a rotating conic-gradient border, the "pieces" a
   coach usually gets sold crossed out, merging into one system card.
   ========================================================================== */
@property --ahero-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.ahero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.ahero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.ahero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .75;
  animation: ahero-drift 18s var(--ease-soft) infinite alternate;
}
.ahero__aurora--1 {
  width: 520px; height: 520px; left: -160px; top: -140px;
  background: radial-gradient(circle, rgba(var(--accent-bright-rgb), .32), transparent 68%);
}
.ahero__aurora--2 {
  width: 460px; height: 460px; right: -140px; bottom: -200px;
  background: radial-gradient(circle, rgba(245, 181, 68, .22), transparent 68%);
  animation-delay: -9s;
}
@keyframes ahero-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(60px, 40px, 0) scale(1.12); }
}
/* Dotted paper, faded out toward the edges with a radial mask. */
.ahero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 26, 22, .13) 1.1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 28% 50%, #000 10%, transparent 72%);
  mask-image: radial-gradient(ellipse 60% 70% at 28% 50%, #000 10%, transparent 72%);
}

.ahero__inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding-top: calc(var(--header-space) + clamp(48px, 5vw, 84px));
  padding-bottom: clamp(56px, 6vw, 96px);
}

/* --------------------------------------------------------------------------
   The arch
   -------------------------------------------------------------------------- */
.ahero__visual {
  position: relative;
  width: min(100%, 440px);
  justify-self: center;
  padding: 28px 12px 12px;
}

.ahero__arch {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 32px 32px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .9), transparent 58%),
    linear-gradient(170deg, var(--brand-100), var(--brand-50) 60%, #fff);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
/* Rotating gradient ring: a conic gradient clipped to the border box
   with a mask so only an 3px edge shows. */
.ahero__arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(from var(--ahero-angle),
              transparent 0 55%, var(--brand-300) 70%, var(--accent) 82%, transparent 92%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  animation: ahero-spin 6s linear infinite;
}
@keyframes ahero-spin { to { --ahero-angle: 360deg; } }

.ahero__img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 88%;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.05);
}

/* Circular text stamp that slowly turns. */
.ahero__stamp {
  position: absolute;
  top: 0;
  right: -6px;
  width: 112px; height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  box-shadow: 0 16px 36px -16px rgba(15, 26, 22, .6);
}
.ahero__stamp svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: ahero-turn 22s linear infinite;
}
.ahero__stamp text {
  fill: currentColor;
  font-family: var(--font-body);
  font-size: 10.4px;
  font-weight: 700;
  letter-spacing: .16em;
}
.ahero__stamp > span { font-size: 1.35rem; color: var(--accent-on-dark); }
@keyframes ahero-turn { to { transform: rotate(360deg); } }

/* --- The crossed-out pieces --- */
.ahero__pieces {
  position: absolute;
  left: -34px;
  top: 30%;
  display: grid;
  gap: 12px;
  list-style: none;
}
.apiece {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 15px 9px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .72);
  border: 1px dashed var(--line-strong);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-500);
  text-decoration: line-through;
  text-decoration-color: rgba(214, 69, 69, .7);
  text-decoration-thickness: 2px;
  box-shadow: var(--shadow-sm);
  animation: ahero-bob 6s var(--ease-soft) infinite;
}
.apiece--1 { rotate: -5deg; }
.apiece--2 { rotate: 3deg; margin-left: 22px; animation-delay: -2s; }
.apiece--3 { rotate: -2deg; margin-left: 6px; animation-delay: -4s; }
@keyframes ahero-bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -7px; }
}
.apiece__x {
  width: 20px; height: 20px;
  flex: none;
  border-radius: 50%;
  background: #FBE9E9;
  position: relative;
}
.apiece__x::before,
.apiece__x::after {
  content: "";
  position: absolute;
  left: 5px; right: 5px; top: 50%;
  height: 2px;
  margin-top: -1px;
  border-radius: 2px;
  background: #D64545;
  rotate: 45deg;
}
.apiece__x::after { rotate: -45deg; }

/* --- The merged system card --- */
.ahero__merged {
  position: absolute;
  right: -26px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-600), var(--accent) 55%, var(--brand-900));
  box-shadow: 0 22px 48px -18px rgba(var(--accent-rgb), .75),
              inset 0 1px 0 rgba(255, 255, 255, .22);
}
.ahero__merged-icon {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
}
.ahero__merged-icon svg { width: 22px; height: 22px; }
.ahero__merged-text {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: rgba(255, 255, 255, .75);
}
.ahero__merged-text strong { font-size: var(--fs-sm); color: #fff; }

/* --------------------------------------------------------------------------
   The story
   -------------------------------------------------------------------------- */
.ahero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.ahero__eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.ahero__title {
  margin-top: clamp(14px, 1.6vw, 20px);
  font-size: clamp(2rem, 1.2rem + 2.3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  text-wrap: balance;
}
/* Shimmering gradient text sitting on a marker-pen highlight. */
.ahero__accent {
  position: relative;
  display: inline-block;
  z-index: 0;
  background: linear-gradient(100deg, var(--accent) 20%, var(--brand-400) 40%, var(--accent) 60%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ahero-shimmer 5s linear infinite;
}
.ahero__accent::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.08em; right: -.08em;
  bottom: .06em;
  height: .36em;
  border-radius: 4px;
  background: rgba(var(--accent-bright-rgb), .22);
  transform: skewX(-8deg);
}
@keyframes ahero-shimmer { to { background-position: -250% 0; } }

.ahero__sub {
  margin-top: clamp(16px, 1.8vw, 22px);
  max-width: 50ch;
  font-size: clamp(1rem, .96rem + .3vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-500);
}

.ahero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: clamp(24px, 2.8vw, 34px);
}
.ahero__actions .btn--primary { box-shadow: 0 14px 34px -14px rgba(var(--accent-rgb), .8); }
/* Underline that draws in on hover. */
.ahero__link {
  padding-bottom: 3px;
  font-weight: 700;
  color: var(--ink-900);
  background: linear-gradient(var(--accent-bright), var(--accent-bright)) 0 100% / 0 2px no-repeat,
              linear-gradient(var(--line-strong), var(--line-strong)) 0 100% / 100% 2px no-repeat;
  transition: background-size var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.ahero__link:hover { color: var(--accent); background-size: 100% 2px, 100% 2px; }

/* --- 3 → 1 equation --- */
.ahero__equation {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: clamp(28px, 3.2vw, 40px);
  max-width: 480px;
}
.aeq {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
}
.aeq__num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}
.aeq__label { font-size: var(--fs-xs); font-weight: 600; line-height: 1.35; color: var(--ink-600); }
.aeq--before .aeq__num {
  color: var(--ink-300);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(214, 69, 69, .6);
}
/* Gradient border via padding-box / border-box layering. */
.aeq--after {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--brand-300), var(--accent)) border-box;
  box-shadow: 0 14px 30px -18px rgba(var(--accent-rgb), .6);
}
.aeq--after .aeq__num { color: var(--accent); }
.aeq__arrow {
  align-self: center;
  width: 40px;
  flex: none;
  color: var(--accent-bright);
  animation: ahero-nudge 1.8s var(--ease-soft) infinite;
}
@keyframes ahero-nudge {
  0%, 100% { translate: 0 0; }
  50%      { translate: 5px 0; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .ahero__inner { grid-template-columns: minmax(0, 1fr); }
  .ahero__copy  { order: -1; }
  .ahero__visual { width: min(100%, 380px); }
  .ahero__pieces { left: -8px; }
  .ahero__merged { right: -4px; }
}
@media (max-width: 520px) {
  .ahero__pieces { top: 24%; }
  .apiece { font-size: 12px; padding: 7px 12px 7px 8px; }
  .ahero__merged { bottom: 18px; padding: 11px 14px 11px 11px; }
  .ahero__stamp { width: 88px; height: 88px; }
  .ahero__stamp text { font-size: 12.8px; }
  .ahero__equation { flex-direction: column; }
  .aeq__arrow { rotate: 90deg; }
  .ahero__actions .btn--lg { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ahero__aurora, .ahero__arch::after, .ahero__stamp svg,
  .apiece, .ahero__accent, .aeq__arrow { animation: none; }
}


/* --------------------------------------------------------------------------
   SHARED: the card treatment used across this page
   -------------------------------------------------------------------------- */
.acard {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-soft);
}
.acard:hover {
  transform: translateY(-5px);
  border-color: var(--brand-200);
  box-shadow: var(--shadow-xl);
}
.acard--ink {
  background: rgba(255, 255, 255, .045);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.acard--ink:hover {
  background: rgba(255, 255, 255, .075);
  border-color: rgba(var(--accent-rgb), .6);
}
.acard--brand {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 26px 60px -26px rgba(var(--accent-rgb), .9);
}
.acard--brand:hover { border-color: var(--accent-hover); }

/* Dark section shell */
.ink-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-ink);
  color: rgba(255, 255, 255, .62);
  padding-block: var(--section-y);
}
.ink-section h2, .ink-section h3 { color: #fff; }
.ink-section .lead { color: rgba(255, 255, 255, .6); }
.ink-section .eyebrow { color: var(--accent-on-dark); }
.ink-section .eyebrow::before { background: var(--accent-on-dark); }
.ink-section > .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   SECTION 1b — ORIGIN  (disconnected-vendor diagram + copy)
   -------------------------------------------------------------------------- */
.origin { padding-block: var(--section-y); }
.origin__split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
}
.origin__copy .lead { margin-top: var(--sp-5); }
.origin__placeholder { margin-top: var(--sp-7); }

/* --- The fragmented-vendor model --- */
.disconnect {
  margin: 0;
  padding: clamp(22px, 2.8vw, 32px);
  border-radius: var(--r-xl);
  border: 1px dashed var(--line-strong);
  background: var(--surface-alt);
}
.disconnect__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-600);
  margin-bottom: var(--sp-6);
}
.disconnect__dot {
  width: 8px; height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--ink-300);
}

.disconnect__list { display: grid; gap: 14px; }
.disconnect__node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
/* Each vendor is staggered, so nothing lines up into a system */
.disconnect__node:nth-child(2) { margin-left: clamp(0px, 4vw, 34px); }
.disconnect__node:nth-child(3) { margin-left: clamp(0px, 8vw, 68px); }

.disconnect__icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  background: var(--ink-50);
  border: 1px solid var(--line);
  color: var(--ink-400);
}
.disconnect__icon svg { width: 20px; height: 20px; }
.disconnect__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.disconnect__body strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink-800);
}
.disconnect__body em { font-style: normal; font-size: var(--fs-xs); color: var(--ink-400); }

/* A handoff that trails off into nothing */
.disconnect__stub {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  flex: none;
}
.disconnect__stub i {
  width: 26px;
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--ink-200) 0 4px, transparent 4px 8px);
}
.disconnect__stub b {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-400);
  font-size: 11px;
  font-weight: 700;
  animation: stub-blink 2.7s var(--ease-soft) infinite;
  animation-delay: var(--dc-delay, 0s);
}
@keyframes stub-blink {
  0%, 100% { opacity: .35; }
  50%      { opacity: 1; background: rgba(var(--accent-rgb), .14); color: var(--accent); }
}

.disconnect__note {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px dashed var(--line-strong);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--ink-400);
}

@media (max-width: 900px) {
  .origin__split { grid-template-columns: minmax(0, 1fr); }
  .origin__split > .disconnect { order: 2; }
  .origin__split > .origin__copy { order: 1; }
}

/* --------------------------------------------------------------------------
   SECTION 2 — PHILOSOPHY  (one rule + three principles)
   -------------------------------------------------------------------------- */
.philosophy__head { margin-bottom: clamp(30px, 3.6vw, 44px); }

.rule {
  max-width: 780px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  padding: clamp(28px, 3.6vw, 44px) clamp(24px, 4vw, 52px);
  text-align: center;
}
.rule__badge {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto var(--sp-5);
  border-radius: 16px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
}
.rule__badge svg { width: 24px; height: 24px; }
.rule__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-bottom: var(--sp-4);
}
.rule__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .9vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, .9);
}
.rule__text strong { color: #fff; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}
.principle {
  padding: clamp(22px, 2.6vw, 30px);
  overflow: hidden;
}
.principle__num {
  position: absolute;
  top: -12px; right: 8px;
  font-family: var(--font-display);
  font-size: 4.6rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
}
.principle__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(var(--accent-rgb), .3);
  border: 1px solid rgba(var(--accent-rgb), .5);
  color: #fff;
  margin-bottom: var(--sp-5);
}
.principle__icon svg { width: 21px; height: 21px; }
.principle__name { font-size: var(--fs-h4); letter-spacing: -0.025em; }
.principle__text {
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}

@media (max-width: 900px) { .principles { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   SECTION 3 — WHAT WE BUILD  (orbit + capability list)
   -------------------------------------------------------------------------- */
.build {
  padding-block: var(--section-y);
  background: linear-gradient(180deg, var(--accent-tint), var(--white));
}
.build__head { margin-bottom: clamp(32px, 4vw, 50px); }
.build__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
}

/* --- Orbit --- */
.orbit {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  aspect-ratio: 1;
}
.orbit__ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1.5px dashed var(--brand-200);
  animation: orbit-spin 34s linear infinite;
}
.orbit__ring--inner {
  inset: 26%;
  border-style: solid;
  border-color: var(--brand-100);
  animation-direction: reverse;
  animation-duration: 26s;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.orbit__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 4px;
  width: 42%; height: 42%;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 20px 44px -16px rgba(var(--accent-rgb), .9);
  text-align: center;
  padding: 8px;
}
.orbit__core svg { width: 26px; height: 26px; }
.orbit__core em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(11px, 10px + .35vw, 13px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.orbit__node {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 2px;
  width: 30%; height: 30%;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  color: var(--accent);
  text-align: center;
  padding: 6px;
  animation: orbit-bob 6s var(--ease-soft) infinite;
  transition: transform var(--dur-base) var(--ease-spring), box-shadow var(--dur-base) var(--ease-out);
}
.orbit__node svg { width: 19px; height: 19px; }
.orbit__node em {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-700);
  line-height: 1.15;
}
.orbit__node:hover { transform: scale(1.07); box-shadow: var(--shadow-lg); }

/* Three points on the ring: top, bottom-right, bottom-left */
.orbit__node--1 { top: -2%;  left: 35%; }
.orbit__node--2 { bottom: 6%; right: -1%; animation-delay: -2s; }
.orbit__node--3 { bottom: 6%; left: -1%;  animation-delay: -4s; }
@keyframes orbit-bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -7px; }
}

/* --- Capability list --- */
.caps { display: grid; gap: clamp(12px, 1.6vw, 18px); }
.cap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 26px);
}
.cap__index {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 12px;
  background: var(--accent-tint);
  border: 1px solid var(--brand-100);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}
.cap__name { font-size: var(--fs-h4); letter-spacing: -0.025em; }
.cap__text { margin-top: 6px; font-size: var(--fs-sm); line-height: 1.65; color: var(--ink-500); }

/* --- One number bar --- */
.measure-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4) var(--sp-7);
  margin-top: clamp(28px, 3.4vw, 42px);
  padding: clamp(22px, 2.6vw, 30px) clamp(24px, 3vw, 38px);
}
.measure-bar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.measure-bar__value {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, .96rem + .45vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}
.measure-bar__num {
  font-size: clamp(1.9rem, 1.5rem + 1.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .build__layout { grid-template-columns: minmax(0, 1fr); }
  .orbit { max-width: 320px; }
}

/* --------------------------------------------------------------------------
   SECTION 4 — WHO WE BUILD FOR  (niche row)
   -------------------------------------------------------------------------- */
.audience { padding-block: var(--section-y); }
.audience__head { margin-bottom: clamp(30px, 3.6vw, 44px); }

.niches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
}
.niche {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(20px, 2.4vw, 26px) clamp(10px, 1.4vw, 16px);
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-800);
}
.niche__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 15px;
  background: var(--accent-tint);
  border: 1px solid var(--brand-100);
  color: var(--accent);
  transition: transform var(--dur-base) var(--ease-spring),
              background-color var(--dur-base) var(--ease-soft),
              color var(--dur-base) var(--ease-soft);
}
.niche__icon svg { width: 22px; height: 22px; }
.niche:hover .niche__icon {
  transform: translateY(-3px) scale(1.06);
  background: var(--accent);
  color: #fff;
}

.audience__link { margin-top: clamp(26px, 3vw, 38px); text-align: center; }

@media (max-width: 900px) { .niches { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .niches { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --------------------------------------------------------------------------
   SECTION 5 — FINAL CTA  (framed card with a rotating sweep)
   -------------------------------------------------------------------------- */
.about-cta { padding-block: var(--section-y); }
.about-cta__card {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 2px;
  border-radius: var(--r-2xl);
  background: linear-gradient(140deg, var(--accent), var(--brand-400), var(--accent));
  box-shadow: 0 40px 90px -40px rgba(var(--accent-rgb), .75);
  overflow: hidden;
}
.about-cta__glow {
  position: absolute;
  top: -60%; left: 50%;
  width: 130%; height: 200%;
  margin-left: -65%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, .55) 40deg, transparent 90deg);
  animation: about-cta-sweep 7s linear infinite;
  pointer-events: none;
}
@keyframes about-cta-sweep { to { transform: rotate(360deg); } }

.about-cta__inner {
  position: relative;
  z-index: 1;
  padding: clamp(34px, 5vw, 62px) clamp(24px, 4vw, 56px);
  border-radius: calc(var(--r-2xl) - 2px);
  background: radial-gradient(120% 130% at 50% 0%, var(--accent-tint), var(--white) 62%);
  text-align: center;
}
.about-cta__inner .eyebrow { justify-content: center; }
.about-cta__inner h2 { font-size: clamp(1.7rem, 1.3rem + 1.9vw, 2.6rem); }
.about-cta__inner .lead { margin-top: var(--sp-5); margin-inline: auto; max-width: 48ch; }
.about-cta__inner .btn-row { margin-top: var(--sp-7); }
.about-cta__inner .cta-note { margin-top: var(--sp-5); }
