/* Alphabet Training — design system v2
   Brand: navy #00475D, teal #4EC7D8, lime #C3CC17 */

:root{
  /* brand */
  --navy:#00475D;
  --navy-900:#00303F;
  --navy-950:#022734;
  --teal:#4EC7D8;
  --teal-600:#2FA9BC;
  --teal-050:#EAF8FB;
  --lime:#C3CC17;
  --lime-600:#A8B010;
  --ink:#152A31;

  /* neutrals */
  --body:#3A4A50;
  --grey:#6B7A81;
  --line:#E3EBEE;
  --tint:#F4FAFB;
  --sand:#FBFAF3;

  /* system */
  --wrap:1220px;
  --narrow:64rem;
  --radius:999px;
  --r-lg:26px;
  --r-md:18px;
  --r-sm:12px;
  --shadow-sm:0 2px 10px rgba(0,48,63,.06);
  --shadow:0 14px 38px rgba(0,48,63,.10);
  --shadow-lg:0 26px 70px rgba(0,48,63,.16);
  --font:"Nunito","Segoe UI",system-ui,-apple-system,sans-serif;
  --ease:cubic-bezier(.2,.7,.3,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;font-family:var(--font);font-size:17px;line-height:1.7;
  color:var(--body);background:#fff;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--navy);text-decoration:none}
h1,h2,h3,h4,h5{font-family:var(--font);color:var(--navy);line-height:1.12;margin:0 0 .5em;font-weight:900;letter-spacing:-.018em}
h1{font-size:clamp(2.1rem,5vw,3.5rem)}
h2{font-size:clamp(1.75rem,3.6vw,2.7rem)}
h3{font-size:clamp(1.15rem,1.8vw,1.35rem)}
h4{font-size:1.05rem}
p{margin:0 0 1em}
:focus-visible{outline:3px solid var(--teal);outline-offset:3px;border-radius:4px}
.wrap{width:min(var(--wrap),92%);margin-inline:auto}
.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}

/* ============ buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55em;
  padding:.85em 1.9em;border-radius:var(--radius);
  font-weight:800;font-size:.95rem;letter-spacing:.01em;line-height:1.25;
  transition:transform .2s var(--ease),background .2s var(--ease),color .2s var(--ease),box-shadow .2s var(--ease),border-color .2s var(--ease);
  border:2px solid transparent;cursor:pointer;text-align:center;
}
.btn:hover{transform:translateY(-2px)}
.btn--teal{background:var(--teal);color:#00323F;box-shadow:0 6px 18px rgba(78,199,216,.32)}
.btn--teal:hover{background:#3DBED0;box-shadow:0 12px 26px rgba(78,199,216,.42);color:#00323F}
.btn--navy{background:var(--navy);color:#fff;box-shadow:0 6px 18px rgba(0,71,93,.22)}
.btn--navy:hover{background:var(--navy-900);color:#fff;box-shadow:0 12px 26px rgba(0,71,93,.3)}
.btn--lime{background:var(--lime);color:#2B2F00}
.btn--lime:hover{background:#D3DC27;color:#2B2F00}
.btn--ghost{border-color:rgba(255,255,255,.7);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(6px)}
.btn--ghost:hover{background:#fff;color:var(--navy);border-color:#fff}
.btn--outline{border-color:var(--navy);color:var(--navy);background:transparent}
.btn--outline:hover{background:var(--navy);color:#fff}
.btn--lg{padding:1em 2.3em;font-size:1.02rem}
.btn--sm{padding:.6em 1.3em;font-size:.86rem}

/* arrow that slides on hover */
.btn--arrow::after{content:"→";transition:transform .2s var(--ease);font-weight:700}
.btn--arrow:hover::after{transform:translateX(4px)}

/* ============ announcement ============ */
.announce{
  background:linear-gradient(90deg,var(--lime) 0%,#D5DE2E 100%);
  color:#2B2F00;text-align:center;font-weight:800;font-size:.9rem;
  padding:.65rem 1rem;margin:0;letter-spacing:.01em;
}
.announce a{color:#00323F;text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:2px}
.announce a:hover{color:#fff}

/* ============ header ============ */
.header{position:sticky;top:0;z-index:80;background:rgba(255,255,255,.96);backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--line);transition:box-shadow .25s var(--ease)}
.header.is-stuck{box-shadow:0 6px 24px rgba(0,48,63,.10)}
.header__inner{display:flex;align-items:center;gap:clamp(.8rem,2vw,2rem);min-height:84px}
.header__logo{flex:none}
.header__logo img{width:172px;height:auto}
.nav{display:flex;align-items:center;gap:clamp(.9rem,1.6vw,1.7rem);flex:1}
.nav--right{justify-content:flex-end;flex:0 0 auto}
.nav a,.nav button{
  font-family:var(--font);font-size:.8rem;font-weight:800;letter-spacing:.07em;
  text-transform:uppercase;color:var(--navy);background:none;border:0;padding:.5rem 0;cursor:pointer;
  white-space:nowrap;position:relative;transition:color .18s var(--ease);
}
.nav>a::after,.has-sub>button::before{
  content:"";position:absolute;left:0;right:0;bottom:-2px;height:3px;border-radius:3px;
  background:var(--teal);transform:scaleX(0);transform-origin:left;transition:transform .22s var(--ease);
}
.nav>a:hover::after,.has-sub:hover>button::before,.has-sub:focus-within>button::before{transform:scaleX(1)}
.nav a:hover,.nav button:hover{color:var(--teal-600)}
.nav a.btn{padding:.68em 1.5em;font-size:.78rem;letter-spacing:.05em}
.nav a.btn::after{display:none}
.nav a.btn--teal{background:var(--teal);color:#00323F}
.nav a.btn--teal:hover{background:#3DBED0;color:#00323F}
.has-sub{position:relative}
.has-sub>button{padding-right:1.1em}
.has-sub>button::after{
  content:"";position:absolute;right:0;top:50%;width:.42em;height:.42em;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:translateY(-70%) rotate(45deg);transition:transform .22s var(--ease);
}
.has-sub:hover>button::after,.has-sub:focus-within>button::after{transform:translateY(-25%) rotate(225deg)}
.sub{
  position:absolute;left:-1.1rem;top:calc(100% + .6rem);min-width:290px;background:#fff;border-radius:var(--r-md);
  box-shadow:var(--shadow);border:1px solid var(--line);padding:.6rem;
  opacity:0;visibility:hidden;transform:translateY(10px);transition:.2s var(--ease);
}
.sub::before{content:"";position:absolute;left:0;right:0;top:-.7rem;height:.7rem}
.has-sub:hover .sub,.has-sub:focus-within .sub{opacity:1;visibility:visible;transform:none}
.sub a{
  display:block;padding:.68rem .95rem;border-radius:10px;text-transform:none;letter-spacing:0;
  font-size:.95rem;font-weight:700;color:var(--navy);
}
.sub a::after{display:none}
.sub a:hover{background:var(--teal-050);color:var(--navy);padding-left:1.25rem}
.burger{display:none;background:none;border:0;padding:.55rem;cursor:pointer;margin-left:auto}
.burger span{display:block;width:26px;height:2.5px;background:var(--navy);border-radius:3px;margin:5.5px 0;transition:.25s var(--ease)}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ============ hero ============ */
.hero{position:relative;min-height:min(86vh,720px);display:grid;isolation:isolate;overflow:hidden;background:var(--navy-950)}
.hero__slide{
  grid-area:1/1;position:relative;display:flex;align-items:center;
  background-size:cover;background-position:center;
  opacity:0;transition:opacity 1s var(--ease);pointer-events:none;
}
.hero__slide.is-active{opacity:1;pointer-events:auto}
.hero__slide.is-active .hero__inner>*{animation:heroIn .8s var(--ease) both}
.hero__slide.is-active .hero__inner>*:nth-child(2){animation-delay:.09s}
.hero__slide.is-active .hero__inner>*:nth-child(3){animation-delay:.18s}
@keyframes heroIn{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:none}}
.hero__slide::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(94deg,rgba(2,39,52,.94) 0%,rgba(2,39,52,.80) 38%,rgba(2,39,52,.28) 72%,rgba(2,39,52,.12) 100%),
    linear-gradient(180deg,rgba(2,39,52,.35) 0%,rgba(2,39,52,0) 30%);
}
.hero__inner{position:relative;z-index:2;width:min(var(--wrap),92%);margin-inline:auto;padding:5.5rem 0 7rem;color:#fff}
.hero__inner>*{max-width:44rem}
.hero h1,.hero h2{color:#fff;font-size:clamp(2.25rem,5.6vw,4.15rem);font-weight:900;margin-bottom:.35em;letter-spacing:-.03em;line-height:1.04}
.hero p{font-size:clamp(1.02rem,1.5vw,1.2rem);margin-bottom:2em;max-width:37rem;color:rgba(255,255,255,.9)}
.hero__do{display:flex;flex-wrap:wrap;gap:.9rem;max-width:none}
.hero__eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;font-size:.78rem;font-weight:900;
  letter-spacing:.16em;text-transform:uppercase;color:var(--lime);margin-bottom:1.2rem;
}
.hero__eyebrow::before{content:"";width:34px;height:3px;border-radius:3px;background:var(--lime)}
.hero__dots{position:absolute;bottom:clamp(6.5rem,10vw,7.5rem);left:50%;transform:translateX(-50%);display:flex;gap:.55rem;z-index:5}
.hero__dots button{
  width:34px;height:5px;border-radius:5px;border:0;background:rgba(255,255,255,.35);
  cursor:pointer;padding:0;transition:background .25s var(--ease),width .25s var(--ease);
}
.hero__dots button[aria-current="true"]{background:var(--lime);width:54px}

/* quick links that ride the bottom of the hero */
.quicklinks{
  position:relative;z-index:6;width:min(var(--wrap),92%);margin:-4.5rem auto 0;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(215px,1fr));gap:1px;
  background:var(--line);border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-lg);
}
.ql{
  display:flex;flex-direction:column;gap:.35rem;background:#fff;padding:1.7rem 1.6rem 1.5rem;
  color:var(--navy);transition:background .2s var(--ease),transform .2s var(--ease);position:relative;
}
.ql::before{content:"";position:absolute;left:0;right:0;top:0;height:4px;background:var(--teal);transform:scaleX(0);transform-origin:left;transition:transform .25s var(--ease)}
.ql:hover{background:var(--tint)}
.ql:hover::before{transform:scaleX(1)}
.ql__icon{width:40px;height:40px;border-radius:11px;background:var(--teal-050);display:grid;place-items:center;margin-bottom:.5rem}
.ql__icon svg{width:21px;height:21px;fill:var(--teal-600)}
.ql strong{font-size:1.05rem;font-weight:900;color:var(--navy);line-height:1.25}
.ql span{font-size:.9rem;color:var(--grey);line-height:1.5}
.ql em{margin-top:.5rem;font-style:normal;font-weight:800;font-size:.84rem;color:var(--teal-600);letter-spacing:.03em}
.ql:hover em::after{content:" →"}

/* ============ section shells ============ */
.section{padding:clamp(3rem,6vw,5.5rem) 0}
.section--sm{padding:clamp(2rem,4vw,3.25rem) 0}
.section--tint{background:var(--tint)}
.section--sand{background:var(--sand)}
.section--navy{background:var(--navy);color:rgba(255,255,255,.88)}
.section--ink{
  background:
    radial-gradient(1000px 420px at 12% -10%,rgba(78,199,216,.18),transparent 60%),
    radial-gradient(800px 400px at 92% 110%,rgba(195,204,23,.14),transparent 60%),
    var(--navy-950);
  color:rgba(255,255,255,.88);
}
.section--ink h1,.section--ink h2,.section--ink h3,.section--ink h4,
.section--navy h1,.section--navy h2,.section--navy h3,.section--navy h4{color:#fff}
.section__head{text-align:center;max-width:48rem;margin:0 auto clamp(2rem,3.6vw,3rem)}
.section__head p{font-size:1.06rem;color:var(--grey)}
.section--ink .section__head p,.section--navy .section__head p{color:rgba(255,255,255,.78)}
.section__head--left{text-align:left;margin-inline:0}
.eyebrow{
  display:inline-flex;align-items:center;gap:.55rem;font-size:.76rem;font-weight:900;
  letter-spacing:.16em;text-transform:uppercase;color:var(--teal-600);margin-bottom:.9rem;
}
.eyebrow::before{content:"";width:26px;height:3px;border-radius:3px;background:var(--lime)}
.eyebrow--light{color:var(--lime)}
.section__head--left .eyebrow{justify-content:flex-start}

/* ============ trust bar ============ */
.trust{background:#fff;border-bottom:1px solid var(--line)}
.trust__row{display:flex;flex-wrap:wrap;gap:clamp(1rem,3vw,2.6rem);align-items:center;justify-content:center;padding:1.15rem 0}
.trust__item{display:flex;align-items:center;gap:.55rem;font-weight:800;font-size:.92rem;color:var(--navy)}
.trust__item svg{width:19px;height:19px;fill:var(--teal);flex:none}

/* ============ split panels (learner / employer) ============ */
.paths{display:grid;grid-template-columns:repeat(auto-fit,minmax(330px,1fr));gap:clamp(1.2rem,2.4vw,1.9rem)}
.path{
  position:relative;border-radius:var(--r-lg);overflow:hidden;min-height:400px;
  display:flex;flex-direction:column;justify-content:flex-end;padding:clamp(1.8rem,3vw,2.5rem);
  color:#fff;isolation:isolate;background:var(--navy);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.path:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.path__bg{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}
.path:hover .path__bg{transform:scale(1.06)}
.path::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(2,39,52,.28) 0%,rgba(2,39,52,.62) 38%,rgba(2,39,52,.88) 72%,rgba(2,39,52,.96) 100%)}
.path h3{color:#fff;font-size:clamp(1.5rem,2.6vw,2rem);margin-bottom:.35em}
.path p{color:rgba(255,255,255,.88);margin-bottom:1.4em;max-width:30rem}
.path .btn{align-self:flex-start}
.path__tag{
  position:absolute;top:1.4rem;left:1.4rem;background:var(--lime);color:#2B2F00;
  font-weight:900;font-size:.74rem;letter-spacing:.1em;text-transform:uppercase;
  padding:.4rem .9rem;border-radius:999px;
}

/* ============ counters ============ */
.stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:clamp(1.4rem,3vw,2.5rem);text-align:center}
.stats>div{position:relative;padding:0 1rem}
.stats>div+div::before{content:"";position:absolute;left:0;top:14%;bottom:14%;width:1px;background:rgba(255,255,255,.16)}
.stat__num{font-size:clamp(2.6rem,5vw,3.9rem);font-weight:900;color:var(--lime);line-height:1;font-variant-numeric:tabular-nums;letter-spacing:-.035em}
.stat__label{color:var(--grey);font-weight:700;font-size:1rem;margin-top:.7rem;line-height:1.35}
.section--navy .stat__label,.section--ink .stat__label{color:rgba(255,255,255,.8);font-weight:600}
@media (max-width:640px){.stats>div+div::before{display:none}}

/* ============ strapline bands ============ */
.bands{margin-top:clamp(2.5rem,5vw,3.5rem);display:grid}
.section:has(>.bands){padding-bottom:0}
.band{display:flex;align-items:center;justify-content:center;min-height:96px;padding:1.4rem 0}
.band--teal{background:var(--teal)}
.band--lime{background:var(--lime)}
.band p{
  margin:0;color:#00323F;font-weight:900;text-align:center;letter-spacing:-.02em;
  font-size:clamp(1.1rem,2.6vw,2rem);line-height:1.2;
  width:min(var(--wrap),92%);margin-inline:auto;
}

/* ============ feature grid ============ */
.feats{display:grid;grid-template-columns:repeat(auto-fit,minmax(275px,1fr));gap:clamp(1.1rem,2.2vw,1.7rem)}
.feat{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);
  padding:clamp(1.5rem,2.4vw,2rem);transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease);
}
.feat:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:transparent}
.feat__icon{
  width:54px;height:54px;border-radius:15px;display:grid;place-items:center;margin-bottom:1.1rem;
  background:linear-gradient(135deg,var(--navy),#00637F);
}
.feat__icon svg{width:26px;height:26px;fill:var(--lime)}
.feat h3{margin-bottom:.45em}
.feat p{margin:0;font-size:.98rem;color:var(--grey)}

/* ============ sector tabs ============ */
.tabs{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin-bottom:clamp(1.8rem,3vw,2.5rem)}
.tabs button{
  font:inherit;font-size:.9rem;font-weight:800;cursor:pointer;
  border:2px solid var(--line);background:#fff;color:var(--navy);
  padding:.7rem 1.45rem;border-radius:999px;transition:.22s var(--ease);
}
.tabs button:hover{border-color:var(--teal);color:var(--teal-600)}
.tabs button[aria-selected="true"]{background:var(--navy);border-color:var(--navy);color:#fff}
.tabpanel[hidden]{display:none}

/* ============ programme cards ============ */
.prog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(285px,1fr));gap:clamp(1.1rem,2.2vw,1.8rem)}
.prog-card{
  display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-md);overflow:hidden;color:inherit;position:relative;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.prog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.prog-card__pic{position:relative;overflow:hidden}
