/* ==========================================================================
   TranxMed — site.css
   Regenerated from the markup in the ten HTML pages and the Meridian brand
   spec. Every class present in the HTML is covered here.

   Contents
   01  Tokens
   02  Reset and base
   03  Typography helpers
   04  Buttons
   05  Skip link, top bar, navigation
   06  Home hero and slider
   07  Marquee
   08  Sections and section heads
   09  Stats
   10  Service cards
   11  Split layouts and feature lists
   12  Product mock
   13  Industry cards
   14  Process (ink)
   15  Commitments
   16  FAQ
   17  CTA band
   18  Footer
   19  Inner page hero and breadcrumb
   20  Service rows (services.html)
   21  Value cards, roles
   22  Contact page and forms
   23  Prose, notice, 404
   24  Reveal and stagger
   25  Responsive
   26  Reduced motion
   ========================================================================== */


/* 01 — Tokens ============================================================= */

:root {
  /* Meridian palette */
  --ink:          #07201F;
  --pine:         #0B3A36;
  --teal:         #0F5F58;
  --teal-bright:  #1FA894;
  --teal-wash:    #E9F4F1;
  --teal-wash-2:  #F2F8F6;
  --amber:        #F2A93B;
  --amber-deep:   #D18A1E;
  --sand:         #F7F4ED;
  --paper:        #FFFFFF;
  --text:         #0E2523;
  --text-2:       #586E6B;
  --muted:        #8A9997;
  --border:       #E4E0D6;
  --border-soft:  #EFECE4;

  /* Type */
  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
          "Liberation Mono", monospace;

  /* Rhythm */
  --wrap: 1200px;
  --gut: 24px;
  --sec-y: clamp(64px, 8vw, 112px);
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;

  /* Elevation — kept shallow and warm, never blue-grey */
  --sh-1: 0 1px 2px rgba(7, 32, 31, .05);
  --sh-2: 0 6px 20px -8px rgba(7, 32, 31, .13);
  --sh-3: 0 22px 48px -20px rgba(7, 32, 31, .22);

  --ease: cubic-bezier(.22, .68, .32, 1);
}


/* 02 — Reset and base ===================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-bright); }

button { font: inherit; color: inherit; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;          /* never 700 — it reads cheap */
  line-height: 1.12;
  color: var(--teal);
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); letter-spacing: -.042em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); letter-spacing: -.034em; }
h3 { font-size: 1.16rem; letter-spacing: -.022em; }
h4 { font-size: .95rem; letter-spacing: -.012em; }

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

:focus-visible {
  outline: 2.5px solid var(--teal-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}


/* 03 — Typography helpers ================================================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: .715rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: none;
  background: var(--amber);          /* accent use 1 of 3 */
  border-radius: 1px;
}
.center .eyebrow { justify-content: center; }
.eyebrow.light { color: var(--teal-bright); }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  line-height: 1.68;
  color: var(--text-2);
  max-width: 62ch;
}
.center .lede { margin-inline: auto; }

.k {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}


/* 04 — Buttons ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--amber);          /* accent use 2 of 3 */
  border-color: var(--amber);
  color: var(--ink);
  box-shadow: var(--sh-2);
}
.btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-line {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-line:hover {
  background: var(--teal);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-line-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
  color: var(--paper);
}
.btn-line-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--paper);
  color: var(--paper);
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.btn-dark:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--paper);
  transform: translateY(-1px);
}


/* 05 — Skip link, top bar, navigation ===================================== */

.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .22s var(--ease);
}
.skip:focus-visible { transform: translateY(0); color: var(--paper); }

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .74);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .01em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding-block: 9px;
}
.topbar-l { color: rgba(255, 255, 255, .62); }
.topbar-r { display: flex; align-items: center; gap: 22px; }
.topbar-r a { color: rgba(255, 255, 255, .82); }
.topbar-r a:hover { color: var(--teal-bright); }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 237, .88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.on,
.nav.stuck { box-shadow: var(--sh-2); background: rgba(247, 244, 237, .96); }

