/* ==========================================================================
   The Blue Orange - homepage v2
   Everything is scoped under .v2 so it cannot collide with all.css /
   responsive.css, which style bare h2/p/ul globally.
   Palette read from the real logo.svg: #FF6320 / #0E3EE7 / #1F2326
   ========================================================================== */

:root, .v2 {
  --o:        #ff6320;
  --o-dk:     #d44a0c;
  --b:        #0e3ee7;
  --b-dk:     #0a2eae;
  --ink:      #1f2326;
  --ground:   #ffffff;
  --surface:  #f4f6fb;
  --surface2: #e9eef7;
  --line:     #d5dded;
  --text:     #1f2326;
  --soft:     #5d6b7d;
  --panel:    #10161c;
  --panel2:   #1b242d;
  --panelline:#2b3a48;
  --paneltext:#c6d4e2;
  --good:     #2fbf82;

  /* Brand typefaces, matching the WordPress theme: Poppins body, Sora headings.
     Self-hosted from /assets/fonts rather than fetched from Google. */
  --sans: "Poppins", ui-sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Sora", "Poppins", ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", "Roboto Mono", Consolas, "Liberation Mono", monospace;

  --s--1: clamp(.78rem, .76rem + .1vw, .84rem);
  --s0:   clamp(1rem, .97rem + .16vw, 1.09rem);
  --s1:   clamp(1.24rem, 1.17rem + .34vw, 1.5rem);
  --s2:   clamp(1.55rem, 1.4rem + .72vw, 2.1rem);
  --s3:   clamp(1.95rem, 1.65rem + 1.45vw, 3rem);
  --s4:   clamp(2.3rem, 1.8rem + 2.6vw, 4.1rem);

  color: var(--text);
  font-family: var(--sans);
  font-size: var(--s0);
  line-height: 1.6;
  background: var(--ground);
}

.v2 *, .v2 *::before, .v2 *::after { box-sizing: border-box; }
.v2 h1, .v2 h2, .v2 h3 { font-family: var(--display); margin: 0; line-height: 1.07; letter-spacing: -.028em; font-weight: 660; text-wrap: balance; color: var(--ink); }
.v2 p { margin: 0; }
.v2 ul { margin: 0; padding: 0; list-style: none; }
.v2 a { color: inherit; }
.v2 img { max-width: 100%; display: block; }
.v2 :focus-visible { outline: 2.5px solid var(--o); outline-offset: 3px; }

.v2-wrap { max-width: 1180px; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.v2-sec { padding-block: clamp(3.2rem, 6.5vw, 5.8rem); }

/* ---- utility voice: mono, the vernacular of EDI files and census data ---- */
.v2-eyebrow {
  font-family: var(--mono); font-size: var(--s--1); letter-spacing: .16em;
  text-transform: uppercase; color: var(--soft);
  display: flex; align-items: center; gap: .6rem; margin: 0;
}
.v2-eyebrow::before { content: ""; width: 0; height: 2px; background: var(--o); flex: none; transition: width .7s cubic-bezier(.2,.7,.3,1) .1s; }
.v2-r.in .v2-eyebrow::before, .v2-eyebrow.in::before { width: 1.7rem; }

.v2-head { max-width: 62ch; }
.v2-head h2 { font-size: var(--s3); margin-top: 1rem; }
.v2-head > p { color: var(--soft); font-size: var(--s1); margin-top: 1rem; line-height: 1.5; }

.v2-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font: 600 var(--s0)/1 inherit; padding: .98rem 1.55rem; border-radius: 3px;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), background .18s ease, border-color .18s ease, color .18s ease;
}
.v2-btn .arw { transition: transform .18s ease; }
.v2-btn:hover .arw { transform: translateX(3px); }
.v2-btn-p { background: var(--o); color: #fff; }
.v2-btn-p:hover { background: var(--o-dk); color: #fff; transform: translateY(-2px); }
.v2-btn-g { border-color: var(--line); color: var(--text); }
.v2-btn-g:hover { border-color: var(--b); color: var(--b); transform: translateY(-2px); }

/* ---- scroll reveal (the animation layer AOS never delivered) ---- */
.v2-r { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); transition-delay: var(--d, 0ms); }
.v2-r.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .v2-r { opacity: 1; transform: none; transition: none; }
  .v2-eyebrow::before { width: 1.7rem; transition: none; }
  .v2 * { animation: none !important; }
}

