/* ============================================================================
   Disha Global Workforce — Design System
   "Institutional editorial" — ink navy + warm ivory + restrained brass.
   Display: Fraunces · Body: Hanken Grotesk
   ============================================================================ */

/* ----------------------------------------------------------------- Tokens -- */
:root {
  /* Core palette */
  --ink:        #0d1b2a;   /* dominant dark / navy ink */
  --ink-900:    #091321;
  --ink-800:    #112236;
  --ink-700:    #1b3043;
  --paper:      #f7f3ec;   /* warm ivory — light section bg */
  --paper-2:    #efe8db;   /* deeper ivory */
  --white:      #ffffff;

  /* Turmeric accent — two-tone for WCAG: bright on dark, deep for text on light */
  --brass:      #d99b23;   /* turmeric — marks, hairlines, borders, on-dark decorative */
  --brass-2:    #edb749;   /* bright turmeric — text accents on dark (navy) */
  --brass-ink:  #8a5d0e;   /* deep turmeric/amber — legible text on light (ivory) */
  --brass-soft: rgba(217,155,35,.18);

  /* Parrot green — secondary "positive / verified / action" accent */
  --green:      #4fa82e;   /* vivid parrot green — marks on dark / icons */
  --green-deep: #357a1f;   /* deeper green — legible icons/ticks on light (ivory) */

  /* Text */
  --t-on-paper:      #15212e;   /* body on light */
  --t-on-paper-mut:  #5d5a52;   /* warm muted gray on light */
  --t-on-ink:        #f3eee4;   /* body on dark */
  --t-on-ink-mut:    rgba(243,238,228,.66);

  /* Lines */
  --line-light: rgba(13,27,42,.13);
  --line-dark:  rgba(243,238,228,.16);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --maxw: 1280px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --radius: 4px;
}

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

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

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--t-on-paper);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

::selection { background: var(--ink); color: var(--paper); }

/* ------------------------------------------------------------- Typography -- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

.display {
  font-size: clamp(2.7rem, 6.6vw, 5.6rem);
  line-height: .98;
  letter-spacing: -0.025em;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; }
.h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
.h4 { font-size: 1.2rem; line-height: 1.2; }

.serif-italic { font-style: italic; font-family: var(--display); }

/* Eyebrow — small-caps label with brass mark */
.eyebrow {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-ink);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass-ink);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.on-ink .eyebrow { color: var(--brass-2); }
.on-ink .eyebrow::before { background: var(--brass-2); }
/* dark heroes are not .on-ink but still need the bright (light-on-dark) eyebrow */
.hero .eyebrow, .page-hero .eyebrow { color: var(--brass-2); }
.hero .eyebrow::before, .page-hero .eyebrow::before { background: var(--brass-2); }

.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.6;
  color: var(--t-on-paper-mut);
  font-weight: 400;
}
.on-ink .lede { color: var(--t-on-ink-mut); }

.idx {
  font-family: var(--display);
  font-size: .95rem;
  color: var(--brass-ink);
  font-feature-settings: "tnum";
}
.on-ink .idx { color: var(--brass-2); }

/* ----------------------------------------------------------------- Layout -- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.section { padding-block: var(--section-y); }
/* offset in-page anchor jumps so targets clear the sticky header */
section[id], .path-card[id], footer[id], [id].page-hero { scroll-margin-top: 92px; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.on-ink { background: var(--ink); color: var(--t-on-ink); }
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink h4 { color: var(--paper); }
.on-paper-2 { background: var(--paper-2); }

.section-head { max-width: 56ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head .h2 { margin-top: 1.1rem; }
.section-head .lede { margin-top: 1.1rem; }

.center { text-align: center; }
.center.section-head { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* About — two-column editorial */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about-head .h2 { margin-top: 1.1rem; }
.about-body .lede { margin-bottom: 1.1rem; }
.about-body p:not(.lede) { color: var(--t-on-paper-mut); }
.about-pillars { margin-top: 2rem; padding-top: 1.7rem; border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ab-pill .ab-k { font-family: var(--display); font-size: 1.2rem; color: var(--ink); display: block; }
.ab-pill .ab-k::before { content: ""; display: block; width: 24px; height: 2px; background: var(--brass); margin-bottom: .7rem; }
.ab-pill .ab-v { font-size: .86rem; color: var(--t-on-paper-mut); margin-top: .35rem; display: block; }
/* reusable two-column section head (heading left, lede right) — fills the right gap */
.head-2col { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.head-2col .about-body { align-self: end; }

/* section head with supporting image (heading+lede left, image right) */
.head-media { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; margin-bottom: clamp(2.4rem, 4.5vw, 3.8rem); }
.hm-copy { max-width: 54ch; }
.hm-copy .h2 { margin-top: 1.1rem; }
.hm-copy .lede { margin-top: 1.1rem; }
.hm-figure { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-light); box-shadow: 0 30px 70px -42px rgba(13,27,42,.45); }
.hm-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(.95) contrast(1.02); }
.hm-figure::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,.04), rgba(13,27,42,.32)); mix-blend-mode: multiply; }
.on-ink .hm-figure { border-color: var(--line-dark); }
@media (max-width: 860px) {
  .head-media { grid-template-columns: 1fr; gap: 1.6rem; }
  .hm-copy { max-width: none; }
  .hm-figure { aspect-ratio: 16 / 10; }
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .about-pillars { grid-template-columns: 1fr; gap: 1.1rem; }
  .ab-pill .ab-k::before { display: none; }
  .ab-pill { display: flex; gap: .8rem; align-items: baseline; }
  .ab-pill .ab-v { margin-top: 0; }
}