.nav .wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.logo svg { width: 40px; height: 45px; }
.logo-tx {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -.034em;
  color: var(--teal);
}
.logo-dot { color: var(--amber); }   /* accent use 3 of 3 */

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links > a:not(.btn) {
  position: relative;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  padding-block: 6px;
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal-bright);
  border-radius: 2px;
  transition: width .28s var(--ease);
}
.nav-links > a:not(.btn):hover { color: var(--teal); }
.nav-links > a:not(.btn):hover::after,
.nav-links > a.active::after { width: 100%; }
.nav-links > a.active { color: var(--teal); font-weight: 600; }

/* The in-menu CTA only appears in the mobile drawer */
.nav-links > .btn { display: none; }

.nav-cta { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.topbar-wa { display: inline-flex; align-items: center; gap: 6px; }
.topbar-wa svg { width: 14px; height: 14px; }

/* 06 — Home hero and slider =============================================== */

.hero {
  position: relative;
  padding-block: clamp(48px, 6vw, 84px) clamp(40px, 5vw, 68px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% 40% auto -20%;
  height: 620px;
  background: radial-gradient(closest-side, rgba(31, 168, 148, .13), transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy { display: grid; }
.slide-copy {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), visibility .6s;
  pointer-events: none;
}
.slide-copy.on {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.slide-copy h1 { margin-bottom: 22px; }
.slide-copy h1 span {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--teal-bright);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
.slide-copy .lede { max-width: 54ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-tags span {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--text-2);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
}

.hero-domains {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-domains-k {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-2);
  margin-right: 4px;
}
.hero-domains > span:not(.hero-domains-k) {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(31, 168, 148, .1);
  border: 1px solid rgba(31, 168, 148, .28);
  border-radius: 999px;
  padding: 7px 14px;
}

.hero-media { position: relative; display: grid; }
.slide-img {
  grid-area: 1 / 1;
  position: relative;
  aspect-ratio: 4 / 3.15;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal) 0%, var(--pine) 55%, var(--ink) 100%);
  box-shadow: var(--sh-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s var(--ease), visibility .7s;
}
.slide-img.on { opacity: 1; visibility: visible; }
.slide-img img { width: 100%; height: 100%; object-fit: cover; }
.slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 32, 31, .82) 0%, rgba(7, 32, 31, .18) 44%, transparent 70%);
}

.media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 24px;
  color: var(--paper);
}
.media-caption .k { color: var(--teal-bright); margin-bottom: 6px; }
.media-caption .v {
  font-size: .97rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 34ch;
}

.float-card {
  position: absolute;
  z-index: 3;
  right: -14px;
  bottom: -26px;
  width: 196px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  box-shadow: var(--sh-3);
}
.float-card .k { margin-bottom: 5px; }
.float-card .v {
  font-size: 1.62rem;
  font-weight: 600;
  letter-spacing: -.034em;
  color: var(--teal);
  line-height: 1.1;
}
.float-card .bar { margin-top: 11px; }

.bar {
  height: 5px;
  width: 100%;
  background: var(--teal-wash);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal-bright);
  border-radius: 999px;
  transition: width .8s var(--ease);
}
.bar i.amb { background: var(--amber); }

.hero-ctrl {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(34px, 4vw, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.dots { display: flex; align-items: center; gap: 10px; }
.dot {
  position: relative;
  width: 34px;
  height: 4px;
  padding: 0;
  background: var(--border);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: width .35s var(--ease), background .3s var(--ease);
}
.dot:hover { background: #d5cfbe; }
.dot.on { width: 62px; background: var(--teal-wash); }
.dot i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
  border-radius: 999px;
}
.dot.on i { width: 100%; }

.slide-count {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .09em;
  color: var(--muted);
}
.slide-count b { color: var(--teal); font-weight: 500; }

.arrows { display: flex; gap: 8px; margin-left: auto; }
.arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--teal);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.arrow svg { width: 15px; height: 15px; }
.arrow:hover { background: var(--teal); border-color: var(--teal); color: var(--paper); }


/* 07 — Marquee ============================================================ */

.marq {
  border-block: 1px solid var(--border);
  background: var(--paper);
  overflow: hidden;
  padding-block: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marq-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
}
.marq-track span {
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 44px;
}
.marq-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--teal-bright);
  border-radius: 50%;
  opacity: .55;
}