/* ---- hero ---- */
.v2-hero { padding-block: clamp(2.6rem, 5.5vw, 4.8rem) clamp(2.2rem, 4.5vw, 3.6rem); position: relative; overflow: hidden; }
.v2-hero::before {
  content: ""; position: absolute; inset: -30% -25% auto -25%; height: 80%; pointer-events: none;
  background: radial-gradient(55% 60% at 72% 28%, rgba(14,62,231,.07), transparent 70%);
}
.v2-hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(1.8rem, 4.5vw, 3.6rem); align-items: center; position: relative; }
@media (max-width: 980px) { .v2-hero-grid { grid-template-columns: 1fr; } }
.v2-hero h1 { font-size: var(--s4); margin-top: 1.3rem; }
.v2-hero h1 em { font-style: normal; color: var(--b); position: relative; white-space: nowrap; }
.v2-hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .17em; background: var(--o);
  opacity: .28; transform: scaleX(0); transform-origin: left; animation: v2ul 1s cubic-bezier(.2,.7,.3,1) .9s forwards;
}
@keyframes v2ul { to { transform: scaleX(1); } }
.v2 .v2-lede { font-size: var(--s1); color: var(--soft); margin-top: 1.3rem; max-width: 36ch; line-height: 1.45; }
.v2-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.v2 .v2-note { font-family: var(--mono); font-size: var(--s--1); color: var(--soft); margin-top: 1.4rem; }

.v2-media { border-radius: 7px; overflow: hidden; box-shadow: 0 28px 64px -34px rgba(16,22,28,.5); background: var(--surface2); }
.v2-media video, .v2-media img { width: 100%; height: auto; display: block; }

/* ---- carrier / platform strip ---- */
.v2-strip { background: var(--surface); border-block: 1px solid var(--line); }
.v2-marks { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem 2.4rem; margin-top: 1.15rem; }
.v2-marks li { font-weight: 680; font-size: 1.02rem; letter-spacing: -.02em; color: var(--soft); padding: .28rem 0; border-bottom: 2px solid var(--line); transition: color .2s ease, border-color .2s ease; }
.v2-marks li:hover { color: var(--text); border-bottom-color: var(--o); }
.v2 .v2-agnostic { font-family: var(--mono); font-size: var(--s--1); color: var(--soft); margin-top: 1.15rem; }

.v2-plat { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.4rem; }
@media (max-width: 720px) { .v2-plat { grid-template-columns: 1fr; } }
.v2-plat > div { background: var(--ground); padding: 1.6rem 1.5rem; }
.v2-plat h3 { font-size: var(--s1); }
.v2-plat p { color: var(--soft); font-size: .96rem; margin-top: .55rem; }
.v2-plat .tag { font-family: var(--mono); font-size: var(--s--1); letter-spacing: .1em; text-transform: uppercase; color: var(--o); }

/* ---- capability grid ---- */
.v2-caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.8rem; }
@media (max-width: 920px) { .v2-caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .v2-caps { grid-template-columns: 1fr; } }
.v2-cap { background: var(--ground); padding: 2rem 1.6rem; display: flex; flex-direction: column; gap: .72rem; position: relative; transition: background .2s ease; }
.v2-cap::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--o); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.v2-cap:hover { background: var(--surface); }
.v2-cap:hover::before { transform: scaleX(1); }
.v2-cap svg { width: 30px; height: 30px; color: var(--b); }
.v2-cap svg path, .v2-cap svg circle { stroke-dasharray: 96; stroke-dashoffset: 96; transition: stroke-dashoffset .85s ease var(--d, 0ms); }
.v2-cap.in svg path, .v2-cap.in svg circle { stroke-dashoffset: 0; }
.v2-cap h3 { font-size: var(--s1); }
.v2-cap p { color: var(--soft); font-size: .95rem; }

