/* ==========================================================================
   WNL RCM — design system
   Editorial. Bone canvas, high-contrast serif display, uppercase mono labels,
   one blue action colour. Brand values come from the logo mark:
     #071A2D  navy   (WNL wordmark, outer chevrons)
     #145DFF  blue   (RCM wordmark, middle chevron)

   Motion: "Corporate" archetype — 160/280/420ms, cubic-bezier(0.2,0,0,1),
   no overshoot. Restrained on purpose; this is a healthcare finance site.
   ========================================================================== */

/* --- tokens --------------------------------------------------------------- */
:root {
  /* canvas + surfaces — neutral grey, per the reference identity */
  --bone:         #F1F1F2;   /* primary canvas */
  --bone-2:       #E7E7E9;   /* alternate band */
  --paper:        #FFFFFF;
  --tint:         var(--bone-2);
  --tint-2:       #DEDEE1;
  --wash:         #E5EDFC;
  --line:         #DCDCDF;
  --line-strong:  #C0C0C6;

  /* brand — the three values named in the reference brand manual.
       Azul Med        #2A67E5   primary
       Azul Escuro Med #0A1A2F   dark plate
       Verde Med       #00E070   action / accent
     Verde is a FILL ONLY: white on it is 1.77:1 and it is 1.56:1 as text on the
     canvas. It always carries ink-coloured text, exactly as the reference does. */
  --navy:         #0A1A2F;
  --ink:          #0A1A2F;   /* Azul Escuro Med — dark cards, footer, bands */
  --ink-2:        #06111F;   /* one step deeper, for the footer base */
  --deep:         #0A1A2F;
  --blue:         #2A67E5;   /* Azul Med */
  --blue-dark:    #1A4CBF;
  --blue-light:   #8FB3F5;
  --green:        #00E070;   /* Verde Med */
  --green-dark:   #00743E;   /* 5.2:1 — the text-safe Verde for light surfaces */
  --green-light:  #5CF5A6;
  /* Azul Med measures 4.46:1 on the canvas — a hair under AA for small text, so
     it is a fill/icon colour only. Blue TYPE uses the darkened value. */
  --blue-text:    #1A4CBF;

  /* text — all AA on both --bone and --bone-2 */
  --text:         #101114;
  --text-body:    #45484F;
  --text-mute:    #5F636B;
  --on-dark:      #FFFFFF;
  --on-dark-dim:  rgba(255, 255, 255, 0.74);

  /* type */
  /* The reference identity is single-typeface — Satoshi, with weight contrast
     doing the work a second family would normally do. --serif and --mono are
     kept as aliases so no rule downstream needs rewriting. */
  --font:         'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif:        var(--font);
  --mono:         var(--font);

  --t-micro:      0.6875rem;
  --t-sm:         clamp(0.8125rem, 0.78rem + 0.15vw, 0.875rem);
  --t-body:       clamp(0.9375rem, 0.90rem + 0.20vw, 1.0625rem);
  --t-lead:       clamp(1.0625rem, 0.98rem + 0.40vw, 1.3125rem);
  --t-h4:         clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --t-h3:         clamp(1.375rem, 1.20rem + 0.75vw, 1.875rem);
  --t-h2:         clamp(2rem,    1.45rem + 2.40vw, 3.75rem);
  --t-h1:         clamp(2.5rem,  1.70rem + 3.60vw, 5.25rem);
  --t-hero:       clamp(2.5rem, 1.55rem + 4.30vw, 5.5rem);

  /* rhythm */
  --gutter:       clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
  --section-y:    clamp(4rem, 2.6rem + 6vw, 9rem);
  --wrap:         1320px;
  --wrap-narrow:  760px;

  --radius:       14px;
  --radius-lg:    18px;

  --sh-1: 0 1px 2px rgba(16, 26, 34, 0.05);
  --sh-2: 0 4px 14px rgba(16, 26, 34, 0.07);
  --sh-3: 0 18px 40px -14px rgba(16, 26, 34, 0.20);
  --sh-blue: 0 12px 28px -10px rgba(20, 93, 255, 0.42);

  /* motion — Corporate archetype. One signature curve, three durations. */
  --ease:      cubic-bezier(0.2, 0, 0, 1);
  --ease-in:   cubic-bezier(0.05, 0.7, 0.1, 1);
  --ease-out:  cubic-bezier(0.3, 0, 1, 1);
  --dur-quick: 160ms;
  --dur-std:   280ms;
  --dur-slow:  420ms;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  background: var(--bone);
  color: var(--text-body);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'ss01';
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Editorial display type. The serif carries every heading; the sans carries
   every paragraph. Nothing else uses the serif. */
:where(h1, h2, h3) {
  font-family: var(--font); font-weight: 500;
  line-height: 1.06; letter-spacing: -0.028em;
  color: var(--text); text-wrap: balance;
}
/* The identity's signature move: a heavier lead word against a light remainder,
   the same contrast the wordmark uses inside a single word. */
.lead-word { font-weight: 700; }
.light-word { font-weight: 300; }
:where(h4) {
  font-family: var(--font); font-weight: 650; line-height: 1.25;
  letter-spacing: -0.01em; color: var(--text);
}
p { text-wrap: pretty; }

::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; top: -100%; left: var(--gutter); z-index: 999;
  background: var(--blue); color: #fff; font-weight: 700;
  padding: 0.75rem 1.25rem; border-radius: 0 0 10px 10px;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- layout primitives ---------------------------------------------------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.6); }
.section--line { border-top: 1px solid var(--line); }
.section--tinted { background: var(--bone-2); }

/* auto-fit alone over-columns on wide screens — 6 cards land as 4 + 2 orphans.
   Fluid below the breakpoint, then pinned to an exact column count above it. */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.4vw, 1.75rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
@media (min-width: 720px)  { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-2 { grid-template-columns: repeat(2, 1fr); }
                             .grid-3 { grid-template-columns: repeat(3, 1fr); }
                             .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

/* --- ambient field -------------------------------------------------------- */
.aurora {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.aurora::before {
  content: ''; position: absolute; border-radius: 50%;
  width: min(120vw, 1180px); aspect-ratio: 2 / 1;
  left: 50%; top: -46%; translate: -50% 0;
  filter: blur(80px); will-change: transform;
  background: radial-gradient(ellipse at center, rgba(20, 93, 255, 0.10) 0%, transparent 68%);
  animation: field-drift 30s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
@keyframes field-drift {
  from { transform: translate3d(-3%, 0, 0) scale(1); }
  to   { transform: translate3d(4%, 3%, 0) scale(1.1); }
}
/* Grain reads as dirt on a light canvas. No-op so templates need not change. */
.grain { display: none; }

.rule-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 35%, #000 70%, transparent);
  opacity: 0.55;
}
@media (max-width: 700px) { .rule-grid { background-size: calc(100% / 3) 100%; } }

/* --- micro-label ---------------------------------------------------------- */
.micro {
  font-family: var(--font); font-size: var(--t-micro); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute);
  display: flex; align-items: center; gap: 0.75rem;
}
.micro::after {
  content: ''; flex: 1 1 auto; height: 1px; min-width: 1.5rem;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}
.micro--center { justify-content: center; }
.micro--center::after { display: none; }
.micro b { color: var(--blue-text); font-weight: 500; }
/* square bullet marker, as used on the reference */
.micro--dot::before {
  content: ''; width: 7px; height: 7px; background: var(--blue); flex: none;
}

/* --- type helpers --------------------------------------------------------- */
.display { font-family: var(--font); font-weight: 500; font-size: var(--t-hero); line-height: 1.02; letter-spacing: -0.034em; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); }
.h4 { font-size: var(--t-h4); }
.lede { font-size: var(--t-lead); color: var(--text-body); line-height: 1.55; max-width: 60ch; }
.dim  { color: var(--text-body); }
.mute { color: var(--text-mute); }
.amber { color: var(--blue-text); }   /* legacy hook — accent is blue */
.lum { font-style: italic; }          /* editorial emphasis in the hero */
.measure { max-width: 68ch; }

/* --- announcement bar ----------------------------------------------------- */
.announce {
  background: var(--blue); color: #fff; position: relative; z-index: 70;
  font-size: var(--t-sm);
}
.announce .wrap { display: flex; align-items: center; justify-content: center; gap: 0.75rem; min-height: 44px; padding-block: 0.5rem; text-align: center; }
.announce a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.announce a:hover { text-decoration-thickness: 2px; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font); font-weight: 600; font-size: var(--t-micro);
  letter-spacing: 0.13em; text-transform: uppercase;
  cursor: pointer; position: relative;
  transition: background var(--dur-quick) var(--ease),
              box-shadow var(--dur-std) var(--ease),
              transform var(--dur-quick) var(--ease);
}
.btn:hover { background: var(--blue); box-shadow: var(--sh-blue); transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: 80ms; }

.btn--primary { --btn-bg: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); }

/* Verde Med action button. White on Verde is 1.77:1, so the label is always
   ink — the same call the reference identity makes on its own CTA. */
.btn--go { --btn-bg: var(--green); --btn-fg: var(--ink); font-weight: 700; }
.btn--go:hover { background: var(--green-light); color: var(--ink); box-shadow: 0 12px 28px -10px rgba(0, 224, 112, 0.55); }
.section--blue .btn--go, .section--ink .btn--go, .video-band .btn--go, .hero--full .btn--go {
  --btn-bg: var(--green); --btn-fg: var(--ink);
}
.section--blue .btn--go:hover, .section--ink .btn--go:hover { background: var(--green-light); color: var(--ink); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: transparent; border-color: var(--ink); color: var(--ink); box-shadow: none; }

.btn--lg { padding: 1.05rem 2rem; font-size: var(--t-sm); letter-spacing: 0.1em; }
.btn--block { width: 100%; }

.arrow { transition: translate var(--dur-quick) var(--ease); }
.btn:hover .arrow, .card:hover .arrow, .ed-row:hover .arrow { translate: 3px 0; }

/* --- cards ---------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  transition: border-color var(--dur-std) var(--ease),
              box-shadow var(--dur-std) var(--ease),
              transform var(--dur-std) var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--sh-3); transform: translateY(-2px); }
.card--link:focus-within { border-color: var(--blue); box-shadow: var(--sh-3); }

.card__idx {
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.14em;
  color: var(--text-mute); display: block; margin-bottom: 0.9rem;
}
.card h3 { font-family: var(--font); font-weight: 650; font-size: var(--t-h4); letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 0.55rem; }
.card p { color: var(--text-body); font-size: var(--t-sm); }
.card__stretch::after { content: ''; position: absolute; inset: 0; z-index: 1; }

/* image cards — dark plate, title top-left, index top-right (reference style) */
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; background: var(--ink); border-color: transparent; }
.card--media .card__body { padding: clamp(1.3rem, 1rem + 1vw, 1.75rem); flex: 1 1 auto; }
.card--media h3 { color: #fff; }
.card--media p { color: var(--on-dark-dim); }
.card--media .card__idx { color: rgba(255, 255, 255, 0.55); }
.card__media { position: relative; overflow: hidden; background: var(--tint-2); }
.card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: scale var(--dur-slow) var(--ease); }
.card--media:hover .card__media img { scale: 1.04; }
.card--media:hover { transform: translateY(-2px); box-shadow: var(--sh-3); }
.card__more { margin-top: 1rem; }
.card__more .micro { color: var(--blue-text); }
.card--media .card__more .micro { color: var(--blue-light); }
.card__more .micro::after { background: linear-gradient(90deg, currentColor, transparent); opacity: 0.4; }