.prog-card img{aspect-ratio:4/3;object-fit:cover;width:100%;transition:transform .5s var(--ease)}
.prog-card:hover img{transform:scale(1.06)}
.prog-card__body{padding:1.4rem 1.5rem 1.6rem;display:flex;flex-direction:column;flex:1;gap:.55rem}
.prog-card h3{margin:0;font-size:1.12rem;line-height:1.3}
.prog-card .meta{font-size:.86rem;color:var(--grey);font-weight:700;margin:0}
.prog-card .go{
  margin-top:auto;font-weight:900;color:var(--teal-600);padding-top:.7rem;font-size:.92rem;
  display:inline-flex;align-items:center;gap:.4rem;
}
.prog-card .go::after{content:"→";transition:transform .2s var(--ease)}
.prog-card:hover .go::after{transform:translateX(5px)}
.pill{
  display:inline-block;background:var(--lime);color:#2B2F00;font-weight:900;
  font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;
  padding:.3rem .75rem;border-radius:999px;align-self:flex-start;
}
.prog-card__pic .pill{position:absolute;top:.9rem;left:.9rem;z-index:2;box-shadow:0 4px 12px rgba(0,0,0,.18)}

/* ============ partner marquee ============ */
.section--partners{
  background:#fff;overflow-x:clip;
  padding-top:clamp(2.4rem,4vw,3.2rem);padding-bottom:clamp(2.4rem,4vw,3.2rem);
}
.section--partners .section__head{max-width:none;margin-bottom:1.4rem}
.section--partners h2{font-size:clamp(1.15rem,2.6vw,1.75rem)}
.marquee{
  overflow:hidden;position:relative;padding:1.5rem 0;background:transparent;
  width:min(var(--wrap),92%);margin-inline:auto;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
}
.marquee__track{display:flex;gap:3.4rem;width:max-content;align-items:center;animation:scroll 52s linear infinite}
.marquee:hover .marquee__track{animation-play-state:paused}
.marquee img{height:62px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.6;transition:.3s var(--ease)}
.marquee img:hover{filter:none;opacity:1}
@keyframes scroll{to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee__track{animation:none;flex-wrap:wrap;width:auto;justify-content:center}}