/* ----------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn .ar { transition: transform .35s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }

/* Solid ink — primary on light bg */
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-700); transform: translateY(-2px); }

/* Solid paper — primary on dark bg */
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: var(--white); transform: translateY(-2px); }

/* Outline on light */
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* Outline on dark */
.btn-line-on-ink { border-color: rgba(243,238,228,.45); color: var(--paper); }
.btn-line-on-ink:hover { border-color: var(--paper); background: rgba(247,243,236,.07); transform: translateY(-2px); }

/* Text link with brass underline grow */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem;
  padding-bottom: 3px;
  background-image: linear-gradient(var(--brass), var(--brass));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size .4s var(--ease);
}
.link-arrow:hover { background-size: 100% 1.5px; }
.link-arrow .ar { transition: transform .35s var(--ease); }
.link-arrow:hover .ar { transform: translateX(4px); }

/* ----------------------------------------------------- Utility top bar ---- */
.utilbar {
  background: var(--ink-900);
  color: var(--t-on-ink-mut);
  font-size: .78rem;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(243,238,228,.07);
}
.utilbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .55rem; }
.utilbar a { color: var(--paper); transition: color .3s; }
.utilbar a:hover { color: var(--brass-2); }
.utilbar .dot { color: var(--brass); margin-inline: .55rem; }
.utilbar .util-right { display: flex; align-items: center; gap: .2rem; }
@media (max-width: 760px) { .utilbar .util-left { display: none; } }

