/* Sensedge homepage — built to the client's 7 September design set.
   Every measurement here was taken off their own artboards (1672 x 941), so
   at 1672px wide the page matches the comps; below that it scales and, at
   tablet and phone, reflows. Colours are sampled from the comps, not guessed:
   crimson #b7092f, navy #06244d, blue #1240ce. */

:root {
  --navy:    #06244d;
  --ink:     #0b1f3f;
  --body:    #5a6480;
  --muted:   #8b93a6;
  --blue:    #1240ce;
  --blue-lt: #f2f6fe;
  --red:     #b7092f;
  --line:    #e6e9f0;
  --line-sf: #eef1f6;
  --page:    #ffffff;
  --f:       "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif:   "Source Serif 4", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--page); color: var(--ink);
  font-family: var(--f); font-size: 17px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Each comp was drawn with its own side margin; they are kept rather than
   averaged, because the client will compare section by section. */
.shell { max-width: none; width: 100%; margin-inline: 0; }
/* Each comp was drawn with its own gutter at 1672px wide. Those gutters are
   kept as a proportion of the viewport rather than a fixed pixel figure, so
   the page fills whatever screen it is opened on instead of sitting in a
   1672px column with white either side. */
.shell-hero { padding-inline: clamp(24px, 4.5vw, 110px); }
.shell-who  { padding-inline: clamp(24px, 3.9vw, 96px); }
.shell-svc  { padding-inline: clamp(24px, 3.2vw, 78px); }
.shell-prod { padding-inline: clamp(24px, 5.7vw, 140px); }
.shell-ms   { padding-inline: clamp(24px, 5.7vw, 140px); }

/* ── shared type ─────────────────────────────────────────────────── */
.h-lg {
  color: var(--navy); font-weight: 800; letter-spacing: -0.021em;
  font-size: 62px; line-height: 1.04;
}
.eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--body); margin: 0;
}
.eyebrow-blue { color: var(--blue); }
.eyebrow-rule::before,
.eyebrow-rule-after::after {
  content: ""; width: 58px; height: 2px; background: currentColor; flex: none;
}
.eyebrow-rule-after::after { width: 46px; height: 1.5px; }