/* ============ testimonials ============ */
.quotes{
  display:grid;grid-auto-flow:column;grid-auto-columns:minmax(330px,1fr);gap:1.4rem;
  overflow-x:auto;scroll-snap-type:x mandatory;padding:.5rem .25rem 1.4rem;scrollbar-width:thin;
}
.quote{
  border:1px solid var(--line);border-radius:var(--r-md);padding:2rem 1.9rem 1.6rem;scroll-snap-align:start;
  display:flex;flex-direction:column;color:var(--navy);position:relative;overflow:hidden;background:#fff;
  box-shadow:var(--shadow-sm);transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.quote:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.quote::before{
  content:"\201C";font-family:Georgia,serif;font-size:4.2rem;line-height:.6;
  color:var(--teal);opacity:.35;margin-bottom:.5rem;display:block;
}
.quote::after{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--teal)}
.quote:nth-child(3n+2)::after{background:var(--lime)}
.quote:nth-child(3n+2)::before{color:var(--lime);opacity:.55}
.quote:nth-child(3n+3)::after{background:var(--navy)}
.quote:nth-child(3n+3)::before{color:var(--navy);opacity:.25}
.quote p{flex:1;margin:0 0 1.4rem;font-size:1rem;line-height:1.65;color:var(--body)}
figure.quote figcaption{
  display:flex;align-items:center;gap:.8rem;flex-wrap:nowrap;
  border-top:1px solid var(--line);padding-top:1rem;
}
.quote__badge{
  flex:0 0 auto;width:42px;height:42px;border-radius:50%;background:var(--navy);color:#fff;
  display:grid;place-items:center;font-weight:900;font-size:.9rem;
}
.quote cite{font-style:normal;font-weight:900;color:var(--navy);display:block;line-height:1.3}
.quote .role{font-size:.85rem;color:var(--grey);display:block;font-weight:600}