/* --------------------------------------------------------------- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,243,236,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-light);
  transition: background .4s, border-color .4s;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 1rem; }

.brand { display: flex; align-items: baseline; gap: .55rem; line-height: 1; }
.brand .mark {
  font-family: var(--display); font-weight: 600; font-size: 1.5rem;
  letter-spacing: -.01em; color: var(--ink);
}
.brand .mark .glyph { color: var(--brass); }
.brand .sub {
  font-family: var(--body); font-size: .62rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--t-on-paper-mut);
}
@media (max-width: 480px){ .brand .sub { display:none; } }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--t-on-paper);
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:1.5px; width:0;
  background: var(--brass); transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: .9rem; }

.burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s var(--ease); }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary-nav { display: none; }
  .burger { display: flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ink); color: var(--paper);
  padding: 2rem var(--gut);
  transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.mobile-nav .mn-top .brand .mark { color: var(--paper); }
.mobile-nav .mn-close { font-size: 2rem; line-height: 1; color: var(--paper); }
.mobile-nav a.mn-link {
  font-family: var(--display); font-size: 1.5rem; color: var(--paper);
  padding-block: .8rem; border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.mn-link .idx { font-size: .8rem; }
.mobile-nav .mn-foot { margin-top: auto; padding-top: 2rem; }
.mobile-nav .mn-foot .btn { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------- Hero --- */
.hero { position: relative; background: var(--ink); color: var(--t-on-ink); overflow: hidden; }
.hero::before { /* world-map line motif */
  content:""; position:absolute; inset:0;
  background-image: url("../img/worldmap.svg");
  background-repeat: no-repeat; background-position: right -4% center; background-size: 64% auto;
  opacity: .14; pointer-events: none;
}
.hero::after { /* subtle brass glow */
  content:""; position:absolute; top:-30%; right:-10%; width:60vw; height:60vw;
  background: radial-gradient(circle, rgba(217,155,35,.16), transparent 62%);
  pointer-events:none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2.5rem, 5vw, 4rem);
}
.hero h1 { color: var(--paper); margin: 1.5rem 0 0; }
.hero h1 em { color: var(--brass-2); font-style: italic; }
.hero .lede { margin-top: 1.6rem; max-width: 46ch; color: var(--t-on-ink-mut); }
.hero-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-figure { position: relative; }
.hero-figure .frame {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line-dark);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.6);
}
.hero-figure .frame img { width:100%; height:100%; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.hero-figure .frame::after { /* ink duotone wash so placeholders read intentional */
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(13,27,42,.05), rgba(13,27,42,.45));
  mix-blend-mode: multiply;
}
.hero-figure .tag {
  position: absolute; left: -14px; bottom: 26px; z-index: 3;
  background: var(--paper); color: var(--ink);
  padding: .85rem 1.1rem; border-radius: var(--radius);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5);
  max-width: 220px;
}
.hero-figure .tag .k { font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.hero-figure .tag .v { font-size: .78rem; color: var(--t-on-paper-mut); margin-top: .25rem; letter-spacing:.02em; }

/* Hero stat strip */
.hero-stats {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-stats .st { padding: 1.6rem .4rem; }
.hero-stats .st:not(:last-child) { border-right: 1px solid var(--line-dark); }
.hero-stats .st .n { font-family: var(--display); font-size: clamp(1.7rem,2.6vw,2.4rem); color: var(--paper); line-height:1; }
.hero-stats .st .n .u { color: var(--brass-2); }
.hero-stats .st .l { font-size: .78rem; color: var(--t-on-ink-mut); margin-top:.5rem; letter-spacing:.04em; text-transform:uppercase; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: clamp(2rem,5vw,3rem); }
  .hero-figure { order: -1; max-width: 420px; }
  .hero::before { background-size: 130% auto; background-position: center top; opacity:.1; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .st:nth-child(2) { border-right: 0; }
  .hero-stats .st:nth-child(1), .hero-stats .st:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
}

/* ----------------------------------------------------- Country marquee ---- */
.marquee {
  background: var(--paper-2); border-block: 1px solid var(--line-light);
  overflow: hidden; padding-block: 1.1rem;
}
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .mq {
  font-family: var(--display); font-size: 1.25rem; color: var(--ink);
  display: flex; align-items: center; gap: .7rem; opacity:.85;
}
.marquee-track .mq .mq-flag { width: 28px; height: 19px; object-fit: cover; border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.marquee-track .mq::after { content:"·"; color: var(--brass); margin-left: 2.8rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* --------------------------------------------------------- Split cards ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,2.5vw,1.6rem); }
@media (max-width: 760px){ .split { grid-template-columns: 1fr; } }
.path-card {
  position: relative; background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column; min-height: 360px;
  overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -36px rgba(13,27,42,.35); border-color: var(--brass); }
.path-card .pc-idx { font-family: var(--display); font-size: 1rem; color: var(--brass-ink); }
.path-card.is-dark .pc-idx { color: var(--brass-2); }
.path-card h3 { margin-top: 1rem; }
.path-card p { color: var(--t-on-paper-mut); margin-top: .9rem; max-width: 42ch; }
.path-card .pc-list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .55rem; }
.path-card .pc-list li { display:flex; gap:.6rem; align-items:flex-start; font-size:.95rem; }
.path-card .pc-list li::before { content:"\2713"; color: var(--green-deep); font-weight: 700; }
.path-card.is-dark .pc-list li::before { color: var(--green); }
.path-card .pc-foot { margin-top: auto; padding-top: 1.6rem; }
.path-card.is-dark { background: var(--ink); color: var(--t-on-ink); border-color: transparent; }
.path-card.is-dark h3 { color: var(--paper); }
.path-card.is-dark p { color: var(--t-on-ink-mut); }

/* ------------------------------------------------------------- Roles grid - */
.roles { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem,3vw,2.4rem); }
.role-col h3 { display:flex; align-items:baseline; gap:.7rem; padding-bottom:1rem; border-bottom:1px solid var(--line-light); }
.role-col h3 .idx { font-size:.9rem; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.chip {
  font-size: .86rem; padding: .42rem .85rem; border-radius: 100px;
  border: 1px solid var(--line-light); background: var(--white); color: var(--t-on-paper);
  transition: border-color .3s, color .3s, transform .3s;
}
.chip:hover { border-color: var(--brass); color: var(--ink); transform: translateY(-2px); }
@media (max-width: 760px){ .roles { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- Countries grid - */
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow:hidden; }
.country-cell {
  position: relative;
  background: var(--ink); padding: 1.5rem 1.4rem; min-height: 130px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .4s var(--ease);
}
.cc-flag { position: absolute; top: 1.4rem; right: 1.4rem; width: 34px; height: 23px;
  object-fit: cover; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,0,0,.45); }
.country-cell:hover { background: var(--ink-700); }
.country-cell .cc-region { font-size:.7rem; letter-spacing:.16em; text-transform:uppercase; color: var(--brass-2); }
.country-cell .cc-name { font-family: var(--display); font-size: 1.5rem; color: var(--paper); line-height:1.05; margin-top:.8rem; }
@media (max-width: 900px){ .country-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 460px){ .country-cell .cc-name { font-size:1.25rem; } }

/* ------------------------------------------------------------- Process ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem,2.5vw,2rem); counter-reset: step; }
.step { position: relative; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); }
.step .s-n { font-family: var(--display); font-size: 2.6rem; color: var(--brass-2); line-height:1; }
.step h4 { color: var(--paper); margin-top:.9rem; }
.step p { color: var(--t-on-ink-mut); margin-top:.6rem; font-size:.95rem; }
@media (max-width: 880px){ .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr;} }

/* ------------------------------------------------------- Journey timeline - */
.journey { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.journey::before {
  content: ""; position: absolute; top: 23px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, var(--brass-soft), var(--brass), var(--brass-soft));
  z-index: 0;
}
.j-step { position: relative; z-index: 1; }
.j-node {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--paper-2); border: 1px solid var(--brass); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.2rem;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.j-step:hover .j-node { background: var(--ink); color: var(--paper); transform: translateY(-3px); }
.j-step h4 { margin-top: 1.25rem; }
.j-step p { color: var(--t-on-paper-mut); font-size: .92rem; margin-top: .55rem; }

@media (max-width: 880px) {
  .journey { grid-template-columns: 1fr; gap: 0; padding-left: 8px; }
  .journey::before { top: 8px; bottom: 8px; left: 31px; right: auto; width: 1px; height: auto;
    background: linear-gradient(180deg, var(--brass-soft), var(--brass), var(--brass-soft)); }
  .j-step { display: grid; grid-template-columns: 48px 1fr; gap: 1.2rem; padding-block: 1.1rem; }
  .j-step h4 { margin-top: .55rem; }
}

/* ------------------------------------------------------- Industries grid -- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.ind-cell { background: var(--white); padding: clamp(1.4rem, 2.4vw, 1.9rem); transition: background .4s var(--ease); }
.ind-cell:hover { background: var(--off); }
.ind-cell .ind-i { width: 30px; height: 30px; color: var(--green-deep); }
.ind-cell h4 { font-size: 1.04rem; margin-top: .9rem; }
.ind-cell p { font-size: .85rem; color: var(--t-on-paper-mut); margin-top: .35rem; }
@media (max-width: 880px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .ind-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------- Immigration / services - */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-dark); border: 1px solid var(--line-dark);
  border-radius: var(--radius); overflow: hidden;
}
.svc-cell { background: var(--ink); padding: clamp(1.5rem, 2.6vw, 2rem); transition: background .4s var(--ease); }
.svc-cell:hover { background: var(--ink-700); }
.svc-cell .svc-i { width: 30px; height: 30px; color: var(--brass-2); }
.svc-cell h4 { color: var(--paper); margin-top: 1rem; font-size: 1.12rem; }
.svc-cell p { color: var(--t-on-ink-mut); font-size: .92rem; margin-top: .5rem; }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- Why / values --- */
.values { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.4rem,3vw,2.6rem); }
.value h4 { display:flex; align-items:center; gap:.7rem; }
.value h4 .vmark { width:30px; height:30px; flex:none; color: var(--brass-ink); }
.value p { color: var(--t-on-paper-mut); margin-top:.8rem; font-size:.97rem; }
@media (max-width: 820px){ .values { grid-template-columns: 1fr; } }

