/*
  Veitch Ops premium presentation system.
  Loaded last so the existing content and page-specific styles remain intact
  while the visual language is shared across the complete website.
*/

:root {
  --premium-surface: #101b29;
  --premium-surface-2: #142131;
  --premium-line: rgba(152, 162, 172, 0.2);
  --premium-line-strong: rgba(245, 166, 35, 0.32);
  --premium-glow: rgba(88, 199, 123, 0.1);
  --premium-radius: 3px;
}

html {
  overflow-x: clip;
  scroll-padding-top: 88px;
}

body.premium-site {
  overflow-x: clip;
  background:
    radial-gradient(circle at 86% 4%, rgba(88, 199, 123, 0.045), transparent 25rem),
    var(--ink);
}

body.premium-site main { overflow: hidden; }

/* The old cartoon artwork is replaced with a restrained, code-native visual
   system. Brand marks and the homepage dispatch board are not affected. */
body.premium-site main :is(.site-illustration, .tile-illustration) {
  display: none !important;
}

body.premium-site .wrap { max-width: 1240px; }

body.premium-site :is(.btn, .btn-ghost) {
  min-height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: var(--premium-radius) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease,
    border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body.premium-site .btn { box-shadow: 0 12px 30px rgba(245, 166, 35, 0.1); }

body.premium-site .btn-ghost {
  padding: 13px 19px;
  border: 1px solid var(--premium-line);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  body.premium-site :is(.btn, .btn-ghost):hover {
    transform: translateY(-2px);
  }
  body.premium-site .btn-ghost:hover {
    border-color: var(--premium-line-strong);
    background: rgba(245, 166, 35, 0.055);
    color: var(--amber);
  }
}

/* Navigation */
body.premium-site nav.top {
  position: sticky;
  top: 0;
  z-index: 35;
  padding: 17px 0;
  border-color: var(--premium-line);
  background: #07111f;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

body.premium-site .logo { font-size: 19px; }

body.premium-site .nav-toggle-btn {
  margin-left: 24px;
  border: 1px solid transparent;
  border-radius: var(--premium-radius);
}

body.premium-site .nav-toggle-btn:hover { border-color: var(--premium-line); }

body.premium-site .nav-menu {
  width: min(390px, 90vw);
  padding: 92px 42px 36px;
  visibility: hidden;
  pointer-events: none;
  border-color: var(--premium-line);
  background:
    linear-gradient(155deg, rgba(88, 199, 123, 0.04), transparent 36%),
    #0b1624;
  box-shadow: -22px 0 55px rgba(0, 0, 0, 0.28);
}

body.premium-site .nav-toggle-input:checked ~ .nav-menu {
  visibility: visible;
  pointer-events: auto;
}

body.premium-site .nav-menu a {
  position: relative;
  padding: 14px 34px 14px 0;
  border-color: var(--premium-line);
  font-size: 22px;
  transition: color 140ms ease, padding-left 140ms ease;
}

body.premium-site .nav-menu a::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

body.premium-site .nav-menu a:hover { padding-left: 7px; }
body.premium-site .nav-menu a:hover::after,
body.premium-site .nav-menu a[aria-current="page"]::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

body.premium-site .nav-menu a[aria-current="page"] { color: var(--amber); }

/* Shared editorial type and section rhythm */
body.premium-site main:not(.account-page) > .wrap {
  position: relative;
  padding-bottom: 74px;
}

body.premium-site main:not(.account-page) > .wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 52px;
  right: 6%;
  width: min(31vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(88, 199, 123, 0.14);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.025), rgba(88, 199, 123, 0.025));
  opacity: 0.72;
  transform: rotate(45deg);
}

body.premium-site main:not(.account-page) > .wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 125px;
  right: calc(6% + 68px);
  width: min(20vw, 250px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 166, 35, 0.16);
  transform: rotate(45deg);
}

body.premium-site .wrap:not(.legal) :is(.svc-card, .tri-card, .card, .job-card,
  .cred-points > div, .faq-item, .highlight-card, .trial-step)
  :is(h1, h2, h3, p, .num, .tag) {
  text-align: left !important;
}

body.page-home header.hero .wrap > div:first-child :is(h1, h2, h3, p, .eyebrow),
body.page-account .wrap:not(.legal) :is(h1, h2, h3, p, .eyebrow) {
  text-align: left !important;
}

body.premium-site .eyebrow {
  display: block;
  width: fit-content;
  margin-bottom: 18px !important;
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

body.premium-site .narrow-centre,
body.premium-site .page-hero {
  position: relative;
  max-width: 810px !important;
  margin-right: auto !important;
  margin-left: 0 !important;
  text-align: left !important;
}

body.premium-site main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) {
  min-height: 425px;
  padding-top: 104px !important;
  padding-bottom: 84px !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

body.premium-site :is(.narrow-centre, .page-hero) h1 {
  max-width: 17ch;
  margin-bottom: 24px !important;
  font-size: clamp(42px, 5vw, 66px) !important;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.03 !important;
}

body.premium-site :is(.narrow-centre, .page-hero) > p,
body.premium-site .page-hero .lead {
  max-width: 62ch;
  margin: 0 0 18px !important;
  color: var(--text-muted) !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

body.premium-site .section-title,
body.premium-site .service-block > h2 {
  font-size: clamp(31px, 3.4vw, 46px) !important;
  font-weight: 600;
  line-height: 1.08 !important;
}

/* Standard content rows replace the old illustrated card wall. */
body.premium-site .card-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  width: 100%;
  max-width: none !important;
  margin: 12px auto 0 !important;
  border-top: 1px solid var(--premium-line);
}

body.premium-site .card-grid > :is(.svc-card, .card) {
  position: relative;
  display: grid !important;
  grid-template-columns: 62px minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: start;
  min-height: 0 !important;
  padding: 28px 8px 29px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--premium-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.premium-site .card-grid > :is(.svc-card, .card)::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--premium-glow);
}

body.premium-site .card-grid > :is(.svc-card, .card) > .num {
  grid-column: 1;
  margin: 2px 0 0 20px !important;
  color: var(--text-faint) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px !important;
}

body.premium-site .card-grid > :is(.svc-card, .card) > h3 {
  grid-column: 2;
  margin: 0 !important;
  font-size: 21px !important;
  font-weight: 600;
  line-height: 1.28 !important;
}

body.premium-site .card-grid > :is(.svc-card, .card) > p {
  grid-column: 3;
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: 15.5px !important;
  line-height: 1.68 !important;
}

body.premium-site .single-followup-card {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto 72px !important;
  padding: 30px 34px 31px 94px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--premium-line) !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, rgba(88, 199, 123, 0.045), transparent 64%) !important;
  box-shadow: none !important;
}

body.premium-site .single-followup-card::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  color: var(--green);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: left;
}

body.premium-site .single-followup-card h3 {
  margin-bottom: 10px !important;
  font-size: 22px !important;
}

body.premium-site .single-followup-card p {
  max-width: 74ch;
  margin: 0 !important;
  color: var(--text-muted);
}

/* Service directory becomes a clear, premium navigation list. */
body.premium-site .service-directory > .svc-card {
  grid-template-columns: 62px minmax(220px, 0.75fr) minmax(0, 1fr) 240px;
  align-items: center;
  cursor: pointer;
  transition: padding-left 160ms ease, background-color 160ms ease;
}

body.premium-site .service-directory .service-link {
  grid-column: 4;
  align-self: center;
  justify-self: end;
  margin: 0 !important;
  padding: 11px 34px 11px 0 !important;
  color: var(--amber);
  font-size: 11px;
  text-align: right !important;
  text-decoration: none;
}