/* 08 — Sections and section heads ========================================= */

.sec { padding-block: var(--sec-y); }
.sec-sm { padding-block: clamp(44px, 5vw, 64px); }
.sec-tint { background: var(--teal-wash-2); }
.sec-wash { background: var(--paper); }

.sec-ink {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
}
.sec-ink h2, .sec-ink h3, .sec-ink h4 { color: var(--paper); }
.sec-ink .lede { color: rgba(255, 255, 255, .72); }
.sec-ink .eyebrow { color: var(--teal-bright); }

.sec-head { max-width: 62ch; margin-bottom: clamp(38px, 4.4vw, 58px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 + .lede { margin-top: 18px; }


/* 09 — Stats ============================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat { background: var(--sand); padding: 30px 26px; }
.stat-v {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -.042em;
  line-height: 1;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
}
.stat-k {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: .73rem;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--text-2);
  max-width: 26ch;
}

/* Counters animate from 0 in site.js. If the script is absent, show the
   final figure rather than a page full of zeroes. */
html:not(.js) .count { visibility: hidden; position: relative; }
html:not(.js) .count::after {
  content: attr(data-to) attr(data-suffix);
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible;
  white-space: nowrap;
}


/* 10 — Service cards ====================================================== */

.svcs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svcs.three { grid-template-columns: repeat(3, 1fr); }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: width .5s var(--ease);
}
a.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: var(--border-soft);
  color: var(--text);
}
a.svc:hover::before { width: 100%; }

.svc-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--teal-wash);
  border-radius: 12px;
  color: var(--teal);
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.svc-ico svg { width: 22px; height: 22px; }
a.svc:hover .svc-ico {
  transform: scale(1.09) rotate(-5deg);
  background: var(--teal);
  color: var(--paper);
}

.svc h3 { margin-bottom: 10px; }
.svc p { font-size: .93rem; line-height: 1.6; color: var(--text-2); }

.more {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}
.more svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
a.svc:hover .more svg { transform: translateX(4px); }


/* 11 — Split layouts and feature lists ==================================== */

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.split.even { grid-template-columns: 1fr 1fr; }
.split.flip > *:first-child { order: 2; }

.shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--pine) 60%, var(--ink));
  box-shadow: var(--sh-3);
  aspect-ratio: 4 / 3.2;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }

.feat-list { list-style: none; margin-top: 30px; display: grid; gap: 20px; }
.feat-list li { display: flex; gap: 14px; align-items: flex-start; }
.feat-list b {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.018em;
  color: var(--teal);
  margin-bottom: 4px;
}
.feat-list p { font-size: .93rem; line-height: 1.6; color: var(--text-2); margin: 0; }

.sec-ink .feat-list b { color: var(--paper); }
.sec-ink .feat-list p { color: rgba(255, 255, 255, .7); }

.tick {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  background: var(--teal-wash);
  color: var(--teal);
  border-radius: 50%;
}
.tick svg { width: 12px; height: 12px; }
.sec-ink .tick { background: rgba(31, 168, 148, .17); color: var(--teal-bright); }


/* 12 — Product mock ======================================================= */