/* Compliance callout */
.compliance {
  margin-top: clamp(2.5rem,5vw,3.5rem);
  border: 1px solid var(--line-light); border-left: 3px solid var(--brass);
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.6rem,3vw,2.2rem);
  display:grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items:start;
}
.compliance .cmark { width: 38px; height:38px; color: var(--brass-ink); flex:none; }
.compliance h4 { margin-bottom:.5rem; }
.compliance p { color: var(--t-on-paper-mut); font-size:.95rem; }
.flag { color: #9a3412; background: #fde5d8; border-radius:3px; padding:.05rem .4rem; font-size:.85em; font-weight:600; }
@media (max-width:560px){ .compliance { grid-template-columns:1fr; } }

/* --------------------------------------------------------- Big CTA strip -- */
.cta-strip { position: relative; overflow: hidden; }
.cta-strip::after {
  content:""; position:absolute; bottom:-40%; left:-8%; width:50vw; height:50vw;
  background: radial-gradient(circle, rgba(217,155,35,.16), transparent 60%); pointer-events:none;
}
.cta-strip .cta-grid { position:relative; z-index:2; display:grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,5vw,4rem); align-items:center; }
.cta-strip h2 em { color: var(--brass-2); font-style: italic; }
.cta-strip .lede { margin-top: 1.2rem; }
.cta-strip .cta-actions { display:flex; flex-direction:column; gap:.9rem; }
.cta-strip .cta-actions .btn { justify-content: space-between; }
@media (max-width: 820px){ .cta-strip .cta-grid { grid-template-columns:1fr; } }

/* ----------------------------------------------------------------- Footer - */
.site-footer { background: var(--ink-900); color: var(--t-on-ink-mut); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(1.5rem,3vw,2.5rem); padding-bottom: clamp(2.5rem,4vw,3.5rem); border-bottom:1px solid var(--line-dark); }
.footer-brand .mark { font-family: var(--display); font-size: 1.6rem; color: var(--paper); }
.footer-brand .mark .glyph { color: var(--brass); }
.footer-brand p { margin-top:1rem; font-size:.92rem; max-width: 34ch; }
.f-col h5 { font-family: var(--body); font-size:.76rem; letter-spacing:.18em; text-transform:uppercase; color: var(--brass-2); margin-bottom:1.1rem; }
.f-col a { display:block; padding-block:.35rem; color: var(--t-on-ink-mut); font-size:.94rem; transition: color .3s; }
.f-col a:hover { color: var(--paper); }
.f-licence { margin-top:1.4rem; font-size:.82rem; line-height:1.6; padding:.9rem 1rem; border:1px solid var(--line-dark); border-radius:var(--radius); }
.f-licence strong { color: var(--paper); display:block; margin-bottom:.2rem; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; padding-top:1.8rem; font-size:.82rem; }
.footer-bottom .fb-links { display:flex; gap:1.5rem; }
.footer-bottom a:hover { color: var(--paper); }
@media (max-width: 880px){ .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }

/* -------------------------------------------------------- Inner page hero - */
.page-hero { position: relative; background: var(--ink); color: var(--t-on-ink); overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 4vw, 3.5rem); }
.page-hero::after { content:""; position:absolute; top:-40%; right:-10%; width:55vw; height:55vw;
  background: radial-gradient(circle, rgba(217,155,35,.14), transparent 62%); pointer-events:none; }
.page-hero > .wrap { position: relative; z-index: 1; }
.breadcrumb { display:flex; flex-wrap:wrap; gap:.55rem; font-size:.84rem; color: var(--t-on-ink-mut); margin-bottom:1.3rem; }
.breadcrumb a { transition: color .3s; }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb .sep { color: var(--brass-2); }
.page-hero h1 { color: var(--paper); font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.page-hero .lede { margin-top: 1.1rem; max-width: 60ch; color: var(--t-on-ink-mut); }
.page-meta { margin-top: 1.4rem; font-size:.8rem; letter-spacing:.04em; text-transform:uppercase; color: var(--t-on-ink-mut); }

/* ------------------------------------------------------------- Prose/legal - */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-top: 2.6rem; margin-bottom:.7rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.18rem; margin-top: 1.8rem; margin-bottom:.5rem; }
.prose p { margin-bottom: 1.1rem; color: var(--t-on-paper); }
.prose ul { list-style:none; margin: 0 0 1.2rem; display:flex; flex-direction:column; gap:.55rem; }
.prose ul li { padding-left: 1.5rem; position: relative; }
.prose ul li::before { content:""; position:absolute; left:0; top:.62em; width:7px; height:7px; background: var(--brass); border-radius:50%; }
.prose ol { margin: 0 0 1.2rem 1.3rem; display:flex; flex-direction:column; gap:.55rem; }
.prose a { color: var(--brass-ink); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.legal-note { border-left: 3px solid var(--brass); background: var(--paper-2);
  padding: 1.1rem 1.3rem; border-radius: var(--radius); margin: 1.4rem 0; font-size:.94rem; color: var(--t-on-paper-mut); }
.legal-note strong { color: var(--ink); }

/* ------------------------------------------------------------ Jobs search - */
.jobs-searchbar { margin-top: 1.9rem; display: flex; gap: .5rem; max-width: 640px;
  background: var(--paper); border-radius: 7px; padding: .4rem; box-shadow: 0 20px 50px -28px rgba(0,0,0,.6); }
.jobs-searchbar svg { width: 20px; height: 20px; color: var(--t-on-paper-mut); align-self: center; margin-left: .7rem; flex:none; }
.jobs-searchbar input { flex: 1; min-width: 0; border: 0; background: transparent; padding: .85rem .8rem; font: inherit; color: var(--ink); }
.jobs-searchbar input::placeholder { color: var(--t-on-paper-mut); }
.jobs-searchbar input:focus { outline: none; }
.jobs-searchbar .btn { flex: none; }
.popular { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .86rem; color: var(--t-on-ink-mut); }
.popular a { color: var(--brass-2); border-bottom: 1px solid transparent; transition: border-color .3s; }
.popular a:hover { border-color: var(--brass-2); }

.sample-banner { background: #fdecd8; color: #92400e; border: 1px solid #f4cd9b; border-radius: var(--radius);
  padding: .8rem 1.1rem; font-size: .9rem; margin-bottom: 1.6rem; display: flex; gap: .6rem; align-items: flex-start; }
.sample-banner strong { color: #7c3408; }

.fx-note { font-size: .82rem; color: var(--t-on-paper-mut); margin: -.4rem 0 1.4rem; }
.filters { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; margin-bottom: 1.6rem; }
.filters select { padding: .68rem 2.4rem .68rem .9rem; border: 1px solid var(--line-light); border-radius: var(--radius);
  background-color: var(--white); font: inherit; font-size: .92rem; color: var(--ink); cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a5d0e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; }
.filters select:focus { outline: none; border-color: var(--brass); }
.result-count { margin-left: auto; color: var(--t-on-paper-mut); font-size: .9rem; }
.filters .clear { font-size: .88rem; color: var(--brass-ink); border-bottom: 1px solid transparent; }
.filters .clear:hover { border-color: var(--brass-ink); }

.jobs-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.job-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; text-align: left;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.job-card:hover { transform: translateY(-3px); border-color: var(--brass); box-shadow: 0 26px 54px -34px rgba(13,27,42,.4); }
.jc-cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-ink); font-weight: 600; }
.job-card h3 { font-size: 1.32rem; margin-top: .5rem; }
.jc-loc { color: var(--t-on-paper-mut); font-size: .92rem; margin-top: .4rem; display: flex; align-items: center; gap: .45rem; }
.jc-loc svg { width: 15px; height: 15px; color: var(--brass); flex: none; }
.jc-posted { display: block; font-size: .8rem; color: var(--t-on-paper-mut); margin-top: .4rem; }
.jc-salary { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-light); }
.jc-salary .foreign { font-family: var(--display); font-size: 1.18rem; color: var(--ink); }
.jc-salary .inr { display: block; margin-top: .15rem; color: var(--brass-ink); font-weight: 600; font-size: .98rem; }
.jc-salary .ind { color: var(--t-on-paper-mut); font-weight: 400; font-size: .8rem; }
.jc-foot { margin-top: auto; padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; }
.jc-exp { font-size: .85rem; color: var(--t-on-paper-mut); }
.jobs-empty { grid-column: 1 / -1; text-align: center; padding: 3.5rem 1rem; color: var(--t-on-paper-mut); }
.jobs-empty .h3 { color: var(--ink); margin-bottom: .6rem; }
@media (max-width: 720px) { .jobs-results { grid-template-columns: 1fr; } .result-count { margin-left: 0; width: 100%; } }