/* ---- feed console ---- */
.v2-console { background: var(--panel); border-radius: 7px; overflow: hidden; box-shadow: 0 28px 64px -34px rgba(16,22,28,.55); }
.v2-cbar { display: flex; align-items: center; gap: .6rem; padding: .78rem 1rem; background: var(--panel2); border-bottom: 1px solid var(--panelline); }
.v2-cbar span { font: 500 .68rem/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; color: #8aa4bd; }
.v2-beacon { width: 8px; height: 8px; border-radius: 50%; background: var(--good); position: relative; flex: none; }
.v2-beacon::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--good); opacity: .55; animation: v2ping 2.4s ease-out infinite; }
@keyframes v2ping { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.v2-cbody { padding: .5rem .9rem 1.1rem; }
.v2-row { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem; align-items: center; padding: .66rem .35rem; border-bottom: 1px solid rgba(43,58,72,.55); font-family: var(--mono); font-size: .75rem; color: var(--paneltext); position: relative; }
.v2-row:last-of-type { border-bottom: 0; }
.v2-row .who { color: #fff; font-weight: 600; }
.v2-row .meta { color: #8aa4bd; }
.v2-console.in .v2-row { opacity: 0; transform: translateX(-8px); animation: v2rowin .5s cubic-bezier(.2,.7,.3,1) forwards; animation-delay: var(--rd); }
@keyframes v2rowin { to { opacity: 1; transform: none; } }
.v2-pill { font: 600 .615rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; padding: .36rem .58rem; border-radius: 2px; white-space: nowrap; }
.v2-p-sent  { background: rgba(47,191,130,.16); color: #4fd6a0; border: 1px solid rgba(79,214,160,.32); }
.v2-p-ack   { background: rgba(14,62,231,.22);  color: #93b2ff; border: 1px solid rgba(147,178,255,.34); }
.v2-p-queue { background: rgba(255,99,32,.16);  color: #ffa06b; border: 1px solid rgba(255,160,107,.34); }
.v2-console.in .v2-flip .v2-p-queue { animation: v2outq 8s steps(1) 3.4s infinite; }
.v2-console.in .v2-flip .v2-p-sent  { animation: v2ins  8s steps(1) 3.4s infinite; position: absolute; right: .35rem; }
@keyframes v2outq { 0%, 34% { opacity: 1; } 35%, 100% { opacity: 0; } }
@keyframes v2ins  { 0%, 34% { opacity: 0; } 35%, 100% { opacity: 1; } }
.v2-cfoot { display: flex; justify-content: space-between; gap: 1rem; margin-top: .9rem; padding-top: .85rem; border-top: 1px solid var(--panelline); font-family: var(--mono); font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: #8aa4bd; }

/* ---- audience split ---- */
.v2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.8rem; }
@media (max-width: 840px) { .v2-split { grid-template-columns: 1fr; } }
.v2-card { border: 1px solid var(--line); border-top: 3px solid var(--o); padding: 2.2rem 1.9rem; display: flex; flex-direction: column; gap: 1rem; background: var(--ground); transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease; }
.v2-card:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -30px rgba(31,35,38,.45); }
.v2-card.alt { border-top-color: var(--b); }
.v2-card h3 { font-size: var(--s2); }
.v2-card > p { color: var(--soft); }
.v2-card ul { display: flex; flex-direction: column; gap: .6rem; margin-top: .3rem; }
.v2-card li { display: flex; gap: .65rem; font-size: .95rem; }
.v2-card li::before { content: "\2192"; color: var(--o); font-family: var(--mono); flex: none; }
.v2-card.alt li::before { color: var(--b); }
.v2-card .v2-btn { margin-top: auto; align-self: flex-start; }

/* ---- sequence ---- */
.v2-steps { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 780px) { .v2-steps { grid-template-columns: 1fr; } }
.v2-step { background: var(--ground); padding: 1.7rem 1.5rem; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; }
.v2-step .n { font: 600 .74rem/1 var(--mono); letter-spacing: .1em; color: var(--o); padding-top: .3rem; font-variant-numeric: tabular-nums; }
.v2-step h3 { font-size: 1.05rem; }
.v2-step p { color: var(--soft); font-size: .92rem; margin-top: .4rem; }

/* ---- team ---- */
.v2-team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.15rem; margin-top: 2.8rem; }
@media (max-width: 1000px) { .v2-team { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .v2-team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .v2-team { grid-template-columns: repeat(2, 1fr); } }
.v2-member { text-align: left; }
.v2-member .ph { aspect-ratio: 370/420; overflow: hidden; background: var(--surface2); border-radius: 4.32% / 3.81%; }
.v2-member .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.3,1), filter .3s ease; filter: saturate(.92); }
.v2-member:hover .ph img { transform: scale(1.045); filter: saturate(1); }
.v2-member .nm { font-weight: 640; font-size: .93rem; margin-top: .7rem; letter-spacing: -.015em; }
.v2-member .rl { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--soft); margin-top: .22rem; line-height: 1.35; }

/* ---- quote ---- */
.v2-quote { background: var(--surface); border-block: 1px solid var(--line); }
.v2-quote blockquote { margin: 1.5rem 0 0; max-width: 63ch; }
.v2-quote blockquote p { font-size: var(--s2); line-height: 1.36; letter-spacing: -.02em; font-weight: 550; color: var(--ink); }
.v2-attrib { display: flex; align-items: center; gap: .9rem; margin-top: 1.7rem; }
.v2-attrib img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.v2-attrib .nm { font-weight: 640; font-size: .95rem; }
.v2-attrib .ttl { font-family: var(--mono); font-size: var(--s--1); color: var(--soft); }

/* ---- booking ---- */
.v2-book { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.4rem; }
@media (max-width: 720px) { .v2-book { grid-template-columns: 1fr; } }
.v2-svc { background: var(--ground); padding: 1.28rem 1.45rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; text-decoration: none; transition: background .18s ease, padding-left .18s ease; }
.v2-svc:hover { background: var(--surface); padding-left: 1.85rem; }
.v2-svc .nm { font-weight: 600; }
.v2-svc .dur { font-family: var(--mono); font-size: var(--s--1); color: var(--soft); white-space: nowrap; }
.v2 .v2-phone { margin-top: 1.35rem; font-family: var(--mono); font-size: var(--s--1); color: var(--soft); }
.v2-phone a { color: var(--b); font-weight: 600; text-decoration: none; }
.v2-phone a:hover { text-decoration: underline; }

/* ==========================================================================
   Modernisation pass
   ========================================================================== */

/* ---- end cap: replaces the scrolling marquee on v2 pages ---- */
.v2-endcap { background: var(--panel); color: #fff; }
.v2-endcap-in {
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(2.6rem, 5vw, 4rem);
}
@media (max-width: 860px) { .v2-endcap-in { grid-template-columns: 1fr; } }
.v2-endcap h2 { color: #fff; font-size: var(--s2); margin-top: .9rem; }
.v2-endcap .v2-eyebrow { color: #8aa4bd; }
.v2 .v2-endcap-sub { color: var(--paneltext); margin-top: .8rem; max-width: 48ch; }
.v2-endcap-cta { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem; }
.v2-endcap-tel {
  font-family: var(--mono); font-size: var(--s--1); letter-spacing: .1em;
  color: #8aa4bd; text-decoration: none; border-bottom: 1px solid rgba(138,164,189,.4); padding-bottom: 2px;
}
.v2-endcap-tel:hover { color: #fff; border-bottom-color: #fff; }

/* ---- sticky header, scoped to v2 pages only ---- */
body.v2-page #header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
body.v2-page.v2-scrolled #header {
  border-bottom-color: var(--line, #d5dded);
  box-shadow: 0 8px 30px -22px rgba(31,35,38,.55);
}

/* ---- skip link ---- */
.v2-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #ff6320; color: #fff; padding: .8rem 1.2rem; font-weight: 600; text-decoration: none;
}
.v2-skip:focus { left: 0; }

/* ---- selection + smooth anchor scrolling ---- */
.v2 ::selection { background: rgba(255,99,32,.22); }
@media (prefers-reduced-motion: no-preference) {
  html:has(body.v2-page) { scroll-behavior: smooth; }
}
body.v2-page { scroll-padding-top: 90px; }

/* ---- richer hover on service rows ---- */
.v2-svc { position: relative; }
.v2-svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--o); transform: scaleY(0); transform-origin: top; transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
.v2-svc:hover::before { transform: scaleY(1); }

/* ---- platform panels get a little more presence ---- */
.v2-plat > div { position: relative; transition: background .2s ease; }
.v2-plat > div:hover { background: var(--surface); }
.v2-plat > div::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--b); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.v2-plat > div:hover::after { transform: scaleX(1); }

/* ---- hero video: contain aspect so there is no layout shift while it loads ---- */
.v2-media { aspect-ratio: 16 / 9; }
.v2-media video, .v2-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- metrics band ---- */
.v2-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.v2-metrics.wide { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1040px) { .v2-metrics.wide { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .v2-metrics.wide { grid-template-columns: repeat(2, 1fr); } }

.v2-metric { background: var(--ground); padding: 1.7rem 1.15rem 1.6rem; }
.v2-metric .val {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.15rem + 1.15vw, 2.25rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.05;
  color: var(--ink); font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.v2-metric .val .suf { color: var(--o); }
.v2-metric .lab {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--soft); margin-top: .7rem; line-height: 1.35;
  min-height: 2.7em; text-wrap: balance;
}
.v2 .v2-asof { font-family: var(--mono); font-size: var(--s--1); color: var(--soft); margin-top: 1.1rem; }

/* "+ N more" marker in the partner strip reads as a note, not a partner */
.v2-marks li.more {
  font-family: var(--mono); font-weight: 500; font-size: var(--s--1);
  letter-spacing: .08em; text-transform: uppercase; color: var(--o);
  border-bottom-color: transparent;
}
.v2-marks li.more:hover { color: var(--o-dk); border-bottom-color: transparent; }

/* ==========================================================================
   Inner pages
   ========================================================================== */
.v2-inner-hero { padding-block: clamp(2.6rem, 5vw, 4.4rem) clamp(2rem, 4vw, 3.2rem); position: relative; overflow: hidden; }
.v2-inner-hero::before {
  content: ""; position: absolute; inset: -35% -25% auto -25%; height: 85%; pointer-events: none;
  background: radial-gradient(52% 58% at 74% 26%, rgba(14,62,231,.07), transparent 70%);
}
.v2-inner-hero h1 { font-size: clamp(2.05rem, 1.6rem + 2.1vw, 3.4rem); margin-top: 1.1rem; }
.v2-inner-hero .sub { font-size: var(--s1); color: var(--soft); margin-top: 1.15rem; max-width: 40ch; line-height: 1.45; }
.v2-inner-hero .body { color: var(--soft); margin-top: 1.1rem; max-width: 52ch; }

/* checklist: repeater lists rendered as scannable rows rather than bullets */
.v2-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.4rem; }
@media (max-width: 760px) { .v2-checks { grid-template-columns: 1fr; } }
.v2-check { background: var(--ground); padding: 1.25rem 1.4rem; display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; transition: background .18s ease; }
.v2-check:hover { background: var(--surface); }
.v2-check svg { width: 17px; height: 17px; color: var(--o); margin-top: .28rem; flex: none; }
.v2-check p { font-size: .96rem; }

/* service cards built from a repeater with nested bullet rows */
.v2-svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.6rem; }
@media (max-width: 940px) { .v2-svcs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .v2-svcs { grid-template-columns: 1fr; } }
.v2-svc-card { background: var(--ground); padding: 1.9rem 1.55rem; position: relative; transition: background .2s ease; }
.v2-svc-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--o); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.v2-svc-card:hover { background: var(--surface); }
.v2-svc-card:hover::before { transform: scaleX(1); }
.v2-svc-card h3 { font-size: var(--s1); }
.v2-svc-card ul { margin-top: .8rem; display: flex; flex-direction: column; gap: .55rem; }
.v2-svc-card li { display: flex; gap: .6rem; font-size: .94rem; color: var(--soft); }
.v2-svc-card li::before { content: "\2192"; color: var(--o); font-family: var(--mono); flex: none; }

/* full-team grid with bios */
.v2-roster { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
@media (max-width: 980px) { .v2-roster { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .v2-roster { grid-template-columns: repeat(2, 1fr); } }
.v2-person .ph { aspect-ratio: 370/420; overflow: hidden; background: var(--surface2); border-radius: 4.32% / 3.81%; }
.v2-person .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .45s cubic-bezier(.2,.7,.3,1), filter .3s ease; }
.v2-person:hover .ph img { transform: scale(1.04); filter: saturate(1); }
.v2-person .nm { font-weight: 660; font-size: 1rem; margin-top: .8rem; letter-spacing: -.02em; }
.v2-person .rl { font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; color: var(--o); margin-top: .25rem; text-transform: uppercase; line-height: 1.35; }
.v2-person .bio { font-size: .89rem; color: var(--soft); margin-top: .6rem; line-height: 1.5; }
.v2-person .li { display: inline-flex; align-items: center; gap: .35rem; margin-top: .6rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--b); text-decoration: none; }
.v2-person .li:hover { text-decoration: underline; }

/* media block used mid-page */
.v2-figure { border-radius: 7px; overflow: hidden; box-shadow: 0 26px 60px -34px rgba(16,22,28,.45); background: var(--surface2); }
.v2-figure video, .v2-figure img { width: 100%; height: auto; display: block; }

.v2-two { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.8rem, 4.5vw, 3.4rem); align-items: center; }
@media (max-width: 940px) { .v2-two { grid-template-columns: 1fr; } }