.mock {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-3);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--teal-wash-2);
  border-bottom: 1px solid var(--border-soft);
}
.mock-bar > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
}
.mock-bar > i:first-child { background: #dcd5c4; }
.mock-url {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .02em;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 18px 6px;
}
.mcell {
  padding: 14px;
  background: var(--teal-wash-2);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.mcell .k { font-size: .62rem; letter-spacing: .11em; }
.mcell .v {
  margin: 6px 0 10px;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -.034em;
  line-height: 1;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  transition: color .3s var(--ease);
}

.mock-chart { padding: 18px 18px 12px; }
.chart-row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 108px;
}
.chart-row b {
  flex: 1;
  min-height: 6px;
  background: var(--teal-wash);
  border-radius: 5px 5px 2px 2px;
  transition: height .7s var(--ease), background .4s var(--ease);
}
.chart-row b.hi { background: var(--teal-bright); }
.chart-row b.amb { background: var(--amber); }
.chart-x {
  display: flex;
  gap: 9px;
  margin-top: 9px;
}
.chart-x span {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .06em;
  color: var(--muted);
}

.mock-feed {
  border-top: 1px solid var(--border-soft);
  padding: 6px 18px 16px;
  min-height: 96px;
}
.mock-feed > * {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .84rem;
  color: var(--text-2);
  animation: feed-in .45s var(--ease) both;
}
.mock-feed > *:last-child { border-bottom: none; }
.mock-feed time,
.mock-feed b,
.mock-feed span:first-child {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--muted);
  flex: none;
}

html:not(.js) .mock-feed::before {
  content: "Activity feed — illustrative";
  display: block;
  padding: 30px 0;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

@keyframes feed-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}


/* 13 — Industry cards ===================================================== */

.inds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ind {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(150deg, var(--teal), var(--pine) 60%, var(--ink));
  aspect-ratio: 3 / 4;
  isolation: isolate;
}
.ind img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.ind::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 32, 31, .9) 6%, rgba(7, 32, 31, .3) 48%, rgba(7, 32, 31, .06) 100%);
}
.ind:hover img { transform: scale(1.07); }

.ind-txt {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px 20px;
  color: var(--paper);
}
.ind-txt .k { color: var(--teal-bright); margin-bottom: 8px; }
.ind-txt h3 { color: var(--paper); margin-bottom: 8px; }
.ind-txt p {
  font-size: .87rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .76);
  margin: 0;
}


/* 14 — Process (ink) ====================================================== */

.proc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  overflow: hidden;
}
.pstep {
  background: var(--ink);
  padding: 30px 24px 32px;
  transition: background .35s var(--ease);
}
.pstep:hover { background: var(--pine); }
.pnum {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--teal-bright);
  margin-bottom: 16px;
}
.pwk {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 10px;
}
.pstep h3 { color: var(--paper); margin-bottom: 10px; }
.pstep p {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}


/* 15 — Commitments ======================================================== */

.coms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.com {
  position: relative;
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.com:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.com-n {
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .12em;
  color: var(--teal-bright);
  margin-bottom: 14px;
}
.com h3 { margin-bottom: 10px; }
.com p { font-size: .93rem; line-height: 1.62; color: var(--text-2); margin: 0; }


/* 16 — FAQ ================================================================ */

.faq {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--border);
}
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 46px 20px 0;
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--teal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq summary::before { transform: translateY(-50%) rotate(90deg); }
.faq summary::after { transform: translateY(-50%); }
.faq details[open] summary::before { transform: translateY(-50%) rotate(0deg); opacity: 0; }
.faq summary:hover { color: var(--teal-bright); }
.faq details > p {
  margin: 0;
  padding: 0 46px 22px 0;
  font-size: .96rem;
  line-height: 1.68;
  color: var(--text-2);
  max-width: 72ch;
}


/* 17 — CTA band =========================================================== */