body.premium-site .service-directory .service-link::before {
  content: "\2192";
  position: absolute;
  right: 8px;
  font-size: 17px;
}

@media (hover: hover) and (pointer: fine) {
  body.premium-site .service-directory > .svc-card:hover {
    padding-left: 10px !important;
    border-color: var(--premium-line-strong) !important;
    background: rgba(245, 166, 35, 0.025) !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

/* Homepage: preserve the exact dispatch board; refine everything around it. */
body.page-home header.hero {
  padding: 96px 0 104px;
  background: radial-gradient(circle at 78% 35%, rgba(88, 199, 123, 0.045), transparent 26rem);
}

body.page-home header.hero .wrap > div:first-child { text-align: left !important; }
body.page-home header.hero .eyebrow { text-align: left !important; }
body.page-home h1.headline {
  max-width: 12ch;
  font-size: clamp(49px, 5.2vw, 70px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.99;
}
body.page-home h1.headline em { font-weight: 500; }
body.page-home .sub { max-width: 60ch; font-size: 16.5px; line-height: 1.72; }
body.page-home .cta-row { justify-content: flex-start !important; }
body.page-home .trust-line { text-align: left !important; }

body.page-home main > section {
  padding: 92px 0;
  border-bottom: 1px solid var(--premium-line);
}

body.page-home header.hero + section .wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
}
body.page-home header.hero + section .missed-example {
  width: 100%;
  max-width: none;
  margin: 0;
}
body.page-home header.hero + section .plain {
  max-width: 30ch;
  margin: 0 !important;
  text-align: left !important;
}

body.page-home .section-head,
body.page-home .narrow-centre {
  max-width: 760px !important;
  margin: 0 0 46px !important;
  text-align: left !important;
}

body.page-home .section-head :is(h2, p, .eyebrow),
body.page-home .narrow-centre :is(h2, p, .eyebrow) { text-align: left !important; }

body.page-home .jobs {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

body.page-home .job-card {
  position: relative;
  min-height: 0 !important;
  padding: 31px 34px 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-home .job-card + .job-card { border-left: 1px solid var(--premium-line) !important; }
body.page-home .job-card .tag { color: var(--amber); font-size: 10.5px; }
body.page-home .job-card h3 { margin: 24px 0 12px; font-size: 23px; }
body.page-home .job-card p { color: var(--text-muted); font-size: 15.5px; line-height: 1.68; }
body.page-home .job-card .service-link { margin-top: 25px; padding-right: 28px; }

body.page-home .status-list { max-width: none; border-color: var(--premium-line); }
body.page-home .status-row {
  min-height: 66px;
  padding: 17px 4px;
  border-color: var(--premium-line);
}

body.page-home #about .narrow-centre { max-width: 800px !important; }
body.page-home .stat-big { text-align: left !important; }
body.page-home .cred-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}
body.page-home .cred-points > div {
  padding: 28px 32px;
  border: 0 !important;
  background: transparent !important;
}
body.page-home .cred-points > div + div { border-left: 1px solid var(--premium-line) !important; }

/* About and How it works */
body.page-about .stat-big {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 0;
  padding: 36px 0 40px;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
  color: var(--amber);
  font-size: clamp(76px, 11vw, 132px) !important;
  font-weight: 600;
  line-height: 0.9;
  text-align: left !important;
}

body.page-about .stat-big span { max-width: 140px; color: var(--text-muted); }
body.page-about .card-grid { margin-top: 0 !important; }

body.page-how .card-grid > .svc-card {
  grid-template-columns: 82px minmax(220px, 0.72fr) minmax(0, 1.28fr);
  padding-top: 34px !important;
  padding-bottom: 35px !important;
}

/* Service and sector detail pages */
body.page-service-detail main > .wrap > .narrow-centre:not(:first-child),
body.page-services main > .wrap > .narrow-centre:not(:first-child) {
  max-width: 780px !important;
  margin: 86px 0 35px !important;
  padding: 0 !important;
}

body.page-service-detail main > .wrap > .narrow-centre:last-child,
body.page-services main > .wrap > .narrow-centre:last-child {
  max-width: 760px !important;
  margin-top: 78px !important;
  padding: 52px 0 28px !important;
  border-top: 1px solid var(--premium-line);
}

body.page-services .service-directory { margin-top: 0 !important; }

/* Trial and careers journeys */
body.page-journey .service-block {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 76px 0 !important;
  border-top: 1px solid var(--premium-line) !important;
  border-bottom: 0 !important;
  text-align: left !important;
}

body.page-journey .service-block > h2 { max-width: 720px; margin-bottom: 36px !important; }

body.page-journey .tri-grid,
body.page-journey .service-block > .card-grid:not(.service-directory) {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin-top: 0 !important;
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
}

body.page-journey .tri-card,
body.page-journey .service-block > .card-grid > .card {
  position: relative;
  min-height: 0 !important;
  padding: 29px 31px 31px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-journey :is(.tri-card, .service-block > .card-grid > .card) +
  :is(.tri-card, .service-block > .card-grid > .card) {
  border-left: 1px solid var(--premium-line) !important;
}

body.page-journey .tri-card::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--green);
}

body.page-journey .tri-card h3 { margin-bottom: 12px !important; font-size: 22px; }
body.page-journey .tri-card p { margin: 0 !important; color: var(--text-muted); }

body.page-journey .trial-steps {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  border-top: 1px solid var(--premium-line);
}

body.page-journey .trial-step {
  display: grid !important;
  grid-template-columns: 70px minmax(220px, 0.72fr) minmax(0, 1.28fr) !important;
  gap: 26px !important;
  align-items: start !important;
  padding: 26px 0 28px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--premium-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.page-journey .trial-step .n {
  grid-column: 1 !important;
  color: var(--amber) !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px !important;
}

body.page-journey .trial-step > div {
  grid-column: 2 / 4 !important;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
}

body.page-journey .trial-step h3 { margin: 0 !important; font-size: 21px; }
body.page-journey .trial-step p { margin: 0 !important; color: var(--text-muted); }

body.page-journey .pill-row { justify-content: flex-start !important; }
body.page-journey .pill {
  border-radius: 2px !important;
  border-color: var(--premium-line) !important;
  background: rgba(26, 34, 43, 0.35) !important;
}

body.page-journey main > .wrap > .page-cta,
body.page-thanks main > .wrap > .page-cta {
  width: 100%;
  max-width: 820px !important;
  margin: 0 !important;
  padding: 64px 0 10px !important;
  border: 0 !important;
  border-top: 1px solid var(--premium-line) !important;
  background: transparent !important;
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

body.page-journey main > .wrap > .page-cta :is(p, div),
body.page-thanks main > .wrap > .page-cta :is(p, div) { text-align: left !important; }

body.page-journey .page-hero > .page-cta {
  width: 100%;
  margin-bottom: 0 !important;
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

body.page-journey details.acc {
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--premium-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.page-journey details.acc:first-child { border-top: 1px solid var(--premium-line) !important; }
body.page-journey details.acc summary {
  min-height: 62px;
  padding: 18px 48px 18px 0 !important;
  font-size: 20px;
  text-align: left !important;
}
body.page-journey details.acc .acc-body { padding: 0 0 24px !important; text-align: left !important; }

/* Contact and application forms */
body.page-form .page-hero,
body.page-contact .page-hero { max-width: 720px !important; }

body.page-contact .contact-expect {
  width: 100%;
  max-width: none;
  margin: 0 0 46px !important;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--premium-line);
  border-bottom: 1px solid var(--premium-line);
  text-align: left;
}

body.page-contact .contact-expect .row {
  justify-content: flex-start !important;
  padding: 7px 24px;
  text-align: left !important;
}
body.page-contact .contact-expect .row + .row { border-left: 1px solid var(--premium-line); }

body.premium-site .contact-wrap,
body.premium-site .trial-form-wrap {
  width: 100%;
  max-width: 760px !important;
  margin: 0 auto 42px !important;
  text-align: left !important;
}

body.premium-site .contact-form {
  position: relative;
  max-width: none !important;
  padding: clamp(26px, 4vw, 48px) !important;
  border: 1px solid var(--premium-line) !important;
  border-top: 2px solid var(--amber) !important;
  border-radius: var(--premium-radius) !important;
  background:
    linear-gradient(145deg, rgba(88, 199, 123, 0.025), transparent 36%),
    rgba(16, 27, 41, 0.78) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15) !important;
}

body.premium-site .contact-form .fld { margin-bottom: 19px !important; }
body.page-form .contact-form .field-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
body.premium-site .contact-form label { font-size: 13px !important; }
body.premium-site .contact-form :is(input, select, textarea) {
  min-height: 50px;
  border-radius: 2px !important;
  border-color: rgba(152, 162, 172, 0.28) !important;
  background: #0b1725 !important;
}
body.premium-site .contact-form textarea { min-height: 132px; }
body.premium-site .contact-form :is(input, select, textarea):focus {
  border-color: var(--amber) !important;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.09) !important;
}
body.premium-site .contact-form button[type="submit"] { min-width: 190px; }

body.premium-site .form-error {
  display: block;
  margin: 9px 0 0;
  color: #f1a79e;
  font-size: 13px;
}

body.premium-site .page-links { justify-content: flex-start !important; }

/* Legal and completion pages */
body.page-legal main > .legal {
  max-width: 900px;
  padding-top: 76px;
  padding-bottom: 90px;
}
body.page-legal .legal h1 {
  margin: 36px 0 8px;
  font-size: clamp(42px, 5vw, 62px);
  text-align: left !important;
}
body.page-legal .legal h2 {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--premium-line);
  font-size: 29px;
}
body.page-legal .legal :is(p, li) { color: var(--text-muted); line-height: 1.72; }

body.page-thanks main > .wrap { min-height: 64vh; }
body.page-thanks main > .wrap::before,
body.page-thanks main > .wrap::after { opacity: 0.9; }

/* Footer */
body.premium-site footer {
  position: relative;
  padding-top: 68px !important;
  border-color: var(--premium-line) !important;
  background:
    linear-gradient(180deg, rgba(16, 27, 41, 0.56), rgba(7, 17, 31, 0.96));
}

body.premium-site footer .foot-columns {
  gap: 54px 44px;
  padding-bottom: 48px;
  text-align: left !important;
}

body.premium-site footer .foot-col :is(h3, a) { text-align: left !important; }
body.premium-site footer .foot-col h3 {
  margin-bottom: 19px;
  color: var(--text-faint);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body.premium-site footer .foot-col a {
  width: fit-content;
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.35;
  transition: color 140ms ease;
}
body.premium-site footer .foot-col a:hover { color: var(--amber); }
body.premium-site footer .foot-bottom {
  padding-top: 22px;
  border-color: var(--premium-line);
  color: var(--text-faint);
}

/* Mobile */
@media (max-width: 960px) {
  body.premium-site main:not(.account-page) > .wrap::before { right: -150px; width: 390px; opacity: 0.38; }
  body.premium-site main:not(.account-page) > .wrap::after { right: -45px; opacity: 0.32; }

  body.premium-site .service-directory > .svc-card {
    grid-template-columns: 60px minmax(180px, 0.7fr) minmax(0, 1.3fr);
  }
  body.premium-site .service-directory .service-link {
    grid-column: 2 / 4;
    justify-self: start;
    margin-top: 10px !important;
    text-align: left !important;
  }

  body.page-home .jobs,
  body.page-home .cred-points,
  body.page-journey .tri-grid,
  body.page-journey .service-block > .card-grid:not(.service-directory) {
    grid-template-columns: 1fr !important;
  }

  body.page-home .job-card + .job-card,
  body.page-home .cred-points > div + div,
  body.page-journey :is(.tri-card, .service-block > .card-grid > .card) +
    :is(.tri-card, .service-block > .card-grid > .card) {
    border-top: 1px solid var(--premium-line) !important;
    border-left: 0 !important;
  }

  body.page-contact .contact-expect { grid-template-columns: 1fr; }
  body.page-contact .contact-expect .row { padding: 10px 0; }
  body.page-contact .contact-expect .row + .row { border-left: 0; }
}

@media (max-width: 760px) {
  body.premium-site .wrap { padding-right: 22px; padding-left: 22px; }
  body.premium-site .nav-tag { font-size: 10.5px; }
  body.premium-site .nav-menu { padding-right: 28px; padding-left: 28px; }

  body.premium-site main:not(.account-page) > .wrap { padding-bottom: 52px; }
  body.premium-site main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) {
    min-height: 0;
    padding-top: 72px !important;
    padding-bottom: 66px !important;
  }
  body.premium-site :is(.narrow-centre, .page-hero) h1 { font-size: 37px !important; }

  body.premium-site .card-grid > :is(.svc-card, .card),
  body.premium-site .service-directory > .svc-card,
  body.page-how .card-grid > .svc-card {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 10px 16px;
    padding: 24px 0 25px !important;
  }
  body.premium-site .card-grid > :is(.svc-card, .card)::before { top: 32px; }
  body.premium-site .card-grid > :is(.svc-card, .card) > .num { grid-column: 1; margin-left: 17px !important; }
  body.premium-site .card-grid > :is(.svc-card, .card) > h3 { grid-column: 2; }
  body.premium-site .card-grid > :is(.svc-card, .card) > p { grid-column: 2; }
  body.premium-site .service-directory .service-link {
    grid-column: 2 !important;
    justify-self: start;
  }

  body.premium-site .single-followup-card {
    margin-bottom: 60px !important;
    padding: 26px 0 28px 0 !important;
  }
  body.premium-site .single-followup-card::before {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

  body.page-home header.hero { padding: 66px 0 72px; }
  body.page-home header.hero .wrap > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  body.page-home header.hero .eyebrow { order: 1; }
  body.page-home header.hero .headline { order: 2; }
  body.page-home header.hero .sub:nth-of-type(1) { order: 3; }
  body.page-home header.hero .sub:nth-of-type(2) { order: 4; }
  body.page-home header.hero .cta-row { order: 5; }
  body.page-home header.hero .sub:nth-of-type(3) { order: 6; }
  body.page-home header.hero .trust-line { order: 7; }
  body.page-home h1.headline { max-width: 14ch; font-size: 42px; }
  body.page-home .sub { margin-bottom: 15px; font-size: 15.5px; line-height: 1.62; }
  body.page-home .cta-row { align-items: stretch; }
  body.page-home .cta-row :is(.btn, .btn-ghost) { width: 100%; }
  body.page-home main > section { padding: 66px 0; }
  body.page-home header.hero + section .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  body.page-home header.hero + section .plain { max-width: none; }
  body.page-home .job-card,
  body.page-home .cred-points > div { padding: 25px 0 28px !important; }

  body.page-about .stat-big {
    align-items: flex-end;
    gap: 14px;
    font-size: 74px !important;
  }

  body.page-journey .service-block { padding: 58px 0 !important; }
  body.page-journey .tri-card { padding: 25px 0 28px !important; }
  body.page-journey .trial-step {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 10px 14px !important;
  }
  body.page-journey .trial-step .n { grid-column: 1 !important; }
  body.page-journey .trial-step > div {
    grid-column: 2 !important;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.premium-site .contact-form { padding: 24px 20px !important; }
  body.premium-site .field-pair { grid-template-columns: 1fr !important; }
  body.premium-site .contact-form button[type="submit"] { width: 100%; }

  body.premium-site .whatsapp-float { display: none !important; }

  body.premium-site footer .foot-columns { gap: 34px; }
  body.premium-site footer .foot-bottom { gap: 10px; }

  body.premium-site #vo-cookie-settings {
    right: 6px !important;
    bottom: 3px !important;
    left: auto !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
    opacity: 0.72;
  }
}

@media (max-width: 560px) {
  body.premium-site .nav-tag { display: none !important; }
}

/* September refinement: balanced alignment, richer B2B depth and a compact
   navigation drawer. The Account Desk presentation and the homepage
   dispatch board are intentionally left untouched. */
html.nav-is-open,
html.nav-is-open body {
  overflow: hidden !important;
}

body.premium-site .nav-menu {
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  padding: 0;
  overflow: hidden;
}

body.premium-site .nav-menu-scroll {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 0;
  padding: 78px 34px max(22px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
}

body.premium-site .nav-menu-scroll > a {
  padding-top: clamp(7px, 1.25vh, 10px);
  padding-bottom: clamp(7px, 1.25vh, 10px);
  font-size: clamp(17px, 2.6vh, 20px);
  line-height: 1.1;
}

body.premium-site .nav-menu .nav-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0 0 3px;
  place-items: center;
  border: 1px solid rgba(152, 162, 172, 0.28);
  border-radius: 50%;
  background: rgba(11, 22, 36, 0.94);
  color: var(--text-muted);
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

body.premium-site .nav-menu .nav-close:hover {
  border-color: rgba(245, 166, 35, 0.64);
  background: rgba(245, 166, 35, 0.055);
  color: var(--amber);
}

body.premium-site .nav-menu .nav-close:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

body.premium-site:not(.page-account) {
  --text-muted: #aab4be;
  --text-faint: #919da8;
}

body.premium-site:not(.page-account) :is(.btn, .btn-ghost) {
  position: relative;
  overflow: hidden;
}

body.premium-site:not(.page-account) .btn {
  border-color: #f7b33f !important;
  background: linear-gradient(135deg, #ffb126 0%, #f5a623 52%, #e8940d 100%) !important;
  box-shadow:
    0 16px 34px rgba(245, 166, 35, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
}

body.premium-site:not(.page-account) .btn-ghost {
  background: rgba(16, 27, 41, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

/* Centre only the editorial moments: section introductions, proof statements
   and closing calls to action. Operational detail, cards, lists and forms
   remain left aligned for fast scanning. */
body.premium-site:not(.page-account) main > .wrap > .narrow-centre:not(:first-child),
body.page-home main > section .section-head,
body.page-home main > section .narrow-centre {
  max-width: 850px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

body.premium-site:not(.page-account) main > .wrap > .narrow-centre:not(:first-child)
  :is(h2, h3, p, .eyebrow),
body.page-home main > section :is(.section-head, .narrow-centre)
  :is(h2, h3, p, .eyebrow) {
  text-align: center !important;
}

body.premium-site:not(.page-account) main > .wrap > .narrow-centre:not(:first-child) .eyebrow,
body.page-home main > section :is(.section-head, .narrow-centre) .eyebrow {
  margin-right: auto !important;
  margin-left: auto !important;
}

body.premium-site:not(.page-account) main > .wrap > .narrow-centre:not(:first-child)::before,
body.page-home main > section :is(.section-head, .narrow-centre)::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  box-shadow: 0 0 18px rgba(245, 166, 35, 0.18);
}

body.page-home header.hero + section .wrap {
  display: flex;
  max-width: 980px;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

body.page-home header.hero + section .missed-example {
  width: min(100%, 720px);
  max-width: 720px;
  margin: 0 auto;
  padding: 23px 28px;
  border-color: rgba(201, 112, 102, 0.42);
  background:
    linear-gradient(110deg, rgba(201, 112, 102, 0.075), transparent 58%),
    rgba(16, 27, 41, 0.82);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
}

body.page-home header.hero + section .plain {
  max-width: 760px;
  margin: 0 auto !important;
  font-size: clamp(20px, 2.25vw, 28px);
  line-height: 1.5;
  text-align: center !important;
}

body.page-home header.hero + section .plain strong {
  color: var(--amber);
  font-weight: 600;
}

body.page-home #about .stat-big {
  justify-content: center;
  text-align: center !important;
}

body.page-journey main > .wrap > .page-cta,
body.page-thanks main > .wrap > .page-cta {
  margin-right: auto !important;
  margin-left: auto !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

body.page-journey main > .wrap > .page-cta :is(p, div),
body.page-thanks main > .wrap > .page-cta :is(p, div) {
  text-align: center !important;
}

body.page-journey .service-block > h2 {
  max-width: 780px;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

/* A continuous, refined surface keeps information structured without
   reverting to a wall of floating cards. */
body.premium-site:not(.page-account) .card-grid,
body.page-home :is(.jobs, .cred-points, .status-list),
body.page-journey :is(.tri-grid, .service-block > .card-grid:not(.service-directory)) {
  border: 1px solid rgba(152, 162, 172, 0.18) !important;
  border-top-color: rgba(245, 166, 35, 0.34) !important;
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(88, 199, 123, 0.025), transparent 34%),
    linear-gradient(180deg, rgba(16, 27, 41, 0.72), rgba(10, 22, 36, 0.52));
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

body.premium-site:not(.page-account) .card-grid > :is(.svc-card, .card) {
  padding-right: 28px !important;
  padding-left: 28px !important;
}

body.premium-site:not(.page-account) .card-grid > :is(.svc-card, .card)::before {
  left: 28px;
}

body.premium-site:not(.page-account) .service-directory .service-link { right: 20px; }

body.page-home .status-list { padding: 0 28px; }

body.page-home .jobs > .job-card,
body.page-home .cred-points > div,
body.page-journey :is(.tri-card, .service-block > .card-grid > .card) {
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  body.premium-site:not(.page-account) .card-grid > :is(.svc-card, .card):hover,
  body.page-home .jobs > .job-card:hover,
  body.page-home .cred-points > div:hover,
  body.page-journey :is(.tri-card, .service-block > .card-grid > .card):hover {
    background-color: rgba(245, 166, 35, 0.025) !important;
    box-shadow: inset 0 1px 0 rgba(245, 166, 35, 0.08);
  }
}

body.page-home main > section:nth-of-type(even) {
  background:
    radial-gradient(circle at 50% 0, rgba(88, 199, 123, 0.035), transparent 28rem),
    rgba(10, 22, 36, 0.28);
}

body.premium-site:not(.page-account) footer {
  background:
    linear-gradient(180deg, rgba(16, 27, 41, 0.56), rgba(7, 17, 31, 0.96)),
    var(--ink);
}

@media (max-width: 760px) {
  body.premium-site .nav-menu-scroll {
    padding-right: 28px;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
    padding-left: 28px;
  }

  body.premium-site .nav-menu .nav-close {
    top: 12px;
    right: 12px;
  }

  body.page-home header.hero + section .wrap { gap: 24px; }
  body.page-home header.hero + section .missed-example { padding: 20px; }
  body.page-home header.hero + section .plain { font-size: 20px; }

  body.premium-site:not(.page-account) .card-grid > :is(.svc-card, .card) {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  body.premium-site:not(.page-account) .card-grid > :is(.svc-card, .card)::before { left: 20px; }
  body.page-home .status-list { padding: 0 18px; }
  body.page-home .jobs > .job-card,
  body.page-home .cred-points > div,
  body.page-journey :is(.tri-card, .service-block > .card-grid > .card) {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

/* A last-resort accessibility fallback for unusually short browser windows. */
@media (max-height: 430px) {
  body.premium-site .nav-menu-scroll {
    padding-top: 62px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.premium-site .nav-menu-scroll > a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
  }
}

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

/* Fast, arrow-free drawer interactions. Keeping the highlight on the whole
   row makes the target feel immediate without adding visual clutter. */
body.premium-site .nav-menu a::after {
  content: none !important;
  display: none !important;
}

body.premium-site .nav-menu-scroll > a,
body.premium-site .nav-service-trigger,
body.premium-site .nav-service-options a {
  transition:
    color 90ms ease,
    padding-left 110ms ease,
    border-color 90ms ease,
    background-color 90ms ease !important;
  transition-delay: 0s !important;
}

body.premium-site .nav-menu-scroll > a,
body.premium-site .nav-service-options a {
  padding-right: 0;
}

body.premium-site .nav-menu-scroll > a:hover,
body.premium-site .nav-menu-scroll > a:focus-visible,
body.premium-site .nav-service-trigger:hover,
body.premium-site .nav-service-trigger:focus-visible {
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.075), transparent 72%);
  color: var(--amber);
}

body.premium-site .nav-service-group {
  transition:
    flex-grow 155ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 90ms ease,
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s !important;
}

body.premium-site .nav-service-options {
  transition:
    max-height 145ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 75ms ease,
    transform 105ms ease;
}

body.premium-site .nav-service-options a,
body.premium-site .nav-service-options a:hover,
body.premium-site .nav-service-options a:focus-visible {
  padding-left: 27px !important;
}

body.premium-site .nav-service-options a {
  background: transparent;
  box-shadow: inset 0 0 0 rgba(245, 166, 35, 0);
  transition:
    color 85ms ease,
    background-color 85ms ease,
    box-shadow 110ms ease !important;
}

body.premium-site .nav-service-options a::before {
  left: 8px;
  transition:
    background-color 90ms ease,
    box-shadow 110ms ease,
    transform 110ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.premium-site .nav-service-options a:hover,
body.premium-site .nav-service-options a:focus-visible {
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.065), transparent 78%);
  box-shadow: inset 2px 0 0 rgba(245, 166, 35, 0.68);
  color: var(--text);
}

body.premium-site .nav-service-options a:hover::before,
body.premium-site .nav-service-options a:focus-visible::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.09);
  transform: translateY(-50%) scale(1.12);
}

/* Services page: preserve the established directory and add only a compact
   two-route signpost near the top. */
body.page-services .service-category-shortcuts {
  display: grid;
  max-width: 940px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px auto 0;
}

body.page-services .service-category-shortcuts a {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 76px;
  align-content: center;
  padding: 15px 20px 16px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background: rgba(16, 31, 47, 0.34);
  text-decoration: none;
  transition:
    border-color 110ms ease,
    background-color 110ms ease,
    box-shadow 140ms ease,
    transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-services .service-category-shortcuts a::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(88, 199, 123, 0.72));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-services .service-category-shortcuts a:hover,
body.page-services .service-category-shortcuts a:focus-visible {
  border-color: rgba(245, 166, 35, 0.46);
  background: rgba(16, 31, 47, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

body.page-services .service-category-shortcuts a:hover::after,
body.page-services .service-category-shortcuts a:focus-visible::after {
  transform: scaleX(1);
}

body.page-services .service-category-shortcuts a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

body.page-services .service-category-shortcuts span {
  color: var(--text);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.1;
}

body.page-services .service-category-shortcuts small {
  color: var(--text-muted);
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px;
  line-height: 1.35;
}

@media (max-width: 760px) {
  body.page-services .service-category-shortcuts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  body.page-services .service-category-shortcuts a {
    min-height: 68px;
    padding: 13px 17px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-services .service-category-shortcuts a,
  body.page-services .service-category-shortcuts a::after {
    transition-duration: 0.01ms !important;
  }

  body.page-services .service-category-shortcuts a:hover,
  body.page-services .service-category-shortcuts a:focus-visible {
    transform: none;
  }
}

/* Homepage dispatch board: a modest desktop reduction, preserving the
   original content and behaviour while tightening its internal rhythm. */
@media (min-width: 861px) {
  body.page-home header.hero .wrap {
    max-width: 1280px;
    grid-template-columns: minmax(0, 1fr) 610px;
    gap: 54px;
  }

  body.page-home .board-stack {
    width: 610px;
    justify-self: end;
  }

  body.page-home .board-head { padding: 18px 22px; }
  body.page-home .board-head .panel-label { font-size: 14px; }
  body.page-home .ticker { height: 400px; }

  body.page-home .ticket {
    grid-template-columns: 44px minmax(0, 1fr) 44px 124px;
    column-gap: 12px;
    padding: 14px 22px;
    font-size: 13px;
  }

  body.page-home .ticket .op {
    align-self: baseline;
    text-align: center;
  }

  body.page-home .ticket .status {
    align-self: baseline;
    text-align: right;
  }

  body.page-home .board-foot {
    align-items: center;
    padding: 14px 22px;
    font-size: 12px;
  }
}

/* Alignment integrity pass
   Keep each section on one clear axis and align repeated directory content
   from the top rather than centring elements of different heights. */
body.premium-site .service-directory > .svc-card {
  align-items: start;
}

body.premium-site .service-directory > .svc-card::before {
  top: 36px;
}

body.premium-site .service-directory .service-link {
  align-self: start;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.page-how .card-grid > .svc-card::before {
  top: 41px;
}

body.premium-site:not(.page-account) main > .wrap > .narrow-centre:not(:first-child) > :is(h2, h3, p),
body.page-home main > section :is(.section-head, .narrow-centre) > :is(h2, h3, p) {
  margin-right: auto !important;
  margin-left: auto !important;
}

body.page-account .account-cta .wrap {
  text-align: center !important;
}

body.page-account .account-cta .wrap > :is(.eyebrow, h2, p) {
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  body.premium-site .service-directory > .svc-card::before,
  body.page-how .card-grid > .svc-card::before {
    top: 32px;
  }

  body.page-journey .trial-step > .n,
  body.page-journey .trial-step > div {
    grid-row: 1 !important;
  }
}

/* Final visual-integrity pass.
   Marketing introductions use one centred axis; operational rows and forms
   stay left aligned. Decorative labels never masquerade as content. */

/* Standard marketing heroes */
body:is(.page-services, .page-service-detail, .page-how, .page-about, .page-journey, .page-contact)
  main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) {
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  align-items: center !important;
  text-align: center !important;
}

body:is(.page-services, .page-service-detail, .page-how, .page-about, .page-journey, .page-contact)
  main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero)
  > :is(.eyebrow, h1, h2, p, .lead, .page-cta, .cta-row) {
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

body:is(.page-services, .page-service-detail, .page-how, .page-about, .page-journey, .page-contact)
  main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) h1 {
  max-width: 20ch !important;
}

body:is(.page-services, .page-service-detail, .page-how, .page-about, .page-journey, .page-contact)
  main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) > p,
body:is(.page-services, .page-service-detail, .page-how, .page-about, .page-journey, .page-contact)
  main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) .lead {
  max-width: 68ch !important;
}

body:is(.page-services, .page-service-detail, .page-how, .page-about, .page-journey, .page-contact)
  main:not(.account-page) > .wrap > :first-child:is(.narrow-centre, .page-hero) > .page-cta {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
}

/* Reusable numbered rows: the marker, number, title and copy share a true top axis. */
body.premium-site .card-grid > :is(.svc-card, .card) {
  grid-template-columns: 48px minmax(220px, 0.72fr) minmax(0, 1.28fr);
  column-gap: 26px;
  align-items: start !important;
}

body.premium-site .card-grid > :is(.svc-card, .card)::before,
body.premium-site .service-directory > .svc-card::before,
body.page-how .card-grid > .svc-card::before {
  top: 38px;
}

body.premium-site .card-grid > :is(.svc-card, .card) > .num {
  margin: 5px 0 0 22px !important;
  line-height: 17px !important;
}

body.page-how .card-grid > .svc-card::before {
  top: 44px;
}

/* Every numeric marker keys off the first line of its associated heading. */
body.page-usage .usage-options .usage-index {
  align-self: start;
  margin-top: 9px;
}

body.page-usage .usage-steps > li {
  align-items: start;
}

body.page-usage .usage-steps > li > span {
  align-self: start;
  margin-top: 5px;
}

body.page-journey .trial-step .n {
  align-self: start !important;
  margin-top: 0 !important;
}

/* Supporting sentences use the body face; mono is reserved for labels/data. */
body.premium-site .note-line {
  font-family: 'Barlow', sans-serif !important;
  letter-spacing: normal !important;
}

body.premium-site .service-directory > .svc-card {
  grid-template-columns: 48px minmax(230px, 0.74fr) minmax(0, 1fr) minmax(190px, 220px);
  column-gap: 26px;
  align-items: start !important;
}

body.premium-site .service-directory .service-link {
  align-self: start;
  justify-self: end;
  line-height: 1.55;
}

/* The former SYSTEM strip is now a deliberate two-column capability panel. */
body.premium-site .single-followup-card {
  display: grid !important;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px 54px;
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  margin: 22px auto 76px !important;
  padding: 36px 40px !important;
  border: 1px solid rgba(152, 162, 172, 0.2) !important;
  border-top-color: rgba(245, 166, 35, 0.42) !important;
  border-radius: 4px !important;
  background:
    linear-gradient(120deg, rgba(88, 199, 123, 0.045), transparent 46%),
    linear-gradient(180deg, rgba(16, 27, 41, 0.82), rgba(10, 22, 36, 0.66)) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

body.premium-site .single-followup-card::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 0;
  width: 3px;
  height: auto;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, var(--amber), var(--green));
  box-shadow: none;
}

body.premium-site .single-followup-card h3 {
  align-self: start;
  margin: 0 !important;
  line-height: 1.25 !important;
}

body.premium-site .single-followup-card p {
  align-self: start;
  max-width: none;
  margin: 0 !important;
}

/* Trial capabilities: equal, scannable cells rather than a stretched tag row. */
body.page-trial .pill-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 980px);
  margin: 30px auto 0 !important;
}

body.page-trial .pill {
  position: relative;
  display: flex !important;
  min-height: 64px;
  align-items: center;
  padding: 15px 18px 15px 42px !important;
  border: 1px solid var(--premium-line) !important;
  border-radius: 3px !important;
  background: linear-gradient(135deg, rgba(16, 27, 41, 0.88), rgba(10, 22, 36, 0.62)) !important;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: left !important;
}

body.page-trial .pill::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--premium-glow);
  transform: translateY(-50%);
}

body.page-trial .pill-row + .note-line {
  max-width: 760px;
  margin: 22px auto 0 !important;
  text-align: center !important;
}

body.premium-site.page-journey main > .wrap > .service-block > h2,
body.premium-site.page-trial main > .wrap > .service-block > .pill-row + .note-line {
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

/* These journey headings intentionally use a centred presentation. The
   explicit selector prevents the general content-alignment rule above from
   pulling them back to the left. */
html body.premium-site.page-journey main#main-content > div.wrap > div.service-block > h2,
html body.premium-site.page-trial main#main-content > div.wrap > div.service-block > div.pill-row + p.note-line {
  display: block !important;
  width: min(100%, 780px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

/* Homepage alignment contract: every section introduction uses one centred
   axis; the operational content beneath it remains left aligned. */
html body.premium-site.page-home main#main-content > section > div.wrap > :is(.section-head, .narrow-centre) {
  display: flex !important;
  width: min(100%, 850px) !important;
  max-width: 850px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
}

html body.premium-site.page-home main#main-content > section > div.wrap > :is(.section-head, .narrow-centre)
  > :is(.eyebrow, h2, h3, p, a) {
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

html body.premium-site.page-home main#main-content > section > div.wrap > :is(.section-head, .narrow-centre) > p {
  max-width: 70ch;
}

html body.premium-site.page-home main#main-content > section .job-card > :is(.tag, h3, p, .service-link) {
  margin-left: 0 !important;
  text-align: left !important;
}

html body.premium-site.page-home main#main-content > section .job-card > .service-link {
  display: flex !important;
  width: fit-content !important;
  margin-right: auto !important;
  align-self: flex-start;
  justify-self: start;
}

/* Site-wide presentation rule: if a block is visually centred, every piece
   of its introductory copy shares that same axis. */
html body.premium-site:not(.page-account):not(.page-legal)
  :is(.section-head, .narrow-centre, .page-hero, .page-cta, .cta-block, .call-note) {
  text-align: center !important;
}

html body.premium-site:not(.page-account):not(.page-legal)
  :is(.page-hero, .page-cta, .cta-block) {
  align-items: center !important;
  justify-content: center !important;
}

html body.premium-site:not(.page-account):not(.page-legal)
  :is(.section-head, .narrow-centre, .page-hero, .page-cta, .cta-block, .call-note)
  > :is(.eyebrow, h1, h2, h3, p, .lead, .note-line, a, .btn-row, .cta-row) {
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

/* Journey-page feature cards retain their intended three-column layout
   without inheriting the numbered-row grid used by service directories. */
body.page-journey main > .wrap > .service-block > .card-grid:not(.service-directory) > .card {
  display: block !important;
  padding: 29px 31px 31px !important;
}

body.page-journey main > .wrap > .service-block > .card-grid:not(.service-directory) > .card::before {
  position: static;
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 24px;
  border-radius: 0;
  background: var(--green);
  box-shadow: none;
}

body.page-journey main > .wrap > .service-block > .card-grid:not(.service-directory) > .card > h3 {
  margin: 0 0 12px !important;
  font-size: 22px !important;
}

body.page-journey main > .wrap > .service-block > .card-grid:not(.service-directory) > .card > p {
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: 15.5px !important;
  line-height: 1.65 !important;
}

body.page-about .stat-big {
  justify-content: center;
  text-align: center !important;
}

/* Process rows: the number is a purposeful badge centred against the row. */
body.page-journey .trial-steps {
  width: min(100%, 980px);
  margin-right: auto !important;
  margin-left: auto !important;
}

body.page-journey .trial-step {
  grid-template-columns: 44px minmax(220px, 0.72fr) minmax(0, 1.28fr) !important;
  gap: 24px !important;
  align-items: center !important;
  padding: 28px 30px !important;
}

body.page-journey .trial-step .n {
  display: grid !important;
  width: 32px;
  height: 32px;
  margin: 0 !important;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(245, 166, 35, 0.48);
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.045);
  line-height: 1 !important;
  text-align: center !important;
}

body.page-journey .trial-step > div {
  align-items: center;
}

body.page-journey .trial-step :is(h3, p) {
  align-self: center;
}

@media (min-width: 761px) {
  body.page-trial .trial-step .n,
  body.page-careers .trial-step:nth-child(-n + 2) .n {
    transform: translateY(10px);
  }

  body.page-careers .trial-step:nth-child(3) .n {
    transform: translateY(6px);
  }
}

@media (max-width: 960px) {
  body.premium-site .service-directory > .svc-card {
    grid-template-columns: 48px minmax(190px, 0.72fr) minmax(0, 1.28fr);
  }

  body.premium-site .service-directory .service-link {
    grid-column: 2 / 4;
    justify-self: start;
  }

  body.page-trial .pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.premium-site .card-grid > :is(.svc-card, .card),
  body.premium-site .service-directory > .svc-card,
  body.page-how .card-grid > .svc-card {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 14px;
  }

  body.premium-site .card-grid > :is(.svc-card, .card)::before,
  body.premium-site .service-directory > .svc-card::before,
  body.page-how .card-grid > .svc-card::before {
    top: 30px;
    left: 20px;
  }

  body.premium-site .card-grid > :is(.svc-card, .card) > .num {
    margin-left: 18px !important;
  }

  body.premium-site .single-followup-card {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 60px !important;
    padding: 28px 24px 30px !important;
  }

  body.premium-site .single-followup-card::before {
    top: 28px;
    bottom: 28px;
  }

  body.page-trial .pill-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.page-journey .trial-step {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 24px 20px !important;
  }

  body.page-journey .trial-step .n {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 30px;
    height: 30px;
    align-self: start;
  }

  body.page-journey .trial-step > div {
    grid-column: 2 !important;
    grid-row: 1 !important;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  body.page-journey main > .wrap > .service-block > .card-grid:not(.service-directory) > .card {
    padding: 25px 20px 28px !important;
  }
}

/* Premium navigation reveal: full-height right-hand drawer, height-aware
   link sizing and a restrained staggered entrance. */
body.premium-site .nav-overlay {
  background: rgba(3, 10, 19, 0.72);
  backdrop-filter: blur(0) saturate(0.9);
  transition: opacity 360ms ease, backdrop-filter 360ms ease;
}

body.premium-site .nav-toggle-input:checked ~ .nav-overlay {
  backdrop-filter: blur(8px) saturate(0.72);
}

body.premium-site .nav-menu {
  width: min(420px, 100vw);
  visibility: hidden;
  background:
    radial-gradient(circle at 105% 4%, rgba(245, 166, 35, 0.09), transparent 17rem),
    linear-gradient(150deg, rgba(88, 199, 123, 0.045), transparent 34%),
    #0b1624;
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.42);
  transform: translate3d(100%, 0, 0);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 520ms;
}

body.premium-site .nav-menu::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(245, 166, 35, 0.48) 18%, rgba(88, 199, 123, 0.28) 76%, transparent);
  pointer-events: none;
}

