/* ============================================================================
   nd-system.css — the NeoDimensional design system · Direction 1 "Plane"
   ----------------------------------------------------------------------------
   ONE source for tokens, layout, type roles, the five gradient recipes and the
   shared components. Loaded LAST (after mobile-polish-3.css) so it wins the
   <head> cascade. Approved 2026-09-06 (see scratchpad/dd/DIRECTIONS.md).

   Two cascade rules govern this file; break either and roles silently die.

   1) !important on every role declaration. Each section injects its own
      <style> INSIDE <body>, so those rules come after every <head> stylesheet
      in document order and win equal-specificity ties. !important is the only
      thing that outranks them without an arms race on specificity.

   2) Every exclusion list lives inside :where(), which contributes ZERO
      specificity. Because all role rules are !important, SPECIFICITY is what
      decides between OUR OWN rules — so
          p:not(:where(.nd-lead, .nd-small, ...))      -> (0,0,1)   correct
          p:not(.nd-lead):not(.nd-small)...            -> (0,11,1)  wrong
      The second form outranks the single-class role rules and those roles
      would never apply to a <p>, which every one of them is.

   Order: tokens -> base -> layout -> type roles (class, then bare tag) ->
   recipes -> components -> inner-page compatibility -> a11y/motion.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. TOKENS (the shared contract — every agent codes against these names)
   --------------------------------------------------------------------------- */
:root {
  /* ground / ink */
  --nd-ground:    #FFFFFF;
  --nd-ground-2:  #F6F8FB;
  --nd-ground-3:  #EEF2F7;
  --nd-ink:       #0B0E14;
  --nd-ink-2:     #3A4150;
  --nd-ink-3:     #6B7385;
  --nd-ink-4:     #9AA3B5;
  --nd-line:      rgba(11, 14, 20, .10);
  --nd-line-2:    rgba(11, 14, 20, .06);

  /* the one signal */
  --nd-accent:      #1F49E6;
  --nd-accent-ink:  #173BC2;   /* 6.4:1 on white as text */
  --nd-accent-soft: #E8EEFF;

  /* plates + washes (endpoints at OKLCH L >= 88; type may sit anywhere) */
  --nd-plate:     #E9EFFA;
  --nd-wash-lo:   #DDE8FF;
  --nd-wash-mid:  #F1F5FD;
  --nd-wash-hi:   rgba(255, 255, 255, .7);
  --nd-wash2-lo:  #E3DCFA;
  --nd-wash2-mid: #F2EEFC;

  /* optional dark panel (never a page ground) */
  --nd-field:       #0A0E1A;
  --nd-field-2:     #111726;
  --nd-field-ink:   #F4F6FB;
  --nd-field-ink-2: #B8C0D2;
  --nd-field-line:  rgba(255, 255, 255, .12);
  --nd-aurora-a:    rgba(88, 170, 255, .35);
  --nd-aurora-b:    rgba(148, 118, 255, .28);

  /* elevation: hairline + tint step at rest; one float shadow for things that float */
  --nd-shadow-float: 0 24px 48px -28px rgba(23, 38, 90, .22);

  /* radius: 8 controls / 16 cards / 24 plates / 32 panels */
  --nd-r-s:  8px;
  --nd-r-m:  16px;
  --nd-r-l:  24px;
  --nd-r-xl: 32px;

  /* families — Inter Tight stands in for Uncut Sans; swapping is this one line */
  --nd-display: "Inter Tight", "Uncut Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --nd-sans:    "Instrument Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --nd-serif:   "Newsreader", Georgia, "Times New Roman", serif;
  --nd-mono:    "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* grid */
  --nd-col:    1240px;
  --nd-wide:   1360px;
  --nd-read:   720px;
  --nd-gutter: clamp(20px, 4vw, 100px);

  /* spacing (three numbers: 120 / 64 / 24; everything else a multiple of 8) */
  --nd-sec:        clamp(64px, 8.3vw, 120px);   /* section block padding */
  --nd-sec-rest:   clamp(96px, 11vw, 160px);    /* the one rest section */
  --nd-sec-hero-t: clamp(120px, 12vw, 160px);   /* inner-page heroes, top */
  --nd-sec-hero-b: clamp(64px, 6vw, 96px);      /* inner-page heroes, bottom */
  --nd-gap-head:   clamp(40px, 4.4vw, 64px);    /* section header -> content */
  --nd-gap:        24px;                        /* grid gap */
  --nd-gap-lay:    64px;                        /* two-column layout gutter */
  --nd-gap-row:    64px;                        /* staggered row rhythm */
  --nd-card-pad:    clamp(24px, 2.2vw, 32px);
  --nd-card-pad-sm: 24px;

  /* type — fluid, anchored at 390 and 1440 (max engages at 1440) */
  --nd-fz-display: clamp(40px, calc(23.66px + 4.19vw), 84px);   /* 40 -> 84 */
  --nd-fz-h2:      clamp(30px, calc(21.83px + 2.095vw), 52px);  /* 30 -> 52 */
  --nd-fz-h2c:     clamp(26px, calc(22.29px + .952vw), 36px);   /* compact h2 (CTA cards, in-article) */
  --nd-fz-h3:      clamp(22px, calc(19.77px + .571vw), 28px);   /* 22 -> 28 */
  --nd-fz-h4:      clamp(17px, calc(16.26px + .19vw), 19px);    /* 17 -> 19 */
  --nd-fz-lead:    clamp(18px, calc(17.26px + .19vw), 20px);    /* 18 -> 20 */
  --nd-fz-body:    clamp(16px, calc(15.63px + .095vw), 17px);   /* 16 -> 17 */
  --nd-fz-small:   14px;
  --nd-fz-ledger:  12.5px;
  --nd-fz-voice:   clamp(20px, calc(18.51px + .381vw), 24px);   /* 20 -> 24 */
  --nd-fz-eyebrow: var(--nd-fz-ledger);                         /* legacy name */

  /* motion budget */
  --nd-ease:       cubic-bezier(.2, .7, .2, 1);
  --nd-dur:        240ms;
  --nd-dur-reveal: 700ms;

  /* ---- legacy aliases (inner pages still read these names) ---- */
  --nd-text:        var(--nd-ink);
  --nd-text-2:      var(--nd-ink-2);
  --nd-muted:       var(--nd-ink-3);
  --nd-text-dark:   var(--nd-field-ink);
  --nd-text-dark-2: var(--nd-field-ink-2);
  --nd-muted-dark:  var(--nd-ink-4);
  --nd-r-lg:        var(--nd-r-l);
  --nd-r-md:        var(--nd-r-m);
  --nd-r-sm:        var(--nd-r-s);
  --nd-shadow-hover: none;                      /* hover is a tint step, never a lift */
  --nd-col-narrow:  1180px;

  /* ---- theme re-points: every main-2.css font-family/colour token resolves here ---- */
  --at-ff-body:     var(--nd-sans);
  --at-ff-heading:  var(--nd-display);
  --at-neutral-900: var(--nd-ink);
  --at-neutral-800: var(--nd-ink);
  --at-neutral-700: var(--nd-ink-2);
  --at-neutral-500: var(--nd-ink-3);
  --at-neutral-100: var(--nd-ground-3);
  --at-neutral-50:  var(--nd-ground-2);
}

/* ---------------------------------------------------------------------------
   2. BASE
   main-2.css ships body{line-height:1.2} and h1-h6{letter-spacing:-5%};
   both are reset here and re-tightened per role below. The family rules are
   the inner-page safety net: 20+ sections inject font-family:"DM Sans" and
   em{font-family:Didot} from their own <style>; a zero-specificity
   universal rule with !important outranks all of them (none use !important)
   while the :where() list keeps the mono / serif / heading roles untouched.
   --------------------------------------------------------------------------- */
html { color-scheme: light; }
body {
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-body) !important;
  line-height: 1.6 !important;
  font-weight: 400;
  color: var(--nd-ink) !important;
  background: var(--nd-ground) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
*:not(:where(
  h1, h2, h3, h4, h5, h6, h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
  .nd-display, .nd-display *, .nd-h2, .nd-h2 *, .nd-h3, .nd-h3 *,
  .nd-ledger, .nd-ledger *, .nd-mono, .nd-mono *, .nd-ledger-row, .nd-ledger-row *,
  .nd-voice, .nd-voice *, .nd-serif, .nd-serif *,
  code, pre, kbd, samp, code *, pre *, svg, svg *, math, math *,
  .odometer, .odometer *, [class*="nd-cal"], [class*="nd-cal"] *
)) {
  font-family: var(--nd-sans) !important;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: inherit;
}
h1, h2, .nd-display, .nd-h2,
h1 *, h2 *, .nd-display *, .nd-h2 * { font-family: var(--nd-display) !important; }
h3, h4, h5, h6, .nd-h3,
h3 *, h4 *, h5 *, h6 *, .nd-h3 * { font-family: var(--nd-sans) !important; }
/* The Didot accent device is retired. Every <em> that sat inside a heading
   becomes the two-tone drop (Consumo): same face, same weight, ink-3. */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em,
.nd-display em, .nd-h2 em, .nd-h3 em, .tone,
.nd-hero-title .nd-accent, .nd-sp-num {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: inherit !important;
  font-size: 1em !important;
  letter-spacing: inherit !important;
  color: var(--nd-ink-3) !important;
}
strong, b { font-weight: 600; }
a { color: inherit; }
img, svg, video { max-width: 100%; height: auto; }
::selection { background: var(--nd-accent-soft); color: var(--nd-ink); }

/* ---------------------------------------------------------------------------
   3. LAYOUT
   Container 1240 (12 x 81.33 + 11 x 24); wide 1360 for plates only; reading
   720. Gutter clamp(20px,4vw,100px) puts the column at 100 on a 1440 viewport
   and 20 on a phone (350 content at 390).
   --------------------------------------------------------------------------- */