/* ----------------------------------------------------------------- FAQ --- */
.faq-list { max-width: 840px; border-top: 1px solid var(--line-light); }
.faq-q { border-bottom: 1px solid var(--line-light); }
.faq-q summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.35rem 0; font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--ink); line-height: 1.25; }
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary .fq-ico { flex: none; width: 22px; height: 22px; color: var(--brass-ink);
  transition: transform .35s var(--ease); }
.faq-q[open] summary .fq-ico { transform: rotate(45deg); }
.faq-q .fq-a { padding: 0 2.5rem 1.5rem 0; color: var(--t-on-paper-mut); max-width: 72ch; }
.faq-q .fq-a a { color: var(--brass-ink); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------- Application tracker --- */
.track-card { max-width: 560px; background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 30px 70px -42px rgba(13,27,42,.4); }
.track-form { display: flex; flex-direction: column; gap: 1.1rem; }
.track-field label { font-size: .85rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: .4rem; }
.track-field input { width: 100%; padding: .85rem 1rem; border: 1px solid var(--line-light);
  border-radius: var(--radius); font: inherit; color: var(--ink); background: var(--paper); }
.track-field input:focus { outline: none; border-color: var(--brass); background: var(--white); }
.track-hint { font-size: .82rem; color: var(--t-on-paper-mut); margin-top: .2rem; }
.track-error { color: #9a3412; font-size: .9rem; background: #fdecd8; border: 1px solid #f4cd9b;
  border-radius: var(--radius); padding: .7rem .9rem; display: none; }
.track-error.show { display: block; }
.track-card .btn { width: 100%; justify-content: center; }

.track-result { display: none; max-width: 640px; margin-top: clamp(2rem, 4vw, 3rem); }
.track-result.show { display: block; }
.track-summary { background: var(--paper-2); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-bottom: 2rem; }
.track-summary .ts-ref { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-ink); font-weight: 600; }
.track-summary .ts-name { font-family: var(--display); font-size: 1.35rem; color: var(--ink); margin-top: .3rem; }
.track-summary .ts-meta { font-size: .92rem; color: var(--t-on-paper-mut); margin-top: .25rem; }

.track-tl { position: relative; padding-left: 2.6rem; }
.track-tl::before { content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 2px; background: var(--line-light); }
.tl-step { position: relative; padding-bottom: 1.9rem; }
.tl-step:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -2.6rem; top: -2px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--line-light); display: flex; align-items: center; justify-content: center; color: transparent; }
.tl-dot svg { width: 13px; height: 13px; }
.tl-step.done .tl-dot { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.tl-step.current .tl-dot { border-color: var(--brass); background: var(--brass); color: var(--ink); box-shadow: 0 0 0 5px var(--brass-soft); }
.tl-title { font-family: var(--display); font-size: 1.12rem; color: var(--ink); line-height: 1.25; }
.tl-step.upcoming .tl-title { color: var(--t-on-paper-mut); }
.tl-badge { display: inline-block; margin-left: .6rem; font-family: var(--body); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brass-ink); background: var(--brass-soft);
  padding: .15rem .55rem; border-radius: 100px; vertical-align: middle; }
.tl-desc { font-size: .89rem; color: var(--t-on-paper-mut); margin-top: .3rem; }
.track-demo-note { margin-top: 1.6rem; font-size: .82rem; color: var(--t-on-paper-mut);
  border-left: 3px solid var(--brass); background: var(--paper-2); padding: .8rem 1rem; border-radius: var(--radius); }

/* ------------------------------------------------------ Application form -- */
.apply-card { max-width: 760px; background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.8rem);
  box-shadow: 0 30px 70px -42px rgba(13,27,42,.4); }
.form-section { padding-top: 1.8rem; margin-top: 1.8rem; border-top: 1px solid var(--line-light); }
.form-section:first-of-type { padding-top: 0; margin-top: 0; border-top: 0; }
.form-section > .eyebrow { margin-bottom: 1.3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.form-field label .req { color: #b3402a; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--line-light); border-radius: var(--radius);
  font: inherit; font-size: .95rem; color: var(--ink); background: var(--paper); }
.form-field textarea { min-height: 84px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brass); background: var(--white); }
.form-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a5d0e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.3rem; }
.form-field .hint { font-size: .78rem; color: var(--t-on-paper-mut); margin-top: .35rem; }
.form-field.err input, .form-field.err select { border-color: #b3402a; }
.form-field .err-msg { display: none; color: #b3402a; font-size: .78rem; margin-top: .35rem; }
.form-field.err .err-msg { display: block; }

/* checkbox / choice chips */
.choice-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: inline-block; padding: .5rem .9rem; border: 1px solid var(--line-light);
  border-radius: 100px; font-size: .88rem; color: var(--t-on-paper); cursor: pointer; transition: .25s var(--ease); }
.choice input:checked + span { border-color: var(--green-deep); background: rgba(79,168,46,.1); color: var(--green-deep); font-weight: 600; }
.choice input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }

/* file upload */
.file-drop { position: relative; border: 1.5px dashed var(--line-light); border-radius: var(--radius);
  padding: 1.3rem; text-align: center; background: var(--paper); transition: border-color .3s, background .3s; cursor: pointer; }
.file-drop:hover { border-color: var(--brass); background: var(--white); }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop svg { width: 26px; height: 26px; color: var(--brass-ink); margin-bottom: .5rem; }
.file-drop .fd-main { font-weight: 600; color: var(--ink); font-size: .92rem; }
.file-drop .fd-sub { font-size: .78rem; color: var(--t-on-paper-mut); margin-top: .2rem; }
.file-drop.has-file { border-color: var(--green-deep); border-style: solid; background: rgba(79,168,46,.06); }
.file-drop.has-file .fd-main { color: var(--green-deep); }

.form-consent { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.8rem; font-size: .9rem; color: var(--t-on-paper-mut); }
.form-consent input { margin-top: .25rem; flex: none; width: 17px; height: 17px; accent-color: var(--green-deep); }
.form-consent a { color: var(--brass-ink); text-decoration: underline; text-underline-offset: 2px; }
.apply-card .btn.submit { width: 100%; justify-content: center; margin-top: 1.6rem; }
.form-error-summary { display: none; color: #b3402a; font-size: .9rem; background: #fdecd8; border: 1px solid #f4cd9b;
  border-radius: var(--radius); padding: .8rem 1rem; margin-top: 1.4rem; }
.form-error-summary.show { display: block; }

/* success state */
.apply-success { display: none; text-align: center; max-width: 620px; padding: clamp(2rem,5vw,3.5rem) 0; }
.apply-success.show { display: block; }
.apply-success .as-mark { width: 66px; height: 66px; margin: 0 auto 1.4rem; border-radius: 50%;
  background: var(--green-deep); color: #fff; display: flex; align-items: center; justify-content: center; }
.apply-success .as-mark svg { width: 32px; height: 32px; }
.apply-success h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.apply-success p { color: var(--t-on-paper-mut); margin: 1rem auto 0; max-width: 46ch; }
.apply-success .as-ref { margin-top: 1.5rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--brass-ink); }

/* prominent reference-ID callout on the apply success screen */
.as-refbox { margin: 1.8rem auto 0; max-width: 420px; background: var(--paper-2);
  border: 1px solid var(--brass); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.as-refbox-label { display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brass-ink); font-weight: 700; }
.as-refbox-id { display: block; font-family: var(--display); font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--ink); margin-top: .3rem; letter-spacing: .01em; }
.as-refbox-note { display: block; font-size: .8rem; color: var(--t-on-paper-mut); margin-top: .55rem; line-height: 1.5; }

@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- Scroll reveal - */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s; }
.reveal[data-d="2"]{ transition-delay:.16s; }
.reveal[data-d="3"]{ transition-delay:.24s; }
.reveal[data-d="4"]{ transition-delay:.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* track page */
.tr-spinner { width: 15px; height: 15px; margin-right: .5rem; vertical-align: -3px; animation: tr-spin .8s linear infinite; }
@keyframes tr-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .tr-spinner { animation: none; } }

.tl-step.current .tl-dot { animation: tr-pulse 1.8s ease-in-out infinite; }
@keyframes tr-pulse { 0%, 100% { box-shadow: 0 0 0 5px var(--brass-soft); } 50% { box-shadow: 0 0 0 9px transparent; } }
@media (prefers-reduced-motion: reduce) { .tl-step.current .tl-dot { animation: none; } }