.substeps { margin-top: 1.15rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.14); }
.card:not(.card--media) .substeps { border-top-color: var(--line); }
.substeps h4 {
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute); font-weight: 500; margin-bottom: 0.6rem;
}
.card--media .substeps h4 { color: rgba(255,255,255,0.5); }
.substeps ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.substeps li {
  font-size: var(--t-micro); color: var(--text-body);
  background: var(--bone-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
.card--media .substeps li { color: var(--on-dark-dim); background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }

/* --- editorial numbered rows ---------------------------------------------- */
.ed-rows { border-top: 1px solid var(--line); }
.ed-row {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
  padding-block: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  position: relative; transition: background var(--dur-std) var(--ease);
}
.ed-row:hover { background: rgba(255, 255, 255, 0.4); }
@media (min-width: 860px) {
  .ed-row { grid-template-columns: 6rem minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 1rem + 2vw, 3.5rem); align-items: start; }
}
.ed-row__n { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.14em; color: var(--text-mute); padding-top: 0.5em; }
.ed-row__t { font-family: var(--font); font-weight: 500; font-size: var(--t-h3); letter-spacing: -0.026em; line-height: 1.12; color: var(--text); }
.ed-row__d { color: var(--text-body); font-size: var(--t-body); max-width: 52ch; }

/* --- video --------------------------------------------------------------- */
.hero--video { min-height: min(88vh, 900px); display: flex; align-items: flex-end; }
.video-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: var(--ink); }
.video-bg video, .video-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  /* The footage is near-white paperwork. A scrim alone measured 1.4:1 against
     white type at the worst frame; grading the source down is what actually
     buys the contrast. Sampled across frames, not judged by eye. */
  filter: brightness(0.46) contrast(1.06) saturate(0.9);
}
/* Scrim. The footage is white paperwork — the brightest possible backdrop for
   white type. The left-hand wedge is deliberately heavy so the headline and
   lede clear AA (large 3:1, body 4.5:1); the right stays lighter so the video
   is still readable as an image. Verified by sampling actual frame luminance
   and compositing, not by eye. */
.video-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,13,19,0.46) 0%, rgba(6,13,19,0.30) 40%, rgba(6,13,19,0.74) 100%),
    linear-gradient(90deg, rgba(6,13,19,0.74) 0%, rgba(6,13,19,0.60) 42%, transparent 78%);
}
@media (max-width: 900px) {
  /* Copy spans the full width on small screens, so the wedge must too. */
  .video-bg::after {
    background: linear-gradient(180deg, rgba(6,13,19,0.62) 0%, rgba(6,13,19,0.68) 45%, rgba(6,13,19,0.82) 100%);
  }
}
.video-ctl {
  position: absolute; right: clamp(1rem, 3vw, 2.5rem); bottom: clamp(1rem, 3vw, 2.5rem); z-index: 3;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.34);
  border-radius: 10px; color: #fff; cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background var(--dur-quick) var(--ease);
}
.video-ctl:hover { background: rgba(255,255,255,0.28); }

/* framed video used inside a section */
.video-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); box-shadow: var(--sh-3); }
.video-frame video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }

/* --- header --------------------------------------------------------------- */
.topbar {
  background: var(--ink); color: var(--on-dark-dim);
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.09em;
  position: relative; z-index: 60;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { transition: color var(--dur-quick) var(--ease); }
.topbar a:hover { color: #fff; }
.topbar ul { display: flex; gap: 1.25rem; list-style: none; padding: 0; flex-wrap: wrap; }
/* Needs .topbar to outweigh `.topbar ul { display: flex }` above. */
@media (max-width: 780px) { .topbar .topbar__social { display: none; } }

/* The blur lives on a pseudo-element, not on .site-header itself.
   backdrop-filter establishes a containing block, which would make the mobile
   drawer's `position: fixed` resolve against the header box instead of the
   viewport — the drawer then renders as a small clipped panel. */
.site-header { position: sticky; top: 0; z-index: 50; transition: box-shadow var(--dur-std) var(--ease); }
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: color-mix(in srgb, var(--bone) 92%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
}
@supports not (backdrop-filter: blur(1px)) { .site-header::before { background: var(--bone); } }
.site-header.is-stuck { box-shadow: var(--sh-2); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand img { width: clamp(132px, 11.5vw, 164px); height: auto; transition: width var(--dur-std) var(--ease); }

/* Hero pages let the header float over the video.
   Stays `sticky` and is pulled over the hero with a negative bottom margin —
   `position: absolute` here resolves against the initial containing block, which
   parks the bar at y=0 on top of the announce and topbar instead of below them.
   Once scrolled it takes its solid background and dark text back. */
.site-header--over { margin-bottom: -76px; }
.site-header--over::before { opacity: 0; transition: opacity var(--dur-std) var(--ease); }
.site-header--over.is-stuck::before { opacity: 1; }
.site-header--over:not(.is-stuck) .nav > li > a:not(.btn) { color: rgba(255, 255, 255, 0.88); }
.site-header--over:not(.is-stuck) .nav > li > a:not(.btn):hover { color: #fff; background: rgba(255, 255, 255, 0.14); }
.site-header--over:not(.is-stuck) .nav > li > a[aria-current='page'] { color: #fff; }
/* The reversed SVG is swapped in by JS on dark headers. A brightness/invert
   filter would flatten the two-colour mark into a single white silhouette. */
.site-header--over:not(.is-stuck) .brand img { filter: none; }
.site-header--over:not(.is-stuck) .nav-toggle { border-color: rgba(255, 255, 255, 0.4); }
.site-header--over:not(.is-stuck) .nav-toggle span { background: #fff; }
@media (max-width: 1000px) {
  /* The drawer is a light panel, so its links must stay dark even over video. */
  .site-header--over:not(.is-stuck) .nav.is-open > li > a:not(.btn) { color: var(--text-body); }
}

.nav { display: flex; align-items: center; gap: 0.15rem; list-style: none; padding: 0; }
.nav__cta, .nav__contact { display: none; }
.nav > li { position: relative; }
/* :not(.btn) so the drawer CTA keeps the button's own colours — `.nav > li > a`
   would otherwise out-specify `.btn` and grey the label out. */
.nav > li > a:not(.btn) {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.6rem 0.8rem; border-radius: 8px;
  font-family: var(--mono); font-size: var(--t-micro); font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-body);
  transition: color var(--dur-quick) var(--ease), background var(--dur-quick) var(--ease);
}
.nav > li > a:not(.btn):hover,
.nav > li > a[aria-expanded='true'] { color: var(--text); background: rgba(0, 0, 0, 0.05); }
.nav > li > a[aria-current='page'] { color: var(--text); }
.nav > li > a[aria-current='page']::after {
  content: ''; position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.22rem;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.site-header--over .nav > li > a[aria-current='page'] { color: #fff; }
.nav .caret { transition: rotate var(--dur-quick) var(--ease); }
.nav [aria-expanded='true'] .caret { rotate: 180deg; }

.dropdown {
  position: absolute; top: calc(100% + 0.4rem); inset-inline-start: 0;
  min-width: 296px; padding: 0.45rem; list-style: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden; translate: 0 -6px;
  transition: opacity var(--dur-quick) var(--ease), translate var(--dur-quick) var(--ease), visibility var(--dur-quick);
}
.nav li:hover > .dropdown, .nav [aria-expanded='true'] + .dropdown { opacity: 1; visibility: visible; translate: 0 0; }
.dropdown a {
  display: block; padding: 0.6rem 0.75rem; border-radius: 8px;
  font-size: var(--t-sm); color: var(--text-body);
  transition: background var(--dur-quick) var(--ease), color var(--dur-quick) var(--ease);
}
.dropdown a:hover { background: var(--bone-2); color: var(--text); }
.dropdown__all { border-top: 1px solid var(--line); margin-top: 0.3rem; padding-top: 0.3rem; font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  border-radius: 10px; padding: 0.55rem 0.7rem; cursor: pointer;
  /* Must out-stack the open drawer, or it becomes its own close button that
     nobody can see or click. */
  position: relative; z-index: 46;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: var(--dur-std) var(--ease); }
.nav-toggle span + span { margin-top: 4px; }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { translate: 0 5.5px; rotate: 45deg; }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { translate: 0 -5.5px; rotate: -45deg; }

@media (max-width: 1000px) {
  /* The burger sat dead centre below 1000px. `.nav` is fixed-positioned into a
     drawer, but its `<nav>` WRAPPER stays a static, zero-width flex item pinned
     at the right edge — so the header had three participating items and
     space-between put the middle one (the burger) in the middle. Pushing the
     toggle with an auto margin fixes it regardless of how many zero-width
     siblings follow, because auto margins absorb free space before
     justify-content is applied. */
  .site-header .wrap > nav { position: absolute; width: 0; height: 0; }
  .nav-toggle { display: block; margin-inline-start: auto; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 5.75rem 1.25rem 2rem; overflow-y: auto;
    background: var(--bone); border-inline-start: 1px solid var(--line);
    box-shadow: -18px 0 40px -24px rgba(16, 26, 34, 0.4);
    translate: 100% 0; transition: translate var(--dur-slow) var(--ease); z-index: 45;
  }
  .nav.is-open { translate: 0 0; }
  .site-header--over .nav > li > a:not(.btn) { color: var(--text-body); }
  .nav > li > a:not(.btn) { padding: 0.85rem 0.5rem; font-size: var(--t-sm); }
  .dropdown { position: static; opacity: 1; visibility: visible; translate: 0; border: 0; box-shadow: none; background: transparent; min-width: 0; padding: 0 0 0.5rem 0.5rem; display: none; }
  .nav [aria-expanded='true'] + .dropdown { display: block; }
  .nav__cta { display: block; margin-top: auto; padding-top: 1.75rem; }
  .nav__cta .btn { width: 100%; }
  .nav__contact { display: block; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.09em; color: var(--text-mute); line-height: 2; }
  .nav-scrim { position: fixed; inset: 0; z-index: 44; background: rgba(16, 26, 34, 0.36); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity var(--dur-std) var(--ease), visibility var(--dur-std); }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* --- disc hero (identity opener) ------------------------------------------ */
.hero--disc { background: var(--bone); overflow: hidden; padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(3.5rem, 2rem + 6vw, 7rem); }
.hero__discs {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  right: -8%; bottom: -14%; top: auto; translate: 0 0;
  width: min(58vw, 880px); height: auto; max-width: none;
  opacity: 0.95;
  /* The reference overlaps a short wordmark; a headline plus a paragraph needs
     a clear zone, so the left edge is faded out of the copy column. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
  animation: disc-float 18s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}
@keyframes disc-float {
  from { transform: translate3d(0, -1.2%, 0) rotate(-0.6deg); }
  to   { transform: translate3d(-2%, 1.2%, 0) rotate(0.6deg); }
}
@media (max-width: 900px) {
  /* Behind the copy on small screens, faded so the headline still leads. */
  .hero__discs { right: -34%; bottom: -8%; width: 140vw; opacity: 0.36; }
}
.hero--disc > .wrap { position: relative; z-index: 2; }
.hero--disc .lede { max-width: 46ch; }
@media (min-width: 1000px) {
  .hero--disc .hero__title { max-width: 15ch; }
  .hero--disc .lede { max-width: 46ch; }
}

/* --- full-bleed video band ------------------------------------------------ */
/* Vertically centred, with symmetric padding — anchored to flex-end the copy
   sat low in the band with a large dead area above it. */
.video-band {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(70vh, 620px); display: flex; align-items: center;
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem);
}
.video-band > .wrap { position: relative; z-index: 2; text-align: center; }
.video-band .micro { justify-content: center; }
.video-band .micro::after { display: none; }
.video-band .lede { margin-inline: auto; }
.video-band .hero__actions { justify-content: center; }
.video-band h2, .video-band .lede { color: #fff; }
.video-band .lede { max-width: 54ch; }
.video-band .micro { color: rgba(255, 255, 255, 0.74); }
.video-band .micro::after { background: linear-gradient(90deg, rgba(255,255,255,0.45), transparent); }
.video-band .micro b { color: var(--blue-light); }
.video-band h2 { margin-block: 1.1rem 1rem; }
/* The band sits on dark footage, so the ghost button needs the inverted
   treatment — its default ink label rendered invisible against the video. */
.video-band .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255, 255, 255, 0.45); }
.video-band .btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; }
.video-band .hero__actions { margin-top: 2rem; }

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3.5rem, 2rem + 8vw, 7rem); overflow: hidden; }
/* No `width: 100%` here — it would override .wrap's own max-width and push the
   hero copy flush to the viewport edge. */
.hero > .wrap { position: relative; z-index: 2; }
.hero--video { padding-block: clamp(9rem, 6rem + 12vw, 14rem) clamp(3rem, 2rem + 4vw, 5rem); }
.hero--video .display, .hero--video .lede, .hero--video .micro { color: #fff; }
.hero--video .micro { color: rgba(255,255,255,0.72); }
.hero--video .micro::after { background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent); }
.hero--video .micro b { color: var(--blue-light); }
.hero--video .lede { color: rgba(255,255,255,0.86); }
.hero--video .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,0.42); }
.hero--video .btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; color: #fff; }
.hero__title { margin-block: 1.4rem 1.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__specs { margin-top: clamp(2.5rem, 1.8rem + 2.4vw, 4rem); }

/* --- page header ---------------------------------------------------------- */
.pagehead { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); padding-block: clamp(2.75rem, 2rem + 4vw, 5rem) clamp(2rem, 1.4rem + 3vw, 3.75rem); }
.pagehead > .wrap { position: relative; z-index: 2; }
.pagehead h1 { font-size: var(--t-h1); margin-block: 1.15rem 1.05rem; }
.pagehead__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1rem + 3vw, 3.5rem); align-items: center; }
@media (min-width: 900px) {
  .pagehead__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .pagehead--media h1 { font-size: clamp(2.25rem, 1.5rem + 2.6vw, 4rem); }
}
.pagehead__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--sh-3); aspect-ratio: 4 / 3; object-fit: cover; }