/* ============ blog cards ============ */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(1.2rem,2.2vw,1.9rem)}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;
  display:flex;flex-direction:column;transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.card img{aspect-ratio:16/9;object-fit:cover;width:100%;transition:transform .5s var(--ease)}
.card:hover img{transform:scale(1.05)}
.card__pic{overflow:hidden}
.card__body{padding:1.5rem;display:flex;flex-direction:column;flex:1;gap:.45rem}
.card h3{font-size:1.1rem;margin:0;line-height:1.35}
.card time{font-size:.8rem;color:var(--grey);font-weight:800;letter-spacing:.05em;text-transform:uppercase}
.card p{font-size:.95rem;flex:1;margin:0;color:var(--grey)}
.card .more{font-weight:900;color:var(--teal-600);padding-top:.5rem;display:inline-flex;gap:.4rem;align-items:center}
.card .more::after{content:"→";transition:transform .2s var(--ease)}
.card:hover .more::after{transform:translateX(5px)}
.card__ph{
  aspect-ratio:16/9;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--navy),#00637F);
}
.card__ph span{color:rgba(255,255,255,.65);font-weight:900;letter-spacing:.14em;text-transform:uppercase;font-size:.72rem}

/* ============ big call to action ============ */
.cta-band{
  position:relative;border-radius:var(--r-lg);overflow:hidden;isolation:isolate;
  padding:clamp(2.2rem,5vw,4rem) clamp(1.5rem,4vw,3.5rem);color:#fff;
  background:
    radial-gradient(900px 400px at 8% 0%,rgba(78,199,216,.28),transparent 62%),
    radial-gradient(700px 360px at 95% 105%,rgba(195,204,23,.24),transparent 62%),
    var(--navy-950);
}
.cta-band h2{color:#fff;max-width:26rem}
.cta-band p{color:rgba(255,255,255,.85);max-width:34rem;font-size:1.06rem}
.cta-band__grid{display:grid;grid-template-columns:1.25fr auto;gap:2rem;align-items:center}
.cta-band__do{display:flex;flex-wrap:wrap;gap:.9rem}
@media (max-width:820px){.cta-band__grid{grid-template-columns:1fr}}

.cta-strip{
  background:
    radial-gradient(600px 260px at 10% 0%,rgba(78,199,216,.26),transparent 62%),
    var(--navy);
  color:#fff;border-radius:var(--r-lg);
  padding:clamp(1.6rem,3vw,2.4rem) clamp(1.5rem,3vw,2.4rem);
  display:flex;flex-wrap:wrap;gap:1.25rem;align-items:center;justify-content:space-between;
}
.cta-strip p{margin:0;font-size:1.1rem;font-weight:700;color:#fff;max-width:38rem}
.cta-strip span{display:flex;flex-wrap:wrap;gap:.75rem}

/* ============ footer ============ */
.footer{
  background:var(--navy-950);color:rgba(255,255,255,.78);
  padding:clamp(3rem,6vw,4.75rem) 0 0;position:relative;
}
.footer::before{content:"";position:absolute;left:0;right:0;top:0;height:5px;background:linear-gradient(90deg,var(--teal),var(--lime))}
.footer h4{color:var(--lime);font-size:.82rem;letter-spacing:.13em;text-transform:uppercase;font-weight:900;margin-bottom:1rem}
.footer__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(205px,1fr));gap:clamp(1.8rem,3.5vw,2.8rem)}
.footer address{font-style:normal;line-height:1.85;font-size:.96rem}
.footer a{color:rgba(255,255,255,.82)}
.footer a:hover{color:var(--lime)}
.footer p{font-size:.96rem;line-height:1.85}
.footer__social{display:flex;gap:.65rem;margin-top:1.1rem}
.footer__social a{
  width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);color:#fff;
  display:grid;place-items:center;transition:.22s var(--ease)
}
.footer__social a:hover{background:var(--lime);color:var(--navy-950);transform:translateY(-3px)}
.footer__social svg{width:18px;height:18px;fill:currentColor}
.footer__bar{
  margin-top:clamp(2.4rem,4vw,3.2rem);border-top:1px solid rgba(255,255,255,.12);
  padding:1.5rem 0;font-size:.86rem;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;
}