.nd-container, .nd-wide, .nd-read {
  box-sizing: border-box;
  width: min(100% - 2 * var(--nd-gutter), var(--nd-col));
  margin-inline: auto;
}
.nd-wide { width: min(100% - 2 * var(--nd-gutter), var(--nd-wide)); }
.nd-read { width: min(100% - 2 * var(--nd-gutter), var(--nd-read)); }
.nd-container .nd-read { width: min(100%, var(--nd-read)); margin-inline: 0; }
.nd-section { padding-block: var(--nd-sec); }
.nd-section--rest { padding-block: var(--nd-sec-rest); }
.nd-section--flush-top { padding-top: 0; }
.nd-hairline { border: 0; border-top: 1px solid var(--nd-line); margin: 0; height: 0; }
.nd-hairline--2 { border-top-color: var(--nd-line-2); }
.nd-hairline--ink { border-top-color: var(--nd-ink); }
.nd-grid { display: grid; gap: var(--nd-gap); }
.nd-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nd-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nd-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nd-grid--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 48px; align-items: start; }
@media (max-width: 991.98px) {
  .nd-grid--3, .nd-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nd-grid--split { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 639.98px) {
  .nd-grid--2, .nd-grid--3, .nd-grid--4 { grid-template-columns: 1fr; }
}
/* Every paragraph has a max-width: 800 / 480 / 340 (principle 3). */
.nd-measure-l { max-width: 800px; }
.nd-measure-m { max-width: 480px; }
.nd-measure-s { max-width: 340px; }

/* ---------------------------------------------------------------------------
   4. TYPE ROLES — classes first (they beat the bare-tag roles below on
   specificity), then the bare tags inside .nd-plane pages.
   Hierarchy comes from size and tone (ink -> ink-2 -> ink-3), never from a
   fourth weight or a colour. One display weight (700), one body weight (400),
   500 for UI and 600 for h3/card titles.
   --------------------------------------------------------------------------- */
.nd-display {
  font-family: var(--nd-display) !important;
  font-size: var(--nd-fz-display) !important;
  line-height: 1.0 !important;
  letter-spacing: -.04em !important;
  font-weight: 700 !important;
  color: var(--nd-ink);
  text-wrap: balance;
}
.nd-h2 {
  font-family: var(--nd-display) !important;
  font-size: var(--nd-fz-h2) !important;
  line-height: 1.06 !important;
  letter-spacing: -.03em !important;
  font-weight: 700 !important;
  color: var(--nd-ink);
  text-wrap: balance;
}
.nd-h3 {
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-h3) !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
  font-weight: 600 !important;
  color: var(--nd-ink);
}
.nd-h4 {
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-h4) !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
  font-weight: 600 !important;
  color: var(--nd-ink);
}
.nd-lead {
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-lead) !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  color: var(--nd-ink-2);
}
.nd-body {
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-body) !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  color: var(--nd-ink-2);
}
.nd-small {
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-small) !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  color: var(--nd-ink-3);
}
.nd-ledger {
  font-family: var(--nd-mono) !important;
  font-size: var(--nd-fz-ledger) !important;
  line-height: 1.5 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--nd-ink-3);
}
.nd-ledger--case { text-transform: none !important; letter-spacing: .02em !important; }
.nd-mono {
  font-family: var(--nd-mono) !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.nd-voice {
  font-family: var(--nd-serif) !important;
  font-style: italic !important;
  font-size: var(--nd-fz-voice) !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
  font-weight: 400 !important;
  color: var(--nd-ink);
  font-optical-sizing: auto;
}
.nd-ink   { color: var(--nd-ink) !important; }
.nd-ink-2 { color: var(--nd-ink-2) !important; }
.nd-ink-3 { color: var(--nd-ink-3) !important; }
.nd-accent-text { color: var(--nd-accent-ink) !important; }

/* Bare tags inside a Plane page take the roles without classes. */
.nd-plane h1:not(:where(.nd-h2, .nd-h3, .nd-h4)) {
  font-size: var(--nd-fz-display) !important;
  line-height: 1.0 !important;
  letter-spacing: -.04em !important;
  font-weight: 700 !important;
  text-wrap: balance;
}
.nd-plane h2:not(:where(.nd-display, .nd-h3, .nd-h4)) {
  font-size: var(--nd-fz-h2) !important;
  line-height: 1.06 !important;
  letter-spacing: -.03em !important;
  font-weight: 700 !important;
  text-wrap: balance;
}
.nd-plane h3:not(:where(.nd-display, .nd-h2, .nd-h4)) {
  font-size: var(--nd-fz-h3) !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
  font-weight: 600 !important;
}
.nd-plane :is(h4, h5, h6):not(:where(.nd-display, .nd-h2, .nd-h3, .nd-ledger)) {
  font-size: var(--nd-fz-h4) !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
  font-weight: 600 !important;
}
.nd-plane :is(p, li, dd):not(:where(
  .nd-lead, .nd-small, .nd-ledger, .nd-voice, .nd-body, .nd-h3, .nd-h4,
  .nd-display, .nd-h2, .nd-btn, .nd-ledger-row, .nd-ledger-row *
)) {
  font-size: var(--nd-fz-body);
  line-height: 1.6;
  color: var(--nd-ink-2);
}
.nd-plane :is(h1, h2, h3, h4, h5, h6) { margin: 0 0 16px; color: var(--nd-ink); }
.nd-plane p { margin: 0 0 16px; }
.nd-plane p:last-child { margin-bottom: 0; }
/* label -> h2 16, h2 -> sub 12 */
.nd-plane .nd-ledger + :is(h1, h2, h3, .nd-display, .nd-h2, .nd-h3) { margin-top: 16px; }
.nd-plane :is(h2, .nd-h2) + :is(p, .nd-lead) { margin-top: 12px; }

/* ---------------------------------------------------------------------------
   5. THE FIVE RECIPES (+ the optional dark panel)
   One hue -> ground, three stops, mid stop ~50%, type on the light side, no
   blur, no alpha blobs, no mix-blend-mode. Softness is stop spacing.
   !important on the background so no theme utility (.bg-white, section{...})
   can paint over a recipe; Agent C tunes a plate through --client only.
   --------------------------------------------------------------------------- */

/* Recipe 1 · entry wash (hero): white radial light over the ice ramp. */
.nd-wash-entry {
  position: relative;
  background:
    radial-gradient(120% 55% at 50% -12%, var(--nd-wash-hi) 0%, transparent 62%),
    linear-gradient(180deg, var(--nd-wash-lo) 0%, var(--nd-wash-mid) 52%, var(--nd-ground) 100%) !important;
  background-repeat: no-repeat !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .nd-wash-entry { min-height: 100svh; } }
@media (max-width: 639.98px) { .nd-wash-entry { min-height: 0; max-height: 100svh; } }

/* Recipe 2 · exit wash (CTA): ground -> lilac; usable inside a radius-32 panel. */
.nd-wash-exit {
  position: relative;
  min-height: 70svh;
  background: linear-gradient(180deg, var(--nd-ground) 0%, var(--nd-wash2-mid) 50%, var(--nd-wash2-lo) 100%) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nd-wash-exit.nd-panel, .nd-panel > .nd-wash-exit { min-height: 0; border-radius: var(--nd-r-xl); }

/* The theme's off-canvas sidebar sits off-screen to the right; clip it at the root so a phone never gets a wider layout viewport. */
html, body { overflow-x: clip; }

/* Recipe 3 · tint step (card / surface): two stops, a surface — not atmosphere. */
.nd-tint {
  background: linear-gradient(180deg, var(--nd-ground-2) 0%, var(--nd-ground-3) 100%) !important;
}
.nd-tint--flat { background: var(--nd-ground-2) !important; }

/* Recipe 4 · project plate: the client's own colour, 8% into --nd-plate (oklch),
   r 24 outside / r 16 on the crop, 6% inset or one bled edge — never both. */
.nd-plate {
  --client: var(--nd-plate);
  position: relative;
  box-sizing: border-box;
  background: var(--nd-plate) !important;
  border: 1px solid var(--nd-line-2);
  border-radius: var(--nd-r-l);
  padding: 6%;
  overflow: hidden;
}
.nd-plate > img, .nd-plate > picture > img, .nd-plate > .nd-plate__crop {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border-radius: var(--nd-r-m);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  background: var(--nd-ground);
}
/* the client's colour only when a row sets it (a self-mix yields a hueless oklch in Chrome) */
.nd-plate[style*="--client"] { background: color-mix(in oklch, var(--client) 8%, var(--nd-plate)) !important; }
.nd-plate--1610 { aspect-ratio: 16 / 10; }
.nd-plate--43   { aspect-ratio: 4 / 3; }
.nd-plate--strip { aspect-ratio: 2.5 / 1; }
:is(.nd-plate--1610, .nd-plate--43, .nd-plate--strip) > img,
:is(.nd-plate--1610, .nd-plate--43, .nd-plate--strip) > picture > img,
:is(.nd-plate--1610, .nd-plate--43, .nd-plate--strip) > .nd-plate__crop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.nd-plate--bleed-right { padding-right: 0; }
.nd-plate--bleed-right > img, .nd-plate--bleed-right > picture > img, .nd-plate--bleed-right > .nd-plate__crop {
  width: calc(100% + 6%);
  border-radius: var(--nd-r-m) 0 0 var(--nd-r-m);
}
.nd-plate--bleed-bottom { padding-bottom: 0; }
.nd-plate--bleed-bottom > img, .nd-plate--bleed-bottom > picture > img, .nd-plate--bleed-bottom > .nd-plate__crop {
  border-radius: var(--nd-r-m) var(--nd-r-m) 0 0;
}
.nd-plate--bleed-right.nd-plate--bleed-bottom > img,
.nd-plate--bleed-right.nd-plate--bleed-bottom > picture > img,
.nd-plate--bleed-right.nd-plate--bleed-bottom > .nd-plate__crop {
  border-radius: var(--nd-r-m) 0 0 0;
}
.nd-plate--sm { border-radius: var(--nd-r-m); }
.nd-plate--sm > img, .nd-plate--sm > picture > img, .nd-plate--sm > .nd-plate__crop { border-radius: var(--nd-r-s); }
/* a colour field inside a card dissolves with a mask, never a blur */
.nd-plate__field {
  position: absolute; inset: 0; pointer-events: none;
  background: color-mix(in oklch, var(--client) 22%, var(--nd-plate));
  -webkit-mask-image: linear-gradient(200deg, #000 40%, transparent 100%);
  mask-image: linear-gradient(200deg, #000 40%, transparent 100%);
}

/* Recipe 5 · accent highlight: a 2px rule in --nd-accent — the one signal
   per screen. Inline on text, or as a block rule element. */
.nd-rule-accent {
  text-decoration-line: underline;
  text-decoration-color: var(--nd-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: .16em;
  text-decoration-skip-ink: none;
}
:is(hr, div, span, i).nd-rule-accent--bar,
.nd-rule-accent--bar {
  display: block;
  width: 48px;
  height: 2px;
  border: 0;
  margin: 0;
  background: var(--nd-accent);
  text-decoration: none;
}
.nd-rule-accent--edge { border-bottom: 2px solid var(--nd-accent); text-decoration: none; }

/* Optional · dark panel (case-study hero, one proof band): field ground with
   two low-chroma aurora radials (<= .35 alpha), r 32. Tokens are re-scoped so
   every component inside inverts on its own. */
.nd-dark-panel {
  --nd-ink: var(--nd-field-ink);
  --nd-ink-2: var(--nd-field-ink-2);
  --nd-ink-3: #9AA3B5;
  --nd-ink-4: #6B7385;
  --nd-line: var(--nd-field-line);
  --nd-line-2: rgba(255, 255, 255, .08);
  --nd-ground: var(--nd-field);
  --nd-ground-2: var(--nd-field-2);
  --nd-ground-3: #182033;
  --nd-accent-soft: rgba(88, 170, 255, .18);
  position: relative;
  color: var(--nd-field-ink);
  border-radius: var(--nd-r-xl);
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 20% 0%, var(--nd-aurora-a) 0%, transparent 60%),
    radial-gradient(70% 55% at 85% 10%, var(--nd-aurora-b) 0%, transparent 60%),
    linear-gradient(180deg, var(--nd-field) 0%, var(--nd-field) 70%, var(--nd-field-2) 100%) !important;
}
.nd-dark-panel :is(h1, h2, h3, h4, h5, h6, .nd-display, .nd-h2, .nd-h3, .nd-voice) { color: var(--nd-field-ink); }
.nd-dark-panel :is(p, li, .nd-lead, .nd-body) { color: var(--nd-field-ink-2); }
.nd-dark-panel .nd-btn { background: var(--nd-field-ink); color: var(--nd-field); border-color: var(--nd-field-ink); }
.nd-dark-panel .nd-btn:hover { background: #FFFFFF; color: var(--nd-field); }
.nd-dark-panel .nd-btn--outline { background: transparent; color: var(--nd-field-ink); border-color: var(--nd-field-ink); }
.nd-dark-panel .nd-btn--outline:hover { background: rgba(255, 255, 255, .10); }
.nd-dark-panel .nd-btn--text, .nd-dark-panel .nd-btn--text:hover, .nd-dark-panel .nd-btn--text:focus-visible { background: transparent; border-color: transparent; color: var(--nd-field-ink); }
.nd-dark-panel ::selection { background: rgba(88, 170, 255, .35); color: #FFFFFF; }
.nd-panel { border-radius: var(--nd-r-xl); overflow: hidden; }

/* ---------------------------------------------------------------------------
   6. COMPONENTS
   --------------------------------------------------------------------------- */

/* Buttons: 48 / r8 / 15 500 / 0 24. Ink fill or outline. The accent is never
   a button fill; one primary per viewport. */
.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  height: 48px;
  min-height: 0;
  padding: 0 24px;
  border-radius: var(--nd-r-s);
  font-family: var(--nd-sans) !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: var(--nd-ground);
  background: var(--nd-ink);
  border: 1px solid var(--nd-ink);
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color var(--nd-dur) var(--nd-ease), border-color var(--nd-dur) var(--nd-ease), color var(--nd-dur) var(--nd-ease);
}
.nd-btn:hover, .nd-btn:focus-visible { color: var(--nd-ground); background: var(--nd-ink-2); border-color: var(--nd-ink-2); text-decoration: none; }
.nd-btn:active { background: var(--nd-ink); border-color: var(--nd-ink); }
.nd-btn--outline { color: var(--nd-ink); background: transparent; border-color: var(--nd-ink); }
.nd-btn--outline:hover, .nd-btn--outline:focus-visible { color: var(--nd-ink); background: var(--nd-ground-3); border-color: var(--nd-ink); }
.nd-btn--ghost { color: var(--nd-ink); background: transparent; border-color: var(--nd-line); }
.nd-btn--ghost:hover, .nd-btn--ghost:focus-visible { color: var(--nd-ink); background: var(--nd-ground-3); border-color: var(--nd-line); }
.nd-btn--text {
  height: auto;
  padding: 0;
  gap: 6px;
  color: var(--nd-ink);
  background: transparent;
  border: 0;
  border-radius: 2px;
  text-underline-offset: .24em;
  text-decoration-thickness: 1px;
}
.nd-btn--text:hover, .nd-btn--text:focus-visible { color: var(--nd-ink); background: transparent; text-decoration: underline; }
.nd-btn--text svg, .nd-btn__arrow { width: 16px; height: 16px; flex: none; transition: transform var(--nd-dur) var(--nd-ease); }
.nd-btn--text:hover svg, .nd-btn--text:hover .nd-btn__arrow { transform: translateX(2px); }
.nd-btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.nd-btn--xs { height: 36px; padding: 0 14px; font-size: 14px; }
.nd-btn--block { width: 100%; }
.nd-btn[disabled], .nd-btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }
.nd-btn > svg { width: 18px; height: 18px; flex: none; }
.nd-btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }

/* Cards: ground-2 tint + hairline, r16, padding 24 -> 32; hover is a tint step. */
.nd-card {
  position: relative;
  box-sizing: border-box;
  display: block;
  background: var(--nd-ground-2);
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-r-m);
  padding: var(--nd-card-pad);
  color: var(--nd-ink);
  text-decoration: none;
  box-shadow: none;
  transition: background-color var(--nd-dur) var(--nd-ease), border-color var(--nd-dur) var(--nd-ease);
}
.nd-card--flat { background: var(--nd-ground); }
.nd-card--sm { padding: var(--nd-card-pad-sm); }
.nd-card--panel { border-radius: var(--nd-r-xl); padding: clamp(32px, 5vw, 56px); }
a.nd-card:hover, .nd-card--link:hover, .nd-card:has(> a:only-child):hover {
  background: var(--nd-ground-3);
  color: var(--nd-ink);
  text-decoration: none;
}
.nd-card > :first-child { margin-top: 0; }
.nd-card > :last-child { margin-bottom: 0; }
.nd-card .nd-card__title { font-size: 18px; line-height: 1.25; letter-spacing: -.012em; font-weight: 600; color: var(--nd-ink); margin: 16px 0 0; }
.nd-card .nd-card__text { font-size: var(--nd-fz-body); line-height: 1.55; color: var(--nd-ink-2); margin: 8px 0 0; }
.nd-card svg.nd-card__icon, .nd-card .nd-card__icon svg { width: 24px; height: 24px; color: var(--nd-ink-2); display: block; }

/* Ledger rows: mono numeral / label / note, hairlines between.
   Positional so the children can be any element; the BEM names also work. */
.nd-ledger-list, .nd-ledger-rows { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--nd-line); }
.nd-ledger-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--nd-line-2);
  list-style: none;
  color: var(--nd-ink);
  text-decoration: none;
  transition: background-color var(--nd-dur) var(--nd-ease);
}
.nd-ledger-row:first-child { border-top: 1px solid var(--nd-line); }
.nd-ledger-list > .nd-ledger-row:first-child, .nd-ledger-rows > .nd-ledger-row:first-child { border-top: 0; }
.nd-ledger-row--2 { grid-template-columns: minmax(0, 1fr) auto; }
.nd-ledger-row--kv { grid-template-columns: 120px minmax(0, 1fr); align-items: baseline; padding: 10px 0; }
.nd-ledger-row--icon { grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; }
.nd-ledger-row--icon > :first-child svg, .nd-ledger-row--icon > svg:first-child { width: 20px; height: 20px; display: block; color: var(--nd-ink-2); }
.nd-ledger-row > :nth-child(1), .nd-ledger-row__num {
  font-family: var(--nd-mono) !important;
  font-size: var(--nd-fz-ledger);
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--nd-ink-3);
  margin: 0;
}
.nd-ledger-row > :nth-child(2), .nd-ledger-row__label {
  font-family: var(--nd-sans) !important;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 500;
  color: var(--nd-ink);
  margin: 0;
}
.nd-ledger-row > :nth-child(3), .nd-ledger-row__note {
  font-family: var(--nd-mono) !important;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--nd-ink-3);
  text-align: right;
  max-width: 26ch;
  margin: 0;
}
.nd-ledger-row--kv > :nth-child(2) { font-family: var(--nd-mono) !important; font-size: 13px; line-height: 1.5; font-weight: 400; letter-spacing: 0; color: var(--nd-ink-2); }
.nd-ledger-row--kv > :nth-child(2) b, .nd-ledger-row--kv > :nth-child(2) strong { color: var(--nd-ink); font-weight: 500; }
.nd-ledger-row__sub { display: block; font-family: var(--nd-mono) !important; font-size: var(--nd-fz-ledger); line-height: 1.55; color: var(--nd-ink-3); margin-top: 5px; letter-spacing: 0; text-transform: none; font-weight: 400; }
a.nd-ledger-row:hover, .nd-ledger-row--link:hover { background: var(--nd-ground-2); }
@media (max-width: 767.98px) {
  .nd-ledger-row { grid-template-columns: 44px minmax(0, 1fr); }
  .nd-ledger-row > :nth-child(3), .nd-ledger-row__note { grid-column: 2; text-align: left; max-width: none; }
  .nd-ledger-row--2 { grid-template-columns: minmax(0, 1fr); }
  .nd-ledger-row--2 > :nth-child(2) { grid-column: 1; }
  .nd-ledger-row--kv { grid-template-columns: 96px minmax(0, 1fr); }
  .nd-ledger-row--kv > :nth-child(2) { grid-column: 2; }
}

/* Chips: 28px, r8, 12.5/500; never an accent fill. */
.nd-chip {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 28px; padding: 0 10px;
  border-radius: var(--nd-r-s);
  font-family: var(--nd-sans) !important;
  font-size: 12.5px; font-weight: 500; line-height: 1.2; letter-spacing: 0;
  color: var(--nd-ink-2); background: transparent; border: 1px solid var(--nd-line);
  text-decoration: none; white-space: nowrap;
}
.nd-chip--fill { background: var(--nd-ground-3); border-color: transparent; color: var(--nd-ink); }
.nd-chip--mono { font-family: var(--nd-mono) !important; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--nd-ink-3); }
.nd-chip--live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--nd-live, #3DDC84); }

/* Logo wall: a static ruled strip (no marquee). */
.nd-logo-wall { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-top: 1px solid var(--nd-line); border-bottom: 1px solid var(--nd-line); }
.nd-logo-wall > * { display: flex; align-items: center; padding: 24px 20px; border-left: 1px solid var(--nd-line); min-height: 80px; }
.nd-logo-wall > :first-child { border-left: 0; padding-left: 0; }
.nd-logo-wall img, .nd-logo-wall svg { display: block; width: auto; max-width: 150px; height: 32px; object-fit: contain; object-position: left center; filter: grayscale(1); opacity: .8; transition: filter var(--nd-dur) var(--nd-ease), opacity var(--nd-dur) var(--nd-ease); }
.nd-logo-wall > :hover img, .nd-logo-wall > :hover svg { filter: none; opacity: 1; }
@media (max-width: 991.98px) {
  .nd-logo-wall { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .nd-logo-wall > * { border-top: 1px solid var(--nd-line); padding: 20px 16px; min-height: 68px; }
  .nd-logo-wall > :nth-child(-n+4) { border-top: 0; }
  .nd-logo-wall > :nth-child(4n+1) { border-left: 0; padding-left: 0; }
  .nd-logo-wall > :not(:nth-child(4n+1)) { border-left: 1px solid var(--nd-line); }
  .nd-logo-wall > :first-child { padding-left: 0; }
}
@media (max-width: 639.98px) {
  .nd-logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nd-logo-wall > :nth-child(-n+4) { border-top: 1px solid var(--nd-line); }
  .nd-logo-wall > :nth-child(-n+2) { border-top: 0; }
  .nd-logo-wall > * { border-left: 1px solid var(--nd-line); padding-left: 16px; }
  .nd-logo-wall > :nth-child(odd) { border-left: 0; padding-left: 0; }
  .nd-logo-wall img, .nd-logo-wall svg { height: 28px; }
}

/* Quote panel (proof): ground-2, r32, the real owner named beneath. */
.nd-quote { background: var(--nd-ground-2); border-radius: var(--nd-r-xl); padding: clamp(32px, 5vw, 56px); }
.nd-quote__text { font-family: var(--nd-sans) !important; font-weight: 400; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.3; letter-spacing: -.015em; color: var(--nd-ink); max-width: 22ch; text-wrap: balance; margin: 0; }

/* Process steps: a ruled row, numeral in the ledger voice. */
.nd-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 24px; border-top: 1px solid var(--nd-ink); margin: 0; padding: 0; list-style: none; }
.nd-steps > * { padding: 24px 0 8px; border-top: 0; margin: 0; }
.nd-steps > * + * { border-left: 1px solid var(--nd-line-2); padding-left: 24px; }
@media (max-width: 991.98px) { .nd-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } .nd-steps > :nth-child(2n+1) { border-left: 0; padding-left: 0; } .nd-steps > :nth-child(n+3) { border-top: 1px solid var(--nd-line-2); } }
@media (max-width: 639.98px) { .nd-steps { grid-template-columns: 1fr; } .nd-steps > * { border-left: 0; padding-left: 0; } .nd-steps > * + * { border-top: 1px solid var(--nd-line-2); } }

/* Scroll reveal: opacity 0 -> 1, translateY 24 -> 0, <= 700ms, from a visible
   state. JS adds .is-out on observe and removes it in view; without JS (bots,
   reduced motion, html.nd-bot) nothing is ever hidden. */
.nd-reveal { transition: opacity var(--nd-dur-reveal) var(--nd-ease), transform var(--nd-dur-reveal) var(--nd-ease); }
.nd-reveal.is-out { opacity: 0; transform: translateY(24px); }
.nd-reveal.is-in { opacity: 1; transform: none; }
html.nd-bot .nd-reveal { opacity: 1 !important; transform: none !important; }

/* ---------------------------------------------------------------------------
   7. INNER-PAGE COMPATIBILITY — the existing sections keep their markup; the
   roles below re-point every measured pattern at the Plane scale and tokens.
   (Header and footer are rebuilt by Agent B and are NOT styled here.)
   --------------------------------------------------------------------------- */