/* The one arrow on the site, drawn not typed, so it matches at every size. */
.arw {
  display: inline-block; width: 1.15em; height: .72em; flex: none;
  background: currentColor;
  -webkit-mask: no-repeat center/contain url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 15'%3E%3Cpath d='M1 7.5h20M15.4 1.4 21.5 7.5l-6.1 6.1' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
          mask: no-repeat center/contain url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 15'%3E%3Cpath d='M1 7.5h20M15.4 1.4 21.5 7.5l-6.1 6.1' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}
a:hover .arw, .btn:hover .arw { transform: translateX(4px); }

.link-blue {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--blue); font-size: 20px; font-weight: 500;
}
.btn {
  display: inline-flex; align-items: center; gap: 14px; border-radius: 8px;
  font-size: 20px; font-weight: 700; padding: 0 30px; height: 64px;
  transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #99062780; background: #9a0626; }
.btn-line { border: 1.6px solid var(--navy); color: var(--navy); }
.btn-line:hover { background: var(--navy); color: #fff; }
.btn-sm { height: 52px; font-size: 17px; padding: 0 24px; }

/* ══ 01 · HERO ═══════════════════════════════════════════════════ */
.site-header { background: #fff; position: relative; z-index: 5; }
.header-inner {
  display: flex; align-items: center; gap: 40px; height: 100px;
}
.logo img { width: 250px; height: auto; }
.nav {
  display: flex; gap: 46px; margin-inline: auto;
  font-size: 17px; color: #4b5363;
}
.nav a { padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }
.header-cta { height: 52px; font-size: 17px; padding: 0 24px; }

.hero { position: relative; isolation: isolate; background: #f9fbfe; overflow: hidden;
  min-height: clamp(680px, 82vh, 1000px); display: flex; align-items: center; }
.hero-photo { position: absolute; inset: 0; z-index: -2; }
.hero-photo { display: flex; justify-content: flex-end; }
/* Height first: the frame is shown top to bottom and allowed to run off the
   right edge, rather than being stretched across the width and cropped. */
.hero-photo img { height: 100%; width: auto; max-width: none; object-fit: cover; object-position: center; }
/* The comp fades the photograph out to the left behind the copy. */
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, #f9fbfe 0%, #f9fbfe 34%, rgba(249,251,254,.86) 45%,
                    rgba(249,251,254,.30) 56%, rgba(249,251,254,0) 66%),
    linear-gradient(180deg, rgba(249,251,254,.55) 0%, rgba(249,251,254,0) 22%);
}
.hero-inner { padding-block: clamp(56px, 7vw, 118px); width: 100%; }
.hero-copy { max-width: min(1120px, 62vw); min-width: 0; }
.hero-copy .eyebrow { font-size: 15.5px; letter-spacing: .1em; color: #6a7386; }
.hero h1 {
  margin-top: 46px; color: var(--navy); font-weight: 800;
  font-size: 71px; line-height: 1.06; letter-spacing: -0.028em;
}
.hero h1 .dot { color: var(--red); }
.hero-lead {
  margin-top: 30px; max-width: 690px; color: var(--body);
  font-size: 25px; line-height: 1.36;
}
.hero-btns { display: flex; gap: 32px; margin-top: 42px; }

.proof { display: flex; align-items: center; gap: 34px; margin-top: 74px; }
.proof li { display: flex; align-items: center; gap: 18px; }
.proof li + li { border-left: 1px solid #d9dfe9; padding-left: 34px; }
.pi { width: 46px; height: 46px; flex: none; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.proof b { display: block; color: var(--navy); font-size: 23px; font-weight: 800; line-height: 1.15; }
.proof em { display: block; color: var(--body); font-size: 15.5px; font-style: normal; }

/* ══ 02 · WHO WE ARE ═════════════════════════════════════════════ */
.who { background: #f8f8fa; }
.who-grid {
  display: grid; grid-template-columns: minmax(0, 880px) minmax(0, 1fr);
  gap: 60px; align-items: center; padding-block: 104px;
}
.who h2 { font-size: 62px; }
.who-lead { margin-top: 30px; max-width: 620px; color: var(--body); font-size: 20px; line-height: 1.47; }
.who .eyebrow { font-size: 15px; letter-spacing: .14em; }

.who-items {
  display: grid; grid-template-columns: 364px 1fr; gap: 46px 0;
  margin-top: 52px;
}
.who-items li { max-width: 310px; }
.who-items .rule { display: block; width: 102px; height: 3px; background: var(--blue); }
.who-items h3 {
  margin-top: 22px; color: var(--navy); font-size: 15.5px; font-weight: 800;
  letter-spacing: .045em; text-transform: uppercase;
}
.who-items p { margin-top: 12px; color: var(--body); font-size: 18px; line-height: 1.55; }
.who .link-blue { margin-top: 44px; }
.who-emblem { justify-self: center; }
.who-emblem img {
  width: min(660px, 40vw); height: auto;
  filter: drop-shadow(0 34px 44px rgba(18, 22, 38, .38))
          drop-shadow(0 10px 14px rgba(18, 22, 38, .24));
}

/* ══ 03 · OUR SERVICES ═══════════════════════════════════════════ */
.svc { background: #fefeff; }
.svc-grid {
  display: grid; grid-template-columns: 540px minmax(0, 1fr); gap: 0;
  padding-block: 44px 52px;
}
.svc-side { display: flex; flex-direction: column; padding-right: 60px; }
.svc h2 { font-size: 52px; line-height: 1.13; }
.svc-lead { margin-top: 34px; max-width: 470px; color: var(--body); font-size: 21px; line-height: 1.6; }
.svc .link-blue { margin-top: 40px; align-self: flex-start; }
.strapline {
  margin-top: auto; padding-top: 90px; color: #9aa2b4;
  font-size: 14px; font-weight: 500; letter-spacing: .19em; line-height: 1.65;
  text-transform: uppercase; display: flex; align-items: flex-end; gap: 18px;
}
.strapline .rule { width: 108px; height: 1px; background: #cfd6e2; margin-bottom: 8px; flex: none; }

.svc-list { display: flex; flex-direction: column; }
.svc-row { border-bottom: 1px solid var(--line-sf); }
.svc-row:first-child { border-top: 1px solid var(--line-sf); }
.svc-head {
  display: flex; align-items: center; gap: 26px; width: 100%; text-align: left;
  background: none; border: 0; padding: 8px 6px; cursor: pointer;
  font: inherit; color: var(--navy);
}
.svc-head img { width: 127px; height: 57px; object-fit: cover; border-radius: 6px; flex: none; }
.svc-head h3 { flex: 1; font-size: 24px; font-weight: 600; letter-spacing: -0.006em; }
.svc-sign { width: 22px; height: 22px; flex: none; position: relative; }
.svc-sign::before, .svc-sign::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 1.8px; margin-top: -0.9px;
  background: var(--navy); transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.svc-sign::after { transform: rotate(90deg); }
.svc-row.is-open .svc-sign::after { transform: rotate(0); }
.svc-row.is-open .svc-head h3 { color: var(--blue); }
.svc-head:hover h3 { color: var(--blue); }

.svc-panel { display: none; }
.svc-row.is-open { border-bottom: 0; }
.svc-row.is-open .svc-panel {
  display: grid; grid-template-columns: minmax(0, 1fr) 509px; gap: 40px;
  border-left: 3px solid var(--blue); background: #fbfcfe;
  border-radius: 0 10px 10px 0; padding: 26px 30px 30px;
  box-shadow: 0 1px 0 var(--line-sf), 0 -1px 0 var(--line-sf);
}
.svc-row.is-open .svc-head { padding: 22px 30px 4px; }
.svc-row.is-open { border: 1px solid var(--line-sf); border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; }
.svc-row.is-open .svc-head img { display: none; }
.svc-row.is-open .svc-head h3 { font-size: 30px; font-weight: 600; }
.svc-row.is-open .svc-panel { border: 0; box-shadow: none; background: none; border-radius: 0; padding: 14px 30px 30px; }
.svc-intro { color: var(--body); font-size: 17px; line-height: 1.55; max-width: 44ch; }
.svc-areas { margin-top: 22px; display: flex; flex-direction: column; gap: 20px; }
.svc-area { display: flex; gap: 16px; }
.svc-area svg { width: 28px; height: 28px; flex: none; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-area h4 { margin: 0; color: var(--navy); font-size: 16.5px; font-weight: 700; }
.svc-area p { margin-top: 4px; color: var(--body); font-size: 15px; line-height: 1.42; }
.svc-panel .link-blue { font-size: 17px; margin-top: 24px; }
.svc-shot { align-self: start; border-radius: 8px; overflow: hidden; }
.svc-shot img { width: 100%; height: auto; }

/* ══ 04 · PRODUCT PORTFOLIO ══════════════════════════════════════ */
.prod { background: #fefefe; padding-block: 74px 90px; }
.prod-head { display: grid; grid-template-columns: minmax(0, 1fr) 420px 250px; gap: 40px; }
.prod h2 { font-size: 56px; line-height: 1.07; margin-top: 26px; }
.prod-head-mid p { color: var(--body); font-size: 19px; line-height: 1.5; }
.prod-head-mid .link-blue { margin-top: 26px; font-size: 18px; }
.prod-motto {
  position: relative; padding-left: 26px; border-left: 1px solid var(--line);
  color: #7e879b; font-size: 13.5px; font-weight: 600;
  letter-spacing: .16em; line-height: 1.6; text-transform: uppercase;
}
.prod-motto .mrule { display: block; width: 34px; height: 2px; background: var(--red); margin-top: 14px; }

.prod-grid {
  margin-top: 44px; display: grid; gap: 22px;
  grid-template-columns: 702px minmax(0, 1fr);
  align-items: stretch;
}
.prod-side { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px; align-content: start; }
.sm-third { grid-column: span 2; }
.sm-half  { grid-column: span 3; }
.pcard {
  background: #f7f8fb; border: 1px solid #eef0f5; border-radius: 14px;
  position: relative; overflow: hidden; text-align: left; font: inherit;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
button.pcard { cursor: pointer; width: 100%; }
button.pcard:hover { border-color: #d8def0; box-shadow: 0 14px 32px rgba(10,32,74,.09); transform: translateY(-2px); }
.pcard .tag {
  display: inline-block; background: #eef3fe; color: var(--blue);
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 6px; align-self: flex-start;
}
.pcard h3 { color: var(--navy); font-weight: 700; letter-spacing: -0.01em; }

/* the promoted product */
.pcard-lead { display: flex; flex-direction: column; padding: 34px 38px 30px; }
.pcard-lead .lead-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; flex: 1; }
.pcard-lead h3 { font-size: 54px; line-height: 1; margin-top: 26px; letter-spacing: -0.03em; }
.pcard-lead .cap { margin-top: 20px; color: var(--navy); font-size: 23px; line-height: 1.32; font-weight: 500; max-width: 20ch; }
.pcard-lead .desc { margin-top: 22px; color: var(--body); font-size: 17px; line-height: 1.55; max-width: 34ch; }
.pcard-lead .link-blue { margin-top: 28px; font-size: 18px; }
.pcard-shot { width: 360px; flex: none; }
.pcard-shot img, .pcard-shot svg { width: 100%; height: auto; }
.lead-feats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  border-top: 1px solid #e7eaf1; margin-top: 28px; padding-top: 24px;
}
.lead-feats li { display: flex; align-items: center; gap: 14px; color: var(--body); font-size: 16px; line-height: 1.3; }
.lead-feats li + li { border-left: 1px solid #e7eaf1; padding-left: 20px; }
.lead-feats svg { width: 42px; height: 42px; flex: none; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* the five small cards */
.pcard-sm { padding: 24px 24px 18px; display: flex; flex-direction: column; min-height: 310px; }
.pcard-sm h3 { font-size: 27px; margin-top: 20px; line-height: 1.1; }
.pcard-sm .desc { margin-top: 14px; color: var(--body); font-size: 16px; line-height: 1.45; }
.pcard-sm .foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 18px; }
.pcard-sm .foot .arw { color: var(--blue); width: 24px; height: 15px; }
/* The illustration sits in the corner of the card, as drawn — never a
   background wash behind the words. */
.pcard-art { width: 210px; flex: none; margin: 0 -8px -6px 0; }
.pcard-art.is-photo { width: 190px; margin-bottom: -10px; }
.pcard-art.is-photo img { width: 100%; height: auto; }
.pcard-art svg, .pcard-art img { width: 100%; height: auto; }
.pcard-wide { grid-column: span 1; }
.prod-grid .row2 { grid-column: span 1; }

/* ══ 05 · MILESTONES ═════════════════════════════════════════════ */
.ms { position: relative; isolation: isolate; background: linear-gradient(180deg,#f4f7fc 0%, #eef3fa 100%); overflow: hidden; padding-block: 62px 54px; }
.ms-photo { position: absolute; left: 0; bottom: 0; width: 46%; z-index: -1; }
.ms-photo img { width: 100%; height: auto; }
.ms-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(244,247,252,0) 55%, #eef3fa 100%),
              linear-gradient(180deg, #f4f7fc 0%, rgba(244,247,252,0) 26%);
}
.ms-grid { display: grid; grid-template-columns: 470px minmax(0, 1fr); gap: 46px; }
.ms-side { padding-top: 34px; }
.ms h2 { font-size: 62px; line-height: 1.06; margin-top: 30px; }
.ms-lead { margin-top: 34px; max-width: 420px; color: var(--body); font-size: 19px; line-height: 1.6; }
.ms-side .btn { margin-top: 38px; }

.ms-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ms-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(16,36,72,.06);
}
.ms-card > :not(img) { padding-inline: 24px; }
.ms-year {
  display: flex; align-items: center; gap: 14px; padding-top: 22px;
  color: var(--blue); font-size: 30px; font-weight: 600; letter-spacing: -0.01em;
}
.ms-year .rule { width: 26px; height: 1.5px; background: #9db2e0; flex: none; }
.ms-card h3 { margin-top: 14px; color: var(--navy); font-size: 19px; font-weight: 700; }
.ms-body { margin-top: 10px; padding-bottom: 20px; color: var(--body); font-size: 16px; line-height: 1.45; }
.ms-card img { margin-top: auto; width: 100%; height: auto; }

.ms-foot { grid-column: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 34px; }
.ms-quote { font-family: var(--serif); color: var(--navy); font-size: 34px; line-height: 1.26; }
.ms-quote .rule { display: block; width: 96px; height: 1.5px; background: #a9bbdf; margin-bottom: 18px; }
.ms-kicker {
  display: flex; align-items: center; gap: 18px; color: var(--navy);
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding-bottom: 8px;
}
.ms-kicker .rule { width: 74px; height: 1.5px; background: #4a6ba8; flex: none; }

/* ── narrower screens ────────────────────────────────────────────
   The comps are desktop only. Below the design width everything scales
   down; below 1180 it reflows to one column. */
@media (max-width: 1671px) {
  .hero h1 { font-size: clamp(40px, 4.5vw, 75px); }
  .h-lg, .who h2, .ms h2 { font-size: clamp(30px, 3.7vw, 62px); }
  .svc h2 { font-size: clamp(28px, 3.1vw, 52px); }
  .prod h2 { font-size: clamp(30px, 3.35vw, 56px); }
  .hero-lead { font-size: clamp(17px, 1.5vw, 25px); }
  .pcard-lead h3 { font-size: clamp(32px, 3.2vw, 54px); }
  .prod-grid { grid-template-columns: minmax(0, 44%) minmax(0, 1fr); }
  .who-items { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .who-items li { max-width: none; }
  .svc-grid { grid-template-columns: minmax(0, 34%) minmax(0, 1fr); }
  .ms-grid { grid-template-columns: minmax(0, 30%) minmax(0, 1fr); }
}
@media (max-width: 1180px) {
  .nav { display: none; }
  .hero-copy { max-width: none; }
  .who-grid, .svc-grid, .ms-grid { grid-template-columns: minmax(0, 1fr); }
  .who-emblem img { width: min(360px, 70vw); }
  .svc-side { padding-right: 0; }
  .strapline { padding-top: 40px; }
  .svc-row.is-open .svc-panel { grid-template-columns: minmax(0, 1fr); }
  .prod-head { grid-template-columns: minmax(0, 1fr); }
  .prod-grid { grid-template-columns: minmax(0, 1fr); }
  .prod-side { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .ms-cards { grid-template-columns: repeat(2, 1fr); }
  .ms-foot { grid-column: 1; }
  .ms-photo { display: none; }
}
@media (max-width: 720px) {
  .proof { flex-wrap: wrap; gap: 18px 24px; }
  .proof li + li { border-left: 0; padding-left: 0; }
  .hero-btns { flex-wrap: wrap; gap: 14px; }
  .btn { height: 54px; font-size: 17px; padding: 0 22px; }
  .who-items { grid-template-columns: 1fr; }
  .ms-cards { grid-template-columns: minmax(0, 1fr); }
  .prod-side { grid-template-columns: minmax(0, 1fr); }
  .sm-third, .sm-half { grid-column: auto; }
  .pcard-lead .lead-top { grid-template-columns: minmax(0, 1fr); }
  .pcard-shot { width: 100%; max-width: 300px; }
  .lead-feats { grid-template-columns: 1fr; }
  .lead-feats li + li { border-left: 0; padding-left: 0; }
  .ms-foot { flex-direction: column; align-items: flex-start; }
}


/* ── 03 · the points that fill the services column ───────────────── */
.svc-points {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 30px; margin-top: 54px;
}
.svc-points .rule { display: block; width: 62px; height: 3px; background: var(--blue); }
.svc-points h3 {
  margin-top: 16px; color: var(--navy); font-size: 15px; font-weight: 800;
  letter-spacing: .045em; text-transform: uppercase;
}
.svc-points p { margin-top: 9px; color: var(--body); font-size: 16px; line-height: 1.5; }

/* ── product illustrations, always moving ────────────────────────── */
/* Each illustration keeps a slow loop so the card reads as a live system
   rather than a static icon. Everything is transform, opacity or
   stroke-dashoffset, so it stays on the compositor. */
@keyframes flow      { to   { stroke-dashoffset: -60; } }
@keyframes draw      { 0%,12% { stroke-dashoffset: 34; } 34%,100% { stroke-dashoffset: 0; } }
@keyframes runner    { 0% { offset-distance: 0%; } 100% { offset-distance: 100%; } }
@keyframes pulse     { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.82); } }
@keyframes riseBar   { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(var(--h, .82)); } }
@keyframes sweepUp   { 0% { transform: translateY(10px); opacity: 0; } 18%,72% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(-8px); opacity: 0; } }
@keyframes glide     { 0% { transform: translateX(-14px); opacity: 0; } 20%,75% { opacity: 1; } 100% { transform: translateX(16px); opacity: 0; } }

.pcard-art svg, .pcard-shot svg { overflow: visible; }
.a-flow   { stroke-dasharray: 7 8; animation: flow 2.6s linear infinite; }
.a-draw   { stroke-dasharray: 34; animation: draw 3.4s ease-in-out infinite; }
.a-pulse  { animation: pulse 2.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.a-bar    { animation: riseBar 3s ease-in-out infinite; transform-origin: bottom; transform-box: fill-box; }
.a-bar:nth-of-type(2) { animation-delay: .18s; }
.a-bar:nth-of-type(3) { animation-delay: .36s; }
.a-bar:nth-of-type(4) { animation-delay: .54s; }
.a-bar:nth-of-type(5) { animation-delay: .72s; }
.a-line   { animation: sweepUp 3.2s ease-in-out infinite; transform-box: fill-box; }
.a-line:nth-of-type(2) { animation-delay: .22s; }
.a-line:nth-of-type(3) { animation-delay: .44s; }
.a-glide  { animation: glide 3.4s ease-in-out infinite; transform-box: fill-box; }
.a-runner { animation: runner 3.6s linear infinite; }

/* ── 06 · clients ────────────────────────────────────────────────── */
.cli { background: #fff; padding-block: 78px 88px; overflow: hidden; }
.cli h2 { margin-top: 22px; }
.cli-lead { margin-top: 24px; max-width: 62ch; color: var(--body); font-size: 20px; line-height: 1.5; }
.cli-cat {
  color: var(--muted); font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 18px;
  padding-inline: clamp(24px, 5.7vw, 140px);
}
.marquee { margin-top: 46px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee + .marquee { margin-top: 42px; }
.marquee-inner { display: flex; width: max-content; animation: slide 64s linear infinite; }
.marquee:hover .marquee-inner, .marquee:focus-within .marquee-inner { animation-play-state: paused; }
#cli-row-2 .marquee-inner { animation-duration: 76s; animation-direction: reverse; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-track { display: flex; align-items: center; }
.marquee-track li { flex: none; padding-inline: clamp(18px, 1.8vw, 34px); }
.marquee-track img { width: clamp(120px, 9vw, 168px); height: auto; }

/* ── 07 · latest updates ─────────────────────────────────────────── */
.upd { background: #f8fafd; padding-block: 78px 92px; }
.upd-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 30px; }
.upd h2 { margin-top: 22px; }
.upd-lead { margin-top: 24px; max-width: 56ch; color: var(--body); font-size: 20px; line-height: 1.5; }
.upd-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.upd-card {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s, border-color .25s;
}
.upd-card:hover { border-color: #d6deee; box-shadow: 0 16px 36px rgba(10,32,74,.10); transform: translateY(-3px); }
.upd-card .shot { aspect-ratio: 16 / 10; overflow: hidden; background: var(--line-sf); }
.upd-meta .tag { border-radius: 0; }
.upd-card .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.upd-card:hover .shot img { transform: scale(1.05); }
.upd-card .txt { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.upd-meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.upd-meta .tag { background: #eef3fe; color: var(--blue); font-weight: 700; padding: 5px 10px; border-radius: 5px; }
.upd-meta time { color: var(--muted); }
.upd-card h3 { margin-top: 16px; color: var(--navy); font-size: 21px; font-weight: 700; line-height: 1.3; }
.upd-card h3 a::after { content: ""; position: absolute; inset: 0; }
.upd-card { position: relative; }
.upd-card:hover h3 { color: var(--blue); }
.upd-card p { margin-top: 12px; color: var(--body); font-size: 16px; line-height: 1.52; }

/* ── 08 · footer ─────────────────────────────────────────────────── */
.ft { background: #06122c; color: #c3cde0; padding-block: 74px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ft-top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, .8fr)) minmax(0, 1.3fr); gap: 46px; }
.ft-plate { display: inline-block; background: #fff; border-radius: 8px; padding: 12px 16px; }
.ft-plate img { width: 210px; height: auto; }
.ft-brand > p { margin-top: 24px; max-width: 40ch; font-size: 16px; line-height: 1.6; }
.ft-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.ft-contact a { color: #fff; font-size: 17px; font-weight: 600; }
.ft-contact a:hover { color: #8fb0ff; }
.ft-nav h3, .ft-offices h3 {
  color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 20px;
}
.ft-nav { display: flex; flex-direction: column; gap: 12px; font-size: 16px; }
.ft-nav a:hover { color: #8fb0ff; }
.ft-offices address { font-style: normal; font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.ft-offices b { display: block; color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.ft-bar {
  margin-top: 60px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between;
  font-size: 13.5px; color: #93a1bd;
}
.ft-bar a { margin-right: 24px; }
.ft-bar a:hover { color: #fff; }

@media (max-width: 1180px) {
  .upd-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ft-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .svc-points { grid-template-columns: minmax(0, 1fr); }
  .upd-grid { grid-template-columns: minmax(0, 1fr); }
  .ft-top { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner, .a-flow, .a-draw, .a-pulse, .a-bar, .a-line, .a-glide, .a-runner {
    animation: none !important;
  }
  .a-draw { stroke-dashoffset: 0; }
  * { transition-duration: .01ms !important; }
}
