/* Smart Annotahub theme styles. Source of truth: the .dc.html design files (Homepage = reference). */

:root {
  --sa-blue: #1173d4;
  --sa-blue-2: #1e86e8;
  --sa-blue-3: #2fb0f7;
  --sa-ink: #10161d;
  --sa-ink-2: #1a222b;
  --sa-line: #e3e7ec;
  --sa-tint: #eff2f5;
  --sa-tint-blue: #e6f2fc;
  --sa-tint-grey: #f5f7f9;
  --sa-text: #4a545f;
  --sa-muted: #6c7683;
  --sa-px: clamp(20px, 2.6vw, 64px);
  --sa-gap: clamp(24px, 2.5vw, 64px);
  --sa-grad: linear-gradient(90deg, #1173d4, #2fb0f7);
  --sa-hh: 88px;
  --sa-font-head: Archivo, Helvetica, Arial, sans-serif;
  --sa-font-body: Barlow, Helvetica, Arial, sans-serif;
  --sa-font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  interpolate-size: allow-keywords;
  /* Motion tokens: every reveal and hover uses these. */
  --sa-ease: cubic-bezier(.2, .7, .2, 1);
  --sa-rise: 22px;          /* reveal distance (banner text) */
  --sa-rise-time: .7s;
  --sa-lift: -4px;          /* card hover lift */
  --sa-lift-shadow: 0 14px 32px rgba(16, 22, 29, 0.10);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; }
html { scroll-behavior: smooth; }
body { font-family: var(--sa-font-body); color: var(--sa-ink); background: #fff; -webkit-font-smoothing: antialiased; text-wrap: pretty; }
a { color: var(--sa-blue); text-decoration: none; }
a:hover { color: #0b5fb8; }
h1, h2, h3, h4 { font-family: var(--sa-font-head); margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
img { max-width: 100%; }
summary::-webkit-details-marker { display: none; }
.sa-h { width: 100%; overflow-x: clip; }
/* Anchor jumps (e.g. #pilot) stop half a section-gap above the section, below the sticky header. */
.sa-h [id] { scroll-margin-top: calc(var(--sa-hh, 88px) + var(--wp-admin--admin-bar--height, 0px) + var(--sa-gap) / 2); }
.screen-reader-text, .sa-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.sa-skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--sa-ink); color: #fff; padding: 10px 16px; font-family: var(--sa-font-head); font-weight: 700; }
.sa-skip:focus { top: 12px; color: #fff; }

@keyframes sa-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes sa-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes sa-slide-in { from { transform: translateX(48px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes sa-faq { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Shared type ---------- */
.sa-h2 { font-weight: 700; font-size: clamp(23px, 2.24vw, 41px); }
.sa-h3 { font-weight: 700; font-size: clamp(22px, 1.57vw, 31px); }
.sa-eyebrow { font-family: var(--sa-font-mono); font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sa-blue); }
.sa-num { font-family: var(--sa-font-mono); font-size: 15px; color: var(--sa-blue); }
.sa-sec { margin-top: var(--sa-gap); width: 100%; }
.sa-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px 40px; }
.sa-head p { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.55; color: var(--sa-text); max-width: 56ch; }
.sa-bar { margin-top: var(--sa-gap); width: 100%; background: var(--sa-ink); color: #fff; font-weight: 700; font-size: clamp(23px, 2.24vw, 41px); padding: clamp(18px, 1.6vw, 30px) var(--sa-px); }
.sa-bar + .sa-cards { margin-top: 0; }

/* ---------- Buttons (one system) ---------- */
.sa-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--sa-grad); color: #fff; border: 0; cursor: pointer; font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(15px, 1vw, 18px); letter-spacing: 0.09em; text-transform: uppercase; padding: clamp(14px, 1.1vw, 20px) clamp(22px, 1.9vw, 40px); transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.sa-btn:hover, .sa-btn:focus-visible { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17, 115, 212, 0.32); filter: brightness(1.08); }
.sa-btn:active { transform: translateY(0); box-shadow: 0 4px 10px rgba(17, 115, 212, 0.25); }
.sa-btn--sm { font-size: 15px; padding: 14px 26px; }
.sa-btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; cursor: pointer; border: 1px solid var(--sa-ink); color: var(--sa-ink); font-family: var(--sa-font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 20px; white-space: nowrap; transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease; }
.sa-btn-outline:hover { background: var(--sa-ink); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(16, 22, 29, 0.18); }
.sa-btn-outline--light { border-color: #fff; color: #fff; }
.sa-btn-outline--light:hover { background: #fff; color: var(--sa-ink); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25); }
.sa-btn-outline:active { transform: translateY(0); }
.sa-h a:focus-visible, .sa-h button:focus-visible, .sa-h summary:focus-visible { outline: 2px solid var(--sa-blue-3); outline-offset: 3px; }

/* ---------- Header ---------- */
.sa-header { position: sticky; top: var(--wp-admin--admin-bar--height, 0px); z-index: 50; width: 100%; background: #fff; border-bottom: 1px solid var(--sa-line); display: flex; flex-wrap: wrap; align-items: center; column-gap: clamp(16px, 2vw, 48px); row-gap: 10px; padding: 10px clamp(16px, 2.2vw, 56px); min-height: clamp(64px, 4.6vw, 84px); }
.sa-logo { display: flex; align-items: center; flex: 0 0 auto; }
.sa-logo img { height: clamp(20px, 1.5vw, 28px); width: auto; display: block; transition: opacity .2s ease; }
.sa-logo:hover img { opacity: .8; }
.sa-nav { flex: 1 1 430px; min-width: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px clamp(12px, 1.5vw, 34px); font-family: var(--sa-font-head); font-weight: 600; font-size: clamp(14px, 0.95vw, 17px); letter-spacing: 0.08em; text-transform: uppercase; }
.sa-nav a, .sa-nav button { color: var(--sa-ink); transition: color .2s ease; }
.sa-nav button { all: unset; cursor: pointer; color: var(--sa-ink); display: flex; align-items: center; gap: 6px; font: inherit; letter-spacing: inherit; text-transform: inherit; }
.sa-nav a:hover, .sa-nav button:hover, .sa-nav button[aria-expanded="true"], .sa-nav a[aria-current="page"], .sa-nav button.is-current { color: var(--sa-blue) !important; }
.sa-nav .sa-caret { font-size: 0.7em; color: var(--sa-blue-2); }
.sa-cta { flex: 0 0 auto; margin-left: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 10px clamp(10px, 1.2vw, 22px); }
.sa-cta .sa-btn { font-size: clamp(14px, 0.90vw, 16px); padding: clamp(10px, 0.9vw, 15px) clamp(14px, 1.3vw, 26px); }
.sa-lang { display: flex; align-items: center; gap: 2px; font-family: var(--sa-font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; color: var(--sa-muted); }
.sa-lang a { color: var(--sa-muted); padding: 8px 6px; }
.sa-lang a:hover, .sa-lang a[aria-current="true"] { color: var(--sa-blue); }
.sa-lang span { color: #c3ccd6; }
.sa-burger { all: unset; cursor: pointer; display: none; margin-left: auto; width: 48px; height: 48px; align-items: center; justify-content: center; color: var(--sa-ink); font-size: 26px; line-height: 1; }
.sa-burger:hover { color: var(--sa-blue); }
.sa-mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--sa-line); box-shadow: 0 16px 32px rgba(16, 22, 29, 0.08); padding: clamp(14px, 1.1vw, 22px) clamp(16px, 2.2vw, 56px) clamp(16px, 1.3vw, 26px); }
.sa-mega[hidden] { display: none; }
.sa-mega__in { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.sa-mega__label { font-family: var(--sa-font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sa-muted); padding: 0 12px; }
.sa-mega__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 2px 12px; }
.sa-mega--ind .sa-mega__grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.sa-mega__item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: transparent; color: var(--sa-ink); transition: background-color .2s ease; }
.sa-mega__item:hover { background: #eff5fb; color: var(--sa-ink); }
.sa-mega__dot { flex: 0 0 auto; width: 6px; height: 6px; background: #9cc6ec; }
.sa-mega__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sa-mega__t { font-family: var(--sa-font-head); font-weight: 700; font-size: 16px; color: var(--sa-ink); }
.sa-mega__d { font-size: 14px; line-height: 1.35; color: var(--sa-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-mpanel { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--sa-line); box-shadow: 0 18px 40px rgba(16, 22, 29, 0.14); max-height: calc(100vh - 70px); overflow-y: auto; padding: 8px 20px 24px; }
.sa-mpanel[hidden] { display: none; }
.sa-mpanel nav { display: flex; flex-direction: column; }
.sa-mpanel__row { all: unset; cursor: pointer; display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 4px; border-bottom: 1px solid #eef1f4; font-family: var(--sa-font-head); font-weight: 700; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sa-ink); }
.sa-mpanel__row:hover { color: var(--sa-blue); }
.sa-mpanel__sign { font-size: 22px; font-weight: 400; color: var(--sa-blue-2); }
.sa-mpanel__sub { display: flex; flex-direction: column; background: var(--sa-tint-grey); }
.sa-mpanel__sub[hidden] { display: none; }
.sa-mpanel__sub a { display: flex; align-items: center; min-height: 48px; padding: 0 4px 0 18px; font-size: 17px; color: var(--sa-ink); border-bottom: 1px solid #f3f5f7; }
.sa-mpanel .sa-btn { margin-top: 20px; display: flex; min-height: 52px; font-size: 16px; }
.sa-mpanel .sa-lang { margin-top: 16px; justify-content: center; gap: 6px; font-size: 16px; }
.sa-mpanel .sa-lang a { min-height: 48px; padding: 0 14px; display: flex; align-items: center; }
@media (max-width: 1100px) {
  .sa-header .sa-nav, .sa-header .sa-cta { display: none !important; }
  .sa-header .sa-burger { display: flex !important; }
}
@media (min-width: 1101px) { .sa-mpanel { display: none !important; } }

/* ---------- Hero banner ---------- */
.sa-hero { position: relative; width: 100%; background-color: var(--sa-ink); background-position: center; background-size: cover; background-repeat: no-repeat; display: flex; align-items: center; overflow: hidden; padding: clamp(40px, 4.4vw, 104px) var(--sa-px); min-height: 900px; }
.sa-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 1; transition: opacity 1.2s ease-in-out; }
.sa-hero__video + .sa-hero__video { opacity: 0; }
.sa-hero__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(9, 14, 20, 0.9) 0%, rgba(9, 14, 20, 0.78) 38%, rgba(9, 14, 20, 0.35) 70%, rgba(9, 14, 20, 0.15) 100%); }
.sa-hero__in { position: relative; z-index: 2; display: flex; flex-direction: column; gap: clamp(16px, 1.4vw, 28px); max-width: 900px; }
.sa-crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--sa-font-mono); font-size: clamp(14px, 0.95vw, 17px); letter-spacing: 0.06em; text-transform: uppercase; color: #c3ccd6; }
.sa-crumbs a { color: #c3ccd6; }
.sa-crumbs a:hover { color: #fff; }
.sa-crumbs [aria-current] { color: #5cc0ff; }
.sa-hero h1 { font-weight: 800; font-size: clamp(38px, 4.2vw, 84px); line-height: 1; color: #fff; }
.sa-hero__lead { font-size: clamp(18px, 1.18vw, 23px); line-height: 1.55; color: #e4eaf0; max-width: 60ch; }
.sa-hero--home h1 { line-height: 0.98; }
.sa-hero--home .sa-hero__lead { font-size: clamp(19px, 1.34vw, 26px); line-height: 1.5; }
.sa-hero__eyebrow { color: #5cc0ff; }
.sa-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }

/* ---------- Logo strip ---------- */
.sa-logos { width: 100%; background: #fff; border-bottom: 1px solid var(--sa-line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 40px; padding: clamp(20px, 1.8vw, 34px) var(--sa-px); }
.sa-logos h2 { font-weight: 700; font-size: clamp(19px, 1.51vw, 30px); }
.sa-logos__view { flex: 1 1 560px; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sa-logos--split { gap: 0; padding: 0; justify-content: flex-start; }
.sa-logos--split .sa-logos__title { flex: 1 1 240px; padding: clamp(20px, 1.8vw, 34px) var(--sa-px); border-right: 1px solid var(--sa-line); }
.sa-logos--split .sa-logos__view { flex: 3 1 560px; padding: clamp(18px, 1.6vw, 30px) 0; }
/* Marquees: the running animation already gets its own GPU layer; off-screen ones are paused by main.js. */
.sa-marq-off { animation-play-state: paused !important; }
/* Illustrations use multiply to drop their white backgrounds. Blending stays inside their own opaque panel,
   so the panel rises in one piece (no white box during the reveal, no repaint of the page behind). */
.sa-cards__media, .sa-story__media, .sa-team-home__intro, .sa-leader, .sa-crew__photo { isolation: isolate; }
.sa-logos__track { display: flex; width: max-content; align-items: center; animation: sa-marquee 38s linear infinite; }
.sa-logos__track span { flex: 0 0 auto; padding: 0 clamp(28px, 2.6vw, 64px); font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(18px, 1.45vw, 28px); letter-spacing: -0.01em; color: #5b6672; white-space: nowrap; }

/* ---------- Card icons ---------- */
.sa-ico { width: clamp(30px, 2.4vw, 42px); height: clamp(30px, 2.4vw, 42px); border: 2px solid var(--sa-blue-2); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.sa-ico > span { display: block; background: var(--sa-blue-2); }
.sa-ico--square > span { width: 38%; height: 38%; }
.sa-ico--outline > span { width: 38%; height: 38%; background: transparent; border: 2px solid var(--sa-blue-2); }
.sa-ico--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; padding: 5px; align-items: stretch; justify-content: stretch; }
.sa-ico--grid > span:nth-child(2), .sa-ico--grid > span:nth-child(3) { background: #bfe0fb; }
.sa-ico--shield { border-radius: 50% 50% 45% 45%; }
.sa-ico--shield > span { width: 34%; height: 34%; border-radius: 2px; }
.sa-ico--circle { border-radius: 50%; }
.sa-ico--circle > span { width: 36%; height: 36%; border-radius: 50%; }
.sa-ico--diamond { transform: rotate(45deg); }
.sa-ico--diamond > span { width: 40%; height: 40%; }
.sa-ico--bars2, .sa-ico--bars3 { align-items: flex-end; gap: 3px; padding: 5px; }
.sa-ico--bars2 > span, .sa-ico--bars3 > span { flex: 1; }
.sa-ico--bars2 > span:nth-child(1) { height: 50%; background: #bfe0fb; }
.sa-ico--bars2 > span:nth-child(2) { height: 100%; }
.sa-ico--bars3 > span:nth-child(1) { height: 40%; background: #bfe0fb; }
.sa-ico--bars3 > span:nth-child(2) { height: 70%; }
.sa-ico--bars3 > span:nth-child(3) { height: 100%; }

/* ---------- Card grid ---------- */
.sa-cards { width: 100%; }
.sa-cards article { background: #fff; display: flex; flex-direction: column; min-width: 0; }
.sa-cards p, .sa-cards__body { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.55; color: var(--sa-text); }
.sa-cards__body p + p { margin-top: 10px; }
.sa-cards__link { margin-top: auto; padding-top: 6px; font-family: var(--sa-font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.09em; text-transform: uppercase; }
/* numbered: "Types of ... We Offer" */
.sa-cards--numbered { display: flex; flex-wrap: wrap; gap: 1px; background: var(--sa-line); }
.sa-cards--numbered article { flex: 1 1 max(280px, calc(33.33% - 1px)); padding: clamp(24px, 2.2vw, 48px); gap: 14px; }
.sa-cards--numbered.sa-cols-2 article { flex-basis: max(280px, calc(50% - 1px)); }
/* icon: "Why AI Teams Choose" */
.sa-cards--icon { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); background: #e9edf1; gap: 1px; }
.sa-cards--icon article { padding: clamp(20px, 1.9vw, 42px); gap: 12px; }
.sa-cards--icon p, .sa-cards--icon .sa-cards__body { font-size: clamp(18px, 1.18vw, 23px); }
/* icon + side image: homepage "How We Work" */
.sa-cards--image { display: flex; flex-wrap: wrap; background: #fff; }
.sa-cards__media { flex: 1 1 340px; min-width: 0; min-height: clamp(320px, 26vw, 560px); border-right: 1px solid var(--sa-line); display: flex; align-items: center; justify-content: center; padding: clamp(12px, 1.2vw, 28px); background: #fff; }
.sa-cards__crop { position: relative; width: 100%; aspect-ratio: 940 / 810; overflow: hidden; }
.sa-cards__crop img { position: absolute; left: -34.26%; top: -24.2%; width: 170.21%; height: auto; max-width: none; display: block; }
.sa-cards__grid { flex: 2 1 620px; display: flex; flex-wrap: wrap; gap: 1px; background: var(--sa-line); align-content: stretch; }
.sa-cards__grid article { flex: 1 1 max(260px, calc(33.33% - 1px)); padding: clamp(18px, 1.5vw, 32px) clamp(20px, 1.8vw, 40px); gap: 10px; }
.sa-cards--image p, .sa-cards--image .sa-cards__body { font-size: clamp(18px, 1.18vw, 23px); }
/* top-border cards inside a tinted panel */
.sa-panel { padding: clamp(36px, 3.4vw, 84px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(24px, 2.2vw, 48px); }
.sa-bg-grey { background: var(--sa-tint-grey); }
.sa-bg-blue { background: var(--sa-tint-blue); }
.sa-bg-white { background: #fff; }
.sa-bg-dark { background: var(--sa-ink); color: #fff; }
.sa-grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(280px, calc(33.33% - 20px))), 1fr)); gap: clamp(14px, 1.2vw, 26px); }
.sa-grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(300px, calc(50% - 14px))), 1fr)); gap: clamp(14px, 1.2vw, 26px); }
.sa-grid4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(calc(25% - 20px), min(calc(50% - 14px), calc((1200px - 100%) * 999)), 260px)), 1fr)); gap: clamp(14px, 1.4vw, 28px); }
.sa-cards--bordered article { border-top: 3px solid var(--sa-blue-2); padding: clamp(22px, 1.9vw, 40px); gap: 12px; }
.sa-cards--bordered p, .sa-cards--bordered .sa-cards__body { font-size: clamp(17px, 1.10vw, 21px); color: #55606b; }
/* flat: careers "Why Work With Us" */
.sa-cards--flat { display: flex; flex-direction: column; }
.sa-cards--flat > h2 { width: 100%; background: var(--sa-ink); color: #fff; font-weight: 700; font-size: clamp(23px, 2.24vw, 41px); padding: clamp(18px, 1.6vw, 30px) var(--sa-px); }
.sa-cards--flat .sa-cards__grid4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(calc(25% - 1px), min(calc(50% - 1px), calc((1200px - 100%) * 999)), 260px)), 1fr)); gap: 1px; background: var(--sa-line); }
.sa-cards--flat article { padding: clamp(24px, 2vw, 44px); gap: 12px; }
.sa-cards--flat p, .sa-cards--flat .sa-cards__body { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.6; }

/* ---------- Text + image (About story) ---------- */
.sa-story { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); align-items: center; gap: clamp(28px, 3vw, 72px); padding: clamp(36px, 3.4vw, 84px) var(--sa-px); }
.sa-story__text { display: flex; flex-direction: column; gap: clamp(16px, 1.4vw, 26px); max-width: 760px; }
.sa-story__text p { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.6; color: var(--sa-text); }
.sa-story__media { min-width: 0; background: var(--sa-tint-blue); padding: clamp(10px, 1vw, 24px); display: flex; align-items: center; justify-content: center; }
.sa-story__media img { width: 100%; max-width: none; height: auto; display: block; mix-blend-mode: multiply; }
.sa-story--reverse .sa-story__media { order: -1; }

/* ---------- Mission / vision / values ---------- */
.sa-mvv { background: var(--sa-ink); color: #fff; padding: clamp(44px, 4vw, 104px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(40px, 4vw, 88px); }
.sa-mvv__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(calc(33.33% - 20px), calc((760px - 100%) * 999))), 1fr)); gap: clamp(14px, 1.4vw, 28px); }
.sa-mvv__item { min-width: 0; background: var(--sa-ink-2); border: 1px solid #26303a; padding: clamp(28px, 2.4vw, 52px) clamp(22px, 2vw, 40px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.sa-mvv__item h3 { font-weight: 800; font-size: clamp(23px, 2.24vw, 41px); color: #5cc0ff; }
.sa-mvv__item strong { font-family: var(--sa-font-head); font-weight: 600; font-size: clamp(17px, 1.10vw, 21px); color: var(--sa-blue-3); }
.sa-mvv__item p { margin-top: 6px; font-size: clamp(17px, 1.10vw, 21px); line-height: 1.6; color: #c3ccd6; }
.sa-mvv__item--hl { background: var(--sa-blue); border-color: var(--sa-blue); }
.sa-mvv__item--hl h3 { color: #fff; }
.sa-mvv__item--hl strong { color: #d6ebfd; }
.sa-mvv__item--hl p { color: #eef6fe; }
.sa-values { display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 2vw, 40px); }
.sa-values > h2 { color: var(--sa-blue-3); text-align: center; }
.sa-values .sa-grid4 { width: 100%; grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .sa-values .sa-grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sa-values .sa-grid4 { grid-template-columns: 1fr; } }
.sa-values article { min-width: 0; background: var(--sa-ink); border: 1px solid #3a444f; padding: clamp(24px, 2vw, 44px) clamp(20px, 1.8vw, 36px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.sa-values h3 { font-weight: 800; font-size: clamp(22px, 1.57vw, 31px); color: #fff; }
.sa-values p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.6; color: #aab4bf; }
.sa-vico { position: relative; width: 40px; height: 40px; display: block; }
.sa-vico i { position: absolute; display: block; }
.sa-vico--quality i:nth-child(1) { inset: 0; border: 3px solid var(--sa-blue-3); border-radius: 50%; }
.sa-vico--quality i:nth-child(2) { left: 14px; top: 8px; width: 10px; height: 18px; border-right: 4px solid var(--sa-blue-3); border-bottom: 4px solid var(--sa-blue-3); transform: rotate(45deg); }
.sa-vico--innovation i:nth-child(1) { left: 8px; top: 2px; width: 24px; height: 24px; border: 3px solid var(--sa-blue-3); border-radius: 50%; }
.sa-vico--innovation i:nth-child(2) { left: 14px; top: 30px; width: 12px; height: 3px; background: var(--sa-blue-3); }
.sa-vico--innovation i:nth-child(3) { left: 15px; top: 36px; width: 10px; height: 3px; background: var(--sa-blue-3); }
.sa-vico--security i:nth-child(1) { left: 8px; top: 6px; width: 24px; height: 30px; border: 3px solid var(--sa-blue-3); border-radius: 12px 12px 4px 4px; }
.sa-vico--security i:nth-child(2) { left: 16px; top: 17px; width: 8px; height: 9px; background: var(--sa-blue-3); border-radius: 2px; }
.sa-vico--sustainability i:nth-child(1) { left: 18px; top: 16px; width: 4px; height: 22px; background: var(--sa-blue-3); }
.sa-vico--sustainability i:nth-child(2) { left: 2px; top: 6px; width: 18px; height: 12px; background: var(--sa-blue-3); border-radius: 0 12px 0 12px; }
.sa-vico--sustainability i:nth-child(3) { left: 21px; top: 2px; width: 16px; height: 11px; background: var(--sa-blue-2); border-radius: 12px 0 12px 0; }

/* ---------- Steps ---------- */
.sa-steps { background: var(--sa-tint-blue); padding: clamp(40px, 3.6vw, 88px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(24px, 2.2vw, 48px); }
.sa-steps .sa-head p { color: #3c4d5c; max-width: 52ch; }
.sa-steps ol { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(280px, calc(33.33% - 20px))), 1fr)); gap: clamp(14px, 1.2vw, 26px); }
.sa-steps li { min-width: 0; background: #fff; border-top: 6px solid #cfe5f8; padding: clamp(22px, 1.9vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.sa-steps li:nth-child(2) { border-top-color: #a9d0f3; }
.sa-steps li:nth-child(3) { border-top-color: #7fb8ec; }
.sa-steps li:nth-child(4) { border-top-color: #4f9de4; }
.sa-steps li:nth-child(5) { border-top-color: #2584dc; }
.sa-steps__label { font-family: var(--sa-font-mono); font-weight: 500; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sa-blue); }
.sa-steps h3 { font-weight: 800; font-size: clamp(22px, 1.57vw, 31px); color: var(--sa-ink); }
.sa-steps p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.55; color: var(--sa-text); }
.sa-steps li:last-child { background: var(--sa-blue); border-top-color: var(--sa-blue); }
.sa-steps li:last-child .sa-steps__label { color: #d6ebfd; }
.sa-steps li:last-child h3 { color: #fff; }
.sa-steps li:last-child p { color: var(--sa-tint-blue); }
.sa-steps--simple { background: transparent; padding: 0 var(--sa-px); gap: clamp(22px, 2vw, 44px); }
.sa-steps--simple ol { grid-template-columns: repeat(auto-fit, minmax(min(100%, max(calc(25% - 24px), min(calc(50% - 16px), calc((1100px - 100%) * 999)), 240px)), 1fr)); gap: clamp(24px, 2vw, 40px) clamp(16px, 1.4vw, 28px); }
.sa-steps--simple li, .sa-steps--simple li:nth-child(n), .sa-steps--simple li:last-child { background: #fff; border-top: 3px solid var(--sa-blue-2); padding: clamp(18px, 1.4vw, 26px) clamp(18px, 1.5vw, 28px) clamp(22px, 1.8vw, 32px); gap: clamp(12px, 1vw, 18px); }
.sa-steps--simple li:last-child .sa-steps__label { color: var(--sa-blue); }
.sa-steps--simple li:last-child h3 { color: var(--sa-ink); }
.sa-steps--simple li:last-child p { color: var(--sa-text); }
.sa-steps--simple .sa-steps__label { letter-spacing: 0.04em; text-transform: none; }

/* ---------- Strips (marquees and link grids) ---------- */
.sa-strip { display: flex; flex-direction: column; gap: clamp(24px, 2.2vw, 48px); padding: clamp(36px, 3.4vw, 84px) var(--sa-px); background: var(--sa-tint-grey); }
.sa-strip:has(+ .sa-tools) { padding-bottom: 0; }
.sa-strip__view { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.sa-strip__track { display: flex; align-items: stretch; gap: clamp(14px, 1.2vw, 26px); width: max-content; padding-right: clamp(14px, 1.2vw, 26px); animation: sa-marquee 50s linear infinite; }
.sa-strip__card { flex: 0 0 auto; width: clamp(280px, 21vw, 400px); background: #fff; border-top: 3px solid var(--sa-blue-2); padding: clamp(22px, 1.8vw, 38px); display: flex; flex-direction: column; gap: 12px; white-space: normal; color: var(--sa-ink); }
a.sa-strip__card:hover { background: var(--sa-tint-blue); color: var(--sa-ink); }
.sa-strip__card h3 { font-weight: 700; font-size: clamp(20px, 1.4vw, 27px); }
.sa-strip__card p { font-size: clamp(17px, 1.05vw, 20px); line-height: 1.55; color: #55606b; }
.sa-strip--right .sa-strip__track { animation-direction: reverse; }
.sa-linkcard { min-width: 0; background: #fff; border-top: 3px solid var(--sa-blue-2); padding: clamp(22px, 1.8vw, 38px); display: flex; flex-direction: column; gap: 10px; color: var(--sa-ink); }
.sa-linkcard:hover { background: var(--sa-tint-blue); color: var(--sa-ink); }
.sa-linkcard__t { font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(22px, 1.57vw, 31px); display: flex; justify-content: space-between; gap: 12px; }
.sa-linkcard__t span { color: var(--sa-blue); }
.sa-linkcard__d { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.5; color: #55606b; }
.sa-links { padding: 0 var(--sa-px); display: flex; flex-direction: column; gap: clamp(16px, 1.4vw, 28px); background: transparent; }
.sa-links__view { width: 100%; overflow: hidden; border-top: 1px solid var(--sa-line); border-bottom: 1px solid var(--sa-line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.sa-links__track { display: flex; width: max-content; animation: sa-marquee 42s linear infinite reverse; }
.sa-links--left .sa-links__track { animation-direction: normal; }
.sa-links__track a { flex: 0 0 auto; display: flex; align-items: center; gap: 18px; padding: clamp(20px, 1.6vw, 32px) clamp(28px, 2.4vw, 52px); border-right: 1px solid var(--sa-line); background: #fff; color: var(--sa-ink); font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(19px, 1.35vw, 26px); white-space: nowrap; transition: background .2s, color .2s; }
.sa-links__track a:hover { background: var(--sa-tint-blue); color: var(--sa-blue); }
.sa-links__track a span { color: var(--sa-blue); }

/* ---------- Tools row ---------- */
.sa-tools { background: var(--sa-tint-grey); padding: clamp(24px, 2.2vw, 48px) var(--sa-px) clamp(36px, 3.4vw, 84px); }
.sa-strip + .sa-tools { margin-top: 0; }
.sa-tools__in { background: var(--sa-ink); color: #fff; padding: clamp(20px, 1.8vw, 36px) clamp(22px, 2vw, 44px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 40px; }
.sa-tools__text { flex: 1 1 360px; display: flex; flex-direction: column; gap: 6px; }
.sa-tools__text h3 { font-weight: 700; font-size: clamp(22px, 1.57vw, 31px); }
.sa-tools__text p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.5; color: #aab4bf; }
.sa-tools__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sa-tools__list li { font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.04em; color: #dde3e9; border: 1px solid #3a444f; padding: 8px 14px; }

/* ---------- Pilot form ---------- */
.sa-pilot { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.sa-pilot__text { min-width: 0; background: var(--sa-ink); color: #fff; padding: clamp(32px, 3vw, 72px) var(--sa-px); display: flex; flex-direction: column; justify-content: center; gap: clamp(14px, 1.2vw, 24px); }
.sa-pilot__text p { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.55; color: #aab4bf; max-width: 52ch; }
.sa-pilot__form { min-width: 0; background: var(--sa-tint); padding: clamp(28px, 2.6vw, 64px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(12px, 1vw, 20px); }
.sa-pilot--left .sa-pilot__form { order: -1; padding: clamp(24px, 2.4vw, 56px) var(--sa-px); }
.sa-pilot--left .sa-pilot__form > h2 { text-align: center; }
.sa-pilot--left .sa-pilot__form > p { text-align: center; font-size: clamp(18px, 1.14vw, 22px); color: #5a646f; }
.sa-pilot__side { min-width: 0; background: var(--sa-ink); padding: clamp(24px, 2.4vw, 56px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(20px, 2vw, 44px); }
.sa-quote { margin: 0; background: var(--sa-ink-2); padding: clamp(18px, 1.6vw, 36px); display: flex; flex-direction: column; gap: 16px; max-width: 100%; }
.sa-quote__mark { font-family: var(--sa-font-head); font-size: 28px; color: var(--sa-blue-3); line-height: 0.6; }
.sa-quote__text { color: #dde3e9; font-size: clamp(15px, 1.06vw, 19px); line-height: 1.6; }
.sa-quote__text p + p { margin-top: 1.2em; }
.sa-quote__who strong { font-family: var(--sa-font-head); font-size: 18px; color: #fff; }
.sa-quote__who span { font-size: 18px; color: #8e99a5; }
/* Contact Form 7 inside the pilot and apply panels */
.sa-form .wpcf7 { width: 100%; }
.sa-form .wpcf7-form { display: flex; flex-direction: column; gap: clamp(12px, 1vw, 20px); margin: 0; }
.sa-form .wpcf7-form > p { margin: 0; }
.sa-form .wpcf7-form[hidden], .sa-apply .wpcf7-form[hidden] { display: none; } /* success panel replaces the form */
.sa-form label { display: flex; flex-direction: column; gap: 8px; }
.sa-pilot .sa-form label { font-size: 0; gap: 0; }
.sa-pilot .sa-form label .wpcf7-form-control-wrap { font-size: 1rem; }
.sa-form .wpcf7-form-control-wrap { display: block; }
.sa-form input[type="text"], .sa-form input[type="email"], .sa-form input[type="tel"], .sa-form input[type="url"], .sa-form select, .sa-form textarea { width: 100%; box-sizing: border-box; font-family: var(--sa-font-body); font-size: clamp(17px, 1.12vw, 21px); color: var(--sa-ink); padding: 14px; border: 1px solid #d5dce3; background: #fff; border-radius: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.sa-form textarea { resize: vertical; height: auto; }
.sa-form input::placeholder, .sa-form textarea::placeholder { color: #767f89; }
.sa-form input:hover, .sa-form textarea:hover, .sa-form select:hover { border-color: #9cc6ec; }
.sa-form input:focus, .sa-form textarea:focus, .sa-form select:focus { outline: none; border-color: var(--sa-blue-2); box-shadow: 0 0 0 3px rgba(30, 134, 232, 0.18); }
.sa-form input[type="submit"], .sa-form button[type="submit"] { -webkit-appearance: none; appearance: none; width: 100%; cursor: pointer; border: 0; border-radius: 0; text-align: center; background: var(--sa-grad); color: #fff; font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(15px, 1.01vw, 18px); letter-spacing: 0.1em; text-transform: uppercase; padding: 16px; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.sa-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17, 115, 212, 0.32); filter: brightness(1.08); }
.sa-form input[type="submit"]:disabled { opacity: .6; cursor: progress; }
.sa-form .wpcf7-spinner { display: none; }
.sa-form .wpcf7-not-valid-tip { font-size: 15px; font-weight: 500; color: #c0392b; margin-top: 6px; font-family: var(--sa-font-body); letter-spacing: 0; }
.sa-form .wpcf7-not-valid { border-color: #c0392b !important; }
.sa-form .wpcf7-response-output { margin: 0 !important; padding: 12px 16px !important; font-size: 16px; line-height: 1.5; border-width: 1px !important; background: #fff; }
.sa-form .wpcf7-response-output:empty { display: none; }
.sa-form form.sent .wpcf7-response-output { border-color: var(--sa-blue-2) !important; }
.sa-form .cf-turnstile, .sa-form .sct-wrapper { margin: 0; }
.sa-form-done { background: #fff; padding: clamp(24px, 2.2vw, 48px); display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.sa-form-done[hidden] { display: none; }
.sa-form-done p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.6; color: var(--sa-text); }
.sa-pilot .sa-form-done { background: transparent; padding: 0; }

/* Careers "Apply Now" */
.sa-apply { background: var(--sa-tint-blue); padding: clamp(36px, 3.4vw, 84px) var(--sa-px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(28px, 3vw, 72px); }
.sa-apply__text { display: flex; flex-direction: column; gap: 16px; }
.sa-apply__text p { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.6; color: var(--sa-text); max-width: 48ch; }
.sa-apply .sa-form { min-width: 0; }
.sa-apply .wpcf7-form { background: #fff; padding: clamp(24px, 2.2vw, 48px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 18px 20px; }
.sa-apply .wpcf7-form > * { min-width: 0; }
.sa-apply .wpcf7-form > .sa-full, .sa-apply .wpcf7-form > .wpcf7-response-output, .sa-apply .wpcf7-form > .cf-turnstile, .sa-apply .wpcf7-form > .sct-wrapper, .sa-apply .wpcf7-form > input[type="submit"], .sa-apply .wpcf7-form > .hidden-fields-container { grid-column: 1 / -1; }
.sa-apply .wpcf7-form > input[type="submit"] { justify-self: start; width: auto; letter-spacing: 0.09em; padding: clamp(14px, 1.1vw, 20px) clamp(22px, 1.9vw, 40px); }
.sa-apply label { font-family: var(--sa-font-head); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; color: var(--sa-ink); }
.sa-apply input[type="text"], .sa-apply input[type="email"], .sa-apply input[type="tel"], .sa-apply input[type="url"], .sa-apply select, .sa-apply textarea { padding: 14px 16px; }
.sa-file { cursor: pointer; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; border: 1.5px dashed #b9c3cd; background: #fafbfc; padding: 18px 20px; position: relative; transition: border-color .2s ease, background-color .2s ease; }
.sa-file:hover, .sa-file.is-set { border-color: var(--sa-blue-2); background: #f5faff; }
.sa-file input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.sa-file__btn { flex: 0 0 auto; background: var(--sa-ink); color: #fff; padding: 10px 18px; font-family: var(--sa-font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.sa-file__name { min-width: 0; flex: 1 1 200px; font-family: var(--sa-font-body); font-weight: 500; font-size: 17px; letter-spacing: 0; color: var(--sa-muted); overflow-wrap: anywhere; }
.sa-file.is-set .sa-file__name { color: var(--sa-ink); }
.sa-hint { font-weight: 400; color: var(--sa-muted); }
/* grouped role dropdown */
.sa-role { position: relative; }
.sa-role__btn { cursor: pointer; width: 100%; box-sizing: border-box; border: 1px solid #d5dce3; background: #fff; padding: 14px 16px; font-family: var(--sa-font-body); font-size: 18px; letter-spacing: 0; color: #8a949f; display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; transition: border-color .2s ease; }
.sa-role__btn.is-set { color: var(--sa-ink); }
.sa-role__btn[aria-expanded="true"] { border-color: var(--sa-blue-2); }
.sa-role__btn > span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sa-role__chev { flex: 0 0 auto; color: var(--sa-blue); font-size: 13px; transition: transform .2s; }
.sa-role__btn[aria-expanded="true"] .sa-role__chev { transform: rotate(180deg); }
.sa-role__list { position: absolute; left: 0; right: 0; top: 100%; margin-top: 6px; z-index: 21; background: #fff; border: 1px solid #d5dce3; box-shadow: 0 18px 40px rgba(16, 22, 29, 0.14); max-height: 360px; overflow-y: auto; padding: 8px 0; }
.sa-role__list[hidden] { display: none; }
.sa-role__group { padding: 12px 18px 6px; font-family: var(--sa-font-mono); font-weight: 500; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sa-blue); }
.sa-role__opt { cursor: pointer; border: none; width: 100%; background: #fff; text-align: left; padding: 10px 18px 10px 26px; display: flex; justify-content: space-between; gap: 12px; font-family: var(--sa-font-body); font-weight: 500; font-size: 17px; letter-spacing: 0; color: var(--sa-ink); }
.sa-role__opt:hover, .sa-role__opt:focus-visible, .sa-role__opt[aria-selected="true"] { background: var(--sa-tint-blue); }
.sa-role__opt [data-mark] { color: var(--sa-blue); }
.sa-role.is-enhanced select { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }

/* ---------- Reviews ---------- */
.sa-reviews { background: var(--sa-tint-blue); padding: clamp(40px, 3.4vw, 80px) var(--sa-px) 0; text-align: center; }
.sa-reviews__eyebrow { font-family: var(--sa-font-mono); font-size: clamp(14px, 0.90vw, 16px); letter-spacing: 0.16em; text-transform: uppercase; color: #4a6b86; }
.sa-reviews h2 { margin-top: 10px; }
.sa-reviews__list { display: flex; flex-wrap: wrap; gap: 1px; background: #d3e6f4; margin-top: clamp(20px, 1.8vw, 38px); text-align: left; }
.sa-reviews article { flex: 1 1 300px; background: #fff; padding: clamp(18px, 1.5vw, 32px); display: flex; flex-direction: column; gap: 12px; }
.sa-reviews__stars { color: var(--sa-blue-2); letter-spacing: 3px; font-size: 18px; }
.sa-reviews h3 { font-weight: 700; font-size: clamp(18px, 1.21vw, 23px); line-height: 1.35; }
.sa-reviews__body { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.6; color: #55606b; }
.sa-reviews__who { margin-top: auto; }
.sa-reviews__who strong { font-family: var(--sa-font-head); font-size: 18px; }
.sa-reviews__who span { font-size: 18px; color: #7c8794; }
.sa-reviews__end { height: clamp(16px, 1.4vw, 28px); }

/* ---------- FAQ ---------- */
.sa-faq { padding: 0 var(--sa-px); display: flex; justify-content: center; }
.sa-faq--tinted { background: var(--sa-tint); padding: clamp(48px, 4vw, 104px) var(--sa-px); }
.sa-faq__in { width: 100%; max-width: 1100px; display: flex; flex-direction: column; gap: clamp(14px, 1.2vw, 26px); }
.sa-faq details { border-bottom: 1px solid #d5dce3; padding: clamp(14px, 1.1vw, 22px) 0; }
.sa-faq--tinted details { padding: clamp(12px, 1vw, 20px) 0; }
.sa-faq--tinted details:last-child { border-bottom: 0; }
.sa-faq summary, .sa-about-co summary { list-style: none; cursor: pointer; display: block; position: relative; padding-right: 40px; font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(19px, 1.34vw, 26px); transition: color .2s ease; }
.sa-faq details:hover summary, .sa-about-co details:hover summary { color: var(--sa-blue); }
.sa-plus { position: absolute; right: 0; top: 0; color: var(--sa-blue); font-size: 26px; line-height: 1.2; transition: transform .18s; }
.sa-faq--tinted .sa-plus { font-size: 22px; }
details[open] .sa-plus { transform: rotate(45deg); }
.sa-faq__a { margin-top: 12px; font-size: clamp(18px, 1.14vw, 22px); line-height: 1.6; color: var(--sa-text); max-width: 85ch; }
.sa-faq--tinted .sa-faq__a { font-size: clamp(18px, 1.18vw, 23px); }
.sa-faq__a p + p { margin-top: 12px; }
details[open] > summary ~ * { animation: sa-faq .45s cubic-bezier(.2, .7, .2, 1); }
details::details-content { height: 0; overflow: clip; transition: height .4s cubic-bezier(.2, .7, .2, 1), content-visibility .4s allow-discrete; }
details[open]::details-content { height: auto; }

/* ---------- Blog strip + cards ---------- */
.sa-blog { background: var(--sa-tint-grey); padding: clamp(40px, 3.4vw, 80px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(16px, 1.4vw, 30px); }
.sa-blog__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.sa-blog__view { width: calc(100% + 2 * var(--sa-px)); margin: 0 calc(-1 * var(--sa-px)); overflow: hidden; padding: 10px 0 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.sa-blog__track { display: flex; align-items: stretch; gap: clamp(14px, 1.2vw, 26px); width: max-content; padding-right: clamp(14px, 1.2vw, 26px); animation: sa-marquee 70s linear infinite reverse; }
.sa-blog--more .sa-blog__track { animation-duration: 60s; }
.sa-bcard { flex: 0 0 auto; width: clamp(290px, 22vw, 420px); display: flex; flex-direction: column; background: #fff; color: var(--sa-ink); overflow: hidden; white-space: normal; transition: translate .3s ease, box-shadow .3s ease; }
.sa-bcard:hover { color: var(--sa-ink); translate: 0 -6px; box-shadow: 0 16px 32px rgba(16, 22, 29, 0.12); }
.sa-bcard__img { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--sa-tint); }
.sa-bcard__img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.sa-bcard:hover .sa-bcard__img img { transform: scale(1.06); }
.sa-bcard__body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 10px; padding: clamp(16px, 1.3vw, 26px); }
.sa-bcard__meta { display: flex; gap: 12px; align-items: center; font-family: var(--sa-font-mono); font-size: 14px; color: var(--sa-muted); }
.sa-bcard__meta span:first-child { color: var(--sa-blue); }
.sa-bcard__title { flex: 1 1 auto; font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(18px, 1.23vw, 23px); line-height: 1.25; text-wrap: pretty; }
.sa-bcard__more { display: flex; align-items: center; gap: 8px; font-family: var(--sa-font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--sa-blue); }
.sa-bcard__arrow { display: inline-block; transition: transform .25s ease; }
.sa-bcard:hover .sa-bcard__arrow { transform: translateX(6px); }

/* ---------- Blog listing ---------- */
.sa-posts { padding: clamp(36px, 3.4vw, 84px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(24px, 2.2vw, 44px); }
.sa-posts__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 40px; }
.sa-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sa-chip { all: unset; cursor: pointer; padding: 10px 18px; border: 1px solid #d5dce3; background: #fff; color: var(--sa-ink); font-family: var(--sa-font-head); font-weight: 600; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; transition: border-color .2s, transform .2s, background-color .2s, color .2s; }
.sa-chip:hover { border-color: var(--sa-blue-2); transform: translateY(-1px); }
.sa-chip[aria-selected="true"], .sa-chip.is-on { background: var(--sa-ink); color: #fff; border-color: var(--sa-ink); }
.sa-feat { background: #fff; border: 1px solid var(--sa-line); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); color: var(--sa-ink); transition: border-color .2s ease; }
.sa-feat:hover { border-color: var(--sa-blue-2); color: var(--sa-ink); }
.sa-feat[hidden] { display: none; }
.sa-feat__img { min-height: clamp(240px, 22vw, 420px); background: var(--sa-tint-grey); position: relative; overflow: hidden; }
.sa-feat__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-feat__body { padding: clamp(24px, 2.4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.sa-feat__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.sa-feat__meta span { padding: 4px 0; color: var(--sa-muted); }
.sa-feat__meta .sa-feat__tag { background: var(--sa-blue); color: #fff; padding: 4px 10px; }
.sa-feat__meta .sa-feat__cat { color: var(--sa-blue); }
.sa-feat__title { font-family: var(--sa-font-head); font-weight: 800; font-size: clamp(23px, 2.24vw, 41px); line-height: 1.15; }
.sa-feat__ex { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.55; color: #55606b; }
.sa-read { font-family: var(--sa-font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--sa-blue); }
.sa-pgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, max(300px, calc(33.33% - 20px))), 1fr)); gap: clamp(14px, 1.2vw, 26px); }
.sa-pcard { min-width: 0; background: #fff; border: 1px solid var(--sa-line); display: flex; flex-direction: column; color: var(--sa-ink); }
.sa-pcard[hidden] { display: none; }
.sa-pcard:hover { border-color: var(--sa-blue-2); color: var(--sa-ink); }
.sa-pcard__img { aspect-ratio: 16 / 9; background: var(--sa-tint-grey); border-bottom: 1px solid var(--sa-line); overflow: hidden; display: block; }
.sa-pcard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-pcard__body { padding: clamp(18px, 1.5vw, 30px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sa-pcard__cat { font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sa-blue); }
.sa-pcard__title { font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(19px, 1.34vw, 26px); line-height: 1.25; }
.sa-pcard__ex { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.55; color: #55606b; }
.sa-pcard .sa-read { margin-top: auto; padding-top: 6px; font-size: 14px; }

/* ---------- Single article ---------- */
.sa-hero__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-family: var(--sa-font-mono); font-size: 15px; color: #c3ccd6; }
.sa-hero--post h1 { line-height: 1.08; text-wrap: balance; }
.sa-hero--post + .sa-art-img { background: #fff; padding-top: var(--sa-gap); }
.sa-logos__logo img { display: block; height: clamp(26px, 2vw, 38px); width: auto; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.sa-logos__logo:hover img { filter: none; opacity: 1; }
.sa-art-hero { width: 100%; background: var(--sa-tint); padding: clamp(40px, 4vw, 96px) var(--sa-px) clamp(28px, 2.6vw, 56px); display: flex; justify-content: center; }
.sa-art-hero__in { width: 100%; max-width: 1080px; display: flex; flex-direction: column; gap: clamp(14px, 1.2vw, 22px); }
.sa-art-hero .sa-crumbs, .sa-art-hero .sa-crumbs a { color: var(--sa-muted); }
.sa-art-hero .sa-crumbs a:hover { color: var(--sa-blue); }
.sa-art-hero .sa-crumbs [aria-current] { color: var(--sa-blue); }
.sa-art-hero h1 { font-weight: 800; font-size: clamp(38px, 4.2vw, 84px); line-height: 1.08; text-wrap: balance; }
.sa-art-hero__lead { font-size: clamp(19px, 1.34vw, 26px); line-height: 1.55; color: #3c454f; max-width: 62ch; }
.sa-art-hero__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-family: var(--sa-font-mono); font-size: 15px; color: var(--sa-muted); }
.sa-art-img { width: 100%; padding: 0 var(--sa-px); display: flex; justify-content: center; background: linear-gradient(var(--sa-tint) 50%, #fff 50%); }
.sa-art-img__in { width: 100%; max-width: max(66.667vw, 1000px); margin: 0 auto; height: clamp(300px, 36vw, 760px); background: var(--sa-tint-grey); border: 1px solid var(--sa-line); overflow: hidden; }
.sa-art-img__in img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sa-art { width: 100%; padding: clamp(36px, 3.4vw, 72px) var(--sa-px); display: flex; justify-content: center; }
/* Article content: 2/3 of the screen, centred (never narrower than 1000px when the screen allows). */
.sa-art__in { width: 100%; max-width: max(66.667vw, 1000px); margin: 0 auto; display: grid; grid-template-columns: minmax(220px, 300px) minmax(0, 1fr); gap: clamp(28px, 4vw, 96px); align-items: start; }
@media (max-width: 900px) { .sa-art__in { grid-template-columns: 1fr; } .sa-toc { position: static; } }
.sa-toc { position: sticky; top: calc(var(--sa-hh, 88px) + 22px); display: flex; flex-direction: column; gap: 6px; }
.sa-toc__label { font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sa-muted); margin-bottom: 6px; }
.sa-toc a { padding: 8px 12px; border-left: 2px solid var(--sa-line); color: #3c454f; font-size: 16px; transition: border-color .2s, color .2s; }
.sa-toc a:hover, .sa-toc a.is-on { border-left-color: var(--sa-blue-2); color: var(--sa-blue); }
.sa-prose { min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.sa-prose h2 { font-weight: 700; font-size: clamp(22px, 1.57vw, 31px); margin-top: clamp(20px, 1.6vw, 32px); }
.sa-prose h2:first-child { margin-top: 0; }
.sa-prose > p, .sa-prose > ul, .sa-prose > ol { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.75; color: #2c3640; }
.sa-prose strong { color: var(--sa-ink); }
.sa-prose ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.sa-prose ul li { display: flex; gap: 14px; }
.sa-prose ul li::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; margin-top: 0.7em; background: var(--sa-blue-2); }
.sa-prose ol { margin: 0; padding-left: 1.4em; display: flex; flex-direction: column; gap: 12px; }
.sa-prose blockquote { margin: 6px 0; border-left: 4px solid var(--sa-blue-2); background: var(--sa-tint-blue); padding: clamp(18px, 1.5vw, 28px) clamp(20px, 1.8vw, 32px); font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(19px, 1.34vw, 26px); line-height: 1.4; color: var(--sa-ink); }
.sa-prose blockquote p { margin: 0; }
.sa-prose a { text-decoration: underline; text-underline-offset: 3px; }
.sa-prose a.sa-btn, .sa-prose .sa-btn:hover { text-decoration: none; }
.sa-prose figure { margin: 0; }
.sa-prose figure img { display: block; width: 100%; height: auto; }
.sa-about-co { margin-top: clamp(28px, 2.4vw, 48px); padding-top: clamp(28px, 2.4vw, 48px); border-top: 1px solid var(--sa-line); display: flex; flex-direction: column; gap: clamp(18px, 1.4vw, 26px); }
.sa-about-co > p { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.75; color: #2c3640; }
.sa-about-co h3 { font-weight: 700; font-size: clamp(18px, 1.21vw, 23px); }
.sa-about-co__block { display: flex; flex-direction: column; gap: 12px; }
.sa-about-co__svc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; background: #fff; border-top: 1px solid var(--sa-line); border-left: 1px solid var(--sa-line); }
.sa-about-co__svc a { border-right: 1px solid var(--sa-line); border-bottom: 1px solid var(--sa-line); }
@media (max-width: 900px) { .sa-about-co__svc { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .sa-about-co__svc { grid-template-columns: 1fr; } }
.sa-about-co__svc a { background: #fff; padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; color: var(--sa-ink); transition: background-color .2s ease; }
.sa-about-co__svc a:hover { background: var(--sa-tint-blue); color: var(--sa-ink); }
.sa-about-co__svc strong { font-family: var(--sa-font-head); font-weight: 700; font-size: 18px; }
.sa-about-co__svc span { font-size: 16px; line-height: 1.45; color: #55606b; }
.sa-about-co__faq { display: flex; flex-direction: column; border-top: 1px solid var(--sa-line); }
.sa-about-co details { border-bottom: 1px solid var(--sa-line); }
.sa-about-co summary { padding: 14px 40px 14px 0; font-weight: 600; font-size: clamp(16px, 1.02vw, 19px); }
.sa-about-co .sa-plus { top: 12px; font-weight: 500; font-size: 22px; }
.sa-about-co__block + .sa-about-co__block { margin-top: clamp(18px, 1.6vw, 32px); }
.sa-about-co__a { padding: 0 0 18px; font-size: clamp(16px, 1.02vw, 19px); line-height: 1.7; color: #3c454f; }
.sa-art-cta { margin-top: clamp(16px, 1.4vw, 28px); background: var(--sa-ink); color: #fff; padding: clamp(22px, 2vw, 40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 28px; }
.sa-art-cta p { flex: 1 1 320px; font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(19px, 1.34vw, 26px); line-height: 1.35; }

/* ---------- Team ---------- */
.sa-team-home, .sa-leaders { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); background: #fff; }
.sa-team-home__intro { min-width: 0; background: var(--sa-tint-blue); color: var(--sa-ink); padding: clamp(22px, 2vw, 48px); display: flex; flex-direction: column; gap: clamp(14px, 1.2vw, 26px); }
.sa-team-home__intro > p { font-size: clamp(18px, 1.14vw, 22px); color: #3c4d5c; line-height: 1.5; }
.sa-leaders .sa-team-home__intro { justify-content: center; }
.sa-leaders .sa-team-home__intro > p { color: var(--sa-text); line-height: 1.6; }
.sa-team-home__intro img { width: 100%; height: auto; align-self: center; display: block; mix-blend-mode: multiply; margin: -4% 0; object-fit: scale-down; }
.sa-stat { margin-top: auto; }
.sa-stat strong { font-family: var(--sa-font-head); font-size: clamp(23px, 2.02vw, 36px); color: var(--sa-blue); }
.sa-stat span { font-family: var(--sa-font-mono); font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: #4a6b86; }
.sa-team-home__intro .sa-btn-outline { align-self: flex-start; font-size: clamp(14px, 0.90vw, 16px); padding: 12px 22px; }
.sa-leader { position: relative; overflow: hidden; min-height: clamp(460px, 34vw, 720px); background: var(--sa-tint-grey); padding: clamp(20px, 1.8vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.sa-leader + .sa-leader, .sa-team-home__intro + .sa-leader { border-right: 1px solid var(--sa-line); }
.sa-leader:last-child { border-right: 0; }
.sa-leader__card { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.sa-leader__card { max-width: 40ch; }
.sa-leader__role { font-family: var(--sa-font-mono); font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; color: #7c8794; }
.sa-leader__bio { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.55; color: var(--sa-text); }
/* Homepage preview: compact, balanced with the intro panel. */
@media (min-width: 1000px) { .sa-team-home { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); } }
.sa-team-home .sa-team-home__intro img { width: 92%; max-width: 560px; margin: 0 auto; }
.sa-team-home .sa-leader { min-height: 0; }
.sa-team-home .sa-leader img { width: 88%; max-width: 360px; }
.sa-leader img { margin-top: auto; align-self: flex-end; width: 72%; max-width: 440px; height: auto; display: block; mix-blend-mode: multiply; pointer-events: none; }
.sa-crew { background: var(--sa-ink); color: #fff; }
.sa-crew__head { padding: clamp(28px, 2.4vw, 56px) var(--sa-px); }
.sa-crew__head.sa-head p { font-size: clamp(17px, 1.10vw, 21px); color: #aab4bf; max-width: 52ch; }
.sa-crew__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1px; background: #26303a; border-top: 1px solid #26303a; }
@media (max-width: 1100px) { .sa-crew__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sa-crew__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.sa-crew__grid article { min-width: 0; background: var(--sa-ink-2); display: flex; flex-direction: column; }
.sa-crew__photo { background: var(--sa-tint-grey); aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sa-crew__photo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; display: block; mix-blend-mode: multiply; }
.sa-crew__txt { padding: clamp(14px, 1.1vw, 22px); display: flex; flex-direction: column; gap: 4px; }
.sa-crew__txt h3 { font-size: clamp(19px, 1.3vw, 25px); }
.sa-crew__txt p { font-size: 14px; }
.sa-crew__txt h3 { color: #fff; }
.sa-crew__txt p { font-family: var(--sa-font-mono); font-size: 15px; letter-spacing: 0.04em; color: #8e99a5; }
.sa-crew__row { width: 100%; overflow: hidden; border-top: 1px solid #26303a; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.sa-crew__track { display: flex; width: max-content; animation: sa-marquee 46s linear infinite; }
.sa-crew__row + .sa-crew__row .sa-crew__track { animation-duration: 52s; animation-direction: reverse; }
.sa-crew__person { flex: 0 0 auto; width: clamp(240px, 17vw, 300px); display: flex; align-items: center; gap: 14px; padding: clamp(16px, 1.3vw, 24px) clamp(18px, 1.5vw, 28px); border-right: 1px solid #26303a; }
.sa-crew__person img { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: #fff; object-fit: cover; display: block; }
.sa-crew__person span { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sa-crew__person b { font-family: var(--sa-font-head); font-weight: 700; font-size: clamp(17px, 1.10vw, 21px); color: #fff; }
.sa-crew__person i { font-style: normal; font-family: var(--sa-font-mono); font-size: 13px; letter-spacing: 0.06em; color: #8e99a5; }

/* ---------- Pricing models ---------- */
.sa-price article { min-width: 0; background: #fff; border-top: 3px solid var(--sa-blue-2); padding: clamp(22px, 1.9vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.sa-price article > p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.55; color: #55606b; }
.sa-price__best { font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sa-blue); }
.sa-checks { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: clamp(17px, 1.10vw, 21px); color: #3c454f; }
.sa-checks li { display: flex; gap: 12px; align-items: baseline; }
.sa-checks li::before { content: "✓"; color: var(--sa-blue); font-weight: 700; }
.sa-included { padding: clamp(36px, 3.4vw, 84px) var(--sa-px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(24px, 3vw, 72px); align-items: center; }
.sa-included__text { display: flex; flex-direction: column; gap: 14px; }
.sa-included__text p { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.6; color: var(--sa-text); max-width: 52ch; }
.sa-included .sa-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 14px 28px; font-size: clamp(18px, 1.14vw, 22px); color: var(--sa-ink); }

/* ---------- Jobs board ---------- */
.sa-jobs { background: var(--sa-tint-grey); padding: clamp(36px, 3.4vw, 84px) var(--sa-px); display: flex; flex-direction: column; gap: clamp(22px, 2vw, 44px); }
.sa-jobs .sa-head p { font-size: clamp(17px, 1.10vw, 21px); max-width: 52ch; }
.sa-jobs .sa-chip { all: unset; cursor: pointer; background: #fff; color: var(--sa-ink); border: 1px solid #d5dce3; padding: 10px 18px; font-family: var(--sa-font-head); font-weight: 600; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; transition: border-color .2s, transform .2s; }
.sa-jobs .sa-chip:hover { border-color: var(--sa-blue-2); transform: translateY(-1px); }
.sa-jobs .sa-chip[aria-selected="true"] { background: var(--sa-ink); color: #fff; border-color: var(--sa-ink); }
.sa-jobs__list { display: flex; flex-direction: column; gap: 1px; background: #d5dce3; border: 1px solid #d5dce3; }
.sa-job { background: #fff; padding: clamp(20px, 1.7vw, 34px) clamp(20px, 2vw, 40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 40px; }
.sa-job[hidden] { display: none; }
.sa-job__info { flex: 1 1 480px; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.sa-job__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sa-muted); }
.sa-job__meta span:first-child { color: var(--sa-blue); }
.sa-job__info p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.55; color: var(--sa-text); max-width: 80ch; }
.sa-job .sa-btn-outline { flex: 0 0 auto; padding: 12px 24px; letter-spacing: 0.09em; }
.sa-jd { position: fixed; inset: 0; z-index: 200; background: rgba(9, 14, 20, 0.62); display: flex; justify-content: flex-end; animation: sa-fade-in .25s ease both; }
.sa-jd[hidden] { display: none; }
.sa-jd__panel { width: min(100%, 760px); height: 100%; background: #fff; display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(9, 14, 20, 0.25); animation: sa-slide-in .35s cubic-bezier(.2, .8, .2, 1) both; }
.sa-jd__top { flex: 0 0 auto; background: var(--sa-ink); color: #fff; padding: clamp(22px, 2vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.sa-jd__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.sa-jd__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-family: var(--sa-font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #aab4bf; }
.sa-jd__meta span:first-child { color: #5cc0ff; }
.sa-jd__close { cursor: pointer; flex: 0 0 auto; width: 40px; height: 40px; border: 1px solid #3a444f; background: transparent; color: #fff; font-size: 22px; line-height: 1; transition: background-color .2s; }
.sa-jd__close:hover { background: #26303a; }
.sa-jd__top h2 { font-weight: 800; font-size: clamp(23px, 2.24vw, 41px); line-height: 1.1; }
.sa-jd__top p { font-size: clamp(17px, 1.10vw, 21px); line-height: 1.55; color: #d3dae2; }
.sa-jd__body { flex: 1 1 auto; overflow-y: auto; padding: clamp(22px, 2vw, 40px); display: flex; flex-direction: column; gap: clamp(22px, 1.8vw, 34px); }
.sa-jd__sec { display: flex; flex-direction: column; gap: 14px; }
.sa-jd__sec h3 { font-weight: 700; font-size: clamp(18px, 1.21vw, 23px); color: var(--sa-ink); }
.sa-jd__sec--box { background: var(--sa-tint-grey); padding: clamp(18px, 1.5vw, 28px); }
.sa-dots { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sa-dots li { display: flex; gap: 12px; font-size: clamp(17px, 1.10vw, 21px); line-height: 1.55; color: #3c4d5c; }
.sa-dots li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: 10px; background: var(--sa-blue-2); }
.sa-jd__foot { flex: 0 0 auto; border-top: 1px solid var(--sa-line); padding: clamp(16px, 1.4vw, 26px) clamp(22px, 2vw, 40px); display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; justify-content: space-between; }
.sa-jd__foot .sa-btn-outline { padding: 13px 22px; letter-spacing: 0.09em; }
.sa-jd__foot .sa-btn { font-size: 15px; padding: 14px 28px; }
body.sa-locked { overflow: hidden; }

/* ---------- Legal ---------- */
.sa-legal-hero { width: 100%; background: var(--sa-ink); color: #fff; padding: clamp(56px, 6vw, 140px) var(--sa-px) clamp(40px, 4vw, 88px); display: flex; flex-direction: column; gap: clamp(14px, 1.2vw, 24px); }
.sa-legal-hero h1 { font-weight: 800; font-size: clamp(38px, 4.2vw, 84px); line-height: 1.05; }
.sa-legal-hero__intro { font-size: clamp(18px, 1.18vw, 23px); line-height: 1.55; color: #e4eaf0; max-width: 62ch; }
.sa-legal-hero__date { font-family: var(--sa-font-mono); font-size: 15px; letter-spacing: 0.04em; color: #8e99a5; }
.sa-legal { width: 100%; padding: clamp(36px, 3.4vw, 84px) var(--sa-px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(28px, 4vw, 96px); align-items: start; }
.sa-legal__toc { position: sticky; top: calc(var(--sa-hh, 88px) + 22px); display: flex; flex-direction: column; gap: 6px; background: var(--sa-tint-grey); padding: clamp(20px, 1.6vw, 30px); max-width: 380px; }
.sa-legal__toc > p { font-family: var(--sa-font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sa-muted); margin-bottom: 6px; }
.sa-legal__toc a { display: flex; gap: 12px; padding: 8px 0; color: var(--sa-text); font-size: 17px; line-height: 1.4; }
.sa-legal__toc a:hover { color: var(--sa-blue); }
.sa-legal__toc a span:first-child { font-family: var(--sa-font-mono); font-size: 14px; color: var(--sa-blue); padding-top: 2px; }
.sa-legal__body { grid-column: span 2; min-width: min(100%, 560px); display: flex; flex-direction: column; gap: clamp(24px, 2vw, 40px); }
.sa-legal__sec { display: flex; flex-direction: column; gap: 14px; padding-bottom: clamp(24px, 2vw, 40px); border-bottom: 1px solid var(--sa-line); }
.sa-legal__sec h2 { font-weight: 700; font-size: clamp(22px, 1.57vw, 31px); display: flex; gap: 14px; align-items: baseline; }
.sa-legal__sec h2 span { font-family: var(--sa-font-mono); font-weight: 500; font-size: 16px; color: var(--sa-blue); }
.sa-legal__txt { display: flex; flex-direction: column; gap: 14px; }
.sa-legal__txt p, .sa-legal__txt li { font-size: clamp(18px, 1.14vw, 22px); line-height: 1.7; color: #3c4d5c; max-width: 78ch; }
.sa-legal__txt ul, .sa-legal__txt ol { margin: 0; padding-left: 1.3em; display: flex; flex-direction: column; gap: 8px; }
.sa-legal__txt strong { color: var(--sa-ink); }
.sa-legal__txt table { border-collapse: collapse; width: 100%; max-width: 78ch; font-size: clamp(16px, 1vw, 19px); }
.sa-legal__txt th, .sa-legal__txt td { border: 1px solid var(--sa-line); padding: 10px 12px; text-align: left; vertical-align: top; color: #3c4d5c; }
.sa-legal__txt th { background: var(--sa-tint-grey); color: var(--sa-ink); font-family: var(--sa-font-head); }

.sa-legal__related { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: clamp(18px, 1.14vw, 22px); color: var(--sa-text); }
.sa-legal__related a { color: var(--sa-blue); font-weight: 600; }
.sa-legal__related span[aria-hidden] { color: #b9c3cd; }
.sa-about-co h2.sa-h2 { font-size: clamp(23px, 2.24vw, 41px); }
.sa-about-co a { text-decoration: none; }

/* ---------- Footer ---------- */
.sa-footer { margin-top: var(--sa-gap); width: 100%; background: var(--sa-ink); color: #fff; padding: clamp(28px, 2.6vw, 64px) var(--sa-px) clamp(20px, 1.8vw, 40px); }
.sa-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); gap: clamp(20px, 2vw, 48px); }
.sa-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.sa-footer__brand img { align-self: flex-start; height: clamp(22px, 1.7vw, 30px); width: auto; max-width: 100%; object-fit: contain; filter: brightness(1.35); }
.sa-footer__tag { font-family: var(--sa-font-head); font-weight: 800; font-size: clamp(16px, 1.18vw, 22px); line-height: 1.3; }
.sa-footer__tag span { color: var(--sa-blue-3); }
.sa-footer__label { font-family: var(--sa-font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: #8e99a5; }
.sa-footer__social { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.sa-footer__icons { display: flex; gap: 10px; }
.sa-footer__icons a { width: 40px; height: 40px; border-radius: 6px; background: #0a66c2; display: flex; align-items: center; justify-content: center; font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 21px; color: #fff; transition: transform .2s ease, filter .2s ease; }
.sa-footer__icons a:hover { color: #fff !important; transform: translateY(-2px); filter: brightness(1.1); }
.sa-footer nav { display: flex; flex-direction: column; gap: 11px; }
.sa-footer nav a { color: #dde3e9; font-size: 18px; transition: color .2s ease; }
.sa-footer a:hover { color: var(--sa-blue-3); }
.sa-footer__bottom { margin-top: clamp(20px, 2vw, 44px); padding-top: clamp(16px, 1.4vw, 28px); border-top: 1px solid #26303a; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px clamp(28px, 3vw, 72px); font-size: 17px; color: #8e99a5; }
.sa-footer__contact { margin-left: auto; display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: flex-start; gap: 20px clamp(28px, 3vw, 72px); text-align: right; }
.sa-footer__contact p { line-height: 1.5; }
.sa-footer__contact strong { color: #fff; font-family: var(--sa-font-head); font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; }
.sa-footer__contact span, .sa-footer__contact a { color: #dde3e9; }

/* ---------- Plain page / 404 ---------- */
.sa-plain { padding: clamp(56px, 6vw, 140px) var(--sa-px); display: flex; flex-direction: column; gap: 18px; max-width: 900px; }
.sa-plain h1 { font-weight: 800; font-size: clamp(38px, 4.2vw, 84px); line-height: 1.05; }
.sa-plain p { font-size: clamp(18px, 1.18vw, 23px); line-height: 1.6; color: var(--sa-text); }

/* ---------- Card hover (one rule for every card type) ----------
   Uses the individual `translate` property so it never fights the reveal animation. */
.sa-h main article:not([data-content]):not(.sa-strip__card), .sa-steps li, .sa-linkcard, .sa-pcard {
  transition: translate .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.sa-h main article:not([data-content]):not(.sa-strip__card):hover, .sa-steps li:hover, .sa-linkcard:hover, .sa-pcard:hover {
  translate: 0 var(--sa-lift); box-shadow: var(--sa-lift-shadow); position: relative; z-index: 1;
}
.sa-crew article:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35); }
/* Every marquee pauses while hovered. */
.sa-logos__track:hover, .sa-strip__track:hover, .sa-links__track:hover, .sa-blog__track:hover, 
/* ---------- Reveal: banner-text rise, used for the hero intro and for every block on scroll ----------
   main.js marks below-the-fold items .sa-pending and plays the rise once, when their first pixel
   enters the screen. It never reverses on scroll-up. Failsafe: if the script never plays an item,
   it simply appears after 4s (no scroll-linked fading). Uses `translate`, like the card hover. */
@keyframes sa-rise { from { opacity: 0; translate: 0 var(--sa-rise); } to { opacity: 1; translate: 0 0; } }
@keyframes sa-show { to { opacity: 1; } }
html.sa-js .sa-hero-in { animation: sa-rise var(--sa-rise-time) var(--sa-ease) both; }
html.sa-js .sa-pending { opacity: 0; animation: sa-show 0s 4s forwards; }

/* ---------- Cookie banner (Complianz) in the site's style ---------- */
.cmplz-cookiebanner { border-radius: 0 !important; border: 1px solid var(--sa-line) !important; box-shadow: 0 18px 40px rgba(16, 22, 29, 0.18) !important; font-family: var(--sa-font-body) !important; }
.cmplz-cookiebanner .cmplz-title { font-family: var(--sa-font-head) !important; font-weight: 700 !important; font-size: 17px !important; color: var(--sa-ink) !important; }
.cmplz-cookiebanner .cmplz-message, .cmplz-cookiebanner .cmplz-description { color: var(--sa-text) !important; font-size: 14px !important; line-height: 1.55 !important; }
.cmplz-cookiebanner .cmplz-btn { border-radius: 0 !important; font-family: var(--sa-font-head) !important; font-weight: 700 !important; font-size: 13px !important; letter-spacing: 0.09em !important; text-transform: uppercase !important; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background-color .2s ease, color .2s ease !important; }
.cmplz-cookiebanner .cmplz-btn.cmplz-accept { background: var(--sa-grad) !important; border: 0 !important; color: #fff !important; }
.cmplz-cookiebanner .cmplz-btn.cmplz-accept:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17, 115, 212, 0.32); filter: brightness(1.08); }
.cmplz-cookiebanner .cmplz-btn:not(.cmplz-accept) { background: #fff !important; border: 1px solid var(--sa-ink) !important; color: var(--sa-ink) !important; }
.cmplz-cookiebanner .cmplz-btn:not(.cmplz-accept):hover { background: var(--sa-ink) !important; color: #fff !important; }
.cmplz-cookiebanner .cmplz-links a, .cmplz-cookiebanner .cmplz-link { color: var(--sa-blue) !important; }
.cmplz-cookiebanner .cmplz-category { border-radius: 0 !important; background: var(--sa-tint-grey) !important; }
.cmplz-cookiebanner .cmplz-always-active { color: var(--sa-blue) !important; }
html[lang|="ja"] .cmplz-cookiebanner, html[lang|="ja"] .cmplz-cookiebanner * { font-family: 'Noto Sans JP', Barlow, sans-serif !important; letter-spacing: 0 !important; }

/* ---------- Small screens ---------- */
@media (max-width: 640px) {
  .sa-crumbs, .sa-bcard__meta, .sa-pcard__cat, .sa-job__meta, .sa-mega__d, .sa-crew__person i, .sa-reviews__eyebrow, .sa-btn-outline, .sa-toc__label, .sa-file__btn, .sa-price__best, .sa-feat__meta, .sa-jd__meta { font-size: 15px !important; }
  .sa-footer nav a, .sa-footer__contact a { display: inline-flex; align-items: center; min-height: 44px; }
  .sa-h button, .sa-chip, .sa-h summary { min-height: 44px; }
  .sa-form input, .sa-form select, .sa-form textarea { font-size: 16px !important; min-height: 48px; }
  .sa-h a.sa-btn { min-height: 48px; }
  .sa-legal__body { grid-column: auto; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sa-h *, .sa-h *:hover { transition: none !important; }
  .sa-h main article:hover, .sa-h .sa-steps li:hover, .sa-h .sa-bcard:hover, .sa-h .sa-linkcard:hover, .sa-h .sa-pcard:hover { translate: none !important; }
  .sa-h .sa-btn:hover, .sa-h .sa-btn-outline:hover { transform: none !important; }
  .sa-logos__track, .sa-strip__track, .sa-links__track, .sa-blog__track, .sa-crew__track { animation: none !important; flex-wrap: wrap; width: 100%; }
  .sa-logos__track [aria-hidden], .sa-strip__track [aria-hidden], .sa-links__track [aria-hidden], .sa-blog__track [aria-hidden], .sa-crew__track [aria-hidden] { display: none; }
  details[open] > summary ~ * { animation: none; }
  html.sa-js .sa-pending { opacity: 1 !important; animation: none !important; }
  .sa-jd, .sa-jd__panel { animation: none; }
}

/* ---------- Japanese ---------- */
html[lang|="ja"] .sa-h, html[lang|="ja"] .sa-h * { font-family: 'Noto Sans JP', Barlow, sans-serif !important; }
html[lang|="ja"] .sa-h .sa-eyebrow, html[lang|="ja"] .sa-h .sa-num, html[lang|="ja"] .sa-h .sa-crumbs, html[lang|="ja"] .sa-h .sa-steps__label { font-family: 'IBM Plex Mono', 'Noto Sans JP', monospace !important; }
html[lang|="ja"] .sa-h h1, html[lang|="ja"] .sa-h h2, html[lang|="ja"] .sa-h h3, html[lang|="ja"] .sa-h .sa-nav, html[lang|="ja"] .sa-h button, html[lang|="ja"] .sa-h .sa-btn { letter-spacing: 0 !important; line-height: 1.35 !important; word-break: keep-all; overflow-wrap: anywhere; }
html[lang|="ja"] .sa-h h1 { font-size: clamp(34px, 3.6vw, 72px) !important; }