/* 7a. BODY  (16 -> 17 · 1.6 · 400 · tracking 0). One :where() so this stays (0,0,1). */
p:not(:where(
  [class*="eyebrow"], .nd-lead, .nd-small, .nd-ledger, .nd-voice, .nd-body, .nd-h3, .nd-h4,
  .nd-display, .nd-h2, .nd-qb-now, .nd-qb-was,
  .nd-cl-headline, .price, .h1, .h2, .h3, .h4, .h5, .h6,
  .blog-card__meta, .nd-logowall-head, .nd-plane *
)),
li:not(:where(
  nav li, .at-main-menu li, .nd-more-dropdown li, .pagination li,
  .swiper-pagination li, .at-footer-area li, .nd-terms nav li,
  .at-categories-item, .filter-btn, .carouselTicker li,
  [class*="tag"] li, [class*="chip"] li, [class*="mchips"] li,
  .nd-ledger-row, .nd-ledger-row *, .nd-steps > li, .nd-plane *
)),
dd:not(:where(.nd-plane *)), blockquote:not(:where(.nd-plane *)),
.fz-font-lg:not(h6), .fz-font-md:not(:where(h1, h2, h3, h4, h5, h6)),
.nd-work-body p, .nd-work-body li {
  font-size: var(--nd-fz-body) !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* 7b. SMALL / META  (14 · 1.5 · 500) */
small, figcaption,
.blog-card__meta, .blog-card__meta-text,
.nd-team-body p, .nd-hero-trust, .nd-call-founder, .nd-cs-note,
.nd-qb-fine, .nd-qb-timeline, .nd-sr-sub, .nd-work-crumb,
.nd-sf-sla, .nd-pf-line, .nd-pf-count,
.testimonial-content-author-position {
  font-size: var(--nd-fz-small) !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

/* 7c. LEAD / STANDFIRST  (18 -> 20 · 1.5 · 400) */
.nd-hero-subline, .nd-pf-sub, .nd-cs-sub, .nd-sf-sub, .nd-work-lede,
.nd-cl-body, .nd-qb-sub, .nd-team-note, .nd-sw-outcome,
h6.fz-font-lg, .fz-font-xl, .fz-font-2xl, p.h6.fz-font-2xl {
  font-size: var(--nd-fz-lead) !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* 7d. CARD SMALL TITLE h4/h5  (17 -> 19 · 1.3 · -.01em · 600) */
h4:not(:where(.h1, .h2, .h3, .section-title, .at-section-title, .alt-section-title, .reveal-text, .fz-ds-1, [class*="eyebrow"], .at-offcanvas-title, .at-categories-title, .fz-18, .fz-20, .fz-24, .fz-60, .nd-display, .nd-h2, .nd-h3, .nd-ledger, .nd-plane *)),
h5:not(:where(.h1, .h2, .h3, .section-title, .at-section-title, .alt-section-title, .reveal-text, .fz-ds-1, [class*="eyebrow"], .at-offcanvas-title, .at-categories-title, .fz-18, .fz-20, .fz-24, .fz-60, .nd-display, .nd-h2, .nd-h3, .nd-ledger, .nd-plane *)),
h6:not(:where(.fz-font-lg, .fz-font-xl, .fz-font-2xl, [class*="eyebrow"], .blog-card__title, .price, .cart-stats__item-number, .at-offcanvas-title, .at-categories-title, .fz-18, .fz-20, .fz-24, .fz-60, .nd-display, .nd-h2, .nd-h3, .nd-ledger, .nd-plane *)),
.nd-work-body h4, .nd-team-body h3, .nd-sf-aside h3,
h3.fz-font-md, h5.fz-font-md, h6.fz-font-md {
  font-size: var(--nd-fz-h4) !important;
  line-height: 1.3 !important;
  letter-spacing: -.01em !important;
  font-weight: 600 !important;
}

/* 7e. SUB-SECTION / CARD TITLE h3  (22 -> 28 · 1.2 · -.02em · 600) */
h3:not(:where(
  .section-title, .alt-section-title, .at-section-title, .reveal-text,
  .cart-stats__item-number, .fz-ds-1, .at-offcanvas-title, .at-categories-title,
  .h1, .h2, .h4, .h5, .h6, [class*="eyebrow"], .nd-display, .nd-h2, .nd-h4, .nd-ledger, .nd-plane *
)),
.blog-card__title, .entity-faq-group-title,
.nd-cs-panel-head h3, .nd-sw-name,
.sec-4-services-details h4, .at-svc-card h5,
.sec-1-contact h6:not(:where(.fz-font-lg)),
body .nd-sp-step h3 {
  font-size: var(--nd-fz-h3) !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em !important;
  font-weight: 600 !important;
}

/* 7f. SECTION TITLE h2  (30 -> 52 · 1.06 · -.03em · 700 display) */
h2:not(:where(.h4, .h5, .h6, .nd-h2-compact, [class*="eyebrow"], .nd-display, .nd-h3, .nd-h4, .nd-plane *)),
:is(.at-section-title, .alt-section-title, .section-title, .nd-team-title, .reveal-text):not(:where(
  h1, .fz-200, .fz-ds-1, .cart-stats__item-number, .at-footer-area .reveal-text, .nd-plane *
)),
h3.section-title, h3.reveal-text, h3.alt-section-title,
.nd-tpl h2, .nd-tpl h3.section-title,
body .nd-faq-dark .at-section-title {
  font-family: var(--nd-display) !important;
  font-size: var(--nd-fz-h2) !important;
  line-height: 1.06 !important;
  letter-spacing: -.03em !important;
  font-weight: 700 !important;
  text-wrap: balance;
}
/* Compact h2 — the only second h2 size (CTA cards, in-article headings, tiles). */
.nd-h2-compact,
.nd-funnel h2, .nd-call-title, .nd-wdo-row h3,
.nd-sw-tile.wide .nd-sw-name,
h2.h4, h2.h5, p.h4,
.blog-faq-area h2,
body .nd-work-body h2, body .nd-work-cta h2 {
  font-family: var(--nd-display) !important;
  font-size: var(--nd-fz-h2c) !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
  font-weight: 700 !important;
}

/* 7g. DISPLAY h1  (40 -> 84 · 1.0 · -.04em · 700 display) */
h1:not(:where(.nd-h2, .nd-h3, .nd-plane *)),
h1.fz-ds-1, h1.fz-200, h1.fz-120, h1.fz-150,
h1.section-title, h1.at-section-title, h1.alt-section-title, h1.lh-1,
body .sec-1-about h1.section-title, body main h1.nd-team-title {
  font-family: var(--nd-display) !important;
  font-size: var(--nd-fz-display) !important;
  line-height: 1.0 !important;
  letter-spacing: -.04em !important;
  font-weight: 700 !important;
  text-wrap: balance;
}

/* 7h. EYEBROW -> the ledger voice (12.5 mono · +.06em · 500 · uppercase · ink-3) */
body [class*="-eyebrow"],
body .eyebrow,
body .nd-qb-inc h6,
body .nd-logowall-head,
body .nd-qb-step, body .nd-sp .k,
body .nd-work dt, body .nd-work-body h3,
body .nd-work-tldr h3, body .nd-work-rail h3,
body .at-btn.common-black.bg-transparent.p-0 {
  font-family: var(--nd-mono) !important;
  font-size: var(--nd-fz-ledger) !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  font-variant-numeric: tabular-nums;
  color: var(--nd-ink-3) !important;
}
body .nd-hero-eyebrow, body .nd-wdo-eyebrow, body .nd-cl-eyebrow,
body .nd-call-eyebrow, body .nd-pf-eyebrow, body .nd-funnel-eyebrow,
body .nd-sw-eyebrow, body .nd-qb-inc h6 {
  color: var(--nd-field-ink-2) !important;
}

/* 7i. COLOUR ROLES ON TEXT */
body .nd-sol-card-text, body .nd-team-body p, body .nd-svc-aside p,
body .nd-cs-note, body .blog-card__meta,
body .blog-card__meta-text, body .nd-cs-sub, body .nd-cs-panel-head p,
body .nd-team-note, body .nd-work-crumb, body .nd-work-crumb a,
body .nd-work dt, body .nd-work-body figcaption {
  color: var(--nd-ink-3) !important;
}
body .nd-work-body p, body .nd-work-body li, body .nd-work-lede {
  color: var(--nd-ink-2) !important;
}
body .nd-cs-input::placeholder, body .input-subscribe input::placeholder {
  color: var(--nd-ink-3) !important;
  opacity: 1 !important;
}
body .nd-pf-sub, body .nd-call-points li, body .nd-hero-subline,
body .nd-cl-body, body .nd-wdo-row p, body .nd-funnel p {
  color: var(--nd-field-ink-2) !important;
}
body .nd-pf-count, body .nd-hero-trust, body .nd-call-founder {
  color: var(--nd-ink-4) !important;
}

/* 7j. SPACING — one section rhythm, one header gap, one grid gap, one card pad */
body .nd-svc, body .nd-logowall, body .nd-sw, body .nd-wdo, body .nd-ben,
body .nd-ws, body .nd-team, body .nd-cs, body .nd-pf-grid-wrap, body .nd-sp,
body .nd-sf, body .nd-sr, body .nd-clutch,
body .sec-2-services, body .sec-2-about, body .sec-4-services-details,
body .sec-3-about, body .sec-4-about, body .sec-2-archive-1, body .sec-7-about,
body .alt-faq-area, body .entity-faq-area, body .at-sec13-thumb,
body .sec-3-services-details, body .sec-5-services-details,
body .sec-2-blog-details, body .blog-faq-area, body .blog-author-area,
body section:has(> .container .nd-call-cta),
body section:has(> .container > .nd-funnel) {
  padding-block: var(--nd-sec) !important;
}
body .nd-pf-hero, body .nd-work, body .sec-1-about {
  padding-block: var(--nd-sec-hero-t) var(--nd-sec-hero-b) !important;
}

/* Content grid for INNER pages: the theme's .container becomes the 1240
   column at the Plane gutter. Scoped to <main>; header and footer own their
   inner containers. The :not() skips nested containers (services-detail
   capability cards) and lives in :where() so the selector stays (0,1,2). */
body main .container:not(:where(.container .container, .nd-plane .container)) {
  width: min(100% - 2 * var(--nd-gutter), var(--nd-col)) !important;
  max-width: var(--nd-col) !important;
  padding-inline: 0 !important;
  margin-inline: auto !important;
}

body .nd-svc-head, body .nd-ws-head, body .nd-team-head, body .nd-sw-head,
body .nd-sr-head, body .nd-cs-head,
body .nd-ben-title, body .nd-cl-h2, body .nd-wdo-title, body .nd-sp-facts {
  margin-bottom: var(--nd-gap-head) !important;
}
body .nd-wdo-row:first-of-type { padding-top: 0 !important; }
body [class*="-eyebrow"],
body .at-btn.common-black.bg-transparent.p-0 {
  display: inline-block;
  margin: 0 0 16px !important;
}
body .nd-sf-title, body .nd-cs-title, body .nd-sp-title, body .nd-pf-title,
body .nd-call-title, body .nd-qb-h1, body .nd-work h1, body .nd-svc-title,
body .nd-team-title, body .nd-ws-title {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}
body .nd-hero-subline { margin-top: 0 !important; margin-bottom: 24px !important; }
body .nd-ben-grid, body .nd-team-grid, body .nd-sw-grid, body .nd-sr-grid,
body .nd-no-stack .scroll-section .list {
  gap: var(--nd-gap) !important;
}
body .row.g-4 { --bs-gutter-x: var(--nd-gap); --bs-gutter-y: var(--nd-gap); }
body .nd-pf-grid {
  column-gap: var(--nd-gap) !important;
  row-gap: var(--nd-gap-row) !important;
}
body .nd-hero-grid, body .nd-cl-grid { gap: var(--nd-gap-lay) !important; }
@media (max-width: 991px) {
  body .nd-pf-grid { row-gap: 32px !important; }
  body .nd-hero-grid, body .nd-cl-grid { gap: 40px !important; }
}
body .at-svc-card, body .nd-sp-step, body .nd-ben-card, body .nd-call-copy,
body .nd-no-stack .scroll-section .item .p-md-5 {
  padding: var(--nd-card-pad) !important;
}
body .nd-sol-card-body, body .nd-sf-aside, body .nd-sp-fact {
  padding: var(--nd-card-pad-sm) !important;
}

/* 7k. BUTTONS on inner pages -> the Plane button (48 / r8 / 15 500 / ink fill) */
body .nd-hero-btn, body .nd-ben-cta, body .nd-sf-cta, body .nd-funnel-btn.primary,
body .nd-cs-btn, body .nd-qb-cta, body .nd-work-btn,
body button.at-btn.at-search-form-btn, body .sec-4-about-form__btn.at-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  min-height: 48px !important;
  height: auto !important;
  padding: 0 24px !important;
  border-radius: var(--nd-r-s) !important;
  font-family: var(--nd-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;
  text-decoration: none !important;
  background: var(--nd-ink) !important;
  color: var(--nd-ground) !important;
  border: 1px solid var(--nd-ink) !important;
  box-shadow: none !important;
  transition: background-color var(--nd-dur) var(--nd-ease), border-color var(--nd-dur) var(--nd-ease);
}
body .nd-hero-btn:hover, body .nd-ben-cta:hover, body .nd-sf-cta:hover,
body .nd-funnel-btn.primary:hover, body .nd-cs-btn:hover, body .nd-qb-cta:hover,
body .nd-work-btn:hover, body button.at-btn.at-search-form-btn:hover,
body .sec-4-about-form__btn.at-btn:hover {
  background: var(--nd-ink-2) !important;
  border-color: var(--nd-ink-2) !important;
  color: var(--nd-ground) !important;
  transform: none;
  box-shadow: none !important;
}
/* Buttons that sit on a dark band flip to field-ink fill. */
body .nd-funnel-btn.primary, body .nd-qb-cta {
  background: var(--nd-field-ink) !important;
  border-color: var(--nd-field-ink) !important;
  color: var(--nd-field) !important;
}
body .nd-funnel-btn.primary:hover, body .nd-qb-cta:hover {
  background: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: var(--nd-field) !important;
}
/* Secondary / outline */
body .nd-wdo-see, body .nd-funnel-btn.ghost, body .nd-qb-cta2,
body .nd-hero-btn-ghost, body .nd-ws-more a, body .at-service-btn a.at-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  min-height: 48px !important;
  height: auto !important;
  padding: 0 24px !important;
  border-radius: var(--nd-r-s) !important;
  font-family: var(--nd-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 1px solid currentColor !important;
  box-shadow: none !important;
  transition: background-color var(--nd-dur) var(--nd-ease), border-color var(--nd-dur) var(--nd-ease);
}
body .nd-wdo-see, body .nd-funnel-btn.ghost, body .nd-qb-cta2,
body .nd-hero-btn-ghost { color: var(--nd-field-ink) !important; }
body .nd-ws-more a, body .at-service-btn a.at-btn { color: var(--nd-ink) !important; }
body .nd-ws-more a:hover, body .at-service-btn a.at-btn:hover {
  background: var(--nd-ground-3) !important;
  transform: none;
}
body .nd-wdo-see:hover, body .nd-funnel-btn.ghost:hover, body .nd-qb-cta2:hover,
body .nd-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, .10) !important;
  transform: none;
}
body .at-btn-group .at-btn-circle { display: none !important; }

/* 7l. TEXT LINK WITH ARROW  (15/500, ink) */
body .nd-hero-pricing-link, body .nd-cl-link, body .nd-sw-all, body .nd-sr-all,
body .nd-work-livelink a, body .nd-sol-card-link, body .nd-sf-more,
body .nd-team-join i {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-family: var(--nd-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: -.005em !important;
  text-transform: none !important;
  text-decoration: none !important;
  text-underline-offset: .24em;
  opacity: 1 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  color: var(--nd-ink) !important;
}
body .nd-cl-link, body .nd-team-join i, body .nd-hero-pricing-link {
  color: var(--nd-field-ink-2) !important;
}
body .nd-hero-pricing-link:hover, body .nd-cl-link:hover, body .nd-sw-all:hover,
body .nd-sr-all:hover, body .nd-sol-card-link:hover, body .nd-sf-more:hover,
body .nd-work-livelink a:hover { text-decoration: underline !important; }
body .nd-hero-pricing-link svg, body .nd-cl-link svg, body .nd-sw-all svg,
body .nd-sr-all svg, body .nd-sol-card-link svg, body .nd-sf-more svg,
body .nd-work-livelink a svg { transition: transform var(--nd-dur) var(--nd-ease); }
body .nd-hero-pricing-link:hover svg, body .nd-cl-link:hover svg,
body .nd-sw-all:hover svg, body .nd-sr-all:hover svg,
body .nd-sol-card-link:hover svg, body .nd-sf-more:hover svg,
body .nd-work-livelink a:hover svg { transform: translateX(2px); }

/* 7m. CHIPS / TAGS  (28px, r8, 12.5/500); never an accent fill */
body .nd-ben-chip, body .nd-ben-member .mchips span, body .nd-sol-growth .tags span,
body .nd-sp-time, body .nd-sw-tag, body .nd-sw-badge, body .nd-pf-tag,
body .nd-pf-state, body .nd-qb-tag, body .nd-qb-badge, body .nd-qb-preset,
body .nd-fig-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  height: auto !important;
  padding: 0 10px !important;
  border-radius: var(--nd-r-s) !important;
  font-family: var(--nd-sans) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
body .nd-ben-member .mchips span, body .nd-sol-growth .tags span,
body .nd-sp-time, body .nd-qb-tag, body .nd-qb-badge {
  background: var(--nd-ground-3) !important;
  color: var(--nd-ink) !important;
  border: 0 !important;
}
body .nd-ben-chip, body .nd-sw-tag, body .nd-pf-state {
  background: transparent !important;
  border: 1px solid var(--nd-line) !important;
  color: var(--nd-ink-2) !important;
}
body .nd-sw-badge, body .nd-pf-tag, body .nd-qb-preset, body .nd-fig-toggle {
  background: transparent !important;
  border: 1px solid var(--nd-field-line) !important;
  color: var(--nd-field-ink-2) !important;
}
/* Interactive filter chips: one 40px control, active = ink. */
body .at-btn.filter-btn, body .nd-pf-chip, body .at-categories-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  height: auto !important;
  padding: 0 16px !important;
  border-radius: var(--nd-r-s) !important;
  font-family: var(--nd-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  background: transparent !important;
  border: 1px solid var(--nd-line) !important;
  color: var(--nd-ink) !important;
  box-shadow: none !important;
  transition: background-color var(--nd-dur) var(--nd-ease), border-color var(--nd-dur) var(--nd-ease);
}
body .at-btn.filter-btn:hover, body .nd-pf-chip:hover, body .at-categories-item:hover {
  background: var(--nd-ground-3) !important;
}
body .at-btn.filter-btn.active, body .nd-pf-chip.on, body .at-categories-item.active {
  background: var(--nd-ink) !important;
  border-color: var(--nd-ink) !important;
  color: var(--nd-ground) !important;
}
@media (max-width: 991px) {
  body .nd-qb-preset, body .nd-fig-toggle { position: relative; }
  body .nd-qb-preset::after, body .nd-fig-toggle::after {
    content: "";
    position: absolute;
    inset: -8px 0;
  }
}

/* 7n. CARDS on inner pages: r16 cards, r24 plates/media, r32 panels; hairline
   + tint step at rest, tint step on hover, no shadow anywhere. */
body .nd-sol-card, body .nd-ben-card, body .nd-team-card, body .nd-team-join,
body .nd-sp-step, body .nd-qb-card,
body .at-svc-card, body .at-faq-item, body .nd-sf-item, body .nd-sf-aside,
body .nd-sp-fact, body .nd-ws-card, body .nd-work-rel a, body .nd-qb-chip,
body .blog-author-card {
  border-radius: var(--nd-r-m) !important;
}
body .nd-cs-panel, body .nd-funnel, body .nd-work-cta {
  border-radius: var(--nd-r-xl) !important;
}
body .nd-sw-media, body .nd-pf-thumb, body .blog-card__thumb, body .nd-sol-card-media,
body .nd-team-media, body .nd-ben-media {
  border-radius: var(--nd-r-s) !important;
}
body .nd-sol-card, body .nd-ben-card, body .nd-team-card, body .nd-sp-step,
body .nd-sp-fact, body .nd-sf-item, body .nd-sf-aside, body .at-svc-card,
body .at-faq-item, body .nd-ws-card, body .nd-cs-panel, body .nd-work-rel a {
  border: 1px solid var(--nd-line) !important;
  box-shadow: none !important;
  transition: background-color var(--nd-dur) var(--nd-ease), border-color var(--nd-dur) var(--nd-ease);
}
body .nd-pf-thumb, body .nd-funnel, body .nd-sw-media,
body .nd-sf-dark .nd-sf-aside {
  border: 1px solid var(--nd-field-line) !important;
}
body .nd-sol-card:hover, body .nd-ben-card:hover, body .nd-team-card:hover,
body .nd-sp-step:hover, body .at-svc-card:hover, body .nd-ws-card:hover,
body .nd-work-rel a:hover, body .nd-sf-item:hover {
  box-shadow: none !important;
  background-color: var(--nd-ground-3) !important;
  transform: none !important;
}

/* 7o. ACCORDIONS — one component, one ink disc that rotates. */
body .at-faq-item, body .nd-sf-item, body .nd-sf-dark .nd-sf-item {
  background: var(--nd-ground) !important;
  border: 1px solid var(--nd-line) !important;
  border-radius: var(--nd-r-m) !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
  box-shadow: none !important;
}
body .at-faq-button, body .nd-sf-q {
  display: flex !important;
  align-items: center !important;
  min-height: 64px !important;
  padding: 20px 64px 20px 24px !important;
  font-family: var(--nd-sans) !important;
  font-size: var(--nd-fz-h4) !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
  color: var(--nd-ink) !important;
  background: transparent !important;
}
body .at-faq-button span { margin-right: 0 !important; font-weight: 600 !important; }
body .at-faq-body, body .nd-sf-a {
  padding: 0 24px 20px !important;
  font-size: var(--nd-fz-body) !important;
  line-height: 1.6 !important;
  color: var(--nd-ink-2) !important;
}
body .at-faq-body p {
  font-size: var(--nd-fz-body) !important;
  line-height: 1.6 !important;
  color: var(--nd-ink-2) !important;
}
body .at-faq-button::before { content: none !important; }
body .at-faq-button::after {
  content: "\25BE" !important;
  font-family: inherit !important;
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
  text-align: center !important;
  border-radius: var(--nd-r-s) !important;
  background: var(--nd-ground-3) !important;
  color: var(--nd-ink) !important;
  font-size: 12px !important;
  transform: translateY(-50%) rotate(180deg);
  transition: transform var(--nd-dur) var(--nd-ease);
}
body .at-faq-button.collapsed::after { transform: translateY(-50%) rotate(0deg); }
body .at-faq-button:has(svg)::after { content: none !important; }
body .entity-faq-cta h4,
body .at-faq-cta h4 { font-family: var(--nd-display) !important; font-size: var(--nd-fz-h2c) !important; line-height: 1.12 !important; font-weight: 700 !important; letter-spacing: -.025em !important; }
body .at-faq-number { display: none !important; }
body .nd-sf-item.open .nd-sf-q span {
  background: var(--nd-ink) !important;
  color: var(--nd-ground) !important;
}

/* 7p. FORM FIELDS — one field (r8, ground-2), accent focus ring. */
body .nd-cs-input, body .input-subscribe input, body .sec-1-faqs input {
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px !important;
  padding: 0 16px !important;
  border-radius: var(--nd-r-s) !important;
  background: var(--nd-ground-2) !important;
  border: 1px solid var(--nd-line) !important;
  font-family: var(--nd-sans) !important;
  font-size: 16px !important;
  color: var(--nd-ink) !important;
}
body textarea.nd-cs-input {
  height: 132px !important;
  line-height: 1.6 !important;
  padding: 14px 16px !important;
}
body .nd-cs-input:focus, body .input-subscribe input:focus,
body .sec-1-faqs input:focus {
  border-color: var(--nd-ink) !important;
  box-shadow: none !important;
  outline: 2px solid var(--nd-accent) !important;
  outline-offset: 2px !important;
}
body .input-subscribe {
  padding: 0 !important;
  background: transparent !important;
  border-radius: var(--nd-r-s) !important;
}
body .input-subscribe button, body .sec-1-faqs .input-subscribe a.at-btn {
  width: auto !important;
  min-width: 0 !important;
  height: 40px !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  border-radius: var(--nd-r-s) !important;
  background: var(--nd-ink) !important;
  color: var(--nd-ground) !important;
  font-family: var(--nd-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  right: 4px !important;
}

/* 7q. UI STATES ARE INK OR ACCENT-SOFT, NEVER A FILL OF THE ACCENT */
body .nd-qb-chip.on {
  border-color: var(--nd-ink) !important;
  background: var(--nd-accent-soft) !important;
  box-shadow: 0 0 0 1px var(--nd-ink) !important;
}
body .nd-qb-preset.on {
  border-color: var(--nd-field-ink) !important;
  background: rgba(255, 255, 255, .12) !important;
  color: var(--nd-field-ink) !important;
}
body .nd-qb-inc li::before { box-shadow: none !important; }
body .nd-hero-btn { box-shadow: none !important; }

/* 7q2. EMBER LEFTOVERS ON INNER PAGES — the shared CTAs, the dark FAQ band, the
   sticky bar and the Clutch stars still hard-code the old orange in their own
   <style>. Each is re-pointed here: dark panels take the aurora recipe, dots
   and stars take ink, the compact button takes the Plane geometry. */
body .nd-call-cta, body .nd-funnel, body .nd-faq-dark, body .nd-sf.nd-sf-dark {
  background: linear-gradient(180deg, var(--nd-field) 0%, var(--nd-field) 70%, var(--nd-field-2) 100%) !important;
}
body .nd-call-cta::before, body .nd-funnel::before, body .nd-faq-dark::before,
body .nd-sf.nd-sf-dark::before {
  background:
    radial-gradient(90% 60% at 20% 0%, var(--nd-aurora-a) 0%, transparent 60%),
    radial-gradient(70% 55% at 85% 10%, var(--nd-aurora-b) 0%, transparent 60%) !important;
}
body .nd-call-points li::before {
  background: var(--nd-field-ink) !important;
  box-shadow: none !important;
}
body .nd-faq-dark .at-btn-group .at-btn {
  background: var(--nd-field-ink) !important;
  color: var(--nd-field) !important;
  border-color: var(--nd-field-ink) !important;
  border-radius: var(--nd-r-s) !important;
}
body .nd-clutch svg[fill="#F0460E" i] { fill: var(--nd-ink); }
/* Inline SVG art that still carries the old orange as a presentation attribute
   (BlogCover.tsx cover art, RouteError, case-study visuals): a CSS fill beats
   the attribute, so every one of them becomes the accent. */
body svg [fill="#F0460E" i], body svg[fill="#F0460E" i] { fill: var(--nd-accent) !important; }
body svg [stroke="#F0460E" i], body svg[stroke="#F0460E" i] { stroke: var(--nd-accent) !important; }
body .nd-sol-card-num { color: var(--nd-ink-3) !important; }
body .nd-sol-card:hover .nd-sol-card-title { color: var(--nd-ink) !important; }
/* Sticky bar (mobile CTA, not the header): compact Plane buttons. */
body .nd-sticky-btn {
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: var(--nd-r-s) !important;
  font-family: var(--nd-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  transform: none !important;
}
body .nd-sticky-btn.primary, body .nd-sticky-btn.primary:hover {
  background: var(--nd-field-ink) !important;
  color: var(--nd-field) !important;
  border: 1px solid var(--nd-field-ink) !important;
}
body .nd-sticky-btn.ghost, body .nd-sticky-btn.ghost:hover {
  background: transparent !important;
  color: var(--nd-field-ink) !important;
  border: 1px solid var(--nd-field-line) !important;
}
body .nd-sticky { background: var(--nd-field) !important; border-color: var(--nd-field-line) !important; }
body .nd-sticky-note { color: var(--nd-field-ink-2) !important; font-family: var(--nd-sans) !important; font-weight: 500 !important; }

/* 7r. BLOG CARD TITLE — three lines, not two (inline style needs !important) */
body .blog-card__title {
  -webkit-line-clamp: 3 !important;
  line-clamp: 3 !important;
}

/* ---------------------------------------------------------------------------
   8. ACCESSIBILITY + MOTION
   Focus: 2px accent ring, offset 2 (WCAG 2.4.7). The theme sets outline:none
   broadly, so the outline is forced; pointer users never see it.
   --------------------------------------------------------------------------- */
:where(a, button, input, select, textarea, summary, [tabindex], [role="button"]):focus-visible {
  outline: 2px solid var(--nd-accent) !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}
:where(a, button, input, select, textarea, summary, [tabindex]):focus:not(:focus-visible) { outline: none; }
.nd-dark-panel :where(a, button, input, [tabindex]):focus-visible { outline-color: #8FB8FF !important; }
.nd-sr-only, .visually-hidden-nd {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .nd-reveal, .nd-reveal.is-out { opacity: 1 !important; transform: none !important; }
}


/* ============================================================================
   VISUAL LIFT (2026-09-07) — founder: "structure perfect; design, image and
   colour/gradient below average; must be close to the four references".
   Richer light in the same one-hue family: cobalt blooms in the entry wash,
   gradient plates with a shadowed product crop, a stronger aurora on the dark
   band, a cobalt gradient CTA panel on the lilac wash, accent label pills,
   icon tiles and accent numerals. Nothing here adds a hue outside cobalt/violet.
   ========================================================================== */
:root {
  --nd-wash-lo: #D3DFFF;
  --nd-plate-hi: #EEF3FF;
  --nd-plate-lo: #D9E4FF;
  --nd-glow: rgba(31, 73, 230, .34);
  --nd-glow-2: rgba(148, 118, 255, .26);
}
.nd-wash-entry {
  background:
    radial-gradient(52% 46% at 84% 26%, var(--nd-glow-2) 0%, rgba(148, 118, 255, 0) 70%),
    radial-gradient(56% 48% at 14% 58%, rgba(31, 73, 230, .16) 0%, rgba(31, 73, 230, 0) 70%),
    radial-gradient(120% 55% at 50% -12%, var(--nd-wash-hi) 0%, transparent 62%),
    linear-gradient(180deg, var(--nd-wash-lo) 0%, var(--nd-wash-mid) 60%, var(--nd-ground) 100%) !important;
}
@media (min-width: 1024px) { .nd-wash-entry { min-height: 0; } }

/* plates: a diagonal ice gradient, a cobalt bloom under the crop, the crop floats */
.nd-plate, .nd-plate[style*="--client"] {
  background: linear-gradient(135deg, var(--nd-plate-hi) 0%, var(--nd-plate-lo) 100%) !important;
  border-color: rgba(31, 73, 230, .10);
}
.nd-plate::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 100%, var(--nd-glow) 0%, rgba(31, 73, 230, 0) 72%);
  opacity: .6;
}
.nd-plate > * { position: relative; z-index: 1; }
.nd-plate > img, .nd-plate > picture > img, .nd-plate > .nd-plate__crop {
  box-shadow: 0 32px 64px -32px rgba(23, 38, 90, .5), 0 0 0 1px rgba(11, 14, 20, .06);
}
.nd-dark-panel .nd-plate { border-color: rgba(255, 255, 255, .10); }
.nd-dark-panel .nd-plate::before { opacity: .9; }

/* the dark band: a deeper aurora */
.nd-dark-panel {
  background:
    radial-gradient(60% 55% at 86% 12%, rgba(88, 170, 255, .42) 0%, rgba(88, 170, 255, 0) 66%),
    radial-gradient(55% 60% at 10% 92%, rgba(148, 118, 255, .36) 0%, rgba(148, 118, 255, 0) 66%),
    linear-gradient(180deg, var(--nd-field-2) 0%, var(--nd-field) 100%) !important;
}

/* full-bleed helpers: a band that leaves the container, and a tinted section ground */
.nd-band { width: 100vw; margin-inline: calc(50% - 50vw); border-radius: 0 !important; }
.nd-band-tint {
  background: linear-gradient(180deg, var(--nd-ground) 0%, var(--nd-ground-2) 14%, var(--nd-ground-3) 100%) !important;
}

/* the CTA: a LIGHT panel (founder: light gradients only) — ice to lilac with a white top light,
   a violet bloom in one corner and a cobalt bloom in the other; ink type, ink button */
.nd-wash-cta {
  position: relative; color: var(--nd-ink);
  background:
    radial-gradient(60% 50% at 50% -6%, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(48% 54% at 94% 104%, rgba(148, 118, 255, .38) 0%, rgba(148, 118, 255, 0) 66%),
    radial-gradient(46% 50% at 4% 96%, rgba(31, 73, 230, .22) 0%, rgba(31, 73, 230, 0) 66%),
    linear-gradient(180deg, #E7EEFF 0%, #E9E5FF 100%) !important;
  border: 1px solid rgba(31, 73, 230, .10);
}
/* the light band: a full-bleed section ground in the same family (replaces the dark panel on the home) */
.nd-light-band {
  color: var(--nd-ink);
  background:
    radial-gradient(58% 52% at 88% 8%, rgba(31, 73, 230, .20) 0%, rgba(31, 73, 230, 0) 66%),
    radial-gradient(52% 58% at 8% 96%, rgba(148, 118, 255, .26) 0%, rgba(148, 118, 255, 0) 66%),
    radial-gradient(120% 50% at 50% -10%, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #EDF2FF 0%, #E3EAFF 55%, #F1ECFF 100%) !important;
}
.nd-btn--light, .nd-btn--light:hover, .nd-btn--light:focus-visible { background: #FFFFFF !important; color: var(--nd-ink) !important; border-color: #FFFFFF !important; }
.nd-btn--light:hover { background: var(--nd-ground-3) !important; }

/* the section label becomes a pill with a dot — the one place the accent sits on every screen */
.nd-ledger--pill, .nd-plane .hp-labels > .nd-ledger:first-child {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px; border-radius: 999px;
  background: var(--nd-accent-soft) !important; color: var(--nd-accent-ink) !important; width: max-content; max-width: 100%;
}
.nd-ledger--pill::before, .nd-plane .hp-labels > .nd-ledger:first-child::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--nd-accent); flex: none;
}
.nd-dark-panel .nd-ledger--pill, .nd-dark-panel .hp-labels > .nd-ledger:first-child {
  background: rgba(255, 255, 255, .10) !important; color: #FFFFFF !important;
}
.nd-dark-panel .nd-ledger--pill::before, .nd-dark-panel .hp-labels > .nd-ledger:first-child::before { background: #8FB8FF; }
.nd-plane .hp-labels { align-items: center; }

/* icon tiles and accent numerals */
.nd-tile { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: var(--nd-accent-soft); color: var(--nd-accent-ink); flex: none; }
.nd-tile svg { width: 20px; height: 20px; display: block; }
.nd-tile--round { border-radius: 50%; font-family: var(--nd-mono); font-size: 13px; font-weight: 500; }
.nd-dark-panel .nd-tile { background: rgba(255, 255, 255, .10); color: #FFFFFF; }
.nd-plane.nd-home .hp-n, .nd-plane.nd-home .hp-score { color: var(--nd-accent-ink); }
.nd-dark-panel .hp-n { color: #8FB8FF !important; }


/* ============================================================================
   LIFT v2 (2026-09-07, after the reference comparison) — three hues, each
   running LIGHT → DARK (founder: "light blue to dark, light yellow to dark,
   light purple to dark"). Blue leads; violet and amber are the second and
   third voices on tiles, fields and the mark. Buttons are cobalt pills, icon
   tiles are filled, product images are composed on swoosh fields.
   ========================================================================== */
:root {
  --nd-blue-1: #DCE8FF; --nd-blue-2: #6B9BFF; --nd-blue-3: #1F49E6; --nd-blue-4: #12309E;
  --nd-violet-1: #EAE2FF; --nd-violet-2: #B392FF; --nd-violet-3: #6E3DF5; --nd-violet-4: #3E1FA8;
  --nd-amber-1: #FFF3CC; --nd-amber-2: #FFD166; --nd-amber-3: #F5A800; --nd-amber-4: #B86E00;
  --nd-grad-blue: linear-gradient(160deg, var(--nd-blue-2) 0%, var(--nd-blue-3) 55%, var(--nd-blue-4) 100%);
  --nd-grad-violet: linear-gradient(160deg, var(--nd-violet-2) 0%, var(--nd-violet-3) 55%, var(--nd-violet-4) 100%);
  --nd-grad-amber: linear-gradient(160deg, var(--nd-amber-2) 0%, var(--nd-amber-3) 60%, var(--nd-amber-4) 100%);
  --nd-grad-sky: linear-gradient(160deg, #8FD8FF 0%, #2F8FFF 55%, #1C5FD6 100%);
}
/* hero wash: Consumo's shape in our hue — white at the top, light cobalt where the frame sits */
.nd-wash-entry { background: linear-gradient(180deg, #FFFFFF 0%, #F3F6FF 34%, #DCE7FF 68%, #C3D5FF 100%) !important; }

/* buttons: cobalt pills */
.nd-btn { border-radius: 999px !important; background: var(--nd-grad-blue) !important; border-color: transparent !important; color: #FFFFFF !important;
  box-shadow: 0 10px 24px -12px rgba(31, 73, 230, .6); }
.nd-btn:hover, .nd-btn:focus-visible { filter: brightness(1.07); color: #FFFFFF !important; }
.nd-btn--outline { background: #FFFFFF !important; color: var(--nd-ink) !important; border-color: var(--nd-line) !important; box-shadow: none; }
.nd-btn--outline:hover { filter: none; background: var(--nd-ground-2) !important; }
.nd-btn--text, .nd-btn--text:hover, .nd-btn--text:focus-visible { background: transparent !important; border: 0 !important; color: var(--nd-accent-ink) !important; box-shadow: none; padding: 0 !important; height: auto !important; filter: none; }
.nd-nav .nd-btn, .nd-nav-sheet .nd-btn { background: var(--nd-grad-blue) !important; border-radius: 999px !important; color: #FFFFFF !important; }

/* icon tiles: filled, light → dark */
.nd-tile { background: var(--nd-grad-blue); color: #FFFFFF; box-shadow: 0 10px 18px -10px rgba(31, 73, 230, .55); }
.nd-tile--violet { background: var(--nd-grad-violet); box-shadow: 0 10px 18px -10px rgba(110, 61, 245, .5); }
.nd-tile--amber { background: var(--nd-grad-amber); color: #2A1B00; box-shadow: 0 10px 18px -10px rgba(245, 168, 0, .5); }
.nd-tile svg { stroke-width: 2; }
.nd-tile--round { background: var(--nd-grad-blue); color: #FFFFFF; }

/* fields: a dot grid and a hard-edged swoosh in one corner (Agently's), light → dark */
.nd-field { position: relative; overflow: hidden; border-radius: var(--nd-r-l); background: #F5F7FB; isolation: isolate; }
.nd-field::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(rgba(11, 14, 20, .12) 1px, transparent 1.3px); background-size: 14px 14px; }
.nd-field::after { content: ""; position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(78% 78% at 108% 108%, var(--nd-blue-4) 0%, var(--nd-blue-3) 34%, var(--nd-blue-2) 52%, transparent 52.4%),
  radial-gradient(92% 92% at 108% 108%, var(--nd-blue-1) 0%, var(--nd-blue-1) 64%, transparent 64.4%); }
.nd-field--tl::after { background:
  radial-gradient(78% 78% at -8% -8%, var(--nd-blue-4) 0%, var(--nd-blue-3) 34%, var(--nd-blue-2) 52%, transparent 52.4%),
  radial-gradient(92% 92% at -8% -8%, var(--nd-blue-1) 0%, var(--nd-blue-1) 64%, transparent 64.4%); }
.nd-field--violet::after { background:
  radial-gradient(78% 78% at 108% 108%, var(--nd-violet-4) 0%, var(--nd-violet-3) 34%, var(--nd-violet-2) 52%, transparent 52.4%),
  radial-gradient(92% 92% at 108% 108%, var(--nd-violet-1) 0%, var(--nd-violet-1) 64%, transparent 64.4%); }
.nd-field--amber::after { background:
  radial-gradient(78% 78% at 108% 108%, var(--nd-amber-4) 0%, var(--nd-amber-3) 34%, var(--nd-amber-2) 52%, transparent 52.4%),
  radial-gradient(92% 92% at 108% 108%, var(--nd-amber-1) 0%, var(--nd-amber-1) 64%, transparent 64.4%); }
.nd-field > * { position: relative; z-index: 1; }

/* composed plate: the main crop and floating fragments cut from the real product */
.nd-compose { aspect-ratio: 16 / 11; }
.nd-compose img { position: absolute; display: block; height: auto; max-width: none; border-radius: 12px; background: #FFFFFF;
  box-shadow: 0 30px 60px -28px rgba(23, 38, 90, .55), 0 0 0 1px rgba(11, 14, 20, .06); }
.nd-compose .nd-compose__main { z-index: 1; }
.nd-compose .nd-compose__frag { z-index: 2; box-shadow: 0 24px 48px -18px rgba(23, 38, 90, .5), 0 0 0 1px rgba(11, 14, 20, .06); }

/* project plates carry the swoosh too; the three concept cards take the three hues */
.nd-plate--swoosh { background: #F5F7FB !important; }
.nd-plate--swoosh::before { opacity: 1; background:
  radial-gradient(rgba(11, 14, 20, .10) 1px, transparent 1.3px) 0 0 / 14px 14px,
  radial-gradient(70% 70% at 104% 104%, var(--nd-blue-4) 0%, var(--nd-blue-3) 34%, var(--nd-blue-2) 52%, transparent 52.4%),
  radial-gradient(84% 84% at 104% 104%, var(--nd-blue-1) 0%, var(--nd-blue-1) 64%, transparent 64.4%); }
.nd-plate--swoosh.nd-plate--violet::before { background:
  radial-gradient(rgba(11, 14, 20, .10) 1px, transparent 1.3px) 0 0 / 14px 14px,
  radial-gradient(70% 70% at 104% 104%, var(--nd-violet-4) 0%, var(--nd-violet-3) 34%, var(--nd-violet-2) 52%, transparent 52.4%),
  radial-gradient(84% 84% at 104% 104%, var(--nd-violet-1) 0%, var(--nd-violet-1) 64%, transparent 64.4%); }
.nd-plate--swoosh.nd-plate--amber::before { background:
  radial-gradient(rgba(11, 14, 20, .10) 1px, transparent 1.3px) 0 0 / 14px 14px,
  radial-gradient(70% 70% at 104% 104%, var(--nd-amber-4) 0%, var(--nd-amber-3) 34%, var(--nd-amber-2) 52%, transparent 52.4%),
  radial-gradient(84% 84% at 104% 104%, var(--nd-amber-1) 0%, var(--nd-amber-1) 64%, transparent 64.4%); }

/* stat tiles: four gradients, light → dark */
.nd-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.nd-stat { position: relative; overflow: hidden; border-radius: 20px; padding: 26px 26px 22px; min-height: 156px;
  display: flex; flex-direction: column; justify-content: space-between; color: #FFFFFF; }
.nd-stat::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .3) 1px, transparent 1.3px); background-size: 12px 12px; opacity: .5; }
.nd-stat > * { position: relative; }
.nd-stat b { display: block; font-family: var(--nd-display); font-size: clamp(34px, 3.2vw, 46px); font-weight: 700; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.nd-stat span { display: block; margin-top: 18px; font-size: 15px; line-height: 1.4; opacity: .94; }
.nd-stat--sky { background: var(--nd-grad-sky); }
.nd-stat--blue { background: var(--nd-grad-blue); }
.nd-stat--violet { background: var(--nd-grad-violet); }
.nd-stat--amber { background: var(--nd-grad-amber); color: #2A1B00; }
@media (max-width: 1023px) { .nd-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* the photo quote card (Agently's testimonial): a cobalt edge fading into paper */
.nd-quote-card { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 40px; padding: 20px; border-radius: 24px;
  background: linear-gradient(100deg, var(--nd-blue-3) 0%, var(--nd-blue-1) 26%, #F6F8FB 60%, #F6F8FB 100%); border: 1px solid rgba(31, 73, 230, .10); }
.nd-quote-card > img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; }
@media (max-width: 1023px) { .nd-quote-card { grid-template-columns: 1fr; gap: 24px; } .nd-quote-card > img { aspect-ratio: 16 / 10; height: auto; } }

/* people */
.nd-team { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 16px; list-style: none; padding: 0; }
.nd-person { display: block; text-decoration: none; color: inherit; background: #FFFFFF; border: 1px solid var(--nd-line); border-radius: 20px; padding: 10px 10px 14px;
  transition: transform var(--nd-dur) var(--nd-ease), box-shadow var(--nd-dur) var(--nd-ease); }
.nd-person:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -30px rgba(23, 38, 90, .4); }
.nd-person img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 14px; background: var(--nd-ground-3); }
.nd-person b { display: block; margin: 12px 4px 0; font-size: 14.5px; font-weight: 600; color: var(--nd-ink); line-height: 1.3; }
.nd-person span { display: block; margin: 3px 4px 0; font-size: 12.5px; color: var(--nd-ink-3); line-height: 1.4; }
@media (max-width: 1023px) { .nd-team { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 639px) { .nd-team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

/* FAQ cards (Agently's): white cards, cobalt plus */
.nd-faq { width: min(100%, 800px); margin-inline: auto; display: grid; gap: 12px; }
.nd-faq details { background: #FFFFFF; border: 1px solid var(--nd-line); border-radius: 16px; box-shadow: 0 14px 34px -26px rgba(23, 38, 90, .45); }
.nd-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px;
  font-family: var(--nd-sans); font-size: 17px; font-weight: 500; line-height: 1.35; color: var(--nd-ink); }
.nd-faq summary::-webkit-details-marker { display: none; }
.nd-faq summary::after { content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--nd-grad-blue); color: #FFFFFF;
  display: grid; place-items: center; font-size: 19px; line-height: 1; font-weight: 400; transition: transform var(--nd-dur) var(--nd-ease); }
.nd-faq details[open] summary::after { transform: rotate(45deg); }
.nd-faq details p { margin: 0; padding: 0 24px 20px; color: var(--nd-ink-2); font-size: 16px; line-height: 1.6; max-width: 66ch; }

/* the banner CTA (Agently's): headline left, the product frame leaving the card at the right */
.nd-banner { position: relative; overflow: hidden; border-radius: 32px; background: linear-gradient(135deg, #FFFFFF 0%, #EEF3FF 100%);
  border: 1px solid rgba(31, 73, 230, .12); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); min-height: 460px;
  box-shadow: 0 40px 80px -48px rgba(23, 38, 90, .45); }
.nd-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(11, 14, 20, .10) 1px, transparent 1.3px); background-size: 14px 14px; }
.nd-banner__text { position: relative; padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 72px); }
.nd-banner__frame { position: absolute; right: -5%; top: 15%; width: 58%; border-radius: 18px 18px 0 0; overflow: hidden; background: #FFFFFF;
  border-top: 10px solid var(--nd-blue-3); box-shadow: 0 40px 80px -30px rgba(23, 38, 90, .55), 0 0 0 1px rgba(11, 14, 20, .06);
  transform: rotate(-4deg); transform-origin: bottom left; }
.nd-banner__frame img { display: block; width: 100%; height: auto; }
@media (max-width: 1023px) {
  .nd-banner { grid-template-columns: 1fr; min-height: 0; }
  .nd-banner__frame { position: relative; right: auto; top: auto; width: 86%; margin: 0 0 -8% auto; transform: none; border-radius: 18px 0 0 0; }
}


/* ============================================================================
   LIFT v3 (2026-09-07, evening) — the reference grammar, Agently-led:
   centred section headers with ONE white pill, 600-weight display type at
   -3%, sans everywhere (mono retired from the home), white cards with a
   hairline and a micro-shadow on alternating white / #F7F8FB bands, icon
   tiles on every list, checklists with cobalt checks, square composed images
   in split rows, flat cobalt pill buttons. Founder: "thousands of mistakes,
   compare with the reference websites I like" — this block is that comparison
   applied.
   ========================================================================== */
:root {
  --nd-band: #F7F8FB;
  --nd-card-line: rgba(11, 14, 20, .08);
  --nd-shadow-card: 0 1px 2px rgba(11, 14, 20, .04), 0 14px 36px -28px rgba(23, 38, 90, .28);
}
.nd-plane :is(h1, h2, h3, .nd-display, .nd-h2, .nd-h3) { font-weight: 600 !important; }
.nd-plane .nd-display { font-size: clamp(36px, 4.4vw, 62px) !important; letter-spacing: -.03em !important; line-height: 1.08 !important; }
.nd-plane .nd-h2 { font-size: clamp(28px, 3.3vw, 46px) !important; letter-spacing: -.025em !important; line-height: 1.1 !important; }
.nd-plane .nd-h3 { font-size: clamp(22px, 2.3vw, 32px) !important; letter-spacing: -.02em !important; line-height: 1.2 !important; }
.nd-plane .nd-lead { font-size: 18px !important; line-height: 1.6 !important; color: var(--nd-ink-3) !important; }
.nd-plane .hp-accent { color: var(--nd-accent); }

/* the one label: a white pill with a cobalt dot, sentence case, 14/500 */
.nd-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px 7px 10px; border-radius: 999px;
  background: #FFFFFF; border: 1px solid var(--nd-card-line); box-shadow: 0 1px 2px rgba(11, 14, 20, .04);
  font-family: var(--nd-sans) !important; font-size: 14px !important; font-weight: 500 !important; line-height: 1 !important;
  letter-spacing: 0 !important; text-transform: none !important; color: var(--nd-ink) !important; width: max-content; max-width: 100%; }
.nd-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--nd-accent); flex: none; }

/* centred section header module: pill -> 20 -> h2 -> 12 -> sentence -> 56 -> content */
.nd-shead { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 800px; margin: 0 auto; }
.nd-shead .nd-h2 { margin: 20px 0 0; max-width: 800px; text-wrap: balance; }
.nd-shead .nd-lead { margin: 12px 0 0; max-width: 560px; }
.nd-shead--left { align-items: flex-start; text-align: left; margin: 0; }
.nd-sbody { margin-top: 56px; }
.nd-sfoot { margin-top: 40px; text-align: center; }

/* cards */
.nd-card2 { display: block; box-sizing: border-box; background: #FFFFFF; border: 1px solid var(--nd-card-line); border-radius: 20px; padding: 24px;
  box-shadow: var(--nd-shadow-card); color: var(--nd-ink); text-decoration: none; transition: transform var(--nd-dur) var(--nd-ease), box-shadow var(--nd-dur) var(--nd-ease); }
a.nd-card2:hover { transform: translateY(-3px); box-shadow: 0 1px 2px rgba(11, 14, 20, .04), 0 28px 48px -30px rgba(23, 38, 90, .4); }
.nd-card2 .nd-card2__t { font-family: var(--nd-sans) !important; font-size: 20px !important; font-weight: 600 !important; letter-spacing: -.012em !important; line-height: 1.3 !important; margin: 16px 0 0; color: var(--nd-ink); }
.nd-card2 .nd-card2__p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--nd-ink-3); }
.nd-card2 .nd-card2__k { display: block; font-size: 13px; font-weight: 500; color: var(--nd-accent-ink); margin-top: 14px; }
.nd-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.nd-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.nd-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1023px) { .nd-grid-3, .nd-grid-2 { grid-template-columns: 1fr; } .nd-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* checklist with cobalt checks (Agently's feature points) */
.nd-checks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.nd-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.5; color: var(--nd-ink); margin: 0; }
.nd-checks li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--nd-accent)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat; }

/* alternating bands */
.nd-band-grey { background: var(--nd-band) !important; }

/* buttons: flat cobalt (Agently), secondary white */
.nd-btn { background: var(--nd-accent) !important; box-shadow: 0 1px 2px rgba(11, 14, 20, .08), 0 10px 20px -14px rgba(31, 73, 230, .55); }
.nd-btn:hover, .nd-btn:focus-visible { background: var(--nd-accent-ink) !important; filter: none; }
.nd-btn--outline, .nd-btn--outline:hover { background: #FFFFFF !important; color: var(--nd-ink) !important; border-color: var(--nd-card-line) !important; box-shadow: 0 1px 2px rgba(11, 14, 20, .06); }
.nd-nav .nd-btn, .nd-nav-sheet .nd-btn { background: var(--nd-accent) !important; }
.nd-nav .nd-btn:hover { background: var(--nd-accent-ink) !important; }

/* split rows (Agently's feature rows): square media + text */
.nd-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.nd-split--flip > .nd-split__media { order: 1; }
.nd-split__media { aspect-ratio: 1 / 1; }
.nd-split__text .nd-h3 { margin-top: 20px; max-width: 18ch; text-wrap: balance; }
.nd-split__text .nd-lead { margin-top: 12px; max-width: 46ch; }
.nd-split__text .nd-btn--text { margin-top: 24px; }
.nd-split + .nd-split { margin-top: clamp(64px, 8vw, 120px); }
@media (max-width: 1023px) { .nd-split { grid-template-columns: 1fr; gap: 32px; } .nd-split--flip > .nd-split__media { order: 0; } }

/* the square composed image */
.nd-compose--sq { aspect-ratio: 1 / 1; }

/* logo row under the hero frame (Agently's) */
.nd-logos { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px 44px; }
.nd-logos li { margin: 0; padding: 0; display: flex; align-items: center; height: 36px; }
.nd-logos img { display: block; height: 30px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: .72;
  transform: scale(var(--s, 1)); transform-origin: center; transition: filter var(--nd-dur) var(--nd-ease), opacity var(--nd-dur) var(--nd-ease); }
.nd-logos li:hover img { filter: none; opacity: 1; }
.nd-logos a { display: block; line-height: 0; }

/* tags */
.nd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding: 0; list-style: none; }
.nd-tags li { margin: 0; font-size: 13px; line-height: 1; padding: 7px 11px; border-radius: 999px; background: var(--nd-band); border: 1px solid var(--nd-card-line); color: var(--nd-ink-2); }

/* the hero, centred (Agently's stack) */
.nd-hero-c { display: flex; flex-direction: column; align-items: center; text-align: center; }
.nd-hero-c .nd-display { margin-top: 20px; max-width: 760px; text-wrap: balance; }
.nd-hero-c .nd-lead { margin-top: 16px; max-width: 600px; }
.nd-hero-c .nd-hero-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.nd-hero-frame-wrap { position: relative; width: 100%; max-width: 1180px; margin: clamp(48px, 6vw, 80px) auto 0; }
.nd-hero-frame-wrap::before { content: ""; position: absolute; inset: -20% -30% -30%; pointer-events: none; z-index: 0;
  background: radial-gradient(22% 40% at 22% 62%, rgba(31, 73, 230, .42) 0%, rgba(31, 73, 230, .18) 45%, rgba(31, 73, 230, 0) 100%),
              radial-gradient(22% 40% at 78% 62%, rgba(31, 73, 230, .42) 0%, rgba(31, 73, 230, .18) 45%, rgba(31, 73, 230, 0) 100%); }
.nd-hero-frame { position: relative; z-index: 1; margin: 0; background: #FFFFFF; border: 1px solid var(--nd-card-line); border-radius: 20px; overflow: hidden;
  aspect-ratio: 16 / 9; box-shadow: 0 1px 2px rgba(11, 14, 20, .06), 0 40px 80px -40px rgba(23, 38, 90, .5); }
.nd-hero-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.nd-plane .nd-wash-entry { background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FF 40%, #EEF2FF 72%, #FFFFFF 100%) !important; }

/* small caption */
.nd-cap { font-size: 14px; font-weight: 500; color: var(--nd-ink-3); text-align: center; margin: 0; }

/* stat tiles: a little smaller, in the grid */
.nd-stat { min-height: 148px; }

/* footer labels: sans, not mono */
.nd-ft .nd-ledger, .nd-ft .nd-ft-label { font-family: var(--nd-sans) !important; text-transform: none !important; letter-spacing: 0 !important; font-size: 14px !important; font-weight: 600 !important; color: var(--nd-ink) !important; }
.nd-ft .nd-ft-mono { font-family: var(--nd-sans) !important; font-size: 14px !important; letter-spacing: 0 !important; }
.nd-ft .nd-ft-label::before, .nd-ft .nd-ledger::before { display: none !important; }
.nd-ft .nd-ledger { background: transparent !important; padding: 0 !important; }

@media (max-width: 767px) {
  .nd-sbody { margin-top: 40px; }
  .nd-hero-c .nd-hero-row > .nd-btn { width: 100%; }
  .nd-logos { gap: 16px 28px; }
  .nd-logos img { height: 24px; max-width: 120px; }
}


/* v3 cascade fixes: the pill must beat the theme's uppercase mono eyebrow; the text link must beat the flat button fill */
.nd-plane .nd-eyebrow, .nd-home .nd-eyebrow, .nd-plane span.nd-eyebrow {
  font-family: var(--nd-sans) !important; font-size: 14px !important; font-weight: 500 !important; letter-spacing: 0 !important;
  text-transform: none !important; color: var(--nd-ink) !important; line-height: 1 !important; background: #FFFFFF !important;
  border: 1px solid var(--nd-card-line) !important; border-radius: 999px !important; padding: 7px 12px 7px 10px !important; }
.nd-plane .nd-btn.nd-btn--text, .nd-plane .nd-btn.nd-btn--text:hover, .nd-plane .nd-btn.nd-btn--text:focus-visible {
  background: transparent !important; border: 0 !important; color: var(--nd-accent-ink) !important; box-shadow: none !important;
  padding: 0 !important; height: auto !important; border-radius: 0 !important; }
.nd-plane .nd-btn.nd-btn--text:hover { text-decoration: underline; text-underline-offset: .2em; }


/* ============================================================================
   LIFT v4 (2026-09-07, night) — reference components, used one for one:
   Agently hero (arc glow PNG + dot grid behind the frame, trusted-by marquee),
   Agently benefit cards, Agently split rows, Fizens small feature cards, Fizens
   how-it-works slab, Agently stat tiles + testimonial card, a team slider with
   arrows, Agently FAQ + banner. Images are the presentation renders, WHOLE
   (object-fit: contain), never cropped. Founder: "use theirs and modify".
   ========================================================================== */
/* hero (Agently): the glow sits behind the frame, the dot grid fades in under the headline */
.nd-hero-frame-wrap::before { content: none; }
.nd-hero-glow { position: absolute; left: 50%; top: 26%; width: 139vw; max-width: 2000px; aspect-ratio: 2000 / 1411; transform: translateX(-50%);
  background: url("/assets/imgs/neodimensional/hero-glow.png") center / 100% 100% no-repeat; pointer-events: none; z-index: 0; }
.nd-hero-dots { position: absolute; inset: 0 0 auto 0; height: 460px; pointer-events: none; z-index: 0; opacity: .09;
  background-image: radial-gradient(#181818 1px, transparent 1.4px); background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(rgba(0,0,0,.1) 5%, rgba(0,0,0,.8) 29%, rgba(0,0,0,.15) 91%); mask-image: linear-gradient(rgba(0,0,0,.1) 5%, rgba(0,0,0,.8) 29%, rgba(0,0,0,.15) 91%); }
.nd-plane .nd-wash-entry { background: #FFFFFF !important; }
.nd-hero-c { position: relative; z-index: 1; }
.nd-hero-frame { border-radius: 20px; box-shadow: 0 1px 2px rgba(11, 14, 20, .06), 0 30px 60px -30px rgba(7, 13, 36, .45); }

/* trusted-by marquee (Agently: 700px, masked, grey) */
.nd-marquee { position: relative; width: min(100%, 760px); margin: 24px auto 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%); }
.nd-marquee__track { display: flex; align-items: center; gap: 56px; width: max-content; animation: nd-marquee 38s linear infinite; }
.nd-marquee__track li { margin: 0; padding: 0; display: flex; align-items: center; height: 36px; list-style: none; }
.nd-marquee__track img { display: block; height: 28px; width: auto; max-width: 140px; object-fit: contain; filter: grayscale(1); opacity: .6; transform: scale(var(--s, 1)); }
@keyframes nd-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .nd-marquee__track { animation: none; } }

/* benefit cards (Agently): 10px frame, plate on top with the render whole, title 24/500, body 16 */
.nd-bcard { display: block; background: #FFFFFF; border: 1px solid #EBEBEB; border-radius: 20px; padding: 10px; color: inherit; text-decoration: none;
  box-shadow: 0 1px 2px rgba(7, 13, 36, .04), 0 12px 30px -24px rgba(7, 13, 36, .25); transition: transform var(--nd-dur) var(--nd-ease); }
a.nd-bcard:hover { transform: translateY(-3px); }
.nd-bcard__plate { position: relative; overflow: hidden; border-radius: 14px; background: #F7F7F7; border: 1px solid #EBEBEB; aspect-ratio: 16 / 11; }
.nd-bcard__plate::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(7, 13, 36, .12) 1px, transparent 1.4px); background-size: 14px 14px; }
.nd-bcard__plate img { position: relative; display: block; width: 100%; height: 100%; object-fit: cover; }
.nd-bcard__body { padding: 18px 15px 14px; }
.nd-bcard__t { font-family: var(--nd-sans) !important; font-size: 22px !important; font-weight: 500 !important; letter-spacing: -.02em !important; line-height: 1.2 !important; margin: 0; color: var(--nd-ink); }
.nd-bcard__p { margin: 8px 0 0; font-size: 16px; line-height: 1.5; color: var(--nd-ink-3); }
.nd-bcard__k { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--nd-accent-ink); }

/* split rows (Agently features): 533px square tile with the render whole on a swoosh field, text with check points */
.nd-srow { display: grid; grid-template-columns: minmax(0, 533fr) minmax(0, 567fr); gap: 80px; align-items: center; }
.nd-srow--flip > .nd-srow__tile { order: 1; }
.nd-srow + .nd-srow { margin-top: clamp(64px, 10vw, 150px); }
.nd-srow__tile { position: relative; overflow: hidden; aspect-ratio: 1 / 1; border-radius: 20px; background: #F7F7F7; border: 1px solid #EBEBEB; }
.nd-srow__tile::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(7, 13, 36, .12) 1px, transparent 1.4px); background-size: 14px 14px; }
.nd-srow__tile::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(78% 78% at 108% 108%, var(--nd-blue-4) 0%, var(--nd-blue-3) 40%, var(--nd-blue-2) 52%, transparent 52.4%),
  radial-gradient(92% 92% at 108% 108%, var(--nd-blue-1) 0%, var(--nd-blue-1) 64%, transparent 64.4%); }
.nd-srow__tile--tl::after { background:
  radial-gradient(78% 78% at -8% -8%, var(--nd-blue-4) 0%, var(--nd-blue-3) 40%, var(--nd-blue-2) 52%, transparent 52.4%),
  radial-gradient(92% 92% at -8% -8%, var(--nd-blue-1) 0%, var(--nd-blue-1) 64%, transparent 64.4%); }
.nd-srow__tile img { position: absolute; inset: 8%; width: 84%; height: 84%; object-fit: contain; z-index: 1; filter: drop-shadow(0 24px 40px rgba(7, 13, 36, .28)); }
.nd-srow__text .nd-h2 { margin-top: 20px; font-size: clamp(28px, 3vw, 40px) !important; max-width: 16ch; }
.nd-srow__text .nd-lead { margin-top: 12px; max-width: 46ch; }
.nd-srow__text .nd-checks { margin-top: 24px; }
.nd-srow__text .nd-btn { margin-top: 28px; }
@media (max-width: 1023px) { .nd-srow { grid-template-columns: 1fr; gap: 32px; } .nd-srow--flip > .nd-srow__tile { order: 0; } }

/* small feature cards (Fizens "...and more"): icon tile + title + line, 96px, light gradient, blue hairline */
.nd-fgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.nd-fcard { display: flex; align-items: center; gap: 16px; min-height: 96px; padding: 14px 20px; border-radius: 12px; border: 1px solid #D1E0FF;
  background: linear-gradient(90deg, #F5FAFF 0%, #F9FCFF 100%); color: inherit; }
.nd-fcard b { display: block; font-size: 18px; font-weight: 500; line-height: 1.3; color: var(--nd-ink); }
.nd-fcard span { display: block; font-size: 14px; line-height: 1.45; color: var(--nd-ink-3); margin-top: 3px; }
@media (max-width: 1023px) { .nd-fgrid { grid-template-columns: 1fr; gap: 12px; } }

/* how-it-works slab (Fizens): tinted slab radius 40, render left, numbered steps right */
.nd-slab { border-radius: 40px; background: var(--nd-slab-bg, #EFF4FF); padding: clamp(40px, 6.5vw, 100px) clamp(24px, 4vw, 60px); }
.nd-slab__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 80px); align-items: center; margin-top: 56px; }
.nd-slab__img { display: block; width: 100%; height: auto; border-radius: 16px; filter: drop-shadow(0 30px 50px rgba(0, 64, 193, .25)); }
.nd-slab-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 40px; }
.nd-slab-steps li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 24px; align-items: start; margin: 0; }
.nd-slab-steps .nd-steps__n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #FFFFFF; border: 1px solid #D1E0FF; color: var(--nd-accent-ink); font-weight: 600; font-size: 15px; }
.nd-slab-steps li:first-child .nd-steps__n { background: var(--nd-accent); border-color: var(--nd-accent); color: #FFFFFF; }
.nd-slab-steps b { display: block; font-size: 22px; font-weight: 500; letter-spacing: -.01em; line-height: 1.25; color: var(--nd-ink); }
.nd-slab-steps p { margin: 8px 0 0; font-size: 16px; line-height: 1.55; color: var(--nd-ink-3); }
@media (max-width: 1023px) { .nd-slab { border-radius: 24px; } .nd-slab__grid { grid-template-columns: 1fr; margin-top: 32px; } }

/* testimonial card (Agently): render left on a blue-corner wash, quote right */
.nd-tcard { display: grid; grid-template-columns: minmax(0, 580fr) minmax(0, 450fr); gap: 60px; padding: 20px; border-radius: 24px; background: #F7F7F7; border: 1px solid #EBEBEB; position: relative; overflow: hidden; }
.nd-tcard::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--nd-blue-3) 0%, color-mix(in srgb, var(--nd-blue-3) 35%, transparent) 18%, transparent 42%); }
.nd-tcard__media { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 58 / 45; background: #FFFFFF; }
.nd-tcard__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.nd-tcard__body { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 30px 20px 10px 0; }
.nd-tcard__q { font-family: var(--nd-sans) !important; font-size: 24px !important; line-height: 1.2 !important; font-weight: 500 !important; letter-spacing: -.02em; color: var(--nd-ink); margin: 0; }
.nd-tcard__more { margin: 16px 0 0; font-size: 16px; line-height: 1.5; color: var(--nd-ink-3); }
.nd-tcard__who { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.nd-tcard__who b { display: block; font-size: 18px; font-weight: 500; color: var(--nd-ink); }
.nd-tcard__who span { display: block; font-size: 14px; color: var(--nd-ink-3); margin-top: 2px; }
.nd-tcard__who a { color: var(--nd-accent-ink); text-decoration: none; }
@media (max-width: 1023px) { .nd-tcard { grid-template-columns: 1fr; gap: 20px; } .nd-tcard__body { padding: 8px 8px 12px; } }

/* team slider: arrows + scroll-snap, 4 cards visible */
.nd-slider { position: relative; margin-top: 56px; }
.nd-slider__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 24px) / 4); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.nd-slider__track::-webkit-scrollbar { display: none; }
.nd-slider__track > * { scroll-snap-align: start; }
.nd-slider__nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.nd-slider__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #EBEBEB; background: #FFFFFF; color: var(--nd-ink); display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 1px 2px rgba(7, 13, 36, .06); transition: background-color var(--nd-dur) var(--nd-ease), color var(--nd-dur) var(--nd-ease); }
.nd-slider__btn:hover { background: var(--nd-accent); border-color: var(--nd-accent); color: #FFFFFF; }
.nd-slider__btn svg { width: 18px; height: 18px; }
.nd-person img { aspect-ratio: 4 / 4.6; }
@media (max-width: 1023px) { .nd-slider__track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (max-width: 639px) { .nd-slider__track { grid-auto-columns: 78%; } }

/* concept cards (Fizens blog cards): render whole, title, tag */
.nd-ccard { display: block; color: inherit; text-decoration: none; }
.nd-ccard__img { display: block; width: 100%; height: auto; border-radius: 16px; border: 1px solid #EBEBEB; }
.nd-ccard b { display: block; margin-top: 16px; font-size: 20px; font-weight: 500; letter-spacing: -.01em; color: var(--nd-ink); line-height: 1.3; }
.nd-ccard span { display: block; margin-top: 4px; font-size: 14px; color: var(--nd-ink-3); }

/* banner frame: a flat render, no crop */
.nd-banner__frame { border-top: 0; }


/* ============================================================================
   LIFT v5 (2026-09-08) — more section variety, still reference components:
   hero visual = the MetaMetric render whole; Consumo's marquee of mixed rounded
   cards (photo / coloured circle with a serif line / stat card / product);
   Fizens' benefit slab (gradient square + checklist) for capabilities; Consumo's
   three icon columns for the promises; Agently's pricing cards with a tab toggle.
   ========================================================================== */
/* hero visual: the render itself, no browser frame */
.nd-hero-frame { aspect-ratio: auto; border: 0; background: transparent; box-shadow: 0 40px 80px -36px rgba(7, 13, 36, .5); }
.nd-hero-frame img { height: auto; object-fit: fill; }

/* Consumo's marquee bento */
.nd-bento { position: relative; overflow: hidden; margin-top: 56px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); }
.nd-bento__track { display: flex; gap: 24px; width: max-content; padding: 4px 0; animation: nd-bento 48s linear infinite; list-style: none; margin: 0; }
.nd-bento__track li { margin: 0; padding: 0; list-style: none; }
.nd-bento:hover .nd-bento__track { animation-play-state: paused; }
@keyframes nd-bento { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .nd-bento__track { animation: none; } }
.nd-bcell { position: relative; width: 300px; height: 300px; border-radius: 48px; overflow: hidden; background: #F7F7F2; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; box-sizing: border-box; }
.nd-bcell--circle { border-radius: 50%; align-items: center; justify-content: center; text-align: center; padding: 36px; }
.nd-bcell--photo { padding: 0; }
.nd-bcell--photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.nd-bcell--amber { background: var(--nd-amber-2); }
.nd-bcell--violet { background: var(--nd-grad-violet); color: #FFFFFF; }
.nd-bcell--blue { background: var(--nd-grad-blue); color: #FFFFFF; }
.nd-bcell__serif { font-family: var(--nd-serif) !important; font-style: italic; font-size: 30px; line-height: 1.15; letter-spacing: -.01em; color: inherit; margin: 0; }
.nd-bcell__big { font-family: var(--nd-serif) !important; font-style: italic; font-size: 64px; line-height: 1; color: var(--nd-ink); margin: 0 0 10px; }
.nd-bcell__line { font-size: 17px; line-height: 1.35; color: var(--nd-ink); margin: 0; font-weight: 500; }
.nd-bcell__flags { position: absolute; top: 24px; right: 24px; display: flex; }
.nd-bcell__flags span { width: 64px; height: 64px; border-radius: 50%; border: 6px solid #F7F7F2; display: grid; place-items: center; font-weight: 600; font-size: 14px; color: #FFFFFF; margin-left: -14px; }
.nd-bcell__mini { position: absolute; top: 28px; left: 28px; right: 28px; background: #FFFFFF; border-radius: 16px; padding: 14px 16px; box-shadow: 0 10px 30px -14px rgba(7, 13, 36, .25); }
.nd-bcell__mini small { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--nd-ink-3); }
.nd-bcell__mini b { display: block; font-size: 22px; font-weight: 600; color: var(--nd-ink); margin-top: 4px; }
.nd-bcell__mini em { display: inline-block; font-style: normal; font-size: 12px; font-weight: 500; color: var(--nd-accent-ink); background: var(--nd-accent-soft); border-radius: 999px; padding: 4px 10px; margin-top: 8px; }
.nd-bcell__badge { position: absolute; top: 24px; right: 24px; width: 36px; height: 36px; border-radius: 50%; background: var(--nd-violet-3); color: #FFFFFF; display: grid; place-items: center; font-size: 13px; font-weight: 600; }
.nd-serif-accent { font-family: var(--nd-serif) !important; font-style: italic; font-weight: 400 !important; color: var(--nd-ink-3); letter-spacing: -.01em; }
@media (max-width: 639px) { .nd-bcell { width: 240px; height: 240px; border-radius: 36px; padding: 22px; } .nd-bcell__serif { font-size: 24px; } .nd-bcell__big { font-size: 52px; } }

/* Fizens' benefit slab: gradient square holding a white card, text with tinted checks */
.nd-benefit { display: grid; grid-template-columns: minmax(0, 480fr) minmax(0, 610fr); gap: clamp(32px, 7vw, 110px); align-items: center; margin-top: 56px; }
.nd-benefit__sq { position: relative; aspect-ratio: 1 / 1; border-radius: 16px; background: linear-gradient(135deg, var(--nd-blue-2) 0%, var(--nd-blue-3) 60%, var(--nd-blue-4) 100%); overflow: hidden; }
.nd-benefit__sq::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px); background-size: 48px 48px; opacity: .6; }
.nd-benefit__card { position: absolute; left: 12%; right: 12%; top: 50%; transform: translateY(-50%); background: #FFFFFF; border-radius: 16px; padding: 22px 22px 18px; box-shadow: 0 30px 60px -30px rgba(0, 30, 120, .6); }
.nd-benefit__card h4 { margin: 0; font-size: 18px; font-weight: 600; color: var(--nd-ink); }
.nd-benefit__card ul { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 10px; }
.nd-benefit__card li { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 14px; color: var(--nd-ink-2); padding-bottom: 10px; border-bottom: 1px solid #EEF2F7; margin: 0; }
.nd-benefit__card li:last-child { border-bottom: 0; padding-bottom: 0; }
.nd-benefit__card li b { font-weight: 600; color: var(--nd-ink); }
.nd-benefit__card .nd-btn { margin-top: 14px; width: 100%; }
.nd-benefit__text .nd-h2 { margin-top: 16px; font-size: clamp(28px, 3vw, 40px) !important; max-width: 18ch; }
.nd-benefit__text .nd-lead { margin-top: 12px; max-width: 48ch; }
.nd-benefit__checks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; }
.nd-benefit__checks li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--nd-ink); margin: 0; }
.nd-benefit__checks li::before { content: ""; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--nd-accent-soft)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F49E6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat; }
@media (max-width: 1023px) { .nd-benefit { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; } .nd-benefit__checks { grid-template-columns: 1fr; } }

/* Consumo's three icon columns */
.nd-icols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 56px; text-align: center; }
.nd-icol { display: flex; flex-direction: column; align-items: center; }
.nd-icol__i { width: 56px; height: 56px; border-radius: 50%; background: var(--nd-ink); color: #FFFFFF; display: grid; place-items: center; box-shadow: 0 10px 24px -14px rgba(7, 13, 36, .6); }
.nd-icol__i svg { width: 22px; height: 22px; }
.nd-icol b { display: block; margin-top: 18px; font-size: 18px; font-weight: 600; color: var(--nd-ink); }
.nd-icol p { margin: 6px 0 0; font-size: 15px; line-height: 1.5; color: var(--nd-ink-3); max-width: 30ch; }
@media (max-width: 767px) { .nd-icols { grid-template-columns: 1fr; gap: 28px; } }

/* Agently's pricing */
.nd-ptabs { display: inline-flex; gap: 4px; padding: 4px; margin: 56px auto 0; border-radius: 999px; background: #FFFFFF; border: 1px solid #EBEBEB; box-shadow: 0 1px 2px rgba(7, 13, 36, .04); }
.nd-ptabs button { border: 0; background: transparent; border-radius: 999px; padding: 10px 18px; font-family: var(--nd-sans); font-size: 15px; font-weight: 500; color: var(--nd-ink-2); cursor: pointer; }
.nd-ptabs button[aria-selected="true"] { background: var(--nd-ink); color: #FFFFFF; }
.nd-pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.nd-pcard { background: #FFFFFF; border: 1px solid #E8E8E8; border-radius: 20px; padding: 10px; box-shadow: 0 1px 2px rgba(7, 13, 36, .04), 0 14px 34px -28px rgba(7, 13, 36, .3); }
.nd-pcard__head { position: relative; border-radius: 16px; padding: 20px; background: linear-gradient(#F7F7F7 0%, #FFFFFF 100%); overflow: hidden; }
.nd-pcard__head::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(7, 13, 36, .12) 1px, transparent 1.4px); background-size: 12px 12px; opacity: .5; }
.nd-pcard--popular .nd-pcard__head { background: linear-gradient(#E3F0FF 0%, #FFFFFF 100%); }
.nd-pcard__head > * { position: relative; }
.nd-pcard__name { display: flex; justify-content: space-between; align-items: center; font-size: 20px; font-weight: 500; color: var(--nd-ink); }
.nd-pcard__pop { font-size: 13px; font-weight: 500; background: #FFFFFF; border: 1px solid #EBEBEB; border-radius: 999px; padding: 5px 10px; }
.nd-pcard__price { margin-top: 10px; font-family: var(--nd-display); font-size: 44px; font-weight: 600; letter-spacing: -.03em; line-height: 1; color: var(--nd-ink); }
.nd-pcard__price small { font-family: var(--nd-sans); font-size: 16px; font-weight: 500; letter-spacing: 0; margin-left: 6px; color: var(--nd-ink-2); }
.nd-pcard__scope { margin: 10px 0 0; font-size: 15px; line-height: 1.5; color: var(--nd-ink-3); min-height: 46px; }
.nd-pcard__head .nd-btn { margin-top: 18px; width: 100%; }
.nd-pcard__list { padding: 20px 20px 16px; }
.nd-pcard__list b { display: block; font-size: 15px; font-weight: 600; color: var(--nd-ink); margin-bottom: 12px; }
.nd-pcard__list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.nd-pcard__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--nd-ink); margin: 0; }
.nd-pcard__list li::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #80A8FF; background:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C4ED6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-9'/%3E%3C/svg%3E") center / 11px no-repeat; }
@media (max-width: 1023px) { .nd-pgrid { grid-template-columns: 1fr; } }

/* testimonial media: the render's own ratio, no crop */
.nd-tcard__media { aspect-ratio: 1280 / 950; }
.nd-tcard__media img { object-fit: contain; }


/* ============================================================================
   HUES (2026-09-08) — the mark has three colours; the pages used one. Sections
   now take turns (blue → violet → amber): inside a section the pill dot, icon
   tiles, checks, swoosh, slab tint and accent text follow its hue. Primary
   buttons stay cobalt everywhere (the references keep one button colour).
   Override with .nd-hue-blue / .nd-hue-violet / .nd-hue-amber on a section.
   ========================================================================== */
:root { --nd-cta: #1F49E6; --nd-cta-ink: #173BC2; --nd-slab-bg: #EFF4FF; }
.nd-btn, .nd-nav .nd-btn, .nd-nav-sheet .nd-btn { background: var(--nd-cta) !important; }
.nd-btn:hover, .nd-btn:focus-visible, .nd-nav .nd-btn:hover { background: var(--nd-cta-ink) !important; }
.nd-btn--outline, .nd-btn--outline:hover { background: #FFFFFF !important; }
.nd-btn--text, .nd-btn--text:hover { background: transparent !important; }

.nd-plane > section:nth-of-type(3n+2), .nd-plane section.nd-hue-violet {
  --nd-accent: var(--nd-violet-3); --nd-accent-ink: var(--nd-violet-4); --nd-accent-soft: var(--nd-violet-1);
  --nd-blue-1: var(--nd-violet-1); --nd-blue-2: var(--nd-violet-2); --nd-blue-3: var(--nd-violet-3); --nd-blue-4: var(--nd-violet-4);
  --nd-grad-blue: var(--nd-grad-violet); --nd-slab-bg: #F1ECFF; }
.nd-plane > section:nth-of-type(3n), .nd-plane section.nd-hue-amber {
  --nd-accent: var(--nd-amber-3); --nd-accent-ink: #8A5200; --nd-accent-soft: var(--nd-amber-1);
  --nd-blue-1: var(--nd-amber-1); --nd-blue-2: var(--nd-amber-2); --nd-blue-3: var(--nd-amber-3); --nd-blue-4: var(--nd-amber-4);
  --nd-grad-blue: var(--nd-grad-amber); --nd-slab-bg: #FFF6DE; }
.nd-plane > section:nth-of-type(3n+1), .nd-plane section.nd-hue-blue {
  --nd-accent: #1F49E6; --nd-accent-ink: #173BC2; --nd-accent-soft: #E8EEFF;
  --nd-blue-1: #DCE8FF; --nd-blue-2: #6B9BFF; --nd-blue-3: #1F49E6; --nd-blue-4: #12309E;
  --nd-grad-blue: linear-gradient(160deg, #6B9BFF 0%, #1F49E6 55%, #12309E 100%); --nd-slab-bg: #EFF4FF; }
/* amber tiles carry dark glyphs, like the amber stat tile */
.nd-plane > section:nth-of-type(3n) .nd-tile:not(.nd-tile--violet), .nd-plane section.nd-hue-amber .nd-tile:not(.nd-tile--violet) { color: #2A1B00; }
/* the hero and its glow stay blue; the pricing "popular" plate stays blue */
.nd-plane > section.hp-hero, .nd-plane > section.nd-phero { --nd-accent: #1F49E6; --nd-accent-ink: #173BC2; --nd-accent-soft: #E8EEFF; }


/* ============================================================================
   HERO v6 (2026-09-08) — Consumo's hero, one for one: white → yellow wash,
   "New" pill with a black mini-pill, 72px headline with an italic serif last
   word, one sentence, one pill button, a 1:2 card row (dark statement card +
   render card with a floating widget), the logo row on the yellow.
   ========================================================================== */
.nd-plane .hp-hero.nd-hero-consumo { background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEA 38%, #FFF0B3 70%, #FFDC57 100%) !important; }
.nd-hero-new { display: inline-flex; align-items: center; gap: 10px; padding: 5px 14px 5px 5px; border-radius: 999px; background: #FFFFFF; box-shadow: 0 1px 2px rgba(11, 14, 20, .06); font-size: 14px; font-weight: 500; color: var(--nd-ink); }
.nd-hero-new i { font-style: normal; background: var(--nd-ink); color: #FFFFFF; border-radius: 999px; padding: 6px 10px; font-size: 13px; font-weight: 600; line-height: 1; }
.nd-hero-consumo .nd-display { font-size: clamp(38px, 5vw, 72px) !important; font-weight: 700 !important; letter-spacing: -.04em !important; line-height: 1 !important; max-width: 820px; }
.nd-hero-consumo .nd-display .nd-serif-accent { font-size: 1.02em; color: rgba(11, 14, 20, .5); }
.nd-hero-consumo .nd-lead { color: var(--nd-ink) !important; font-size: 20px !important; line-height: 1.3 !important; max-width: 480px; font-weight: 500; }
.nd-hero-cards { display: grid; grid-template-columns: minmax(0, 294fr) minmax(0, 586fr); gap: 20px; width: 100%; max-width: 900px; margin: clamp(40px, 5vw, 56px) auto 0; }
.nd-hero-dark { position: relative; overflow: hidden; border-radius: 24px; background: #0B0E14; color: #FFFFFF; padding: 30px; min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; text-align: left; }
.nd-hero-dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1.3px); background-size: 14px 14px; opacity: .6; }
.nd-hero-dark > * { position: relative; }
.nd-hero-dark__i { width: 60px; height: 60px; border-radius: 50%; background: rgba(255, 255, 255, .08); display: grid; place-items: center; }
.nd-hero-dark h3 { font-family: var(--nd-sans) !important; font-size: 30px !important; font-weight: 600 !important; letter-spacing: -.02em !important; line-height: 1.12 !important; margin: 0; color: #FFFFFF; }
.nd-hero-dark .nd-btn--outline { background: transparent !important; color: #FFFFFF !important; border-color: rgba(255, 255, 255, .5) !important; margin-top: 18px; box-shadow: none; }
.nd-hero-dark .nd-btn--outline:hover { background: rgba(255, 255, 255, .1) !important; }
.nd-hero-photo { position: relative; overflow: hidden; border-radius: 24px; min-height: 380px; background: #EAF0FF; }
.nd-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nd-hero-widget { position: absolute; left: 20px; bottom: 20px; width: min(320px, calc(100% - 40px)); background: rgba(255, 255, 255, .96); border-radius: 18px; padding: 18px 20px; text-align: left; box-shadow: 0 20px 50px -24px rgba(7, 13, 36, .45); backdrop-filter: blur(6px); }
.nd-hero-widget b { display: block; font-size: 18px; font-weight: 600; color: var(--nd-ink); }
.nd-hero-widget small { display: block; font-size: 13px; color: var(--nd-ink-3); margin-top: 2px; }
.nd-hero-widget .nd-hero-widget__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 14px; }
.nd-hero-widget .nd-hero-widget__n { font-family: var(--nd-display); font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--nd-ink); }
.nd-hero-widget .nd-hero-widget__live { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #F2F4F7; font-size: 13px; font-weight: 500; color: var(--nd-ink); }
.nd-hero-widget .nd-hero-widget__live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
.nd-hero-consumo .hp-hero-trust { margin-top: clamp(36px, 4vw, 48px); }
.nd-hero-consumo .nd-marquee img { opacity: .55; }
.nd-hero-consumo .nd-cap { color: var(--nd-ink-2); }
@media (max-width: 767px) { .nd-hero-cards { grid-template-columns: 1fr; } .nd-hero-dark, .nd-hero-photo { min-height: 300px; } }


/* ============================================================================
   CONSUMO TYPE + PANELS (2026-09-08) — founder: "their typography and font also
   good"; "instead of yellow, use our blue"; keep the dark dotted CTA panel and
   the gradient footer panel from Consumo. Uncut Sans is not downloadable, so
   Inter Tight 800 stands in for its weight 1000; the italic word is Instrument
   Serif (Consumo's own). Body copy sits at 20/1.3 weight 500 like theirs.
   ========================================================================== */
:root { --nd-serif: "Instrument Serif", "Newsreader", Georgia, serif; }
.nd-plane :is(h1, .nd-display) { font-weight: 800 !important; letter-spacing: -.04em !important; line-height: 1 !important; }
.nd-plane :is(h2, .nd-h2) { font-weight: 800 !important; letter-spacing: -.03em !important; line-height: 1.02 !important; font-size: clamp(30px, 3.4vw, 48px) !important; }
.nd-plane .nd-h3 { font-weight: 700 !important; }
.nd-plane .nd-lead { font-size: 20px !important; line-height: 1.3 !important; font-weight: 500 !important; color: var(--nd-ink) !important; letter-spacing: -.01em; }
.nd-plane .nd-shead .nd-lead { color: rgba(11, 14, 20, .5) !important; }
.nd-plane .nd-serif-accent { font-family: var(--nd-serif) !important; font-style: italic; font-weight: 400 !important; letter-spacing: -.02em; color: rgba(11, 14, 20, .5); }
.nd-plane :is(.nd-card2__p, .nd-bcard__p, .nd-fcard span, .nd-icol p, .nd-pcard__scope, .nd-ccard span, .nd-person span) { font-size: 16px; line-height: 1.4; }

/* the hero wash in our blue (light → cobalt, one hue) */
.nd-plane .hp-hero.nd-hero-consumo { background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FF 36%, #DCE8FF 68%, #9EBBFF 100%) !important; }
.nd-hero-consumo .nd-marquee img { filter: grayscale(1) brightness(.4); opacity: .55; }

/* Consumo's CTA: a dark dotted panel, centred, white pill */
.nd-cta-dark { position: relative; overflow: hidden; border-radius: 32px; background: #0B0E14; color: #FFFFFF; padding: clamp(56px, 8vw, 100px) clamp(24px, 5vw, 80px) clamp(48px, 7vw, 80px); text-align: center; }
.nd-cta-dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1.3px); background-size: 14px 14px; opacity: .55; }
.nd-cta-dark > * { position: relative; }
.nd-cta-dark .nd-h2 { color: #FFFFFF; font-size: clamp(34px, 4.4vw, 62px) !important; max-width: 14ch; margin: 0 auto; }
.nd-cta-dark .nd-lead { color: rgba(255, 255, 255, .6) !important; max-width: 44ch; margin: 20px auto 0; }
.nd-cta-dark .nd-btn--light { margin-top: 30px; }
.nd-cta-dark .nd-cap { color: rgba(255, 255, 255, .5); margin-top: 22px; }
.nd-cta-dark .nd-cap a { color: #FFFFFF; }
.nd-btn--light, .nd-btn--light:hover, .nd-btn--light:focus-visible { background: #FFFFFF !important; color: var(--nd-ink) !important; border-color: #FFFFFF !important; }

/* Consumo's footer: a rounded panel 10px from the edges, white → our blue, big wordmark */
.nd-ft { margin: 10px !important; border-radius: 32px !important; border-top: 0 !important;
  background: linear-gradient(180deg, #F7F8FB 0%, #EEF3FF 55%, #B9CEFF 100%) !important; }
.nd-ft .nd-ft-top { border-bottom: 0 !important; align-items: start !important; }
.nd-ft-word { display: block; font-family: var(--nd-display) !important; font-weight: 800; font-size: clamp(44px, 6.5vw, 96px); letter-spacing: -.05em; line-height: .95; color: var(--nd-ink); margin: 18px 0 0; }
.nd-ft .nd-ft-prop { color: rgba(11, 14, 20, .5) !important; font-size: 22px !important; line-height: 1.3 !important; max-width: 440px; }
.nd-ft .nd-ft-mail { font-size: 17px !important; font-weight: 500 !important; text-decoration-color: rgba(11, 14, 20, .35) !important; }
.nd-ft .nd-ft-cols { border-top: 0 !important; }
.nd-ft .nd-ft-legal { border-top: 1px solid rgba(11, 14, 20, .12) !important; }
@media (max-width: 767px) { .nd-ft { margin: 6px !important; border-radius: 24px !important; } }


/* testimonial card height (founder: "height need to reduce"): Agently's 580px media column, not a fluid half */
.nd-tcard { grid-template-columns: minmax(0, 520px) minmax(0, 1fr); align-items: center; }
.nd-tcard__media { aspect-ratio: 1280 / 950; }
@media (max-width: 1023px) { .nd-tcard { grid-template-columns: 1fr; } }


/* ============================================================================
   ABOUT MARQUEE (2026-09-08) — Agently's About row: a marquee of 300px cards,
   radius 24: white quote cards (avatar + name + quote), blue-gradient stat cards
   (big number + label), photo cards. Ours: the Clutch review, our four real
   numbers, the team portraits.
   ========================================================================== */
.nd-amq { position: relative; overflow: hidden; margin-top: clamp(40px, 5vw, 56px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%); }
.nd-amq__track { display: flex; gap: 32px; width: max-content; padding: 4px 0; animation: nd-amq 60s linear infinite; list-style: none; margin: 0; }
.nd-amq__track li { margin: 0; padding: 0; list-style: none; }
.nd-amq:hover .nd-amq__track { animation-play-state: paused; }
@keyframes nd-amq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .nd-amq__track { animation: none; } }
.nd-acard { position: relative; width: 304px; height: 304px; border-radius: 24px; overflow: hidden; box-sizing: border-box; background: #F7F7F7; border: 1px solid #EBEBEB; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; text-align: left; }
.nd-acard--photo { padding: 0; border: 0; }
.nd-acard--photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.nd-acard--stat { background: linear-gradient(160deg, #3E6EFF 0%, #1F49E6 55%, #12309E 100%); border: 0; color: #FFFFFF; }
.nd-acard--stat.is-violet { background: var(--nd-grad-violet); }
.nd-acard--stat.is-amber { background: var(--nd-grad-amber); color: #2A1B00; }
.nd-acard--stat::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .28) 1px, transparent 1.3px); background-size: 12px 12px; opacity: .45; }
.nd-acard--stat > * { position: relative; }
.nd-acard__logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.nd-acard__big { font-family: var(--nd-display); font-size: 56px; font-weight: 700; letter-spacing: -.03em; line-height: 1; margin: 0; }
.nd-acard__lbl { font-size: 17px; font-weight: 500; margin: 8px 0 0; opacity: .95; }
.nd-acard__who { display: flex; align-items: center; gap: 12px; }
.nd-acard__who img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; }
.nd-acard__who b { display: block; font-size: 16px; font-weight: 600; color: var(--nd-ink); }
.nd-acard__who span { display: block; font-size: 13px; color: var(--nd-ink-3); }
.nd-acard__q { font-size: 18px; line-height: 1.35; font-weight: 500; color: var(--nd-ink); margin: 0; letter-spacing: -.01em; }
@media (max-width: 639px) { .nd-acard { width: 250px; height: 250px; padding: 20px; } .nd-acard__big { font-size: 44px; } .nd-acard__q { font-size: 16px; } }


/* ============================================================================
   FINAL POLISH (2026-09-08) — Agently's measured values applied: ink #070D24,
   body grey #5A6170, meta #8C9296, ground alt #F7F7F7, hairline #EBEBEB, tile
   ring #80A8FF, section padding 100 / header gap 60, nav 80px with 16px links,
   48px pill buttons at 16px with the circle-arrow, layered micro-shadows and a
   hover lift on cards. Violet/amber tuned to sit beside the cobalt.
   ========================================================================== */
:root {
  --nd-ink: #070D24; --nd-ink-2: #3D4354; --nd-ink-3: #5A6170; --nd-ink-4: #8C9296;
  --nd-band: #F7F7F7; --nd-card-line: #EBEBEB;
  --nd-violet-3: #6A3EF0; --nd-violet-4: #4A22B8; --nd-amber-3: #F0A500; --nd-amber-4: #B06F00;
  --nd-sec: clamp(56px, 7vw, 100px);
  --nd-shadow-card: 0 1px 2px rgba(7, 13, 36, .04), 0 4px 12px rgba(7, 13, 36, .04), 0 16px 32px -24px rgba(7, 13, 36, .18);
}
.nd-plane .nd-section { padding-block: var(--nd-sec); }
.nd-sbody { margin-top: 60px; }
.nd-plane .nd-shead .nd-lead { color: #5A6170 !important; font-weight: 500 !important; }
.nd-plane :is(.nd-card2__p, .nd-bcard__p, .nd-fcard span, .nd-icol p, .nd-pcard__scope, .nd-ccard span, .nd-person span, .nd-slab-steps p, .nd-faq details p, .nd-tcard__more) { color: #5A6170; }

/* nav: 80px, 16px links, cobalt pill with the circle-arrow */
:root { --nd-nav-h: 80px; }
.nd-nav .nd-nav-bar { height: 80px; }
.nd-nav.is-scrolled .nd-nav-bar { height: 64px; }
.nd-nav-links a { font-size: 16px !important; color: #5A6170 !important; }
.nd-nav-links a:hover, .nd-nav-links a[aria-current="page"] { color: var(--nd-ink) !important; }
.nd-nav .nd-btn, .nd-nav-sheet .nd-btn { height: 44px !important; padding: 0 6px 0 18px !important; font-size: 15px !important; gap: 10px; }
.nd-btn--arrow::after, .nd-nav .nd-btn::after { content: ""; width: 28px; height: 28px; border-radius: 50%; background: #FFFFFF
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F49E6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center / 14px no-repeat; flex: none; }
.nd-btn--arrow { padding-right: 8px !important; gap: 12px; }
.nd-btn { font-size: 16px !important; }
.nd-nav-sheet .nd-btn::after { display: none; }

/* icon tiles: Agently's 1px light-blue ring */
.nd-tile { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 8px 16px -10px rgba(31, 73, 230, .45); }

/* cards: layered micro-shadow, hover lift */
.nd-bcard, .nd-card2, .nd-pcard, .nd-faq details { box-shadow: var(--nd-shadow-card); }
.nd-bcard:hover, a.nd-card2:hover, .nd-ccard:hover .nd-ccard__img, .nd-person:hover { transform: translateY(-4px); box-shadow: 0 1px 2px rgba(7, 13, 36, .04), 0 12px 24px -12px rgba(7, 13, 36, .18), 0 32px 56px -32px rgba(7, 13, 36, .28); }
.nd-ccard__img { transition: transform var(--nd-dur) var(--nd-ease), box-shadow var(--nd-dur) var(--nd-ease); }
.nd-bcard__plate img, .nd-srow__tile img { transition: transform .6s var(--nd-ease); }
.nd-bcard:hover .nd-bcard__plate img { transform: scale(1.03); }

/* eyebrow dot: Agently's gradient dot */
.nd-eyebrow::before { background: linear-gradient(#4485FC 0%, var(--nd-accent) 100%); }

/* hero: nav offset */
.nd-plane .hp-hero, .nd-plane .nd-phero { padding-top: clamp(120px, 10vw, 150px) !important; }


/* ============================================================================
   GRADIENTS (2026-09-08) — founder: "use our 3 colours on the hero; I want
   gradient more than solid colour". The hero and the footer fade from white
   into a blue → violet → amber band (the mark's three hues, light at the top);
   primary buttons are the cobalt light→dark gradient; the dark CTA panel gets a
   soft three-hue glow along its bottom edge.
   ========================================================================== */
.nd-plane .hp-hero.nd-hero-consumo {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 22%, rgba(255, 255, 255, .55) 55%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, #9EBBFF 0%, #B392FF 50%, #FFD166 100%) !important; }
.nd-plane .nd-phero { background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 30%, rgba(255, 255, 255, .7) 70%, rgba(255, 255, 255, .2) 100%),
    linear-gradient(90deg, #DCE8FF 0%, #EAE2FF 50%, #FFF3CC 100%) !important; }
.nd-ft { background:
    linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, .85) 45%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(90deg, #9EBBFF 0%, #B392FF 50%, #FFD166 100%) !important; }
.nd-btn, .nd-nav .nd-btn, .nd-nav-sheet .nd-btn, .nd-btn:hover, .nd-btn:focus-visible, .nd-nav .nd-btn:hover {
  background: linear-gradient(160deg, #4A78FF 0%, #1F49E6 55%, #12309E 100%) !important; }
.nd-btn:hover, .nd-nav .nd-btn:hover { filter: brightness(1.08); }
.nd-btn--outline, .nd-btn--outline:hover { background: #FFFFFF !important; filter: none; }
.nd-btn--text, .nd-btn--text:hover { background: transparent !important; filter: none; }
.nd-btn--light, .nd-btn--light:hover, .nd-btn--light:focus-visible { background: #FFFFFF !important; filter: none; }
.nd-cta-dark { background:
    radial-gradient(40% 55% at 12% 108%, rgba(107, 155, 255, .55) 0%, rgba(107, 155, 255, 0) 70%),
    radial-gradient(40% 55% at 50% 112%, rgba(179, 146, 255, .5) 0%, rgba(179, 146, 255, 0) 70%),
    radial-gradient(40% 55% at 88% 108%, rgba(255, 209, 102, .5) 0%, rgba(255, 209, 102, 0) 70%),
    #0B0E14; }
.nd-hero-dark { background:
    radial-gradient(60% 60% at 100% 100%, rgba(107, 155, 255, .35) 0%, rgba(107, 155, 255, 0) 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(179, 146, 255, .3) 0%, rgba(179, 146, 255, 0) 70%),
    #0B0E14; }
.nd-hero-consumo .nd-marquee img { filter: grayscale(1) brightness(.25); opacity: .6; }
.nd-hero-consumo .nd-cap { color: var(--nd-ink); }


/* cursor spotlight on the dark CTA (Consumo): the dot grid lights up around the pointer and a soft glow follows it */
.nd-cta-dark { --mx: 50%; --my: 60%; }
.nd-cta-dark::before { opacity: .3; }
.nd-cta-dark .nd-cta-spot { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .35s ease; }
.nd-cta-dark.is-hover .nd-cta-spot { opacity: 1; }
.nd-cta-dark .nd-cta-spot::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .9) 1.2px, transparent 1.6px); background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(240px circle at var(--mx) var(--my), #000 0%, rgba(0, 0, 0, .5) 45%, transparent 100%);
  mask-image: radial-gradient(240px circle at var(--mx) var(--my), #000 0%, rgba(0, 0, 0, .5) 45%, transparent 100%); }
.nd-cta-dark .nd-cta-spot::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(107, 155, 255, .28) 0%, rgba(179, 146, 255, .14) 40%, transparent 70%); }
@media (hover: none), (prefers-reduced-motion: reduce) { .nd-cta-dark .nd-cta-spot { display: none; } .nd-cta-dark::before { opacity: .5; } }


/* ============================================================================
   REVIEW FIXES (2026-09-08, Stage 3 reviewers) — links, checks and FAQ toggles
   stay cobalt in every section (only tiles, swooshes, slabs and the pill dot
   take the section hue); explicit tile/stat hues; concept/related cards on one
   4:3 plate; grey row leads; 44px tap targets; contact and pricing phone fixes.
   ========================================================================== */
.nd-plane > section:nth-of-type(3n), .nd-plane section.nd-hue-amber,
.nd-plane > section:nth-of-type(3n+2), .nd-plane section.nd-hue-violet { --nd-accent: #1F49E6; --nd-accent-ink: #173BC2; --nd-accent-soft: #E8EEFF; }
.nd-eyebrow::before { background: linear-gradient(#FFFFFF33 0%, var(--nd-blue-3) 100%), var(--nd-blue-3); }
.nd-tile--blue, .nd-tile--blue.nd-tile { background: linear-gradient(160deg, #6B9BFF 0%, #1F49E6 55%, #12309E 100%); color: #FFFFFF; }
.nd-stat--blue { background: linear-gradient(160deg, #6B9BFF 0%, #1F49E6 55%, #12309E 100%) !important; }
.nd-stat--sky { background: linear-gradient(160deg, #8FD8FF 0%, #2F8FFF 55%, #1C5FD6 100%) !important; }
.nd-stat--violet { background: linear-gradient(160deg, #B392FF 0%, #6A3EF0 55%, #4A22B8 100%) !important; }
.nd-stat--amber { background: linear-gradient(160deg, #FFD166 0%, #F0A500 60%, #B06F00 100%) !important; }
.nd-ccard__img { aspect-ratio: 4 / 3; object-fit: contain; background: #F7F7F7; padding: 4%; box-sizing: border-box; }
.nd-plane .nd-lead { color: #5A6170 !important; }
.nd-plane .nd-hero-c .nd-lead { color: var(--nd-ink) !important; }
.nd-plane .nd-cta-dark .nd-lead { color: rgba(255, 255, 255, .6) !important; }
.nd-plane .nd-btn.nd-btn--text { min-height: 44px !important; display: inline-flex; align-items: center; }
.nd-nav-brand { min-height: 44px; display: inline-flex; align-items: center; }
.nd-ft .nd-ft-mail, .nd-ft .nd-ft-mono a, .nd-ft .nd-ft-legal a { display: inline-block; padding: 10px 0; margin: -10px 0; }
.nd-pg-post .prose .nd-toc { gap: 0 !important; } .nd-pg-post .prose .nd-toc a { display: block; padding: 10px 0; }
.co-toc a { min-height: 40px !important; text-decoration: none !important; }
.nd-pg-terms .co-read, .co-read { margin-inline: auto; }
.nd-bcell--render { padding: 0; background: #F7F7F7; }
.nd-bcell--render img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 6%; box-sizing: border-box; }
@media (max-width: 1023px) {
  .nd-company .co-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .nd-company .co-cal > *, .nd-company .co-cal iframe { min-width: 0 !important; max-width: 100%; }
}
@media (max-width: 420px) {
  .nd-company .co-cal { padding: 12px !important; }
  .nd-ptabs button { padding: 8px 12px; font-size: 14px; white-space: nowrap; }
  .nd-ptabs { max-width: 100%; overflow-x: auto; }
}
.nd-pg-team .nd-person img { aspect-ratio: 4 / 4.6 !important; object-fit: cover !important; background: none !important; }


/* quote builder on the light pricing page: chips and the primary button in the system's colours */
body .nd-qb-preset { color: var(--nd-ink-2) !important; border-color: var(--nd-card-line) !important; background: #FFFFFF !important; min-height: 40px; }
body .nd-qb-preset.on, body .nd-qb-preset:hover { background: var(--nd-ink) !important; color: #FFFFFF !important; border-color: var(--nd-ink) !important; }
body .nd-qb-cta { background: linear-gradient(160deg, #4A78FF 0%, #1F49E6 55%, #12309E 100%) !important; color: #FFFFFF !important; border-color: transparent !important; }
body .nd-qb-chip.on { border-color: var(--nd-accent) !important; background: var(--nd-accent-soft) !important; }


/* ============================================================================
   2026-09-10 — (a) the capabilities slab had too much empty area: tighter
   padding, a 400px square; (b) SELECTED WORK as the founder's own site does it
   (guljarhosen.com): identical full-width case cards, radius 24, tinted plate
   per card in the mark's three hues, text 505 / media 556 (16:11, render whole),
   italic serif industry line, Scope / Role grid, white pill button, and the
   sticky stacking scroll — each card sticks 14px lower than the one before;
   (c) the sub-service index on /services.
   ========================================================================== */
.nd-slab { padding: clamp(32px, 4.5vw, 56px) clamp(24px, 4vw, 56px); }
.nd-benefit { margin-top: 40px; gap: clamp(32px, 6vw, 80px); }
.nd-benefit__sq { max-width: 400px; margin-inline: auto; width: 100%; }
.nd-benefit__text .nd-lead { margin-top: 10px; }
.nd-benefit__checks { margin-top: 22px; gap: 10px 24px; }

.nd-stack { --stack-top: 96px; position: relative; margin-top: 56px; }
.nd-case { position: sticky; top: calc(var(--stack-top) + var(--i, 0) * 14px); margin: 0 0 24px; box-sizing: border-box;
  display: grid; grid-template-columns: minmax(0, 505fr) minmax(0, 556fr); gap: clamp(28px, 4vw, 56px); align-items: center;
  padding: clamp(24px, 3vw, 36px); border-radius: 24px; background: var(--nd-case-bg, #DCE8FF); border: 1px solid rgba(7, 13, 36, .06);
  box-shadow: 0 -12px 40px -24px rgba(10, 30, 80, .25), 0 24px 48px -32px rgba(10, 30, 80, .25); }
.nd-case--blue { --nd-case-bg: #DCE8FF; --nd-case-bg2: #CFE0FF; }
.nd-case--violet { --nd-case-bg: #EAE2FF; --nd-case-bg2: #DFD3FF; }
.nd-case--amber { --nd-case-bg: #FFF3CC; --nd-case-bg2: #FFEBAF; }
.nd-case:hover { background: var(--nd-case-bg2, var(--nd-case-bg)); }
.nd-case__ind { font-family: var(--nd-serif) !important; font-style: italic; font-size: 19px; color: var(--nd-ink-3); margin: 0; letter-spacing: -.01em; }
.nd-case__t { font-family: var(--nd-display) !important; font-size: clamp(24px, 2.4vw, 32px) !important; font-weight: 800 !important; letter-spacing: -.03em !important; line-height: 1.08 !important; margin: 10px 0 0; color: var(--nd-ink); }
.nd-case__p { margin: 12px 0 0; font-size: 17px; line-height: 1.5; color: #3D4354; max-width: 50ch; }
.nd-case__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(7, 13, 36, .12); }
.nd-case__meta b { display: block; font-size: 16px; font-weight: 700; color: var(--nd-ink); }
.nd-case__meta span { display: block; font-size: 15px; line-height: 1.45; color: #3D4354; margin-top: 4px; }
.nd-case .nd-btn--outline { margin-top: 24px; height: 50px !important; border-radius: 14px !important; }
.nd-case__media { position: relative; overflow: hidden; border-radius: 16px; background: #FFFFFF; aspect-ratio: 16 / 11; border: 1px solid rgba(7, 13, 36, .06); }
.nd-case__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 4%; box-sizing: border-box; transition: transform .6s var(--nd-ease); }
.nd-case:hover .nd-case__media img { transform: scale(1.03); }
@media (max-width: 1023px) { .nd-case { grid-template-columns: 1fr; } .nd-case__media { order: -1; } }
@media (max-width: 767px) { .nd-case { position: static; padding: 16px 16px 22px; border-radius: 18px; margin-bottom: 16px; } .nd-stack { margin-top: 32px; } .nd-case__meta { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .nd-case { position: static; } }

.nd-svc-group { margin-top: 48px; }
.nd-svc-group + .nd-svc-group { margin-top: 56px; }
.nd-svc-group__h { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 0 0 18px; }
.nd-svc-group__h h3 { font-family: var(--nd-sans) !important; font-size: 22px !important; font-weight: 700 !important; letter-spacing: -.02em !important; margin: 0; color: var(--nd-ink); }
.nd-svc-group__h a { font-size: 15px; font-weight: 500; color: var(--nd-accent-ink); text-decoration: none; white-space: nowrap; }
.nd-svc-group .nd-fcard { min-height: 72px; padding: 12px 18px; text-decoration: none; }
.nd-svc-group .nd-fcard .nd-tile { width: 32px; height: 32px; border-radius: 8px; font-size: 12px; font-weight: 600; }
.nd-svc-group .nd-fcard b { font-size: 16px; }


/* ============================================================================
   2026-09-10 — brand on the pricing cards (founder: "our branding is not on the
   pricing card"): each column's head plate takes one of the mark's hues, light
   → white; the popular plate is the violet one with the cobalt gradient button;
   the "Popular" pill and the active tab are the cobalt gradient. Inner-page
   heroes take the home hero's tri-hue wash (founder: "Studio page hero is good").
   ========================================================================== */
.nd-pgrid .nd-pcard:nth-child(3n+1) .nd-pcard__head { background: linear-gradient(180deg, #DCE8FF 0%, #FFFFFF 100%); }
.nd-pgrid .nd-pcard:nth-child(3n+2) .nd-pcard__head { background: linear-gradient(180deg, #EAE2FF 0%, #FFFFFF 100%); }
.nd-pgrid .nd-pcard:nth-child(3n) .nd-pcard__head { background: linear-gradient(180deg, #FFF3CC 0%, #FFFFFF 100%); }
.nd-pgrid .nd-pcard--popular { border-color: rgba(31, 73, 230, .35); box-shadow: 0 1px 2px rgba(7, 13, 36, .04), 0 24px 48px -28px rgba(31, 73, 230, .35); }
.nd-pgrid .nd-pcard--popular .nd-pcard__head { background: linear-gradient(180deg, #DCE8FF 0%, #EAE2FF 55%, #FFFFFF 100%); }
.nd-pcard__pop { background: linear-gradient(160deg, #4A78FF 0%, #1F49E6 55%, #12309E 100%) !important; color: #FFFFFF !important; border: 0 !important; }
.nd-pcard__price { color: var(--nd-ink); }
.nd-pcard__list li::before { border-color: #1F49E6; background-color: #E8EEFF; }
.nd-ptabs button[aria-selected="true"] { background: linear-gradient(160deg, #4A78FF 0%, #1F49E6 55%, #12309E 100%); color: #FFFFFF; }
.nd-plane .nd-phero {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 26%, rgba(255, 255, 255, .6) 60%, rgba(255, 255, 255, .05) 100%),
    linear-gradient(90deg, #9EBBFF 0%, #B392FF 50%, #FFD166 100%) !important; }
.nd-plane .nd-phero .nd-hero-frame { box-shadow: 0 40px 80px -36px rgba(7, 13, 36, .5); }

/* ==========================================================================
   2026-09-10 QA PASS — services index tiles, four columns, inner-page hero wash
   ========================================================================== */
/* the numbered tile inherited display:block from the feature-card span rule, so "01" sat in
   the top-left corner of the square; it is a centred grid cell again, and never shrinks. */
.nd-svc-group .nd-fcard .nd-tile { display: inline-grid !important; place-items: center; flex: none; line-height: 1; letter-spacing: 0; }
.nd-svc-group .nd-fcard { align-items: center; }
/* 55 sub-services in three columns ran to four screens; four columns at desktop width. */
@media (min-width: 1200px) { .nd-svc-group .nd-fgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } .nd-svc-group .nd-fcard b { font-size: 15px; } }
@media (min-width: 640px) and (max-width: 1023px) { .nd-svc-group .nd-fgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
/* the sky stat tile everywhere (About stats row, case-study tiles): pale blue with dark ink, the
   same 6:1 fix the home Proof tile already carries — white on #8FD8FF was 1.6:1. */
.nd-plane .nd-stat--sky { background: linear-gradient(160deg, #DCE8FF 0%, #BBD2FF 55%, #93B6FF 100%) !important; color: #0B2A6B !important; }
.nd-plane .nd-stat--sky b, .nd-plane .nd-stat--sky span { color: inherit !important; }

/* ==========================================================================
   2026-09-10 QA PASS — shared fixes from the page sweep (findings #29 #41 #42 #44 #46 #47 #48
   #95 #96 #97 #111). Later blocks win; nothing here touches the home hero.
   ========================================================================== */
/* #29: three-up grids go two-up at tablet, one-up only on phones (Agently never runs one column at 768). */
@media (min-width: 640px) and (max-width: 1023px) { .nd-plane .nd-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
/* #41: the key line sits on the card floor so a three-line body cannot push it below its neighbours. */
.nd-plane .nd-bcard { display: flex; flex-direction: column; }
.nd-plane .nd-bcard__body { display: flex; flex-direction: column; flex: 1 1 auto; }
.nd-plane .nd-bcard__k { margin-top: auto; padding-top: 14px; align-self: flex-start; }
/* #42: renders whole on the dotted plate — no cover crop, even the 3% one. */
.nd-plane .nd-bcard__plate img { object-fit: contain; padding: 4%; box-sizing: border-box; }
/* #44 #96: one header-to-content gap everywhere: 60px. */
.nd-plane .hp-work .nd-sbody, .nd-plane .svc-index .nd-svc-group:first-of-type { margin-top: 60px; }
.nd-svc-group { margin-top: 60px; }
/* #46: the nine-item checklist keeps two columns down to phones. */
@media (min-width: 640px) and (max-width: 1023px) { .nd-benefit__checks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* #47: six What-we-do cards on a phone: shallower plates, tighter frame. */
@media (max-width: 479px) { .nd-plane .nd-bcard__plate { aspect-ratio: 16 / 10; } .nd-plane .nd-bcard { padding: 8px; } .nd-plane .nd-bcard__p { font-size: 15px; } }
/* #48: inline text links keep their look but get a 40px hit area on touch screens. */
@media (max-width: 767px) { .hp-terms a, .hp-also a, .nd-tcard__who a, .hp-cta .nd-cap a, .nd-cta-dark .nd-cap a, .nd-card2__k { display: inline-block; padding: 10px 0; margin: -10px 0; } }
/* #95: a seven-item group centres its last row instead of leaving a hole. */
@media (min-width: 1200px) { .nd-svc-group .nd-fgrid { display: flex; flex-wrap: wrap; justify-content: center; } .nd-svc-group .nd-fgrid > * { flex: 0 0 calc((100% - 48px) / 4); } }
/* #97: the group header stacks on phones so "Web Development" is not squeezed beside its link. */
@media (max-width: 639px) { .nd-svc-group__h { flex-direction: column; align-items: flex-start; gap: 4px; } .nd-svc-group__h a { white-space: normal; } }
/* #111: Fizens' benefit block is a tinted slab, not a square floating on white. The tint follows the section hue. */
.nd-plane .nd-benefit { padding: clamp(24px, 3.5vw, 48px); border-radius: 24px; background: #F3F6FF; }
.nd-plane > section:nth-of-type(3n+2) .nd-benefit, .nd-plane section.nd-hue-violet .nd-benefit { background: #F6F2FF; }
.nd-plane > section:nth-of-type(3n) .nd-benefit, .nd-plane section.nd-hue-amber .nd-benefit { background: #FFF8E6; }
.nd-plane .nd-slab .nd-benefit { padding: 0; background: transparent; border-radius: 0; }
/* #36: the nav pill carries the full label. */
.nd-nav .nd-btn { white-space: nowrap; }

/* ==========================================================================
   2026-09-10 FOUNDER ROUND — case cards, button hover, slab plate
   ========================================================================== */
/* "when my mouse there colour change, this is not good": the case card keeps its tint on hover
   and the render does not zoom; the button is what reacts. */
.nd-case:hover { background: var(--nd-case-bg, #DCE8FF); }
.nd-case:hover .nd-case__media img { transform: none; }
/* "white border on the image, why": the render sits whole in its own rounded box at its own
   ratio — no white plate, no padding, no hairline. */
.nd-case__media { aspect-ratio: auto; background: transparent; border: 0; border-radius: 16px; }
.nd-case__media img { position: static; inset: auto; width: 100%; height: auto; padding: 0; display: block; border-radius: 16px; box-shadow: 0 24px 48px -28px rgba(7, 13, 36, .35); }
/* "button should have a nice hover effect": the filled pill lifts with a cobalt shadow and its
   arrow disc turns to point up-right; the outline pill fills cobalt and lifts the same way. */
.nd-btn { transition: transform .25s var(--nd-ease), box-shadow .25s var(--nd-ease), background-color .25s var(--nd-ease), color .25s var(--nd-ease), border-color .25s var(--nd-ease), filter .25s var(--nd-ease); }
.nd-btn::after { transition: transform .3s var(--nd-ease); }
.nd-btn:hover, .nd-nav .nd-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 28px -16px rgba(31, 73, 230, .7); filter: brightness(1.06); }
.nd-btn--arrow:hover::after, .nd-nav .nd-btn:hover::after { transform: rotate(45deg); }
.nd-btn--outline:hover { background: linear-gradient(160deg, #4A78FF 0%, #1F49E6 55%, #12309E 100%) !important; color: #FFFFFF !important; border-color: transparent !important; box-shadow: 0 16px 28px -16px rgba(31, 73, 230, .7); }
.nd-hero-dark .nd-btn--outline:hover, .nd-cta-dark .nd-btn--light:hover { background: #FFFFFF !important; color: var(--nd-ink) !important; border-color: transparent !important; }
.nd-btn:active, .nd-btn--outline:active { transform: translateY(0); box-shadow: none; }
@media (prefers-reduced-motion: reduce) { .nd-btn, .nd-btn::after { transition: none; } .nd-btn:hover { transform: none; } .nd-btn--arrow:hover::after { transform: none; } }
/* "two background colours and the height": inside a slab the benefit block is not a second plate. */
.nd-plane .nd-slab .nd-benefit, .nd-plane > section .nd-slab .nd-benefit { padding: 0 !important; background: transparent !important; border-radius: 0 !important; }
/* "gradient should be blended, no border visible": the inner-page wash peaks two thirds down and
   melts back into the page colour at the bottom edge — into the grey band when that is what
   follows — so there is no hard line under any hero. The home hero (frozen) has its own rule. */
.nd-plane .nd-phero { background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 16%, rgba(255, 255, 255, .55) 42%, rgba(255, 255, 255, .12) 64%, rgba(255, 255, 255, .72) 88%, #FFFFFF 100%),
    linear-gradient(90deg, #9EBBFF 0%, #B392FF 50%, #FFD166 100%) !important; }
.nd-plane .nd-phero:has(+ .nd-band-grey), .nd-plane .nd-phero:has(+ div > .nd-band-grey:first-child) { background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 16%, rgba(255, 255, 255, .55) 42%, rgba(255, 255, 255, .12) 64%, rgba(247, 247, 247, .72) 88%, #F7F7F7 100%),
    linear-gradient(90deg, #9EBBFF 0%, #B392FF 50%, #FFD166 100%) !important; }
/* the nav pill's hidden-on-narrow "30-minute" span must not become its own flex item (the
   button's 12px gap was splitting "Book a  30-minute  call"). */
.nd-nav .nd-btn > span, .nd-nav-sheet .nd-btn > span { display: contents; }

/* ==========================================================================
   2026-09-16 FAQ — two columns (founder's reference): header + help card left,
   answer cards right. The accordion styling above is unchanged.
   ========================================================================== */
.nd-faqx { display: grid; grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.nd-faqx__head { display: flex; flex-direction: column; align-items: flex-start; text-align: left; position: sticky; top: 104px; }
.nd-faqx__head .nd-h2 { margin-top: 18px; max-width: 16ch; }
.nd-faqx__head .nd-lead { margin-top: 14px; max-width: 42ch; }
.nd-faqx__card { margin-top: clamp(24px, 3vw, 36px); width: 100%; max-width: 420px; box-sizing: border-box;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(20px, 2.2vw, 28px); border-radius: 20px; background: #F7F8FB; border: 1px solid var(--nd-card-line, #EBEBEB); }
.nd-faqx__card > b { display: block; font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: var(--nd-ink); }
.nd-faqx__card > p { margin: 12px 0 0; width: 100%; font-size: 15px; line-height: 1.55; color: #5A6170; }
.nd-faqx__card .nd-btn { margin-top: 18px; }
.nd-faqx__card .nd-btn--text { margin-top: 10px; padding-left: 0; }
.nd-faces { display: flex; list-style: none; margin: 14px 0 0; padding: 0 !important; }
.nd-faces li { margin: 0 0 0 -10px; }
.nd-faces li:first-child { margin-left: 0; }
.nd-faces img { display: block; width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: top;
  border: 2px solid #FFFFFF; box-shadow: 0 2px 6px -2px rgba(7, 13, 36, .35); }
/* the accordion column: full width of its track, no 800px centring, cards flush left */
.nd-plane .nd-faqx .nd-faq { width: 100%; margin-inline: 0; }
/* on the grey band the card needs the opposite ground to stay visible */
.nd-band-grey .nd-faqx__card { background: #FFFFFF; }
@media (max-width: 1023px) {
  .nd-faqx { grid-template-columns: 1fr; gap: 32px; }
  .nd-faqx__head { position: static; }
  .nd-faqx__head .nd-h2, .nd-faqx__head .nd-lead { max-width: none; }
  .nd-faqx__card { max-width: none; }
}
@media (max-width: 639px) { .nd-faqx__card .nd-btn { width: 100%; justify-content: center; } }
/* the third next-step card is a button (it opens the scheduler), so it needs the card's own
   box model rather than the browser's button defaults. */
.nd-plane button.nd-bcard { width: 100%; text-align: left; font: inherit; cursor: pointer; }