.crumbs { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.11em; text-transform: uppercase; color: var(--text-mute); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; }
.crumbs li + li::before { content: '/'; margin-inline-end: 0.5rem; color: var(--line-strong); }
.crumbs a { transition: color var(--dur-quick) var(--ease); }
.crumbs a:hover { color: var(--blue-text); }

/* --- prose ---------------------------------------------------------------- */
.prose { max-width: 70ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: var(--t-h2); margin-top: 2.75rem; }
.prose h3 { font-size: var(--t-h3); margin-top: 2rem; }
.prose p, .prose li { color: var(--text-body); }
.prose strong { color: var(--text); font-weight: 650; }
.prose a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-inline-start: 1.25rem; }
.prose li + li { margin-top: 0.5rem; }
.prose li::marker { color: var(--blue); }

/* --- tick list ------------------------------------------------------------ */
.ticks { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--text-body); font-size: var(--t-sm); }
.ticks svg { flex: none; margin-top: 0.28em; color: var(--blue); }
.card--media .ticks li { color: var(--on-dark-dim); }

/* --- split feature -------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--flip .split__copy { order: 2; }
  .split--flip .split__media { order: 1; }
}
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--sh-3); aspect-ratio: 4 / 3; object-fit: cover; }
.split__copy .ticks { margin-top: 0.5rem; }

.media-band { margin: 0; }
.media-band img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--sh-2); aspect-ratio: 21 / 9; object-fit: cover; }
.media-band figcaption { margin-top: 0.75rem; font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.08em; color: var(--text-mute); }

/* --- process steps -------------------------------------------------------- */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: clamp(1rem, 0.6rem + 1.6vw, 2.5rem);
  padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem) clamp(0.5rem, 0.3rem + 0.8vw, 1.25rem);
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-std) var(--ease);
}
.step:hover { background: rgba(255, 255, 255, 0.45); }
.step__n { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.16em; color: var(--blue-text); padding-top: 0.35em; }
.step h3 { font-family: var(--font); font-weight: 650; font-size: var(--t-h4); margin-bottom: 0.5rem; }
.step p { color: var(--text-body); font-size: var(--t-sm); max-width: 60ch; }
@media (max-width: 560px) { .step { grid-template-columns: 1fr; gap: 0.5rem; } }

/* --- pricing rate --------------------------------------------------------- */
.price-rate {
  font-family: var(--mono); font-size: var(--t-sm); letter-spacing: 0.02em;
  color: var(--blue-dark); background: var(--wash);
  border: 1px solid #C6D6F7; border-radius: 8px;
  padding: 0.45rem 0.75rem; display: inline-block; margin-bottom: 0.85rem;
}

/* --- stat / spec row ------------------------------------------------------ */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.spec { padding: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem); border-inline-start: 1px solid var(--line); }
.spec:first-child { border-inline-start: 0; }
@media (max-width: 640px) { .spec { border-inline-start: 0; border-top: 1px solid var(--line); } .spec:first-child { border-top: 0; } }
.spec__v { font-family: var(--font); font-weight: 600; font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.75rem); font-weight: 400; letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.45rem; color: var(--text); font-variant-numeric: tabular-nums; }
.spec__k { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-mute); }
/* hero variant sits on the video scrim */
.hero--video .specs { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); backdrop-filter: blur(8px); }
.hero--video .spec { border-inline-start-color: rgba(255,255,255,0.22); }
.hero--video .spec__v { color: #fff; }
.hero--video .spec__k { color: rgba(255,255,255,0.7); }
@media (max-width: 640px) { .hero--video .spec { border-top-color: rgba(255,255,255,0.22); } }

/* --- chips ---------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-body);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 0.95rem; background: var(--paper);
  transition: border-color var(--dur-quick) var(--ease), color var(--dur-quick) var(--ease), background var(--dur-quick) var(--ease);
}
a.chip:hover { border-color: var(--blue); color: var(--blue-dark); background: var(--wash); }
.chip i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex: none; }

/* --- marquee -------------------------------------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; gap: 0.6rem; animation: marquee 52s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* --- software logo wall ---------------------------------------------------
   Source files are white-background JPEGs. `multiply` drops the white plate
   onto the bone canvas without a halo. */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
@media (min-width: 640px)  { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .logos { grid-template-columns: repeat(4, 1fr); } }
.logos li {
  list-style: none; display: grid; place-items: center;
  padding: clamp(1.5rem, 1.1rem + 1vw, 2.25rem) clamp(1rem, 0.6rem + 1vw, 1.5rem);
  border: 1px solid var(--line); margin: -0.5px;
  transition: background var(--dur-quick) var(--ease);
}
/* Grayscale at 0.6 opacity rendered these near-invisible. Full colour at full
   opacity — these are recognisable platform marks and the recognition is the
   point of showing them. */
.logos img {
  max-height: clamp(38px, 3vw, 52px); width: auto;
  mix-blend-mode: multiply; opacity: 1;
  transition: transform var(--dur-std) var(--ease);
}
.logos li:hover { background: var(--bone-2); }
.logos li:hover img { transform: scale(1.06); }
.logos__names { margin-top: 1rem; text-align: center; max-width: 78ch; margin-inline: auto; line-height: 1.9; }

/* --- accordion / FAQ ------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding-block: clamp(1.1rem, 0.9rem + 0.7vw, 1.45rem);
  cursor: pointer; list-style: none;
  font-family: var(--font); font-weight: 500; font-size: var(--t-h3); letter-spacing: -0.024em; line-height: 1.25;
  color: var(--text); transition: color var(--dur-quick) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-text); }
.faq summary::after { content: ''; flex: none; width: 11px; height: 11px; margin-top: 0.5em; border-right: 1.8px solid var(--blue); border-bottom: 1.8px solid var(--blue); rotate: 45deg; transition: rotate var(--dur-std) var(--ease); }
.faq details[open] summary::after { rotate: -135deg; }
.faq__a { padding-bottom: 1.4rem; color: var(--text-body); max-width: 74ch; }

/* --- forms ---------------------------------------------------------------- */
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--paper); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 10px;
  transition: border-color var(--dur-quick) var(--ease), box-shadow var(--dur-quick) var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }
/* #94A3B4 measured 2.57:1 — placeholders still need 3:1 as non-text UI. */
.field input::placeholder, .field textarea::placeholder { color: #75808B; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20, 93, 255, 0.15); }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--text-mute) 50%), linear-gradient(135deg, var(--text-mute) 50%, transparent 50%); background-position: calc(100% - 20px) 52%, calc(100% - 14px) 52%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-note { font-size: var(--t-micro); color: var(--text-mute); font-family: var(--mono); letter-spacing: 0.05em; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); }
.cta-band > .wrap { position: relative; z-index: 2; text-align: center; }
.cta-band .micro { color: var(--blue-light); justify-content: center; }
.cta-band .micro::after { display: none; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: var(--on-dark-dim); margin-inline: auto; }
.cta-band .aurora::before { background: radial-gradient(ellipse at center, rgba(20, 93, 255, 0.34) 0%, transparent 68%); }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2rem; }
.cta-band .btn { --btn-bg: var(--blue); }
.cta-band .btn:hover { background: #fff; color: var(--ink); }
.cta-band .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.3); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-dim); padding-block: var(--section-y) 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
/* Brand blue is only 3.4:1 on the dark plate — footer links stay white. */
.site-footer li a, .site-footer address a { color: var(--on-dark-dim); font-size: var(--t-sm); font-style: normal; transition: color var(--dur-quick) var(--ease); }
.site-footer li a:hover, .site-footer address a:hover { color: #fff; }
.site-footer address { font-style: normal; color: var(--on-dark-dim); font-size: var(--t-sm); line-height: 1.9; }
/* The footer tagline carried `.dim`, which resolves to --text-body — a colour
   built for LIGHT surfaces. On the dark plate it measured 1.91:1, well under
   the 4.5:1 minimum and barely legible. White is 17.48:1. */
.site-footer .dim { color: #fff; }

/* Footer CTA. The base .btn fills with --ink, which IS the footer background —
   the button was invisible until hover, when .btn:hover painted it blue. Verde
   is the only palette colour that carries on this plate (9.9:1 vs brand blue's
   3.47:1), so it fills solid and hovers to a Verde stroke. Label stays ink:
   white on Verde is 1.77:1. */
.site-footer .btn {
  --btn-bg: var(--green);
  --btn-fg: var(--ink);
  font-weight: 700;
  border-color: var(--green);
  transition: background var(--dur-quick) var(--ease),
              border-color var(--dur-quick) var(--ease),
              color var(--dur-quick) var(--ease),
              box-shadow var(--dur-std) var(--ease),
              transform var(--dur-quick) var(--ease);
}
.site-footer .btn:hover,
.site-footer .btn:focus-visible {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 10px 26px -12px rgba(0, 224, 112, 0.5);
}
.footer-bottom { margin-top: var(--section-y); border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.5rem; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-bottom, .footer-bottom a { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.09em; color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }
.social { display: flex; gap: 0.6rem; }
.social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; transition: background var(--dur-quick) var(--ease), border-color var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease); }
.social a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }

/* --- back to top ---------------------------------------------------------- */
.to-top {
  position: fixed; right: clamp(1rem, 2vw, 2rem); bottom: clamp(1rem, 2vw, 2rem); z-index: 40;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: 50%;
  color: var(--ink); cursor: pointer; box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; translate: 0 8px;
  transition: opacity var(--dur-std) var(--ease), translate var(--dur-std) var(--ease), visibility var(--dur-std), color var(--dur-quick) var(--ease), border-color var(--dur-quick) var(--ease);
}
.to-top.is-on { opacity: 1; visibility: visible; translate: 0 0; }
.to-top:hover { color: var(--blue-text); border-color: var(--blue); }

/* --- scroll reveal --------------------------------------------------------
   Corporate entrance: 16px rise + fade, emphasized decelerate, 60ms stagger.
   Scoped to .js, which an inline head script sets — without JavaScript the
   content is simply visible, because a reveal effect must never be able to
   hide the page from a reader or a crawler. */
.js [data-reveal] { opacity: 0; translate: 0 16px; transition: opacity var(--dur-slow) var(--ease-in), translate var(--dur-slow) var(--ease-in); }
.js [data-reveal].is-in { opacity: 1; translate: 0 0; }
.js [data-reveal-group] > * { opacity: 0; translate: 0 16px; transition: opacity var(--dur-slow) var(--ease-in), translate var(--dur-slow) var(--ease-in); }
.js [data-reveal-group].is-in > * { opacity: 1; translate: 0 0; }
.js [data-reveal-group].is-in > *:nth-child(1) { transition-delay: 0ms; }
.js [data-reveal-group].is-in > *:nth-child(2) { transition-delay: 60ms; }
.js [data-reveal-group].is-in > *:nth-child(3) { transition-delay: 120ms; }
.js [data-reveal-group].is-in > *:nth-child(4) { transition-delay: 180ms; }
.js [data-reveal-group].is-in > *:nth-child(5) { transition-delay: 240ms; }
.js [data-reveal-group].is-in > *:nth-child(6) { transition-delay: 300ms; }