.cta {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  padding-block: clamp(52px, 6vw, 78px);
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.cta h2 { color: var(--paper); margin-bottom: 12px; }
.cta p { color: rgba(255, 255, 255, .7); max-width: 56ch; margin: 0; }


/* 18 — Footer ============================================================= */

.foot {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: clamp(50px, 6vw, 72px) 0;
}
.foot .logo-tx { color: var(--paper); }
.foot .logo { margin-bottom: 18px; }

.foot-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 44px;
}
.foot-grid > div:first-child p {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .6);
  max-width: 42ch;
}
.foot h4 {
  color: var(--paper);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot ul { list-style: none; display: grid; gap: 11px; }
.foot ul a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .66);
  transition: color .22s var(--ease);
}
.foot ul a:hover { color: var(--teal-bright); }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: rgba(255, 255, 255, .74);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.socials svg { width: 17px; height: 17px; }
.socials a:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  color: var(--ink);
}

.foot-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--mono);
  font-size: .71rem;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .45);
}


/* 19 — Inner page hero and breadcrumb ===================================== */

.phero {
  position: relative;
  background: var(--teal-wash-2);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(48px, 6vw, 82px) clamp(44px, 5.4vw, 74px);
  overflow: hidden;
}
.phero::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto 55%;
  height: 520px;
  background: radial-gradient(closest-side, rgba(31, 168, 148, .15), transparent 72%);
  pointer-events: none;
}
.phero .wrap { position: relative; }
.phero h1 { max-width: 20ch; }
.phero .lede { margin-top: 20px; }

.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a { color: var(--text-2); }
.crumb a:hover { color: var(--teal); }
.crumb span { color: var(--border); }


/* 20 — Service rows (services.html) ======================================= */

.srow {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 4.5vw, 60px);
  padding-block: clamp(38px, 4.5vw, 56px);
  border-top: 1px solid var(--border);
  scroll-margin-top: 110px;
}
.srow:first-child { border-top: none; padding-top: 0; }
.srow > div:first-child h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  letter-spacing: -.032em;
  margin-bottom: 14px;
}
.srow > div:first-child > p {
  font-size: 1rem;
  line-height: 1.66;
  color: var(--text-2);
  max-width: 46ch;
}

.srow-n {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 14px;
}

.srow-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.srow-tags span {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .05em;
  color: var(--text-2);
  background: var(--teal-wash);
  border-radius: 999px;
  padding: 6px 12px;
}

.srow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sbox {
  padding: 22px 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.sbox:hover { border-color: var(--teal-bright); transform: translateY(-2px); }
.sbox b {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.018em;
  color: var(--teal);
  margin-bottom: 7px;
}
.sbox p { font-size: .88rem; line-height: 1.58; color: var(--text-2); margin: 0; }


/* 21 — Value cards, roles ================================================= */

.vals { display: grid; gap: 14px; }
.val {
  padding: 24px 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.val h3 { margin-bottom: 8px; }
.val p { font-size: .92rem; line-height: 1.6; color: var(--text-2); margin: 0; }

.sec-ink .val {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
}
.sec-ink .val h3 { color: var(--paper); }
.sec-ink .val p { color: rgba(255, 255, 255, .7); }

/* about.html uses .val in a plain grid of six */
.sec .wrap > .vals:not(.stg) { grid-template-columns: repeat(3, 1fr); }

.roles { display: grid; gap: 14px; }
.role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.role:hover { border-color: var(--teal-bright); box-shadow: var(--sh-2); }
.role h3 { margin-bottom: 8px; }
.role p {
  font-size: .93rem;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 62ch;
  margin: 0;
}
.role .btn { flex: none; }

.role-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.role-meta span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--text-2);
  background: var(--teal-wash);
  border-radius: 999px;
  padding: 5px 11px;
}


/* 22 — Contact page and forms ============================================= */

.ct {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: start;
}