body.premium-site .nav-menu::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -170px;
  bottom: -210px;
  width: 410px;
  aspect-ratio: 1;
  border: 1px solid rgba(88, 199, 123, 0.09);
  transform: rotate(45deg);
  pointer-events: none;
}

body.premium-site .nav-toggle-input:checked ~ .nav-menu {
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

body.premium-site .nav-menu-scroll {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(9, minmax(0, 1fr));
  padding: clamp(74px, 11vh, 92px) 36px clamp(18px, 3vh, 28px);
  overflow: hidden;
}

body.premium-site .nav-menu-scroll::before {
  content: none;
}

body.premium-site .nav-menu-scroll > a {
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 0 38px 0 0;
  border-bottom-color: rgba(152, 162, 172, 0.2);
  font-size: clamp(20px, 4.6vh, 28px);
  line-height: 1.08;
  opacity: 0;
  transform: translate3d(22px, 0, 0);
  transition:
    color 160ms ease,
    padding-left 180ms ease,
    border-color 180ms ease,
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.premium-site .nav-menu-scroll > a::before {
  content: none;
}

body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(1) { transition-delay: 100ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(2) { transition-delay: 132ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(3) { transition-delay: 164ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(4) { transition-delay: 196ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(5) { transition-delay: 228ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(6) { transition-delay: 260ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(7) { transition-delay: 292ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(8) { transition-delay: 324ms; }
body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-menu-scroll > a:nth-child(9) { transition-delay: 356ms; }

body.premium-site .nav-menu-scroll > a:hover {
  padding-left: 8px;
  border-bottom-color: rgba(245, 166, 35, 0.42);
}

body.premium-site .nav-menu .nav-close {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.premium-site .nav-menu .nav-close:hover { transform: rotate(90deg); }

@media (max-width: 760px) {
  body.premium-site .nav-menu { width: 100vw; }

  body.premium-site .nav-menu-scroll {
    padding-top: clamp(72px, 10vh, 88px);
    padding-right: 32px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    padding-left: 32px;
  }

  body.premium-site .nav-menu-scroll > a {
    padding-right: 36px;
    padding-left: 0;
    font-size: clamp(20px, 4.25vh, 28px);
  }
  body.premium-site .nav-menu-scroll > a:hover { padding-left: 7px; }
}

@media (max-height: 430px) {
  body.premium-site .nav-menu-scroll {
    padding-top: 62px;
    padding-bottom: 12px;
    overflow: hidden;
  }
  body.premium-site .nav-menu-scroll > a { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  body.premium-site .nav-overlay,
  body.premium-site .nav-menu,
  body.premium-site .nav-menu-scroll > a,
  body.premium-site .nav-menu .nav-close {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  body.premium-site .nav-menu .nav-close:hover { transform: none; }
}

/* Two-route navigation disclosure. The panel remains full-height and never
   needs its own scrollbar, even when both service choices are revealed. */
body.premium-site .nav-menu-scroll {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: clamp(70px, 10vh, 88px) 36px clamp(16px, 2.5vh, 24px);
  overflow: hidden;
}

body.premium-site .nav-menu-scroll > a,
body.premium-site .nav-service-group {
  min-height: 0;
  flex: 1 1 0;
  border-bottom: 1px solid rgba(152, 162, 172, 0.2);
}

body.premium-site .nav-menu-scroll > a {
  padding: 0 38px 0 0;
  font-size: clamp(21px, 4.5vh, 28px);
}

body.premium-site .nav-service-group {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translate3d(22px, 0, 0);
  transition:
    flex-grow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    opacity 260ms ease 132ms,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 132ms;
}

body.premium-site .nav-toggle-input:checked ~ .nav-menu .nav-service-group {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.premium-site .nav-service-trigger {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: clamp(21px, 4.5vh, 28px);
  font-weight: 600;
  line-height: 1.08;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, padding-left 180ms ease;
}

body.premium-site .nav-service-trigger i {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-right: 3px;
}

body.premium-site .nav-service-trigger i::before,
body.premium-site .nav-service-trigger i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 1px;
  width: 13px;
  height: 1px;
  background: var(--amber);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.premium-site .nav-service-trigger i::after { transform: rotate(90deg); }

body.premium-site .nav-service-options {
  display: grid;
  max-height: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 230ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.premium-site .nav-service-options a {
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 7px 34px 7px 18px;
  border-top: 1px solid rgba(152, 162, 172, 0.14);
  border-bottom: 0;
  color: var(--text-muted);
  font-family: 'Barlow', sans-serif;
  font-size: clamp(14px, 2.45vh, 17px);
  font-weight: 500;
  line-height: 1.18;
  opacity: 1;
  transform: none;
  transition: color 160ms ease, padding-left 180ms ease;
}

body.premium-site .nav-service-options a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(88, 199, 123, 0.08);
  transform: translateY(-50%);
}

body.premium-site .nav-service-options a::after {
  right: 3px;
  font-size: 14px;
}

body.premium-site .nav-service-group.is-open,
body.premium-site .nav-service-group:focus-within {
  flex-grow: 2.25;
  border-bottom-color: rgba(245, 166, 35, 0.35);
}

body.premium-site .nav-service-group.is-open .nav-service-options,
body.premium-site .nav-service-group:focus-within .nav-service-options {
  max-height: clamp(72px, 15vh, 108px);
  opacity: 1;
  transform: translateY(0);
}

body.premium-site .nav-service-group.is-open .nav-service-trigger i::after,
body.premium-site .nav-service-group:focus-within .nav-service-trigger i::after {
  transform: rotate(0);
}

@media (hover: hover) {
  body.premium-site .nav-service-group:hover {
    flex-grow: 2.25;
    border-bottom-color: rgba(245, 166, 35, 0.35);
  }

  body.premium-site .nav-service-group:hover .nav-service-options {
    max-height: clamp(72px, 15vh, 108px);
    opacity: 1;
    transform: translateY(0);
  }

  body.premium-site .nav-service-group:hover .nav-service-trigger i::after { transform: rotate(0); }
  body.premium-site .nav-service-trigger:hover { padding-left: 8px; color: var(--amber); }
}

body.premium-site .nav-service-group.is-current-section .nav-service-trigger,
body.premium-site .nav-service-options a[aria-current="page"],
body.premium-site .nav-service-options a.is-current-parent {
  color: var(--amber);
}

body.premium-site .nav-service-trigger:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

@media (max-width: 760px) {
  body.premium-site .nav-menu-scroll {
    padding: clamp(68px, 9vh, 82px) 30px max(14px, env(safe-area-inset-bottom));
  }

  body.premium-site .nav-menu-scroll > a,
  body.premium-site .nav-service-trigger {
    font-size: clamp(20px, 4.15vh, 27px);
  }
}

@media (max-height: 430px) {
  body.premium-site .nav-menu-scroll { padding: 58px 28px 10px; }
  body.premium-site .nav-menu-scroll > a,
  body.premium-site .nav-service-trigger { font-size: 18px; }
  body.premium-site .nav-service-options a { padding-top: 4px; padding-bottom: 4px; font-size: 13px; }
  body.premium-site .nav-service-group.is-open .nav-service-options,
  body.premium-site .nav-service-group:focus-within .nav-service-options { max-height: 60px; }
}

/* Services architecture: two primary routes, with the specialist pages kept
   as focused routes underneath Customer Operations. */
body.page-services .service-pathway-intro {
  max-width: 860px;
  margin: 0 auto;
  padding: 76px 0 50px;
  text-align: center;
}

body.page-services .service-pathway-intro :is(.eyebrow, h1, p) {
  margin-right: auto;
  margin-left: auto;
  text-align: center !important;
}

body.page-services .service-pathway-intro h1 { max-width: 17ch; }
body.page-services .service-pathway-intro p { max-width: 700px; }

.service-pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 88px;
  border: 1px solid var(--panel-border);
  border-top-color: rgba(245, 166, 35, 0.48);
  background: linear-gradient(145deg, rgba(16, 31, 47, 0.68), rgba(9, 21, 35, 0.82));
}

.service-pathway {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 46px 46px 42px;
  overflow: hidden;
}

.service-pathway + .service-pathway { border-left: 1px solid var(--panel-border); }

.service-pathway::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 270px;
  aspect-ratio: 1;
  border: 1px solid rgba(88, 199, 123, 0.08);
  transform: rotate(45deg);
  pointer-events: none;
}

.service-pathway-index {
  margin-bottom: 52px;
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-pathway h2 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.02;
}

.service-pathway p {
  max-width: 50ch;
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.68;
}

.service-pathway .service-pathway-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  color: var(--amber);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-pathway .service-pathway-link::after {
  content: "\2192";
  font-size: 18px;
  transition: transform 160ms ease;
}

.service-pathway .service-pathway-link:hover::after { transform: translateX(5px); }

.service-route-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: start;
  margin-bottom: 86px;
}

.service-route-intro { position: sticky; top: 116px; }
.service-route-intro h2 { max-width: 12ch; font-size: clamp(32px, 3.5vw, 46px); line-height: 1.08; }
.service-route-intro p { margin-top: 20px; color: var(--text-muted); font-size: 16px; line-height: 1.7; }

.service-route-list { border-top: 1px solid var(--panel-border); }
.service-route-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  min-height: 78px;
  align-items: center;
  padding: 22px 48px 22px 22px;
  border-bottom: 1px solid var(--panel-border);
  text-decoration: none;
  transition: padding-left 160ms ease, color 160ms ease, background-color 160ms ease;
}

.service-route-list a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(88, 199, 123, 0.09);
  transform: translateY(-50%);
}

.service-route-list a::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--amber);
  font-size: 19px;
  transform: translateY(-50%);
}

.service-route-list a:hover { padding-left: 29px; color: var(--amber); background: rgba(16, 31, 47, 0.22); }
.service-route-list strong { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 20px; font-weight: 600; }
.service-route-list span { color: var(--text-muted); font-size: 14.5px; line-height: 1.5; }

.service-delivery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 84px;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}

.service-delivery-strip > div { padding: 28px 32px; }
.service-delivery-strip > div + div { border-left: 1px solid var(--panel-border); }
.service-delivery-strip h3 { margin-bottom: 10px; font-size: 21px; }
.service-delivery-strip p { margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.62; }

body.page-customer-operations .account-brand-heading { font-size: clamp(32px, 3.8vw, 46px); }
body.page-customer-operations .account-hero-copy h1 { max-width: 15ch; }
body.page-customer-operations .account-related a { grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1.18fr); }

@media (max-width: 960px) {
  .service-route-section { grid-template-columns: 1fr; gap: 42px; }
  .service-route-intro { position: static; max-width: 700px; }
}

@media (max-width: 760px) {
  .service-pathways { grid-template-columns: 1fr; margin-bottom: 66px; }
  .service-pathway { min-height: 360px; padding: 36px 27px 32px; }
  .service-pathway + .service-pathway { border-top: 1px solid var(--panel-border); border-left: 0; }
  .service-pathway-index { margin-bottom: 38px; }
  .service-pathway h2 { font-size: 38px; }
  .service-route-section { margin-bottom: 66px; }
  .service-route-list a { grid-template-columns: 1fr; gap: 5px; min-height: 0; padding: 20px 40px 20px 21px; }
  .service-route-list a:hover { padding-left: 21px; }
  .service-delivery-strip { grid-template-columns: 1fr; margin-bottom: 66px; }
  .service-delivery-strip > div { padding: 24px 0; }
  .service-delivery-strip > div + div { border-top: 1px solid var(--panel-border); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  body.premium-site .nav-service-group,
  body.premium-site .nav-service-options,
  body.premium-site .nav-service-trigger,
  body.premium-site .nav-service-trigger i::before,
  body.premium-site .nav-service-trigger i::after,
  .service-pathway .service-pathway-link::after,
  .service-route-list a {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}