/* --- motion + contrast preferences ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .js [data-reveal], .js [data-reveal-group] > * { opacity: 1 !important; translate: none !important; }
  .marquee__track { animation: none; }
}
@media (prefers-contrast: more) {
  :root { --text-body: #22323F; --text-mute: #3A4A57; --line: #B4AE9E; --line-strong: #8A8474; }
}

/* --- print ---------------------------------------------------------------- */
@media print {
  .aurora, .rule-grid, .to-top, .site-header, .topbar, .nav-toggle, .cta-band, .announce, .video-bg, .video-ctl { display: none !important; }
  body { background: #fff; color: #000; }
  .site-footer { background: #fff; color: #000; }
  .card, .specs { border-color: #ccc; box-shadow: none; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}

/* ==========================================================================
   Icons + brand colour bands
   The grey canvas alone read too pale, so the page now alternates neutral,
   blue and ink bands. Blue and ink sections invert their own type colours.
   ========================================================================== */

/* --- icons ---------------------------------------------------------------- */
.ico { width: 1.25em; height: 1.25em; flex: none; }
.ico-plate {
  display: inline-grid; place-items: center; flex: none;
  width: 46px; height: 46px; border-radius: 12px;
  font-size: 22px; margin-bottom: 1.1rem;
  transition: background var(--dur-std) var(--ease), color var(--dur-std) var(--ease),
              transform var(--dur-std) var(--ease);
}
.ico-plate--blue  { background: var(--wash);  color: var(--blue-text); }
.ico-plate--green { background: #D6F7E6;      color: var(--green-dark); }
.ico-plate--ink   { background: rgba(255,255,255,0.1); color: #fff; }
.ico-plate--solid { background: var(--blue);  color: #fff; }
.card:hover .ico-plate--blue  { background: var(--blue); color: #fff; transform: translateY(-2px); }
.card:hover .ico-plate--green { background: var(--green); color: #fff; transform: translateY(-2px); }
.card--media .ico-plate { background: rgba(255,255,255,0.12); color: #fff; }

/* inline icon beside a label */
.micro .ico { width: 1.05em; height: 1.05em; margin-inline-end: 0.15rem; }
.chip .ico { width: 1.15em; height: 1.15em; color: var(--blue-text); }
a.chip:hover .ico { color: var(--blue-dark); }
.step__ico { color: var(--blue-text); font-size: 20px; }
.ticks svg.ico { color: var(--green-dark); }

/* --- inverted bands ------------------------------------------------------- */
/* White on #145DFF is 5.20:1 — only 0.7 above the AA floor, so ANY transparency
   drops text under it. Everything on this band is solid white, and hierarchy
   comes from weight and size rather than opacity. */
.section--blue { background: var(--blue); color: #fff; }
.section--blue h2, .section--blue h3, .section--blue h4, .section--blue .spec__v { color: #fff; }
.section--blue .lede { color: #fff; }
.section--blue .micro { color: #fff; opacity: 0.95; }
.section--blue .micro::after { background: linear-gradient(90deg, rgba(255,255,255,0.45), transparent); }
.section--blue .micro b { color: #fff; }
.section--blue .specs { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.24); }
.section--blue .spec { border-inline-start-color: rgba(255,255,255,0.24); }
.section--blue .spec__k { color: #fff; opacity: 0.95; }
.section--blue .ico-plate { background: rgba(255,255,255,0.16); color: #fff; }
.section--blue .ticks li { color: #fff; }
.section--blue .ticks svg.ico { color: #fff; }
.section--blue .btn { --btn-bg: #fff; --btn-fg: var(--blue-dark); }
.section--blue .btn:hover { background: var(--ink); color: #fff; }
.section--blue .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.42); }
.section--blue .btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; color: #fff; }
.section--blue .chip { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.34); color: #fff; }
.section--blue a.chip:hover { background: #fff; color: var(--blue-dark); border-color: #fff; }
.section--blue a.chip:hover .ico { color: var(--blue-dark); }
.section--blue .chip .ico { color: #fff; }
@media (max-width: 640px) { .section--blue .spec { border-top-color: rgba(255,255,255,0.24); } }

.section--ink { background: var(--ink); color: rgba(255,255,255,0.78); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lede { color: rgba(255,255,255,0.8); }
.section--ink .micro { color: rgba(255,255,255,0.6); }
.section--ink .micro::after { background: linear-gradient(90deg, rgba(255,255,255,0.32), transparent); }
.section--ink .micro b { color: var(--blue-light); }
.section--ink .card { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.13); box-shadow: none; }
.section--ink .card h3 { color: #fff; }
.section--ink .card p, .section--ink .ticks li { color: rgba(255,255,255,0.76); }
.section--ink .card:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.075); }
.section--ink .ico-plate { background: rgba(255,255,255,0.11); color: #fff; }
.section--ink .card:hover .ico-plate { background: var(--blue); color: #fff; }
.section--ink .ticks svg.ico { color: var(--green); }
.section--ink .ed-rows, .section--ink .ed-row { border-color: rgba(255,255,255,0.14); }
.section--ink .ed-row:hover { background: rgba(255,255,255,0.04); }
.section--ink .ed-row__n { color: var(--blue-light); }
.section--ink .ed-row__t { color: #fff; }
.section--ink .ed-row__d { color: rgba(255,255,255,0.76); }
.section--ink .steps, .section--ink .step { border-color: rgba(255,255,255,0.14); }
.section--ink .step:hover { background: rgba(255,255,255,0.04); }
.section--ink .step__n, .section--ink .step__ico { color: var(--blue-light); }
.section--ink .step p { color: rgba(255,255,255,0.76); }
.section--ink .faq, .section--ink .faq details { border-color: rgba(255,255,255,0.14); }
.section--ink .faq summary { color: #fff; }
.section--ink .faq summary:hover { color: var(--blue-light); }
.section--ink .faq summary::after { border-color: var(--blue-light); }
.section--ink .faq__a { color: rgba(255,255,255,0.76); }
.section--ink .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,0.32); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* --- hero video panel ----------------------------------------------------- */
.hero--split { background: var(--bone); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1.4rem + 3vw, 4rem); align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); } }
.hero__media { position: relative; }
.hero__video {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--ink); box-shadow: var(--sh-3);
  aspect-ratio: 4 / 3;
}
@media (min-width: 1000px) { .hero__video { aspect-ratio: 5 / 6; } }
.hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__video::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(11,26,45,0.55) 100%);
}
/* small stat card overlapping the video, the way brand boards stage a detail */
/* Anchored top-right; the second video tile owns the bottom-left corner, and
   both at bottom-left collided. */
.hero__stat {
  position: absolute; right: -5%; top: 5%; z-index: 4;
  background: #fff; border-radius: 16px; box-shadow: var(--sh-3);
  padding: 1rem 1.15rem; display: flex; gap: 0.8rem; align-items: center;
  max-width: 15rem;
}
@media (max-width: 999px) { .hero__stat { right: 3%; top: 4%; } }
.hero__stat .ico-plate { margin-bottom: 0; width: 40px; height: 40px; font-size: 19px; }
.hero__stat b { display: block; font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.15; }
.hero__stat span { font-size: var(--t-micro); color: var(--text-mute); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.hero--split .hero__discs { right: -22%; bottom: -18%; width: min(46vw, 620px); opacity: 0.7; }

/* second hero video, tucked under the main panel */
.hero__video--tile {
  position: absolute; left: -8%; bottom: -9%; z-index: 2;
  width: 46%; aspect-ratio: 4 / 3; border-radius: 16px;
  border: 5px solid var(--bone); box-shadow: var(--sh-3);
}
.hero__video--tile::after { background: linear-gradient(180deg, transparent 60%, rgba(11,26,45,0.4) 100%); }
@media (max-width: 999px) {
  .hero__video--tile { left: 2%; bottom: -8%; width: 42%; }
}
@media (max-width: 560px) { .hero__video--tile { display: none; } }
.hero--split { padding-bottom: clamp(5rem, 3rem + 7vw, 9rem); }

/* ==========================================================================
   Full-width hero + soft-glass icon plates
   ========================================================================== */

/* --- full-bleed hero ------------------------------------------------------ */
.hero--full {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(94vh, 940px); display: flex; align-items: center;
  padding-block: clamp(7rem, 5rem + 9vw, 12rem) clamp(3rem, 2rem + 4vw, 5rem);
  background: var(--ink);
}
.hero--full > .wrap { position: relative; z-index: 3; }
.hero--full .display, .hero--full h1 { color: #fff; }
.hero--full .lede { color: rgba(255, 255, 255, 0.92); max-width: 46ch; }
.hero--full .micro { color: #fff; opacity: 0.9; }
.hero--full .micro::after { background: linear-gradient(90deg, rgba(255,255,255,0.45), transparent); }
.hero--full .micro b { color: var(--green); opacity: 1; }
.hero--full .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,0.45); }
.hero--full .btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: #fff; color: #fff; }
.hero--full .specs { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.22); backdrop-filter: blur(10px); }
.hero--full .spec { border-inline-start-color: rgba(255,255,255,0.22); }
.hero--full .spec__v { color: #fff; }
.hero--full .spec__k { color: #fff; opacity: 0.82; }
.hero--full .spec__ico { color: var(--green); }
@media (max-width: 640px) { .hero--full .spec { border-top-color: rgba(255,255,255,0.22); } }

/* the footage layer + its scrim */
.hero--full .video-bg { z-index: 0; }
.hero--full .video-bg video { filter: brightness(0.82) contrast(1.05) saturate(1.05); }
.hero--full .video-bg::after {
  background:
    linear-gradient(180deg, rgba(10,26,47,0.42) 0%, rgba(10,26,47,0.26) 45%, rgba(10,26,47,0.72) 100%),
    linear-gradient(90deg, rgba(10,26,47,0.94) 0%, rgba(10,26,47,0.74) 44%, rgba(10,26,47,0.06) 84%);
}
@media (max-width: 900px) {
  .hero--full .video-bg::after {
    background: linear-gradient(180deg, rgba(10,26,47,0.74) 0%, rgba(10,26,47,0.72) 45%, rgba(10,26,47,0.9) 100%);
  }
}
/* a Verde hairline anchoring the copy, echoing the brand's accent rules */
/* Bounded so the type sits inside the dark wedge rather than running out over
   the bright side of the footage. */
.hero--full .hero__title { position: relative; max-width: 17ch; padding-left: clamp(1rem, 0.6rem + 1vw, 1.75rem); }
.hero--full .hero__actions { max-width: 46ch; }
/* The eyebrow is a single line of tracked-out caps, not body copy — the 46ch
   measure that bounds the rest of the wedge was breaking it after "management".
   It gets its own wider bound and holds one line; the trailing rule absorbs
   whatever is left over. Below 640px there genuinely isn't room, so it wraps
   again rather than overflowing the viewport. */
.hero--full .micro { max-width: 64ch; white-space: nowrap; }
.hero--full .micro::after { min-width: 1.5rem; }
@media (max-width: 640px) {
  .hero--full .micro { white-space: normal; max-width: 46ch; }
}
.hero--full .hero__title::before {
  content: ''; position: absolute; left: 0; top: 0.18em; bottom: 0.18em;
  width: 4px; border-radius: 4px; background: var(--green);
}

/* --- soft-glass icon plates ----------------------------------------------
   The reference icon set reads as frosted glass: a soft tinted plate, a light
   top edge, and a diffuse shadow rather than a flat fill. */
.ico-plate {
  position: relative; border-radius: 14px;
  background: linear-gradient(155deg, rgba(42,103,229,0.16) 0%, rgba(42,103,229,0.07) 55%, rgba(42,103,229,0.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(42,103,229,0.10),
    0 6px 16px -8px rgba(10,26,47,0.30);
  color: var(--blue-text);
  backdrop-filter: blur(6px);
}
.ico-plate .ico { stroke-width: 1.75; }
.ico-plate--green {
  background: linear-gradient(155deg, rgba(0,224,112,0.22) 0%, rgba(0,224,112,0.10) 55%, rgba(0,224,112,0.16) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 6px 16px -8px rgba(0,116,62,0.35);
  color: var(--green-dark);
}
.ico-plate--ink, .section--ink .ico-plate, .card--media .ico-plate {
  background: linear-gradient(155deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.12) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 6px 18px -8px rgba(0,0,0,0.5);
  color: #fff;
}
.section--blue .ico-plate {
  background: linear-gradient(155deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.10) 60%, rgba(255,255,255,0.18) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 6px 18px -8px rgba(0,0,0,0.35);
  color: #fff;
}
.card:hover .ico-plate--blue {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; box-shadow: 0 10px 24px -10px rgba(42,103,229,0.6);
}
.card:hover .ico-plate--green {
  background: linear-gradient(155deg, var(--green) 0%, #00B85C 100%);
  color: var(--ink); box-shadow: 0 10px 24px -10px rgba(0,224,112,0.6);
}

/* ==========================================================================
   Light-blue band
   A soft Azul Med wash for sections that should read airy rather than
   saturated. #D9E5FB keeps mute text at 4.75:1 — the last step before it
   drops under AA, so do not deepen it further without re-measuring.
   ========================================================================== */
.section--soft { background: #E2EBFC; }
.section--soft h2, .section--soft h3, .section--soft h4 { color: var(--text); }
.section--soft .lede, .section--soft p { color: var(--text-body); }
.section--soft .micro { color: var(--text-mute); }
.section--soft .micro::after { background: linear-gradient(90deg, #B9CDF3, transparent); }
.section--soft .micro b { color: var(--blue-text); }

/* Cards sit as white plates on the wash, including the media cards that would
   otherwise keep their dark treatment from the ink band. */
.section--soft .card,
.section--soft .card--media { background: var(--paper); border-color: #CBDAF6; box-shadow: var(--sh-1); }
.section--soft .card h3, .section--soft .card--media h3 { color: var(--text); }
.section--soft .card p, .section--soft .card--media p { color: var(--text-body); }
.section--soft .card__idx, .section--soft .card--media .card__idx { color: var(--text-mute); }
.section--soft .card:hover, .section--soft .card--media:hover { border-color: var(--blue-light); box-shadow: var(--sh-3); }
.section--soft .substeps { border-top-color: #DCE6F8; }
.section--soft .substeps h4 { color: var(--text-mute); }
.section--soft .substeps li { background: #F2F6FE; border-color: #CFDDF7; color: var(--text-body); }
.section--soft .ico-plate {
  background: linear-gradient(155deg, rgba(42,103,229,0.18) 0%, rgba(42,103,229,0.08) 55%, rgba(42,103,229,0.14) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 16px -8px rgba(10,26,47,0.28);
  color: var(--blue-text);
}
.section--soft .card:hover .ico-plate {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; box-shadow: 0 10px 24px -10px rgba(42,103,229,0.6);
}
.section--soft .chip { background: var(--paper); border-color: #C7D8F5; color: var(--text-body); }
.section--soft a.chip:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.section--soft a.chip:hover .ico { color: #fff; }
.section--soft .chip .ico { color: var(--blue-text); }
.section--soft .ticks li { color: var(--text-body); }
.section--soft .ticks svg.ico { color: var(--green-dark); }
.section--soft .btn--ghost { --btn-fg: var(--text); border-color: #B4C9F0; }
.section--soft .btn--ghost:hover { background: var(--paper); border-color: var(--blue); color: var(--blue-text); }
.section--soft .ed-rows, .section--soft .ed-row { border-color: #CBDAF6; }
.section--soft .ed-row:hover { background: rgba(255,255,255,0.55); }

/* --- CTA band with footage ------------------------------------------------ */
.cta-band--video .video-bg { z-index: 0; }
.cta-band--video .video-bg video { filter: brightness(0.60) contrast(1.06) saturate(1.02); }
.cta-band--video .video-bg::after {
  background:
    linear-gradient(180deg, rgba(10,26,47,0.72) 0%, rgba(10,26,47,0.56) 45%, rgba(10,26,47,0.80) 100%),
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(10,26,47,0.34) 0%, transparent 100%);
}
.cta-band--video .aurora { display: none; }
.cta-band--video > .wrap { position: relative; z-index: 3; }

/* ==========================================================================
   Deep band — the richer dark treatment
   Azul Escuro base lifted by a soft Azul Med glow and a hairline column grid,
   so it reads as a lit surface rather than a flat navy slab.
   ========================================================================== */
.section--deep { position: relative; background: var(--ink); color: rgba(255,255,255,0.80); overflow: hidden; isolation: isolate; }
.section--deep::before {
  content: ''; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(42,103,229,0.34) 0%, transparent 62%),
    radial-gradient(90% 80% at 92% 100%, rgba(0,224,112,0.13) 0%, transparent 60%);
}
.section--deep::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 28%, #000 72%, transparent);
}
@media (max-width: 700px) { .section--deep::after { background-size: calc(100% / 3) 100%; } }
.section--deep > .wrap { position: relative; z-index: 1; }

.section--deep h2, .section--deep h3, .section--deep h4 { color: #fff; }
.section--deep .lede { color: rgba(255,255,255,0.84); }
.section--deep .micro { color: rgba(255,255,255,0.68); }
.section--deep .micro::after { background: linear-gradient(90deg, rgba(255,255,255,0.36), transparent); }
.section--deep .micro b { color: var(--green); }

/* glass cards */
.section--deep .card,
.section--deep .card--media {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 20px 44px -24px rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.section--deep .card h3, .section--deep .card--media h3 { color: #fff; }
.section--deep .card p, .section--deep .card--media p { color: rgba(255,255,255,0.78); }
.section--deep .card__idx { color: var(--green); }
.section--deep .card:hover, .section--deep .card--media:hover {
  background: rgba(255,255,255,0.085); border-color: rgba(255,255,255,0.30);
}
.section--deep .substeps { border-top-color: rgba(255,255,255,0.14); }
.section--deep .substeps h4 { color: rgba(255,255,255,0.55); }
.section--deep .substeps li { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.82); }
.section--deep .ico-plate {
  background: linear-gradient(155deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.13) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 8px 20px -10px rgba(0,0,0,0.6);
  color: #fff;
}
.section--deep .card:hover .ico-plate {
  background: linear-gradient(155deg, var(--green) 0%, #00B85C 100%);
  color: var(--ink); box-shadow: 0 10px 26px -10px rgba(0,224,112,0.65);
}
.section--deep .chip {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.20); color: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
}
.section--deep a.chip:hover { background: var(--green); border-color: var(--green); color: var(--ink); }
.section--deep a.chip:hover .ico { color: var(--ink); }
.section--deep .chip .ico { color: var(--green); }
.section--deep .ticks li { color: rgba(255,255,255,0.82); }
.section--deep .ticks svg.ico { color: var(--green); }
.section--deep .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,0.34); }
.section--deep .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.section--deep .ed-rows, .section--deep .ed-row { border-color: rgba(255,255,255,0.14); }
.section--deep .ed-row:hover { background: rgba(255,255,255,0.045); }
.section--deep .ed-row__n { color: var(--green); }
.section--deep .ed-row__t { color: #fff; }
.section--deep .ed-row__d { color: rgba(255,255,255,0.78); }
/* Without these the FAQ renders near-black on the dark band — the summary
   colour is var(--text), which only the light surfaces can carry. */
.section--deep .faq, .section--deep .faq details { border-color: rgba(255,255,255,0.16); }
.section--deep .faq summary { color: #fff; }
.section--deep .faq summary:hover { color: var(--green); }
.section--deep .faq summary::after { border-color: var(--green); }
.section--deep .faq__a { color: rgba(255,255,255,0.80); }
.section--deep .steps, .section--deep .step { border-color: rgba(255,255,255,0.16); }
.section--deep .step:hover { background: rgba(255,255,255,0.05); }
.section--deep .step__n, .section--deep .step__ico { color: var(--green); }
.section--deep .step h3 { color: #fff; }
.section--deep .step p { color: rgba(255,255,255,0.78); }

/* --- enhanced CTA band ---------------------------------------------------- */
.cta-band--video h2 { font-size: clamp(2.25rem, 1.5rem + 3.2vw, 4.25rem); letter-spacing: -0.032em; }
.cta-band--video .micro { justify-content: center; color: var(--green); opacity: 1; }
.cta-band--video .micro::after { display: none; }
/* Verde rule under the eyebrow, echoing the hero's accent bar */
.cta-band__rule { width: 56px; height: 4px; border-radius: 4px; background: var(--green); margin: 1.25rem auto 0; }
/* the commitments restated as a compact trust row */
.cta-band__trust {
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.cta-band__trust .chip {
  background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.24);
  color: #fff; backdrop-filter: blur(6px);
}
.cta-band__trust .chip .ico { color: var(--green); }
/* Primary action is Verde everywhere, so the page has one action colour. */
.cta-band--video .btn:not(.btn--ghost) { --btn-bg: var(--green); --btn-fg: var(--ink); font-weight: 700; }
.cta-band--video .btn:not(.btn--ghost):hover { background: var(--green-light); color: var(--ink); }

/* ==========================================================================
   Bright key-visual band
   The light counterweight to the dark sections — a wash of Azul Med light
   behind the glass key visual.
   ========================================================================== */
.keyvis {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 120% at 78% 40%, #DCEAFF 0%, #EEF4FE 45%, var(--bone) 100%);
}
.keyvis::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 78% 45%, rgba(42,103,229,0.16) 0%, transparent 70%);
}
.keyvis > .wrap { position: relative; z-index: 1; }
.keyvis__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1.2rem + 3vw, 4rem); align-items: center; }
@media (min-width: 960px) { .keyvis__grid { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); } }
.keyvis__media { position: relative; }
.keyvis__media img {
  width: 100%; height: auto; display: block;
  /* The source plate carries its own pale gradient, so multiply drops the white
     and a radial mask feathers the edges — otherwise it reads as a rectangle
     floating on the wash rather than part of it. */
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(72% 72% at 50% 48%, #000 58%, transparent 100%);
          mask-image: radial-gradient(72% 72% at 50% 48%, #000 58%, transparent 100%);
}
.keyvis__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 2rem; }
.keyvis__stat {
  background: rgba(255,255,255,0.86); border: 1px solid #D3E1F8; border-radius: 14px;
  padding: 1rem 1.15rem; display: flex; gap: 0.8rem; align-items: center;
  backdrop-filter: blur(8px); box-shadow: 0 8px 22px -14px rgba(20,60,130,0.35);
}
.keyvis__stat .ico-plate { margin-bottom: 0; width: 38px; height: 38px; font-size: 18px; border-radius: 11px; }
.keyvis__stat b { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.keyvis__stat span { font-size: var(--t-micro); color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
@media (max-width: 520px) { .keyvis__stats { grid-template-columns: 1fr; } }

/* commitments strip used at the top of interior pages */
.trust-strip { border-block: 1px solid var(--line); background: var(--bone-2); }
.trust-strip .specs { border: 0; border-radius: 0; background: transparent; }
.trust-strip .spec { border-inline-start-color: var(--line); }
.trust-strip .spec__ico { color: var(--blue-text); }

/* ==========================================================================
   Engagement-model infographic
   Built as real markup rather than an exported image: the rates, inclusions
   and comparison stay selectable, translatable, indexable and screen-reader
   navigable, and it re-themes with the rest of the system.
   ========================================================================== */
.infog { display: grid; gap: clamp(1rem, 0.6rem + 1vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 760px)  { .infog { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .infog { grid-template-columns: repeat(4, 1fr); } }

.infog__card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  box-shadow: var(--sh-1);
  transition: border-color var(--dur-std) var(--ease), box-shadow var(--dur-std) var(--ease),
              transform var(--dur-std) var(--ease);
}
.infog__card:hover { border-color: var(--blue-light); box-shadow: var(--sh-3); transform: translateY(-3px); }

.infog__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.infog__n {
  font-family: var(--font); font-weight: 700; font-size: var(--t-micro);
  letter-spacing: 0.14em; color: var(--text-mute);
}
.infog__card .ico-plate { margin-bottom: 0; width: 44px; height: 44px; font-size: 21px; }

.infog__name { font-size: var(--t-h4); font-weight: 650; letter-spacing: -0.015em; margin-top: 1.15rem; color: var(--text); }

/* the rate is the thing people scan for, so it gets its own plate */
.infog__rate {
  margin-top: 0.8rem; padding: 0.7rem 0.85rem; border-radius: 12px;
  background: var(--wash); border: 1px solid #CBDAF6;
  font-weight: 650; font-size: var(--t-sm); color: var(--blue-text); line-height: 1.4;
}
.infog__body { margin-top: 0.9rem; font-size: var(--t-sm); color: var(--text-body); }

.infog__suits {
  margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line);
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: var(--t-sm); color: var(--text-body);
}
.infog__suits .ico { color: var(--green-dark); margin-top: 0.15em; }

.infog__inc { margin-top: 1rem; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.infog__inc li { display: flex; gap: 0.5rem; align-items: flex-start; font-size: var(--t-micro); color: var(--text-mute); }
.infog__inc .ico { width: 0.95em; height: 0.95em; color: var(--blue); margin-top: 0.25em; }

/* scope meter — four segments, filled to the model's coverage */
.infog__scope { margin-top: auto; padding-top: 1.15rem; }
.infog__scope-label {
  font-family: var(--font); font-size: var(--t-micro); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute);
  display: flex; justify-content: space-between; margin-bottom: 0.5rem;
}
.infog__bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.infog__bars i { height: 6px; border-radius: 3px; background: var(--line-strong); display: block; }
.infog__bars i.on { background: var(--blue); }
.infog__card:hover .infog__bars i.on { background: var(--green); }

.infog__legend {
  margin-top: 1.5rem; font-size: var(--t-micro); color: var(--text-mute);
  font-family: var(--font); letter-spacing: 0.02em; text-align: center;
}

/* dark-surface variant */
.section--deep .infog__card { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.14); backdrop-filter: blur(8px); }
.section--deep .infog__name { color: #fff; }
.section--deep .infog__body, .section--deep .infog__suits { color: rgba(255,255,255,0.78); }
.section--deep .infog__inc li { color: rgba(255,255,255,0.62); }
.section--deep .infog__rate { background: rgba(42,103,229,0.24); border-color: rgba(255,255,255,0.22); color: #fff; }
.section--deep .infog__suits { border-top-color: rgba(255,255,255,0.14); }
.section--deep .infog__suits .ico { color: var(--green); }
.section--deep .infog__bars i { background: rgba(255,255,255,0.18); }
.section--deep .infog__bars i.on { background: var(--green); }
.section--deep .infog__legend { color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Process flow infographic
   A connected timeline: numbered nodes on a track, content beneath. Horizontal
   on desktop, vertical on mobile — the track redraws rather than disappearing,
   so the sequence is still legible at any width.
   ========================================================================== */
.flow {
  list-style: none; padding: 0;
  margin: clamp(2rem, 1.2rem + 2.4vw, 3.5rem) 0 0;
  display: grid; gap: clamp(2.5rem, 1.8rem + 2.4vw, 3.25rem);
  position: relative; align-items: start;
}
@media (min-width: 900px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: clamp(1.75rem, 0.8rem + 2.4vw, 3rem); }
}

/* Explicit row tracks. With `auto` the node row resolved to ~97px instead of
   64px and the four bodies started at four different heights — pinning the
   track is what actually keeps the titles on one line. */
.flow__step {
  position: relative; display: grid;
  grid-template-columns: 64px 1fr; grid-template-rows: auto;
  gap: 1.25rem; align-items: start;
}
@media (min-width: 900px) {
  .flow__step { grid-template-columns: 1fr; grid-template-rows: 64px auto; gap: 0; }
}

/* the track */
.flow__step::before {
  content: ''; position: absolute; z-index: 0; background: var(--line-strong);
  /* mobile: vertical run down the gutter between nodes */
  left: 31px; top: 64px; width: 2px; height: calc(100% + clamp(2.5rem, 1.8rem + 2.4vw, 3.25rem) - 64px);
}
.flow__step:last-child::before { display: none; }
@media (min-width: 900px) {
  .flow__step::before {
    left: 64px; top: 31px; height: 2px;
    width: calc(100% - 64px + clamp(1.75rem, 0.8rem + 2.4vw, 3rem));
  }
}
/* the completed portion of the track picks up the brand */
.flow__step::after {
  content: ''; position: absolute; z-index: 0; background: var(--blue);
  left: 31px; top: 64px; width: 2px; height: 38px;
}
.flow__step:last-child::after { display: none; }
@media (min-width: 900px) { .flow__step::after { left: 64px; top: 31px; height: 2px; width: 38px; } }

.flow__node {
  position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 10px 24px -14px rgba(10,26,47,0.35);
  color: var(--blue-text); font-size: 24px;
  transition: background var(--dur-std) var(--ease), color var(--dur-std) var(--ease),
              transform var(--dur-std) var(--ease), border-color var(--dur-std) var(--ease);
}
.flow__step:hover .flow__node {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent; color: #fff; transform: translateY(-3px);
}
.flow__num {
  position: absolute; top: -8px; right: -8px;
  min-width: 26px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.06em;
  display: grid; place-items: center;
}
.flow__step:hover .flow__num { background: var(--green); color: var(--ink); }

.flow__body { min-width: 0; }
@media (min-width: 900px) { .flow__body { margin-top: clamp(1.75rem, 1.2rem + 1.4vw, 2.5rem); padding-right: clamp(1rem, 0.5rem + 1.4vw, 2rem); } }
.flow__body h3 { font-size: var(--t-h4); font-weight: 650; letter-spacing: -0.015em; color: var(--text); }
.flow__body p { margin-top: 0.65rem; font-size: var(--t-sm); color: var(--text-body); line-height: 1.65; }

/* only the two steps with a verified time commitment carry a tag */
.flow__tag {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: #D6F7E6; border: 1px solid #A9E9C6;
  font-size: var(--t-micro); font-weight: 650; letter-spacing: 0.04em; color: var(--green-dark);
}
.flow__tag .ico { width: 0.95em; height: 0.95em; }

/* dark-surface variant */
.section--deep .flow__step::before { background: rgba(255,255,255,0.18); }
.section--deep .flow__step::after { background: var(--green); }
.section--deep .flow__node { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); color: #fff; backdrop-filter: blur(8px); }
.section--deep .flow__step:hover .flow__node { background: linear-gradient(155deg, var(--green) 0%, #00B85C 100%); color: var(--ink); }
.section--deep .flow__num { background: var(--green); color: var(--ink); }
.section--deep .flow__body h3 { color: #fff; }
.section--deep .flow__body p { color: rgba(255,255,255,0.78); }
.section--deep .flow__tag { background: rgba(0,224,112,0.16); border-color: rgba(0,224,112,0.36); color: var(--green); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 620px)  { .contact-methods { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .contact-methods { grid-template-columns: repeat(4, 1fr); } }

.contact-card {
  display: flex; flex-direction: column; gap: 0.15rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
  box-shadow: var(--sh-1);
  transition: border-color var(--dur-std) var(--ease), box-shadow var(--dur-std) var(--ease),
              transform var(--dur-std) var(--ease);
}
.contact-card:hover { border-color: var(--blue-light); box-shadow: var(--sh-3); transform: translateY(-3px); }
.contact-card .ico-plate { margin-bottom: 1rem; }
.contact-card:hover .ico-plate--blue {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff;
}
.contact-card:hover .ico-plate--green {
  background: linear-gradient(155deg, var(--green) 0%, #00B85C 100%); color: var(--ink);
}
.contact-card__label {
  font-size: var(--t-micro); font-weight: 650; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mute);
}
.contact-card__value { font-size: var(--t-h4); font-weight: 650; color: var(--text); letter-spacing: -0.015em; margin-top: 0.35rem; word-break: break-word; }
.contact-card__note { font-size: var(--t-sm); color: var(--text-body); margin-top: 0.3rem; }

/* form panel */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 1.2rem + 3vw, 3.5rem); align-items: start; }
@media (min-width: 1000px) { .contact-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }

.form-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem); box-shadow: var(--sh-2);
}
.form-panel__head { margin-bottom: 1.5rem; }
.form-panel__head h2 { font-size: var(--t-h3); }
.form-panel__head p { margin-top: 0.5rem; font-size: var(--t-sm); color: var(--text-body); }

.field--req label::after { content: ' *'; color: var(--blue-text); }
.form-consent {
  display: flex; gap: 0.65rem; align-items: flex-start;
  font-size: var(--t-micro); color: var(--text-mute); line-height: 1.7;
}
.form-consent input { width: 16px; height: 16px; margin-top: 0.15em; flex: none; accent-color: var(--blue); }
.form-consent a { color: var(--blue-text); text-decoration: underline; text-underline-offset: 2px; }

/* the PHI warning is a real compliance point, not fine print */
.form-phi {
  display: flex; gap: 0.6rem; align-items: flex-start;
  background: #FFF4E5; border: 1px solid #F3D9AE; border-radius: 12px;
  padding: 0.75rem 0.9rem; font-size: var(--t-micro); color: #6B4A12; line-height: 1.65;
}
.form-phi .ico { color: #9A6A14; flex: none; margin-top: 0.1em; }

/* key visual as footage rather than a still */
.keyvis__media--video .keyvis__frame {
  position: relative; border-radius: 22px; overflow: hidden;
  background: var(--ink); box-shadow: var(--sh-3);
  aspect-ratio: 16 / 10;
}
.keyvis__media--video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.keyvis__media--video .keyvis__frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  border-radius: 22px;
}

/* --- insight sidebar link list -------------------------------------------- */
.plain-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.plain-links a {
  color: var(--blue-text); font-size: var(--t-sm); font-weight: 500;
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: border-color var(--dur-quick) var(--ease), color var(--dur-quick) var(--ease);
}
.plain-links a:hover { color: var(--ink); border-bottom-color: var(--blue); }
.card--media .plain-links a, .section--ink .plain-links a { color: var(--blue-light); }

/* --- home enquiry band ----------------------------------------------------
   Two-column: ask + direct lines on the left, form on the right. The panel is
   --ink (brand navy). It was #1F1F1F, a neutral grey that appears nowhere else
   in the palette and read as a foreign component dropped into the page. */
.enquiry-band { position: relative; overflow: hidden; }
.enquiry-band__offset {
  position: absolute; left: 0; right: 0; top: 20%; bottom: 20%;
  background: var(--blue-dark, #1A4CBF); pointer-events: none;
}
.enquiry-panel {
  position: relative; background: var(--ink); color: #fff;
  padding: clamp(1.5rem, 1rem + 3vw, 3.75rem);
  border-radius: 4px;
  display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem);
}
@media (min-width: 920px) {
  .enquiry-panel { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.15fr); align-items: start; }
  /* hairline between the rail and the form */
  .enquiry-form { padding-inline-start: clamp(2rem, 1rem + 4vw, 4.5rem); border-inline-start: 1px solid rgba(255,255,255,0.14); }
}

/* left rail */
.enquiry-aside { display: grid; gap: 1.1rem; align-content: start; }
.enquiry-aside__label {
  font-family: var(--mono); font-size: var(--t-micro); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.62);
  display: flex; align-items: center; gap: 0.6rem; margin: 0;
}
.enquiry-aside__label .sq { width: 6px; height: 6px; background: var(--green); flex: none; }
.enquiry-panel .h2 { color: #fff; margin: 0; }
.enquiry-panel .lede { color: rgba(255,255,255,0.72); margin: 0; max-width: 44ch; font-size: var(--t-sm); }

.enquiry-direct { list-style: none; margin: 0.6rem 0 0; padding: 0; display: grid; gap: 0.9rem; }
.enquiry-direct li { display: grid; gap: 0.15rem; }
.enquiry-direct__k {
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.enquiry-direct a, .enquiry-direct li > span:not(.enquiry-direct__k) {
  color: #fff; font-size: var(--t-sm); text-decoration: none;
  border-bottom: 1px solid transparent; justify-self: start;
  transition: border-color var(--dur-quick) var(--ease);
}
.enquiry-direct a:hover { border-bottom-color: var(--green); }

.enquiry-marks {
  list-style: none; margin: 1rem 0 0; padding: 1.1rem 0 0; display: grid; gap: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.enquiry-marks li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: var(--t-micro); letter-spacing: 0.06em; color: rgba(255,255,255,0.66);
}
.enquiry-marks li b { color: #fff; font-weight: 600; }
.enquiry-marks .ico { width: 1.05em; height: 1.05em; color: var(--green); flex: none; }

/* form */
.enquiry-form { display: grid; gap: clamp(1.25rem, 0.7rem + 1.6vw, 2rem); align-content: start; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 0.5rem + 1.6vw, 2rem); }

/* Floating-label underline field. The placeholder is a single SPACE so
   :placeholder-shown flips only when the field is genuinely empty — with an
   empty placeholder attribute the selector never matches and the label would
   sit permanently on top of the user's text. */
.ufield { position: relative; }
.ufield input, .ufield textarea, .ufield select {
  width: 100%; background: transparent; color: #fff;
  border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0; padding: 1.5rem 0 0.6rem;
  font-family: var(--font); font-size: var(--t-sm);
  transition: border-color var(--dur-quick) var(--ease);
}
.ufield textarea { resize: vertical; min-height: 5.5rem; }
.ufield select { appearance: none; cursor: pointer; }
.ufield select option { color: var(--ink); background: #fff; }
/* caret for the select, since appearance:none removes the native one */
.ufield--select::after {
  content: ''; position: absolute; right: 2px; bottom: 1.05rem;
  width: 8px; height: 8px; border-right: 1.5px solid rgba(255,255,255,0.55);
  border-bottom: 1.5px solid rgba(255,255,255,0.55); rotate: 45deg;
  pointer-events: none;
}
.ufield label {
  position: absolute; left: 0; top: 1.45rem;
  color: rgba(255, 255, 255, 0.55); font-size: var(--t-sm);
  pointer-events: none;
  transition: top var(--dur-quick) var(--ease), font-size var(--dur-quick) var(--ease),
              color var(--dur-quick) var(--ease);
}
.ufield input:focus, .ufield textarea:focus, .ufield select:focus {
  outline: none; border-bottom-color: var(--green);
}
/* :placeholder-shown does not apply to <select>, so the select label is always
   in its floated position — it has a visible default option instead. */
.ufield--select label,
.ufield input:focus + label, .ufield textarea:focus + label,
.ufield input:not(:placeholder-shown) + label,
.ufield textarea:not(:placeholder-shown) + label {
  top: 0.05rem; font-size: var(--t-micro); letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.6);
}
.ufield input:focus + label, .ufield textarea:focus + label,
.ufield select:focus ~ label { color: var(--green); }
.ufield input:not(:placeholder-shown):invalid { border-bottom-color: #FF8A8A; }

.enquiry-form__foot { display: grid; gap: 1rem; margin-top: 0.25rem; }
.enquiry-note {
  color: rgba(255, 255, 255, 0.5); font-size: var(--t-micro); line-height: 1.7; margin: 0;
}

@media (max-width: 620px) {
  .enquiry-grid { grid-template-columns: 1fr; }
  .enquiry-band__offset { display: none; }
}

/* ==========================================================================
   Editorial layout system
   A label gutter, anchor bar, colour-blocked cards and pull quote — the
   long-form magazine setting the reference site uses. Deliberately NOT a
   clone: the reference sets its headings in a serif, and the brand manual
   here is Satoshi-only, so the structure is borrowed and the voice is not.
   ========================================================================== */

/* --- label gutter --------------------------------------------------------- */
.sec-head { display: grid; gap: 0.9rem; }
.sec-head__label {
  font-family: var(--mono); font-size: var(--t-micro); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute);
  display: flex; align-items: center; gap: 0.6rem; margin: 0;
}
.sec-head__label .sq { width: 6px; height: 6px; background: var(--green-dark); flex: none; }
.sec-head__body { display: grid; gap: 1rem; }
.sec-head__body .lede { max-width: 60ch; }

@media (min-width: 900px) {
  /* The heading column starts at the same x on every section — that repetition
     is what reads as editorial rather than the label styling itself. */
  .sec-head {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 2fr);
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
    align-items: start;
    padding-top: 1.5rem; border-top: 1px solid var(--line);
  }
  .sec-head__label { padding-top: 0.45rem; }
}
.section--ink .sec-head, .section--deep .sec-head, .section--blue .sec-head { border-top-color: rgba(255,255,255,0.16); }
.section--ink .sec-head__label, .section--deep .sec-head__label { color: rgba(255,255,255,0.6); }
.section--blue .sec-head__label { color: rgba(255,255,255,0.85); }
.section--ink .sec-head__label .sq, .section--deep .sec-head__label .sq { background: var(--green); }
.section--blue .sec-head__label .sq { background: #fff; }

/* --- anchor bar ----------------------------------------------------------- */
.anchor-tabs { position: sticky; top: 76px; z-index: 30; background: var(--bone); border-bottom: 1px solid var(--line); }
.anchor-tabs ul {
  list-style: none; margin: 0 auto; padding: 0.6rem 0;
  max-width: var(--wrap); display: flex; gap: 0.4rem; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
  padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem);
}
.anchor-tabs ul::-webkit-scrollbar { display: none; }
.anchor-tabs a {
  display: inline-block; white-space: nowrap;
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-body);
  padding: 0.45rem 0.8rem; border: 1px solid var(--line); border-radius: 2px;
  transition: background var(--dur-quick) var(--ease), color var(--dur-quick) var(--ease),
              border-color var(--dur-quick) var(--ease);
}
.anchor-tabs a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* --- colour-blocked cards ------------------------------------------------- */
.block-cards { display: grid; gap: clamp(0.75rem, 0.4rem + 1.4vw, 1.25rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .block-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .block-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.block-card {
  position: relative; display: flex; flex-direction: column; gap: 0.75rem;
  min-height: clamp(17rem, 12rem + 16vw, 22rem);
  padding: clamp(1.25rem, 0.9rem + 1.2vw, 1.9rem);
  border-radius: 3px; text-decoration: none; overflow: hidden;
  transition: transform var(--dur-std) var(--ease), box-shadow var(--dur-std) var(--ease);
}
.block-card:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -26px rgba(10, 26, 47, 0.5); }
.block-card__kind { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }
/* color:inherit is load-bearing — the global heading rule sets a near-black on
   h3, which rendered the title at 1.08:1 on the ink card. The card tone owns
   the text colour, not the heading defaults. */
.block-card__t { font-size: var(--t-h3); font-weight: 500; letter-spacing: -0.024em; line-height: 1.16; margin: 0; color: inherit; }
.block-card__d { font-size: var(--t-sm); line-height: 1.6; opacity: 0.82; margin: 0; max-width: 34ch; }
.block-card__go {
  position: absolute; right: 1.1rem; bottom: 1.1rem;
  width: 34px; height: 34px; border-radius: 999px;
  display: grid; place-items: center;
  transition: translate var(--dur-quick) var(--ease);
}
.block-card:hover .block-card__go { translate: 3px 0; }

.block-card--blue { background: var(--blue); color: #fff; }
.block-card--blue .block-card__go { background: rgba(255,255,255,0.18); color: #fff; }
.block-card--ink  { background: var(--ink); color: #fff; }
.block-card--ink .block-card__go { background: var(--green); color: var(--ink); }
.block-card--bone { background: var(--bone-2); color: var(--ink); }
.block-card--bone .block-card__go { background: var(--ink); color: #fff; }

/* --- pull quote ----------------------------------------------------------- */
.pull-quote {
  margin: 0; background: var(--bone-2); border-radius: 3px;
  padding: clamp(1.6rem, 1rem + 3vw, 3.5rem);
  display: grid; gap: 1.5rem;
}
.pull-quote blockquote {
  margin: 0; font-size: var(--t-h3); font-weight: 400;
  letter-spacing: -0.022em; line-height: 1.35; color: var(--ink); max-width: 46ch;
}
.pull-quote blockquote::before { content: '\201C'; }
.pull-quote blockquote::after  { content: '\201D'; }
.pull-quote figcaption { display: grid; gap: 0.15rem; }
.pull-quote__name { font-weight: 600; font-size: var(--t-sm); color: var(--ink); }
.pull-quote__role { font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.section--ink .pull-quote, .section--deep .pull-quote { background: rgba(255,255,255,0.06); }
.section--ink .pull-quote blockquote, .section--ink .pull-quote__name { color: #fff; }

/* Anchor landing offset. The sticky header (76px) and the anchor bar sit on top
   of the page, so a bare #hash jump puts the section heading underneath both —
   measured 96px vs a 130px bar bottom. scroll-margin-top moves the landing
   point, not the layout. */
.section[id], [id].enquiry-band { scroll-margin-top: 152px; }

/* --- display-scale section headings ---------------------------------------
   The gutter layout reads editorial only when the heading has real scale
   against it. One step up from the base h2, home + hubs and detail pages
   alike, so the whole site moves together. */
.sec-head__body .h2 {
  font-size: clamp(1.9rem, 1.35rem + 2.4vw, 3.2rem);
  letter-spacing: -0.032em; line-height: 1.06; max-width: 22ch;
}

/* --- asymmetric block-card composition -------------------------------------
   A uniform 3-up grid is the template look. Letting the first card carry two
   columns turns the row into a composition with a lead item. */
@media (min-width: 1000px) {
  .block-cards--feature .block-card:first-child { grid-column: span 2; }
  .block-cards--feature .block-card:first-child .block-card__t {
    font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); max-width: 18ch;
  }
  .block-cards--feature .block-card:first-child .block-card__d { max-width: 52ch; }
}

/* --- duotone strip ---------------------------------------------------------
   Greyscale imagery multiplied over an Azul Med plate: shadows fall to navy,
   highlights hold the blue. Pure CSS — retune here, never re-export photos. */
.duo-strip { margin: 0; display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.75rem); }
.duo-strip__row {
  display: grid; gap: clamp(0.5rem, 0.3rem + 1vw, 1rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .duo-strip__row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.duo-fig {
  background: var(--blue); border-radius: 3px; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.duo-fig picture { display: contents; }
.duo-fig img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(1.04);
  mix-blend-mode: multiply;
  transition: filter var(--dur-slow) var(--ease);
}
/* the photograph resolves to full colour under the pointer — a quiet reward */
.duo-fig:hover img { filter: grayscale(0) contrast(1) brightness(1); mix-blend-mode: normal; }
@media (prefers-reduced-motion: reduce) { .duo-fig img { transition: none; } }

.duo-cap { display: grid; gap: 0.9rem; }
@media (min-width: 900px) {
  .duo-cap {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 2fr);
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  }
}
.duo-cap__label {
  font-family: var(--mono); font-size: var(--t-micro); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute);
  display: flex; align-items: center; gap: 0.6rem; margin: 0; padding-top: 0.2rem;
}
.duo-cap__label .sq { width: 6px; height: 6px; background: var(--green-dark); flex: none; }
.duo-cap__title { font-weight: 600; font-size: var(--t-body); color: var(--ink); margin: 0 0 0.5rem; }
.duo-cap__body { color: var(--text-body); font-size: var(--t-sm); line-height: 1.7; max-width: 62ch; margin: 0; }
.section--deep .duo-cap__label, .section--ink .duo-cap__label { color: rgba(255,255,255,0.6); }
.section--deep .duo-cap__title, .section--ink .duo-cap__title { color: #fff; }
.section--deep .duo-cap__body, .section--ink .duo-cap__body { color: var(--on-dark-dim); }

/* --- index link rows -------------------------------------------------------- */
.link-rows { border-top: 1px solid var(--line); }
.link-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(0.75rem, 0.5rem + 1vw, 2rem);
  padding: clamp(0.9rem, 0.7rem + 0.8vw, 1.3rem) 0.4rem;
  border-bottom: 1px solid var(--line); text-decoration: none;
  transition: background var(--dur-quick) var(--ease), padding-inline var(--dur-quick) var(--ease);
}
@media (min-width: 720px) {
  .link-row { grid-template-columns: 4.5rem 9.5rem minmax(0, 1fr) auto; }
}
.link-row:hover { background: rgba(255, 255, 255, 0.5); padding-inline: 0.8rem 0.2rem; }
.link-row__n {
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.14em;
  color: var(--text-mute);
}
.link-row__kind {
  font-family: var(--mono); font-size: var(--t-micro); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-dark);
  display: none;
}
@media (min-width: 720px) { .link-row__kind { display: block; } }
.link-row__t {
  font-weight: 500; font-size: var(--t-body); letter-spacing: -0.015em;
  color: var(--text);
}
.link-row__go { color: var(--text-mute); display: grid; transition: translate var(--dur-quick) var(--ease), color var(--dur-quick) var(--ease); }
.link-row:hover .link-row__go { translate: 4px 0; color: var(--ink); }

/* Breathing room under a gutter header. At display scale the heading needs
   more air beneath it than the generic stack rhythm gives — measured 12px,
   which read as cramped once the type went up a size. Applies wherever a
   sec-head is followed by content. */
/* Same specificity as .stack-lg > * + * (both 0,1,0) — source order wins, so
   no !important is needed. */
.sec-head + * { margin-top: clamp(1.75rem, 1.1rem + 2vw, 3.25rem); }
/* The duotone strip is a caption-bearing figure; it wants the same air. */
.ed-rows + .duo-strip { margin-top: clamp(2rem, 1.2rem + 2.4vw, 4rem); }