.ct-info { margin: 26px 0 0; display: grid; gap: 20px; }
.ct-info > div { padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.ct-info > div:last-child { border-bottom: none; }
.ct-info dt {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.ct-info dd {
  margin: 0;
  font-size: 1.01rem;
  font-weight: 500;
  color: var(--text);
}
.ct-info dd a { color: var(--teal); }
.ct-info dd .wa-link { display: inline-flex; align-items: center; gap: 7px; }
.ct-info dd .wa-link svg { width: 16px; height: 16px; flex: none; }
.ct-info dd small {
  display: block;
  margin-top: 4px;
  font-size: .84rem;
  font-weight: 400;
  color: var(--text-2);
}

.form {
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.f-row .field { margin-bottom: 0; }
.f-row { margin-bottom: 16px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: .97rem;
  color: var(--text);
  background: var(--sand);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .22s var(--ease), background .22s var(--ease),
              box-shadow .22s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23586E6B' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4.5 6 7.5 9 4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 13px;
  padding-right: 38px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #d8d2c2; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(31, 168, 148, .16);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { outline: none; }

.field.err input,
.field.err select,
.field.err textarea { border-color: #C0453B; background: #FDF4F3; }
.field .msg,
.field small.err {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  color: #C0453B;
}

.form .btn { margin-top: 6px; }

.form-ok {
  display: none;
  padding: 15px 17px;
  margin-bottom: 20px;
  background: var(--teal-wash);
  border: 1px solid rgba(31, 168, 148, .34);
  border-left: 3px solid var(--teal-bright);
  border-radius: 10px;
  font-size: .93rem;
  color: var(--teal);
}
.form-ok.on { display: block; }

.form-note {
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: .69rem;
  line-height: 1.6;
  letter-spacing: .04em;
  color: var(--muted);
}


/* 23 — Prose, notice, 404 ================================================= */

.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 {
  font-size: 1.45rem;
  letter-spacing: -.028em;
  margin: 44px 0 14px;
}
.prose h2:first-of-type { margin-top: 28px; }
.prose h3 {
  font-size: 1.03rem;
  margin: 26px 0 8px;
  color: var(--text);
}
.prose p,
.prose li {
  font-size: .98rem;
  line-height: 1.72;
  color: var(--text-2);
}
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.updated {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.notice {
  padding: 17px 19px;
  background: var(--teal-wash);
  border: 1px solid rgba(31, 168, 148, .3);
  border-left: 3px solid var(--teal-bright);
  border-radius: 10px;
  font-size: .92rem;
  line-height: 1.62;
  color: var(--teal);
}
.notice b { font-weight: 600; }

.nf {
  display: grid;
  place-content: center;
  text-align: center;
  min-height: 62vh;
  padding-block: clamp(60px, 8vw, 110px);
}
.nf .wrap { display: grid; justify-items: center; }
.nf-code {
  font-family: var(--mono);
  font-size: clamp(3.6rem, 12vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--teal-wash);
  margin-bottom: 12px;
}
.nf h1 { margin-bottom: 18px; }
.nf .lede { margin-inline: auto; }
.nf .hero-actions { justify-content: center; }


/* 24 — Reveal and stagger ================================================= */

/* Content is visible by default so the site still reads with JavaScript
   disabled or missing. site.js adds `js` to <html>, which opts in to the
   reveal animation, then adds `on` to each element as it scrolls in. */
.rv { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  html.js .rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  html.js .rv.on { opacity: 1; transform: none; }

  html.js .stg > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  html.js .stg.on > * { opacity: 1; transform: none; }
  html.js .stg.on > *:nth-child(1) { transition-delay: .04s; }
  html.js .stg.on > *:nth-child(2) { transition-delay: .10s; }
  html.js .stg.on > *:nth-child(3) { transition-delay: .16s; }
  html.js .stg.on > *:nth-child(4) { transition-delay: .22s; }
  html.js .stg.on > *:nth-child(5) { transition-delay: .28s; }
  html.js .stg.on > *:nth-child(6) { transition-delay: .34s; }
  html.js .stg.on > *:nth-child(7) { transition-delay: .40s; }
  html.js .stg.on > *:nth-child(8) { transition-delay: .46s; }

  /* Ken Burns on the active hero image */
  .slide-img.on img { animation: kb 15s var(--ease) both; }
  @keyframes kb {
    from { transform: scale(1.005); }
    to   { transform: scale(1.085); }
  }

  /* Marquee */
  .marq-track { animation: marq 42s linear infinite; }
  .marq:hover .marq-track { animation-play-state: paused; }
  @keyframes marq {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Slide progress bar fills across the active dot */
  .dot.on i { width: 0; animation: dotfill 6.4s linear forwards; }
  .hero:hover .dot.on i { animation-play-state: paused; }
  @keyframes dotfill {
    from { width: 0; }
    to   { width: 100%; }
  }
}


/* 25 — Responsive ========================================================= */

@media (max-width: 1080px) {
  .svcs { grid-template-columns: repeat(2, 1fr); }
  .svcs.three { grid-template-columns: repeat(2, 1fr); }
  .inds { grid-template-columns: repeat(2, 1fr); }
  .proc { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .sec .wrap > .vals:not(.stg) { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --gut: 20px; }

  .topbar-l { display: none; }
  .topbar .wrap { justify-content: center; }

  .nav-toggle { display: inline-flex; }
  .nav-cta > .btn { display: none; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px var(--gut) 22px;
    background: var(--sand);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-2);
  }
  .nav:has(#navtoggle[aria-expanded="true"]) .nav-links,
  .nav-links.on,
  .nav-links.open { display: flex; }

  .nav-links > a:not(.btn) {
    padding: 14px 2px;
    border-bottom: 1px solid var(--border-soft);
    font-size: 1rem;
  }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links > .btn { display: inline-flex; margin-top: 18px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .slide-img { aspect-ratio: 16 / 10; }
  .float-card { right: 12px; bottom: -22px; width: 172px; }

  .split,
  .split.even { grid-template-columns: 1fr; }
  .split.flip > *:first-child { order: 0; }

  .srow { grid-template-columns: 1fr; }
  .ct { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .coms { grid-template-columns: 1fr !important; }
  .srow-grid { grid-template-columns: 1fr; }
  .mock-body { grid-template-columns: 1fr; }
  .sec .wrap > .vals:not(.stg) { grid-template-columns: 1fr; }

  .role { flex-direction: column; align-items: flex-start; gap: 18px; }

  .cta .wrap { flex-direction: column; align-items: flex-start; }

  .hero-ctrl { flex-wrap: wrap; gap: 14px; }
  .arrows { margin-left: auto; }
}

@media (max-width: 560px) {
  .svcs,
  .svcs.three,
  .inds,
  .proc,
  .stats { grid-template-columns: 1fr; }

  .ind { aspect-ratio: 4 / 3; }
  .f-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .f-row .field { margin-bottom: 16px; }

  .float-card { position: static; width: auto; margin-top: 14px; box-shadow: var(--sh-2); }
  .hero-media { display: block; }
  .hero-media .slide-img { grid-area: auto; }
  .hero-media .slide-img:not(.on) { position: absolute; inset: 0; }

  .foot-bot { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 380px) {
  :root { --gut: 16px; }
  .btn { padding: 12px 17px; font-size: .89rem; }
  .hero-actions { gap: 9px; }
  .hero-actions .btn { width: 100%; }
  .logo-tx { font-size: 1.3rem; }
  .logo svg { width: 34px; height: 38px; }
  .topbar-r { gap: 14px; font-size: .69rem; }
  .stat { padding: 24px 20px; }
  .svc { padding: 24px 20px; }
}


/* 26 — Reduced motion ===================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .rv, .stg > *, html.js .rv, html.js .stg > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .marq-track { animation: none; }
  .slide-img.on img { animation: none; }
  .dot.on i { width: 100%; animation: none; }
  .ind:hover img,
  a.svc:hover,
  a.svc:hover .svc-ico,
  .com:hover,
  .btn:hover { transform: none; }
}