/* ============ reveal ============ */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.is-in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .hero__slide.is-active .hero__inner>*{animation:none}
  html{scroll-behavior:auto}
}

/* ============ inner page hero ============ */
.page-hero{
  position:relative;min-height:min(50vh,420px);display:flex;align-items:center;
  background-size:cover;background-position:center;isolation:isolate;background-color:var(--navy-950);
}
.page-hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(94deg,rgba(2,39,52,.94) 0%,rgba(2,39,52,.78) 42%,rgba(2,39,52,.34) 78%,rgba(2,39,52,.18) 100%);
}
.page-hero__inner{position:relative;z-index:2;width:min(var(--wrap),92%);margin-inline:auto;color:#fff;padding:clamp(3rem,6vw,4.5rem) 0}
.page-hero h1{color:#fff;font-size:clamp(2rem,4.8vw,3.4rem);margin-bottom:.32em;letter-spacing:-.03em}
.page-hero p{font-size:clamp(1rem,1.5vw,1.2rem);max-width:38rem;margin:0;color:rgba(255,255,255,.88)}
.page-hero .eyebrow{color:var(--lime)}

/* breadcrumb sits under the page hero */
.crumbs{background:var(--tint);border-bottom:1px solid var(--line);font-size:.86rem;font-weight:700}
.crumbs ol{list-style:none;margin:0;padding:.8rem 0;display:flex;flex-wrap:wrap;gap:.45rem;align-items:center;color:var(--grey)}
.crumbs a{color:var(--navy)}
.crumbs a:hover{color:var(--teal-600)}
.crumbs li+li::before{content:"/";margin-right:.45rem;color:var(--line)}

/* ============ accordion ============ */
.accordion{border-top:1px solid var(--line)}
.acc{border-bottom:1px solid var(--line)}
.acc__btn{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  background:none;border:0;padding:1.5rem .25rem;cursor:pointer;text-align:left;
  font-family:var(--font);font-size:clamp(1.05rem,1.9vw,1.35rem);font-weight:900;color:var(--navy);
  transition:color .2s var(--ease);
}
.acc__btn:hover{color:var(--teal-600)}
.acc__btn::after{
  content:"";flex:0 0 auto;width:22px;height:22px;position:relative;
  background:
    linear-gradient(currentColor,currentColor) center/100% 2.5px no-repeat,
    linear-gradient(currentColor,currentColor) center/2.5px 100% no-repeat;
  transition:transform .25s var(--ease);
}
.acc__btn[aria-expanded="true"]::after{transform:rotate(45deg)}
.acc__panel{display:grid;grid-template-rows:0fr;transition:grid-template-rows .3s var(--ease)}
.acc__panel[data-open="true"]{grid-template-rows:1fr}
.acc__inner{overflow:hidden}
.acc__inner>div{padding:0 .25rem 1.75rem}
.acc__inner h3{font-size:1.08rem;margin:1.6rem 0 .6rem;color:var(--navy)}
.acc__inner ul{padding-left:1.15rem;margin:0 0 1em}
.acc__inner li{margin-bottom:.7rem}
.acc__inner li strong{color:var(--navy)}
@media (prefers-reduced-motion:reduce){.acc__panel{transition:none}}

/* ============ programme page ============ */
.prog{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.8fr);gap:clamp(2rem,4vw,3.5rem);align-items:start}
.prog__media{position:sticky;top:110px}
.prog__media img{border-radius:var(--r-lg);width:100%;height:auto;box-shadow:var(--shadow)}
.spec{border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;background:#fff;box-shadow:var(--shadow-sm)}
.spec__row+.spec__row{border-top:1px solid var(--line)}
.spec dt{
  background:var(--navy);color:#fff;font-weight:900;
  padding:.75rem 1.2rem;font-size:.8rem;letter-spacing:.11em;text-transform:uppercase;
}
.spec dd{margin:0;padding:1.1rem 1.2rem 1.3rem}
.spec dd :last-child{margin-bottom:0}
.spec dd ul{margin:0;padding-left:1.15rem}
.spec dd li{margin-bottom:.4rem}
.spec__do{display:flex;flex-wrap:wrap;gap:.75rem;margin:1.2rem 0 .1rem}
.spec__do .btn{margin:0}
.prose{max-width:var(--narrow)}
.prose h2{font-size:clamp(1.3rem,2.2vw,1.75rem);margin-top:2.2rem}
.prose h2:first-child{margin-top:0}
.prose h3{font-size:clamp(1.08rem,1.9vw,1.3rem);margin-top:1.9rem}
.prose h4,.prose h6{font-size:1.05rem;color:var(--navy);margin-top:1.5rem}
.prose ul,.prose ol{padding-left:1.35rem}
.prose li{margin-bottom:.55rem}
.prose a{color:var(--teal-600);font-weight:700;text-decoration:underline;text-underline-offset:3px}
@media (max-width:900px){
  .prog{grid-template-columns:1fr}
  .prog__media{order:-1;position:static}
}

/* ============ blog post ============ */
.post{width:min(46rem,92%);margin-inline:auto}
.post__meta{
  display:flex;flex-wrap:wrap;align-items:center;gap:.7rem;
  color:var(--grey);font-weight:800;font-size:.86rem;margin:0 0 1.6rem;
  letter-spacing:.04em;text-transform:uppercase;
}
.post__meta span{color:var(--line)}
.post__img{width:100%;border-radius:var(--r-lg);margin:0 0 2rem;display:block;box-shadow:var(--shadow)}
.post__back{display:inline-block;margin-top:2.5rem;font-weight:900;color:var(--teal-600)}
.post__nav{
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:1.25rem;
  border-top:1px solid var(--line);margin-top:2.5rem;padding-top:1.75rem;font-weight:800;
}
.post__nav a{display:block;max-width:22rem}
.post__nav small{display:block;color:var(--grey);font-weight:800;font-size:.76rem;letter-spacing:.09em;text-transform:uppercase;margin-bottom:.2rem}

/* ============ two column body ============ */
.cols-2{columns:2;column-gap:2.5rem}
.cols-2 li{break-inside:avoid}
@media (max-width:760px){.cols-2{columns:1}}

/* ============ document list ============ */
.doclist{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem;list-style:none;padding:0;margin:0}
.doclist a{
  display:flex;align-items:center;gap:.9rem;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-sm);padding:1.05rem 1.15rem;font-weight:800;color:var(--navy);transition:.22s var(--ease);height:100%;
}
.doclist a:hover{border-color:var(--teal);box-shadow:var(--shadow-sm);transform:translateY(-3px)}
.doclist svg{flex:0 0 auto;width:22px;height:22px;fill:var(--teal)}

/* ============ cohort panels ============ */
.cohorts{display:grid;grid-template-columns:repeat(auto-fit,minmax(255px,1fr));gap:1.1rem;margin:1rem 0 0}
.cohort{background:#fff;border:1px solid var(--line);border-left:5px solid var(--teal);border-radius:var(--r-sm);padding:1.15rem 1.3rem;box-shadow:var(--shadow-sm)}
.cohort h4{margin:0 0 .35rem;color:var(--navy);font-size:1rem}
.cohort p{margin:0;font-size:.94rem}
.cohort .note{color:var(--grey);font-size:.86rem;margin-top:.4rem}

/* ============ panels ============ */
.panel{background:var(--tint);border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.5rem,2.8vw,2.25rem)}
.panel h3:first-child,.panel h2:first-child{margin-top:0}
.split{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(1.5rem,3vw,2.5rem);align-items:start}
.split--media{align-items:center}
.split--media img{border-radius:var(--r-lg);box-shadow:var(--shadow)}

/* ============ forms ============ */
.form{display:grid;gap:1.1rem;max-width:44rem}
.field{display:grid;gap:.4rem;margin-bottom:.9rem}
.field label{font-weight:800;color:var(--navy);font-size:.93rem}
.field input,.field select,.field textarea{
  font:inherit;font-size:1rem;color:var(--body);padding:.8rem .95rem;border:1.5px solid #CFDCE0;border-radius:var(--r-sm);
  background:#fff;width:100%;transition:border-color .18s var(--ease),box-shadow .18s var(--ease);
}
.field input:hover,.field select:hover,.field textarea:hover{border-color:#A9C3CA}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--teal);box-shadow:0 0 0 4px rgba(78,199,216,.22);
}
.field textarea{min-height:130px;resize:vertical}
.form .hint{font-size:.85rem;color:var(--grey);margin:0}
.field .hint{display:block;font-weight:500;color:var(--grey);font-size:.86rem;margin-top:.35rem}
.trap{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.form-status{
  border-radius:var(--r-sm);padding:1rem 1.15rem;font-weight:700;margin:0 0 .5rem;
  background:#EAFAF1;border:1px solid #B6E6CD;border-left:5px solid #2FAE6D;color:#14532D;
}
.form-status[data-state="error"]{background:#FDECEC;border-color:#F3BDBD;border-left-color:#D64545;color:#7F1D1D}
.notice{
  background:var(--sand);border:1px solid #E8E3BE;border-left:5px solid var(--lime);
  border-radius:var(--r-sm);padding:1.05rem 1.2rem;font-size:.95rem;
}
.notice p:last-child{margin-bottom:0}
.form--wide{max-width:58rem}
.fs{
  border:1px solid var(--line);border-radius:var(--r-lg);background:#fff;box-shadow:var(--shadow-sm);
  padding:1.6rem clamp(1.2rem,2.6vw,2rem) 1.2rem;margin:0;
}
.fs+.fs{margin-top:1.4rem}
.fs legend{
  font-weight:900;color:var(--navy);font-size:1.02rem;letter-spacing:-.01em;
  padding:.3rem .9rem;margin-left:-.3rem;background:var(--teal-050);border-radius:999px;
}
.cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:0 1.3rem}

/* ============ vacancies ============ */
.lead{font-size:1.1rem;color:var(--ink);max-width:60rem;margin:0 0 1.5rem;line-height:1.65}
.vac-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.4rem;margin-top:2rem}
.vac{
  display:flex;flex-direction:column;gap:.65rem;background:#fff;border:1px solid var(--line);
  border-top:5px solid var(--teal);border-radius:var(--r-md);padding:1.5rem;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.vac:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.vac h3{margin:0;font-size:1.1rem;color:var(--navy);line-height:1.3}
.vac__loc{display:flex;align-items:center;gap:.45rem;margin:0;font-weight:700;color:var(--grey);font-size:.92rem}
.vac__loc svg{width:16px;height:16px;fill:var(--teal);flex:none}
.vac p{margin:0;font-size:.94rem}
.vac .btn{margin-top:auto;align-self:flex-start}
.vac-filter{
  display:grid;grid-template-columns:2fr 1.3fr 1.3fr auto;gap:1rem;align-items:end;
  background:var(--tint);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.35rem 1.5rem;margin-top:2rem;
}
.vac-filter label{display:block;font-weight:900;color:var(--navy);font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.45rem}
.vac-filter input,.vac-filter select{
  width:100%;font:inherit;color:var(--body);padding:.72rem .9rem;
  border:1.5px solid #CFDCE0;border-radius:var(--r-sm);background:#fff;
}
.vac-filter input:focus,.vac-filter select:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 4px rgba(78,199,216,.22)}
.vac-filter button{
  font:inherit;font-weight:900;cursor:pointer;border:0;border-radius:999px;
  background:var(--navy);color:#fff;padding:.78rem 1.5rem;white-space:nowrap;transition:.2s var(--ease);
}
.vac-filter button:hover{background:var(--navy-900);transform:translateY(-2px)}
@media (max-width:860px){
  .vac-filter{grid-template-columns:1fr 1fr}
  .vac-filter .vac-filter__q{grid-column:1 / -1}
  .vac-filter button{grid-column:1 / -1}
}
.vac-count{margin:1.5rem 0 0;font-weight:800;color:var(--grey)}
.vac[hidden]{display:none}
.vac h3 a{color:var(--navy)}
.vac h3 a:hover{color:var(--teal-600)}
.vac__meta{margin:0;font-weight:800;color:var(--teal-600);font-size:.92rem}
.vac__at{color:var(--teal-600)}
.vac__posted{color:var(--grey);font-weight:600}
.vac__posted::before{content:"\00b7";margin:0 .45rem;color:var(--line)}
.vac__do{display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;margin:auto 0 0;padding-top:.5rem}
.vac__more{font-weight:900;color:var(--teal-600)}
.vac__none{
  grid-column:1 / -1;background:var(--tint);border:1px solid var(--line);border-radius:var(--r-lg);
  padding:2.5rem;text-align:center;color:var(--grey);font-weight:700;
}
.job__facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(170px,1fr));gap:1rem;margin:0 0 2rem}
.job__fact{background:var(--tint);border:1px solid var(--line);border-left:5px solid var(--teal);border-radius:var(--r-sm);padding:.95rem 1.15rem}
.job__fact dt{font-weight:900;color:var(--navy);font-size:.74rem;letter-spacing:.09em;text-transform:uppercase;margin-bottom:.25rem}
.job__fact dd{margin:0;font-weight:800;color:var(--ink)}