/* ---- editable prose (Careers, and any future editor-driven page) ---- */
.v2-prose { max-width: 68ch; }
.v2-prose h2 { font-size: var(--s2); margin-top: 2.6rem; }
.v2-prose h2:first-child { margin-top: 0; }
.v2-prose h3 { font-size: var(--s1); margin-top: 1.9rem; }
.v2-prose p { margin-top: 1rem; color: var(--soft); }
.v2-prose ul { margin-top: 1.1rem; display: flex; flex-direction: column; gap: .65rem; }
.v2-prose ul li { display: flex; gap: .7rem; color: var(--soft); }
.v2-prose ul li::before { content: "\2192"; color: var(--o); font-family: var(--mono); flex: none; }
.v2-prose strong { color: var(--text); font-weight: 660; }
.v2-prose a { color: var(--b); text-decoration: underline; text-underline-offset: 2px; }

/* open roles as cards rather than a bullet list */
.v2-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.6rem; }
@media (max-width: 900px) { .v2-roles { grid-template-columns: 1fr; } }
.v2-role { background: var(--ground); padding: 1.9rem 1.55rem; position: relative; transition: background .2s ease; }
.v2-role::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--o); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.v2-role:hover { background: var(--surface); }
.v2-role:hover::before { transform: scaleX(1); }
.v2-role h3 { font-size: var(--s1); }
.v2-role p { color: var(--soft); font-size: .95rem; margin-top: .6rem; }