.track-missing { margin-top: 1.8rem; background: var(--paper-2); border-left: 3px solid var(--brass);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.track-missing .tm-head { font-weight: 700; color: var(--ink); font-size: .92rem; margin-bottom: .5rem; }
.track-missing .tm-list { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--t-on-paper-mut); font-size: .9rem; line-height: 1.7; }
.track-missing .tm-wa { border-color: var(--green-deep); color: var(--green-deep); }
.track-missing .tm-wa:hover { background: var(--green-deep); color: #fff; }

.track-notfound { margin-top: 1.6rem; background: #fdecd8; border: 1px solid #f4cd9b; border-radius: var(--radius);
  padding: 1.1rem 1.3rem; color: #7a3a12; font-size: .92rem; line-height: 1.6; }
.track-notfound a { color: var(--brass-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===================================================== Trust strip (WWW-TRUST) == */
/* Flat, editorial proof strip — NOT SaaS metric cards. Lives on-paper, ink hairline
   dividers, numerals in display serif. Countries row reuses .country-cell flags. */
.trust-strip { border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.trust-strip .wrap { padding-block: clamp(2.4rem, 4.4vw, 3.2rem); }
.trust-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: clamp(1.8rem, 3.2vw, 2.4rem); }
.trust-head .eyebrow { margin: 0; }
.trust-head .trust-note { font-size: .84rem; color: var(--t-on-paper-mut); max-width: 42ch; }
/* auto-fit: balances 2 counters today, 3 when "candidates deployed" is re-added */
.trust-counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: clamp(1.6rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.8rem, 3.2vw, 2.4rem); border-bottom: 1px solid var(--line-light); }
.trust-counter { border-left: 1px solid var(--line-light); padding-left: clamp(1.1rem, 2vw, 1.6rem); }
.trust-counter:first-child { border-left: 0; padding-left: 0; }
.trust-counter .tc-n { font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--ink); line-height: 1; }
.trust-counter .tc-l { display: block; margin-top: .5rem; font-size: .86rem; color: var(--t-on-paper-mut); }
.trust-countries { margin-top: clamp(1.8rem, 3.2vw, 2.4rem); }
.trust-strip .tc-label { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--t-on-paper-mut); margin-bottom: 1rem; }
.trust-flags { display: flex; flex-wrap: wrap; gap: .6rem .9rem; }
.trust-flag { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--t-on-paper); }
.trust-flag img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; border: 1px solid var(--line-light); }
@media (max-width: 760px) {
  .trust-counters { grid-template-columns: 1fr; gap: 1.3rem; }
  .trust-counter { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-light); padding-top: 1rem; }
  .trust-counter:first-child { border-top: 0; padding-top: 0; }
}

/* ===================================================== WhatsApp alerts band (WWW-TRUST) == */
.wa-band { background: var(--paper-2); }
.wa-band .wa-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap; padding-block: clamp(1.8rem, 3vw, 2.3rem); }
.wa-band .wa-copy { max-width: 46ch; }
.wa-band .wa-copy h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); }
.wa-band .wa-copy p { margin-top: .4rem; font-size: .88rem; color: var(--t-on-paper-mut); }
.wa-form { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.wa-form select { padding: .75rem 2.4rem .75rem .9rem; border: 1px solid var(--line-light); border-radius: var(--radius);
  background-color: var(--white); font: inherit; font-size: .9rem; color: var(--ink); cursor: pointer;
  appearance: none; min-width: 190px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238a5d0e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; }
.wa-form select:focus { outline: none; border-color: var(--brass); }
.wa-form .btn-wa { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.wa-form .btn-wa:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.wa-band .wa-fine { flex-basis: 100%; font-size: .76rem; color: var(--t-on-paper-mut); margin-top: -.3rem; }
.on-ink .wa-band, section.on-ink .wa-band { background: rgba(243,238,228,.05); }
@media (max-width: 620px) {
  .wa-band .wa-inner { flex-direction: column; align-items: stretch; }
  .wa-form { width: 100%; }
  .wa-form select { flex: 1; min-width: 0; }
  .wa-form .btn-wa { width: 100%; justify-content: center; }
}

/* ===================================================== Multilingual reach (WWW-TRUST) == */
/* Typewriter row — closes the Track-record strip; cycles the promise through 5
   languages (JS in site.js). Vertically centred in a fixed height so line-count
   changes between languages never shift the section below. */
.trust-lang { margin-top: clamp(1.8rem, 3.2vw, 2.4rem); padding-top: clamp(1.8rem, 3.2vw, 2.4rem);
  border-top: 1px solid var(--line-light); }
.trust-lang .tc-label { margin-bottom: .8rem; }
.reach-tw { display: flex; align-items: center; min-height: calc(1.5em * 3); margin: 0; max-width: 52ch;
  font-family: var(--display); font-weight: 500; font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5; color: var(--ink); }
.reach-tw .tw-caret { display: inline-block; width: 2px; height: 1.05em; margin-left: 3px;
  background: var(--brass); vertical-align: -0.14em; animation: tw-blink 1.05s steps(1, end) infinite; }
@keyframes tw-blink { 0%, 55% { opacity: 1; } 55.01%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .reach-tw .tw-caret { animation: none; opacity: 1; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }


/* Floating WhatsApp chat button (bottom-right, all pages) */
.wa-fab{position:fixed;right:20px;bottom:20px;z-index:200;width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;display:grid;place-items:center;box-shadow:0 8px 22px rgba(0,0,0,.22);transition:transform .18s ease,box-shadow .18s ease;text-decoration:none}
.wa-fab:hover,.wa-fab:focus{transform:scale(1.08);color:#fff;box-shadow:0 12px 28px rgba(0,0,0,.28)}
.wa-fab svg{width:24px;height:24px}
/* Pulsating halo — expanding green ring behind the circle */
.wa-fab::before{content:"";position:absolute;inset:0;border-radius:50%;background:#25D366;z-index:-1;animation:wa-pulse 2s cubic-bezier(.4,0,.2,1) infinite}
@keyframes wa-pulse{0%{transform:scale(1);opacity:.5}70%{opacity:0}100%{transform:scale(1.9);opacity:0}}
@media(prefers-reduced-motion:reduce){.wa-fab::before{animation:none}}
@media(max-width:600px){.wa-fab{width:52px;height:52px;right:16px;bottom:16px}.wa-fab svg{width:22px;height:22px}}