/* ============ policies ============ */
.pol-group{margin-top:3.2rem}
.pol-group:first-of-type{margin-top:0}
.pol-group__head{display:flex;gap:1.15rem;align-items:flex-start;margin-bottom:1.5rem}
.pol-group__icon{
  flex:none;width:56px;height:56px;border-radius:16px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--navy),#00637F);box-shadow:var(--shadow-sm);
}
.pol-group__icon svg{width:27px;height:27px;fill:var(--lime)}
.pol-group__head h2{margin:0 0 .25rem;font-size:clamp(1.2rem,2.2vw,1.55rem)}
.pol-group__head p{margin:0;color:var(--grey);max-width:46rem}
.pol-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(310px,1fr));gap:1.1rem}
.pol{
  display:flex;gap:1rem;align-items:flex-start;color:inherit;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);padding:1.25rem 1.35rem;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s var(--ease);
}
.pol:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--teal)}
.pol__doc{flex:none;width:42px;height:42px;border-radius:12px;display:grid;place-items:center;background:var(--teal-050);transition:background .22s var(--ease)}
.pol:hover .pol__doc{background:var(--teal)}
.pol__doc svg{width:20px;height:20px;fill:var(--teal-600);transition:fill .22s var(--ease)}
.pol:hover .pol__doc svg{fill:#fff}
.pol__body{display:block}
.pol__name{display:block;font-weight:900;color:var(--navy);line-height:1.35;margin-bottom:.3rem}
.pol__desc{display:block;font-size:.92rem;color:var(--grey);line-height:1.55}
.pol__meta{display:block;margin-top:.6rem;font-size:.76rem;font-weight:900;color:var(--teal-600);letter-spacing:.08em;text-transform:uppercase}

/* ============ responsive ============ */
@media (max-width:1100px){
  .burger{display:block}
  .header__inner{flex-wrap:wrap;align-items:center}
  .header__logo{order:-1;margin-right:auto}

  /* The open menu flows in the header rather than floating over it. Two fixed
     panels used to land on the same spot and hide each other's first items. */
  .nav{
    position:static;inset:auto;display:none;width:100%;
    flex-direction:column;align-items:stretch;gap:0;
    padding:.6rem 0 0;background:transparent;box-shadow:none;
    max-height:none;overflow:visible;border:0;
  }
  .nav.is-open{display:flex}
  .nav{order:3}
  .nav--right{order:4;border-top:1px solid var(--line);margin-top:.5rem;padding:.9rem 0 1.25rem}
  .nav>*{width:100%;padding:.55rem 0}
  .nav>a::after,.has-sub>button::before{display:none}
  .has-sub>button{width:100%;text-align:left}
  /* Sub menus stay shut until their heading is tapped. Left open, the menu
     runs to twenty one rows and the bottom of it falls off the screen. */
  .sub{
    position:static;opacity:1;visibility:visible;transform:none;display:none;
    box-shadow:none;border:0;padding:.15rem 0 .35rem .9rem;min-width:0;background:transparent;
  }
  .has-sub>button[aria-expanded="true"]+.sub{display:block}
  .has-sub:hover .sub,.has-sub:focus-within .sub{opacity:1;visibility:visible}
  .has-sub:hover>button[aria-expanded="false"]+.sub{display:none}
  .has-sub>button::after{transition:transform .2s var(--ease)}
  .has-sub>button[aria-expanded="true"]::after{transform:translateY(-25%) rotate(225deg)}
  .has-sub:hover>button[aria-expanded="false"]::after{transform:translateY(-25%) rotate(45deg)}
  .sub a{padding:.5rem .3rem;font-size:.9rem}
  .nav a.btn{margin-top:.7rem;width:100%}

  /* a long menu scrolls inside the header instead of running off the screen */
  .header.is-open .header__inner{max-height:100dvh;overflow-y:auto;padding-bottom:.5rem}
  body.menu-open{overflow:hidden}
}
@media (max-width:820px){
  body{font-size:16px}
  .hero{min-height:min(78vh,600px)}
  .hero__inner{padding:4rem 0 6rem}
  .hero__slide{background-position:74% center}
  .hero__slide::after{background:linear-gradient(180deg,rgba(2,39,52,.62) 0%,rgba(2,39,52,.80) 55%,rgba(2,39,52,.94) 100%)}
  .hero__dots{bottom:5.5rem}
  .quicklinks{margin-top:-3rem;grid-template-columns:1fr 1fr}
  .quotes{grid-auto-columns:minmax(280px,86%)}
  .path{min-height:330px}
}
@media (max-width:520px){
  .quicklinks{grid-template-columns:1fr}
  .cta-strip{flex-direction:column;align-items:flex-start}
  .hero__do .btn{width:100%}
}

/* ============ application pages ============ */
.form-layout{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(0,.85fr);gap:clamp(1.8rem,3.5vw,3rem);align-items:start}
.form-layout .form{max-width:none}
.form-aside{position:sticky;top:110px;display:grid;gap:1.1rem}
.aside-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.5rem 1.6rem;box-shadow:var(--shadow-sm);
}
.aside-card h3{font-size:1.05rem;margin-bottom:.7rem}
.aside-card p{margin:0 0 .8rem;font-size:.95rem;color:var(--grey)}
.aside-card p:last-child{margin-bottom:0}
.aside-card--navy{
  background:radial-gradient(500px 240px at 10% 0%,rgba(78,199,216,.25),transparent 62%),var(--navy-950);
  border-color:transparent;color:rgba(255,255,255,.85);
}
.aside-card--navy h3{color:#fff}
.aside-card--navy p{color:rgba(255,255,255,.8)}
.aside-card--navy a{color:var(--lime);font-weight:800}
.ticks{list-style:none;margin:0;padding:0;display:grid;gap:.7rem}
.ticks li{display:flex;gap:.65rem;align-items:flex-start;font-size:.95rem;line-height:1.5}
.ticks li::before{
  content:"";flex:none;width:20px;height:20px;border-radius:50%;margin-top:.15rem;
  background:var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
.aside-card--navy .ticks li::before{background-color:var(--lime);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23022734'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E")}
.steps{list-style:none;counter-reset:s;margin:0;padding:0;display:grid;gap:1rem}
.steps li{display:flex;gap:.9rem;align-items:flex-start;font-size:.95rem;line-height:1.5;counter-increment:s}
.steps li::before{
  content:counter(s);flex:none;width:28px;height:28px;border-radius:50%;
  background:var(--navy);color:#fff;font-weight:900;font-size:.85rem;
  display:grid;place-items:center;
}
@media (max-width:980px){
  .form-layout{grid-template-columns:1fr}
  .form-aside{position:static;order:-1}
}

/* a six item grid sits better in three columns than in four plus two */
.feats--3{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}

/* ============ AI unit cards ============ */
.units{display:grid;grid-template-columns:repeat(auto-fit,minmax(312px,1fr));gap:clamp(1.2rem,2.2vw,1.9rem)}
.unit{
  background:#fff;border:1px solid var(--line);border-top:4px solid var(--teal);
  border-radius:var(--r-md);padding:1.75rem 1.6rem;
  display:flex;flex-direction:column;gap:.85rem;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.unit:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.unit h3{font-size:1.22rem;margin:0;line-height:1.3;color:var(--navy)}
.unit__meta{margin:0;font-size:.8rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--grey)}
.unit__lead{margin:0;font-size:.97rem;line-height:1.65;color:var(--grey)}
.unit .ticks{margin:.15rem 0 .35rem}
.unit__out{
  margin:auto 0 0;background:var(--teal-050);border-radius:var(--r-sm);
  padding:.95rem 1.05rem;font-size:.92rem;line-height:1.6;color:var(--ink);
}
.unit__out strong{color:var(--navy);display:block;margin-bottom:.15rem}