/* ==========================================================================
   Static-site chrome
   The WordPress build inherited header/footer styling from the old all.css.
   The static build ships its own markup, so it needs its own rules.
   ========================================================================== */

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans, "Poppins", ui-sans-serif, system-ui, sans-serif);
  font-size: var(--s0, 1rem);
  line-height: 1.6;
  color: var(--text, #1f2326);
  background: var(--ground, #fff);
  -webkit-font-smoothing: antialiased;
}
body * { box-sizing: border-box; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
body.v2-scrolled .site-header {
  border-bottom-color: var(--line, #d5dded);
  box-shadow: 0 8px 30px -22px rgba(31, 35, 38, .55);
}
.header-in { display: flex; align-items: center; gap: 2rem; min-height: 76px; }
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 38px; width: auto; display: block; }

.site-nav { display: flex; gap: 1.7rem; margin-left: auto; }
.site-nav a {
  position: relative; padding: .25rem 0; text-decoration: none;
  color: var(--soft, #5d6b7d); font-weight: 550; font-size: .95rem;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--o, #ff6320); transition: width .24s cubic-bezier(.2,.7,.3,1);
}
.site-nav a:hover { color: var(--text, #1f2326); }
.site-nav a:hover::after { width: 100%; }
.header-cta { padding: .64rem 1.2rem; font-size: .92rem; flex: none; }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 42px; height: 38px; padding: 8px; gap: 5px; flex-direction: column; justify-content: center;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink, #1f2326); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed; inset: 76px 0 auto 0; margin: 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line, #d5dded);
    padding: .5rem clamp(1.1rem, 4vw, 2.5rem) 1.4rem;
    transform: translateY(-140%); transition: transform .3s cubic-bezier(.2,.7,.3,1);
    box-shadow: 0 18px 40px -28px rgba(31,35,38,.5);
  }
  body.nav-open .site-nav { transform: none; }
  .site-nav a { padding: .85rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--surface2, #e9eef7); }
  .site-nav a:last-child { border-bottom: 0; }
}

/* ---- footer ---- */
.site-footer { background: var(--panel, #10161c); color: var(--paneltext, #c6d4e2); padding: 3.6rem 0 2.2rem; }
.site-footer a { color: var(--paneltext, #c6d4e2); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.f-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.f-brand { max-width: 34ch; }
.f-brand img { height: 40px; width: auto; display: block; }
.f-brand p { margin-top: 1rem; font-size: .93rem; color: #8aa4bd; }
.f-links { display: flex; flex-wrap: wrap; gap: 1.45rem; font-size: .93rem; }
.f-bot {
  margin-top: 2.7rem; padding-top: 1.5rem; border-top: 1px solid var(--panelline, #2b3a48);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-family: var(--mono, monospace); font-size: .8rem; color: #8aa4bd;
}
.f-legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* ==========================================================================
   Onboarding kit — interactive readiness checklist
   ========================================================================== */

.v2-kit-bar {
  position: sticky; top: 76px; z-index: 40;
  background: var(--panel); color: #fff;
  border-radius: 6px; padding: 1.1rem 1.3rem; margin-top: 2.2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem;
  box-shadow: 0 18px 44px -30px rgba(16,22,28,.7);
}
.v2-kit-bar .count { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #8aa4bd; }
.v2-kit-bar .count b { color: #fff; font-size: 1.02rem; }
.v2-kit-prog { flex: 1 1 220px; height: 6px; background: rgba(255,255,255,.14); border-radius: 99px; overflow: hidden; min-width: 160px; }
.v2-kit-prog i { display: block; height: 100%; width: 0; background: var(--o); border-radius: 99px; transition: width .45s cubic-bezier(.2,.7,.3,1); }
.v2-kit-bar .v2-btn { padding: .7rem 1.15rem; font-size: .92rem; }

/* the two questions that shape the list */
.v2-kit-qs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.4rem; }
@media (max-width: 760px) { .v2-kit-qs { grid-template-columns: 1fr; } }
.v2-kit-q { background: var(--ground); padding: 1.5rem 1.5rem 1.35rem; }
.v2-kit-q p { font-weight: 600; }
.v2-kit-q .hint { font-weight: 400; color: var(--soft); font-size: .92rem; margin-top: .35rem; }
.v2-kit-toggle { display: inline-flex; margin-top: .95rem; border: 1.5px solid var(--line); border-radius: 4px; overflow: hidden; }
.v2-kit-toggle button {
  font: 600 .9rem/1 var(--sans); padding: .6rem 1.15rem; background: var(--ground);
  border: 0; cursor: pointer; color: var(--soft); transition: background .18s ease, color .18s ease;
}
.v2-kit-toggle button + button { border-left: 1.5px solid var(--line); }
.v2-kit-toggle button[aria-pressed="true"] { background: var(--b); color: #fff; }

/* the steps */
.v2-kit { margin-top: 2.6rem; display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.v2-kit-item {
  background: var(--ground); padding: 1.6rem 1.5rem;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.1rem 1.3rem; align-items: start;
  transition: background .2s ease, opacity .3s ease;
}
.v2-kit-item[hidden] { display: none; }
.v2-kit-item.done { background: var(--surface); }
.v2-kit-check {
  width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line);
  background: var(--ground); cursor: pointer; display: grid; place-items: center; padding: 0;
  transition: border-color .2s ease, background .2s ease; flex: none; margin-top: .15rem;
}
.v2-kit-check svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .2s ease; }
.v2-kit-item.done .v2-kit-check { background: var(--good); border-color: var(--good); }
.v2-kit-item.done .v2-kit-check svg { opacity: 1; }
.v2-kit-body .n { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: var(--o); text-transform: uppercase; }
.v2-kit-body h3 { font-size: 1.1rem; margin-top: .3rem; }
.v2-kit-body > p { color: var(--soft); font-size: .95rem; margin-top: .45rem; }
.v2-kit-item.done .v2-kit-body h3 { text-decoration: line-through; text-decoration-color: var(--line); }
.v2-kit-warn {
  margin-top: .8rem; padding: .7rem .9rem; background: rgba(255,99,32,.07);
  border-left: 3px solid var(--o); font-size: .89rem; color: var(--text);
}
.v2-kit-warn b { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--o-dk); display: block; margin-bottom: .25rem; }
.v2-kit-dl { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.v2-kit-dl .v2-btn { padding: .72rem 1.1rem; font-size: .9rem; white-space: nowrap; }
.v2-kit-dl .meta { font-family: var(--mono); font-size: .68rem; color: var(--soft); }
@media (max-width: 760px) {
  .v2-kit-item { grid-template-columns: auto 1fr; }
  .v2-kit-dl { grid-column: 2; align-items: flex-start; margin-top: .5rem; }
}

/* where to send it */
.v2-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.6rem; }
@media (max-width: 820px) { .v2-routes { grid-template-columns: 1fr; } }
.v2-route { background: var(--ground); padding: 1.6rem 1.4rem; }
.v2-route .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--o); }
.v2-route h3 { font-size: 1.02rem; margin-top: .45rem; }
.v2-route p { color: var(--soft); font-size: .92rem; margin-top: .4rem; }
.v2-route a { display: inline-block; margin-top: .7rem; color: var(--b); font-weight: 600; font-size: .93rem; text-decoration: none; }
.v2-route a:hover { text-decoration: underline; }

/* timeline pill */
.v2-timeline { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.v2-tpill { border: 1px solid var(--line); border-radius: 99px; padding: .5rem 1rem; font-family: var(--mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--soft); }
.v2-tpill b { color: var(--ink); }

/* Grid columns default to a min-content floor, so long unbroken strings such as
   email addresses can push a track wider than its share and force the page to
   scroll sideways. Pin the floor to 0 and let the text wrap instead. */
.v2-routes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 820px) { .v2-routes { grid-template-columns: minmax(0, 1fr); } }
.v2-route a { overflow-wrap: anywhere; }
.v2-kit-item { grid-template-columns: auto minmax(0, 1fr) auto; }
@media (max-width: 760px) { .v2-kit-item { grid-template-columns: auto minmax(0, 1fr); } }
.v2-caps, .v2-svcs, .v2-metrics, .v2-book, .v2-steps, .v2-checks, .v2-plat, .v2-roles {
  grid-auto-columns: minmax(0, 1fr);
}

/* secure upload panel on the onboarding kit */
.v2-secure {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.4rem;
}
@media (max-width: 820px) { .v2-secure { grid-template-columns: minmax(0, 1fr); } }
.v2-secure > div { background: var(--ground); padding: 1.9rem 1.7rem; }
.v2-secure .tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--o); }
.v2-secure h3 { font-size: var(--s1); margin-top: .5rem; }
.v2-secure p { color: var(--soft); font-size: .96rem; margin-top: .6rem; }
.v2-secure .v2-btn { margin-top: 1.3rem; }
.v2-secure-facts { background: var(--panel); padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: .8rem; }
.v2-secure-facts li { display: flex; gap: .7rem; color: var(--paneltext); font-size: .93rem; line-height: 1.45; }
.v2-secure-facts li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good); flex: none; margin-top: .5rem; }
