/* ==========================================================================
   Navan Digital Solutions - prototype stylesheet  v2
   Palette: navy #071A2B / electric blue #146EF5 / cyan #23B5E8 / green #0F7B50
   Type: Manrope (headings) / Inter (body)
   ========================================================================== */

:root {
  --navy:        #071A2B;
  --navy-800:    #0A2337;
  --navy-700:    #0E2E47;
  --navy-600:    #16394F;
  --blue:        #146EF5;
  --blue-600:    #0F58CC;
  --blue-400:    #4F92FF;
  --blue-tint:   #EAF1FE;
  --blue-tint-2: #DCE9FE;
  --cyan:        #23B5E8;
  --cyan-600:    #0E90C2;
  --cyan-tint:   #E7F6FC;
  --green:       #0F7B50;
  --green-600:   #0B6440;
  --green-tint:  #E8F4EE;

  --ink:         #08141F;
  --ink-soft:    #24384A;
  --body:        #4A5A69;
  --muted:       #6B7C8C;
  --line:        #E2EAF2;
  --line-soft:   #EEF3F8;
  --surface:     #F4F8FC;
  --surface-2:   #ECF2F9;
  --white:       #FFFFFF;

  --amber:       #B4761A;
  --amber-tint:  #FDF6E9;

  --grad-blue:   linear-gradient(135deg, #2F86FF 0%, #146EF5 45%, #0B4FBF 100%);
  --grad-cyan:   linear-gradient(135deg, #3ECAF5 0%, #23B5E8 50%, #0E90C2 100%);
  --grad-green:  linear-gradient(135deg, #17A26A 0%, #0F7B50 100%);
  --grad-dark:   linear-gradient(165deg, #061726 0%, #0A2740 55%, #06202F 100%);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 30px;

  --shadow-xs: 0 1px 2px rgba(7, 26, 43, .05);
  --shadow-sm: 0 2px 8px rgba(7, 26, 43, .06);
  --shadow:    0 8px 30px rgba(7, 26, 43, .08);
  --shadow-lg: 0 26px 70px rgba(7, 26, 43, .16);
  --shadow-blue: 0 10px 30px rgba(20, 110, 245, .28);

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 44px);
  --header-h: 78px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Manrope", var(--sans);

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

/* --------------------------------------------------------- reset / base */

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-600); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -0.024em;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 1.35rem + 3.6vw, 4.15rem); letter-spacing: -0.036em; font-weight: 800; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.1vw, 2.85rem); letter-spacing: -0.032em; font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.04rem + .4vw, 1.38rem); }
h4 { font-size: 1.02rem; }

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

ul { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

strong { color: var(--ink); font-weight: 600; }

::selection { background: var(--blue); color: #fff; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* --------------------------------------------------------- layout utils */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 880px; }

.section { padding-block: clamp(66px, 8.5vw, 120px); position: relative; }
.section--tight { padding-block: clamp(50px, 6vw, 84px); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--grad-dark); color: #AFC4D6; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

/* soft transition between a light section and the dark one below it */
.fade-to-dark { height: 90px; background: linear-gradient(180deg, var(--surface), #061726); }
.fade-to-light { height: 90px; background: linear-gradient(180deg, #061726, var(--white)); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------- section heads */

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-cyan); border-radius: 2px; }
.eyebrow--green { color: var(--green); }
.eyebrow--green::before { background: var(--grad-green); }
.eyebrow--light { color: #5FCBF0; }
.eyebrow--light::before { background: var(--grad-cyan); }

.section-head { max-width: 760px; margin-bottom: clamp(38px, 4.5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head p { font-size: clamp(1.02rem, .98rem + .2vw, 1.13rem); color: var(--body); }
.section--dark .section-head p { color: #9FB6CA; }

/* --------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-size: .96rem; font-weight: 700; letter-spacing: -.012em;
  padding: 15px 28px; border-radius: 12px; border: 1.5px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: background .2s var(--ease), border-color .2s var(--ease),
              color .2s var(--ease), transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
  white-space: nowrap; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease-out);
}
.btn--primary:hover { color: #fff; box-shadow: 0 16px 40px rgba(20,110,245,.36); }
.btn--primary:hover::after { transform: translateX(120%); }

.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--blue-400); color: var(--blue); box-shadow: var(--shadow-sm); }

.btn--ghost-light { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.24); backdrop-filter: blur(8px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); color: #fff; }

.btn--green { background: var(--grad-green); color: #fff; box-shadow: 0 10px 26px rgba(15,123,80,.26); }
.btn--green:hover { color: #fff; box-shadow: 0 16px 34px rgba(15,123,80,.32); }

.btn--sm { padding: 11px 20px; font-size: .885rem; border-radius: 10px; }
.btn--lg { padding: 18px 34px; font-size: 1.03rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: .92rem; color: var(--blue);
}
.tlink svg { width: 15px; height: 15px; transition: transform .22s var(--ease-out); }
.tlink:hover svg { transform: translateX(4px); }
.tlink--green { color: var(--green); }
.tlink--green:hover { color: var(--green-600); }

/* --------------------------------------------------------- header (overlay) */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 26px; min-height: var(--header-h); }

/* --- solid state after scroll */
.site-header.is-stuck {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 4px 24px rgba(7,26,43,.06);
}

.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: var(--grad-blue);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(20,110,245,.34);
  position: relative; overflow: hidden;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.32), transparent 55%);
}
.brand__mark span {
  font-family: var(--display); font-weight: 800; color: #fff; font-size: 1.1rem;
  letter-spacing: -.04em; position: relative; z-index: 1;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--display); font-weight: 800; font-size: 1.14rem;
  color: #fff; letter-spacing: -.032em; transition: color .3s var(--ease);
}
.brand__sub {
  font-size: .645rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600; transition: color .3s var(--ease);
}
.is-stuck .brand__name { color: var(--navy); }
.is-stuck .brand__sub { color: var(--muted); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--display); font-weight: 600; font-size: .93rem;
  color: rgba(255,255,255,.82); padding: 10px 15px; border-radius: 9px;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.12); }
.is-stuck .nav a { color: var(--navy); }
.is-stuck .nav a:hover { background: var(--surface); color: var(--blue); }
.is-stuck .nav a[aria-current="page"] { color: var(--blue); background: var(--blue-tint); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--display); font-weight: 700; font-size: .9rem; color: #fff;
  display: inline-flex; align-items: center; gap: 8px; transition: color .3s var(--ease);
}
.header-phone svg { width: 15px; height: 15px; color: var(--cyan); }
.is-stuck .header-phone { color: var(--navy); }
.is-stuck .header-phone svg { color: var(--blue); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08); border-radius: 11px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.is-stuck .nav-toggle { border-color: var(--line); background: #fff; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; position: relative; transition: background .18s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .22s var(--ease), background .18s var(--ease);
}
.is-stuck .nav-toggle span, .is-stuck .nav-toggle span::before, .is-stuck .nav-toggle span::after { background: var(--navy); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent !important; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .nav {
    position: absolute; inset: 100% 0 auto; display: none;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(8,28,45,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 14px var(--gutter) 22px;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a, .is-stuck .nav a { padding: 14px 12px; font-size: 1.02rem; color: rgba(255,255,255,.88); }
  .nav a:hover, .is-stuck .nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .is-stuck .nav a[aria-current="page"] { background: rgba(255,255,255,.12); color: #fff; }
  .header-cta .btn { display: none; }
}

/* --------------------------------------------------------- hero */

.hero {
  position: relative;
  background: var(--navy);
  color: #B4C9DA;
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(64px, 8vw, 112px);
  isolation: isolate;
}

/* layered atmosphere */
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(1100px 700px at 55% 22%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(1100px 700px at 55% 22%, #000 0%, transparent 72%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,26,43,.55) 0%, transparent 24%, transparent 70%, rgba(7,26,43,.9) 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.orb--1 { width: 620px; height: 620px; top: -190px; right: -140px; background: radial-gradient(circle, #1F7BFF, transparent 68%); }
.orb--2 { width: 520px; height: 520px; bottom: -220px; left: -160px; background: radial-gradient(circle, #23B5E8, transparent 66%); opacity: .38; }
.orb--3 { width: 380px; height: 380px; top: 42%; left: 46%; background: radial-gradient(circle, #0B4FBF, transparent 70%); opacity: .4; }

.hero > .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; max-width: 15ch; margin-bottom: .42em; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #6FD6F7 0%, #4F92FF 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  font-size: clamp(1.06rem, .98rem + .45vw, 1.28rem);
  color: #A9C0D4; max-width: 56ch; margin-bottom: 34px; line-height: 1.62;
}
.hero .btn-row { margin-bottom: 44px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  color: #9FD8F2; font-family: var(--display); font-weight: 600; font-size: .82rem;
  padding: 8px 8px 8px 16px; border-radius: 999px; margin-bottom: 28px;
}
.hero-badge b { color: #fff; font-weight: 700; }
.hero-badge__chip {
  background: var(--grad-cyan); color: #062634; font-weight: 800; font-size: .72rem;
  letter-spacing: .05em; padding: 4px 11px; border-radius: 999px;
}

/* stat strip */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 0;
  border-top: 1px solid rgba(255,255,255,.13);
  padding-top: 30px;
}
.hero-stats > div { padding-right: 22px; position: relative; }
.hero-stats > div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.11); }
.hero-stats dt {
  font-family: var(--display); font-weight: 800; color: #fff;
  font-size: 1.42rem; letter-spacing: -.035em; margin-bottom: 5px; line-height: 1;
}
.hero-stats dd { margin: 0; font-size: .8rem; color: #8AA5BC; line-height: 1.45; }
@media (max-width: 820px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-stats > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .hero-stats > div:nth-child(3) { padding-top: 4px; }
  .hero-stats > div:nth-child(4) { padding-top: 4px; }
}

/* hero glass panel */
.hero-panel {
  background: linear-gradient(160deg, rgba(255,255,255,.11) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);
  position: relative;
}
.hero-panel::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(255,255,255,.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-panel__title {
  font-family: var(--display); font-weight: 700; color: #fff; font-size: .98rem;
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-panel__title svg { width: 18px; height: 18px; color: var(--cyan); }
.hero-panel ul { list-style: none; margin: 0; padding: 0; }
.hero-panel li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .93rem; color: #C0D3E2; margin: 0;
}
.hero-panel li:last-child { border-bottom: 0; padding-bottom: 4px; }
.hero-panel li svg { width: 17px; height: 17px; color: var(--cyan); flex: none; margin-top: 3px; }

/* trust strip below hero */
.trust-strip {
  border-top: 1px solid rgba(255,255,255,.1);
  background: #05131F;
  padding-block: 20px;
  position: relative; z-index: 1;
}
.trust-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 30px;
}
.trust-strip span {
  font-family: var(--display); font-size: .82rem; font-weight: 600;
  color: #7E9AB2; display: inline-flex; align-items: center; gap: 9px;
}
.trust-strip span svg { width: 15px; height: 15px; color: var(--cyan); opacity: .85; }

/* compact inner-page hero */
.pagehero { padding-bottom: clamp(52px, 6vw, 84px); }
.pagehero h1 { max-width: 19ch; }
.pagehero .hero__lede { margin-bottom: 30px; }
.crumbs { font-size: .84rem; color: #7E9AB2; margin-bottom: 22px; }
.crumbs a { color: #7E9AB2; }
.crumbs a:hover { color: var(--cyan); }
.crumbs span { margin-inline: 9px; opacity: .5; }

/* --------------------------------------------------------- grids / cards */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px)  { .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* bento layout for the supply categories */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento > * { grid-column: span 2; }
.bento > .bento--wide { grid-column: span 3; }
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento > *, .bento > .bento--wide { grid-column: span 1; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-blue); opacity: 0;
  transition: opacity .25s var(--ease);
}
.card:hover { border-color: #C6DBF6; box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: .42em; }
.card p { font-size: .95rem; color: var(--body); }
.card .tlink { margin-top: auto; padding-top: 18px; }

.card--wide { padding: 32px 30px; background: linear-gradient(170deg, #FBFDFF, #fff 55%); }
.card--wide h3 { font-size: clamp(1.28rem, 1.1rem + .6vw, 1.55rem); }
.card--wide p { font-size: 1rem; }

.card--green::before { background: var(--grad-green); }
.card--green:hover { border-color: #B4DCC7; }
.card--flat { border-color: var(--line-soft); }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }

.card__icon {
  width: 52px; height: 52px; border-radius: 15px; flex: none;
  background: var(--grad-blue); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(20,110,245,.26);
  position: relative; overflow: hidden;
}
.card__icon::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.3), transparent 58%);
}
.card__icon svg { width: 23px; height: 23px; position: relative; z-index: 1; }
.card__icon--cyan  { background: var(--grad-cyan);  box-shadow: 0 8px 20px rgba(35,181,232,.28); }
.card__icon--green { background: var(--grad-green); box-shadow: 0 8px 20px rgba(15,123,80,.24); }
.card__icon--soft  { background: var(--blue-tint); color: var(--blue); box-shadow: none; }
.card__icon--soft::after { display: none; }

/* numbered process steps */
.steps { counter-reset: step; }
.step {
  position: relative; padding: 30px 24px 26px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.step:hover { border-color: #C6DBF6; box-shadow: var(--shadow); transform: translateY(-4px); }
.step__num {
  counter-increment: step;
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue);
  font-family: var(--display); font-weight: 800; font-size: 1rem; letter-spacing: -.02em;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: .38em; }
.step p { font-size: .93rem; }

/* --------------------------------------------------------- split panels */

.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.split-panel {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid var(--line);
  background: linear-gradient(175deg, #FBFDFF, #fff 50%);
  position: relative; overflow: hidden;
  transition: box-shadow .25s var(--ease-out), border-color .25s var(--ease);
}
.split-panel:hover { box-shadow: var(--shadow); border-color: #CFE0F5; }
.split-panel::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--grad-cyan); }
.split-panel--new::before { background: var(--grad-blue); }
.split-panel__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: .76rem;
  letter-spacing: .11em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: var(--cyan-tint); color: var(--cyan-600); margin-bottom: 20px;
}
.split-panel--new .split-panel__tag { background: var(--blue-tint); color: var(--blue-600); }
.split-panel h3 { font-size: clamp(1.28rem, 1.1rem + .6vw, 1.55rem); }

.warranty-line {
  display: flex; align-items: baseline; gap: 14px;
  padding: 20px 0 0; border-top: 1px solid var(--line); margin-top: 24px;
}
.warranty-line b {
  font-family: var(--display); font-size: 2.35rem; font-weight: 800;
  letter-spacing: -.045em; line-height: 1; flex: none;
  background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.split-panel:not(.split-panel--new) .warranty-line b { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.warranty-line span { font-size: .89rem; color: var(--muted); }

.checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; padding: 8px 0; margin: 0; }
.checklist li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%;
  background-color: var(--blue-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23146EF5' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.checklist--green li::before {
  background-color: var(--green-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F7B50' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.checklist--light li { color: #B3C8D9; }
.checklist--light li::before {
  background-color: rgba(35,181,232,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2323B5E8' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------- feature rows */

.feature {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px); align-items: center;
}
.feature--top { align-items: start; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } }

.tier {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; padding: 26px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease-out);
}
.tier:hover { border-color: #C6DBF6; box-shadow: var(--shadow-sm); }
.tier + .tier { margin-top: 16px; }
.tier__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tier__head h4 { margin: 0; font-family: var(--display); font-size: 1.06rem; color: var(--ink); font-weight: 700; }
.tier__pill {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-left: auto;
  background: var(--blue-tint); color: var(--blue-600); font-family: var(--display);
}
.tier--sme .tier__pill { background: var(--cyan-tint); color: var(--cyan-600); }

.brandlist { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.brandlist li {
  margin: 0; font-family: var(--display); font-weight: 600; font-size: .855rem; color: var(--navy);
  border: 1px solid var(--line); border-radius: 10px; padding: 9px 15px;
  background: linear-gradient(180deg, #fff, var(--surface));
  transition: border-color .2s var(--ease), transform .2s var(--ease-out);
}
.brandlist li:hover { border-color: var(--blue-400); transform: translateY(-1px); }

/* --------------------------------------------------------- WEEE band */

.weee {
  background: linear-gradient(150deg, #F0F8F3 0%, #E6F3EC 100%);
  border: 1px solid #C9E4D6;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 54px);
  display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: clamp(28px, 4vw, 58px); align-items: center;
  position: relative; overflow: hidden;
}
.weee::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  top: -160px; right: -120px; background: radial-gradient(circle, rgba(15,123,80,.09), transparent 68%);
}
.weee > * { position: relative; z-index: 1; }
@media (max-width: 900px) { .weee { grid-template-columns: 1fr; } }
.weee h2, .weee h3 { color: #07301F; }

/* --------------------------------------------------------- CTA band */

.ctaband {
  background: var(--grad-dark);
  border-radius: var(--radius-xl);
  padding: clamp(34px, 4.5vw, 62px);
  position: relative; overflow: hidden; color: #AFC4D6;
  border: 1px solid rgba(255,255,255,.08);
}
.ctaband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 420px at 88% 6%, rgba(20,110,245,.4), transparent 62%),
              radial-gradient(560px 340px at 2% 98%, rgba(35,181,232,.24), transparent 60%);
}
.ctaband::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(600px 400px at 70% 40%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(600px 400px at 70% 40%, #000, transparent 75%);
}
.ctaband > * { position: relative; z-index: 1; }
.ctaband h2 { color: #fff; max-width: 19ch; }
.ctaband p { color: #9FB6CA; max-width: 54ch; }

/* --------------------------------------------------------- DGX feature */

.dgx {
  background: var(--grad-dark);
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 940px) { .dgx { grid-template-columns: 1fr; } }
.dgx__body { padding: clamp(32px, 4vw, 56px); color: #AEC3D5; }
.dgx__body h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); }
.dgx__media {
  position: relative; min-height: 320px;
  background:
    radial-gradient(500px 340px at 55% 45%, rgba(35,181,232,.34), transparent 68%),
    linear-gradient(150deg, rgba(20,110,245,.24), rgba(7,26,43,.55));
  border-left: 1px solid rgba(255,255,255,.09);
  display: grid; place-items: center; padding: 34px;
}
@media (max-width: 940px) { .dgx__media { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); } }

.spec-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); overflow: hidden; margin: 26px 0 28px;
}
.spec-grid > div { background: rgba(7,26,43,.55); padding: 17px 19px; }
.spec-grid dt { font-size: .69rem; letter-spacing: .13em; text-transform: uppercase; color: #7A96AE; font-weight: 700; margin-bottom: 6px; }
.spec-grid dd { margin: 0; font-family: var(--display); font-weight: 700; color: #fff; font-size: .95rem; }

/* --------------------------------------------------------- product rows */

.plist { border-top: 1px solid var(--line); }
.plist__row {
  display: grid; grid-template-columns: minmax(0, 270px) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 46px); align-items: start;
  padding: 30px 0; border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.plist__row:hover { background: linear-gradient(90deg, var(--surface), transparent 70%); }
@media (max-width: 860px) { .plist__row { grid-template-columns: 1fr; gap: 14px; } }
.plist__row h3 { margin-bottom: .3em; }
.plist__row > p { font-size: .92rem; color: var(--muted); margin: 0; }
.taglist { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.taglist li {
  margin: 0; font-size: .875rem; color: var(--body);
  background: #fff; border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 9px;
}

/* --------------------------------------------------------- forms */

.form-shell {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow-lg);
}
.section--dark .form-shell { box-shadow: 0 40px 100px rgba(0,0,0,.45); border-color: rgba(255,255,255,.14); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; align-items: start; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field > label {
  font-family: var(--display); font-size: .85rem; font-weight: 700; color: var(--ink);
  line-height: 1.3; min-height: 1.3em;
}
.field .req { color: var(--blue); }
.field .hint { font-size: .78rem; color: var(--muted); margin: 0; }

.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  height: 50px; padding: 0 15px;
  border: 1.5px solid var(--line); border-radius: 11px;
  background: #fff; width: 100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field textarea { height: auto; min-height: 122px; padding: 14px 15px; resize: vertical; line-height: 1.6; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #C0D5EC; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,110,245,.13);
}
.field input::placeholder, .field textarea::placeholder { color: #9CACBB; }
.field input[type="date"] { padding-right: 12px; }

.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #D9455C; box-shadow: 0 0 0 4px rgba(217,69,92,.1); }
.field .err { display: none; font-size: .78rem; color: #C43A50; font-weight: 500; margin: 0; }
.field.has-error .err { display: block; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7C8C' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px; cursor: pointer;
}

/* segmented option cards */
.optcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .optcards { grid-template-columns: 1fr; } }
.optcard {
  position: relative; display: flex; flex-direction: column; gap: 3px;
  border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
  cursor: pointer; background: #fff;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.optcard:hover { border-color: #C0D5EC; }
.optcard input { position: absolute; opacity: 0; width: 0; height: 0; }
.optcard b { font-family: var(--display); font-size: .9rem; font-weight: 700; color: var(--ink); }
.optcard small { font-size: .77rem; color: var(--muted); line-height: 1.4; }
.optcard:has(input:checked) {
  border-color: var(--blue); background: var(--blue-tint);
  box-shadow: 0 0 0 4px rgba(20,110,245,.1);
}
.optcard:has(input:focus-visible) { outline: 3px solid var(--cyan); outline-offset: 2px; }

.dropzone {
  display: block; border: 1.5px dashed #BFD4EB; border-radius: 13px;
  padding: 26px; text-align: center; background: var(--surface);
  cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease);
  position: relative;
}
.dropzone:hover { border-color: var(--blue); background: var(--blue-tint); }
.dropzone svg { width: 26px; height: 26px; color: var(--blue); margin: 0 auto 12px; }
.dropzone b { display: block; font-family: var(--display); color: var(--ink); font-size: .94rem; margin-bottom: 4px; }
.dropzone small { font-size: .79rem; color: var(--muted); }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }

.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .85rem; color: var(--muted); line-height: 1.55;
  font-family: var(--sans); font-weight: 400; cursor: pointer;
}
.form-consent input { accent-color: var(--blue); margin-top: 3px; flex: none; width: 17px; height: 17px; }

/* ---- multi-step wizard ---- */

.wizard { position: relative; }

.stepper {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-bottom: 28px; position: relative;
}
.stepper__item {
  display: flex; align-items: center; gap: 11px;
  padding-bottom: 16px; position: relative;
  border-bottom: 3px solid var(--line);
  transition: border-color .3s var(--ease);
}
.stepper__item + .stepper__item { padding-left: 16px; }
.stepper__num {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--muted);
  font-family: var(--display); font-weight: 800; font-size: .82rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.stepper__label { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.stepper__label b {
  font-family: var(--display); font-size: .875rem; font-weight: 700; color: var(--muted);
  transition: color .3s var(--ease); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.stepper__label small { font-size: .74rem; color: #9AABBA; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.stepper__item.is-active { border-bottom-color: var(--blue); }
.stepper__item.is-active .stepper__num { background: var(--grad-blue); color: #fff; box-shadow: 0 4px 12px rgba(20,110,245,.3); }
.stepper__item.is-active .stepper__label b { color: var(--ink); }

.stepper__item.is-done { border-bottom-color: var(--cyan); cursor: pointer; }
.stepper__item.is-done .stepper__num { background: var(--cyan-tint); color: var(--cyan-600); }
.stepper__item.is-done .stepper__num::after {
  content: ""; width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E90C2' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.stepper__item.is-done .stepper__num span { display: none; }
.stepper__item.is-done .stepper__label b { color: var(--ink-soft); }

@media (max-width: 620px) {
  .stepper__label small { display: none; }
  .stepper__label b { font-size: .8rem; }
  .stepper__item + .stepper__item { padding-left: 10px; }
  .stepper__num { width: 26px; height: 26px; font-size: .76rem; }
}

.fstep { display: none; animation: stepIn .38s var(--ease-out) both; }
.fstep.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.fstep__head { margin-bottom: 22px; }
.fstep__head h3 { font-size: 1.22rem; margin-bottom: .3em; }
.fstep__head p { font-size: .92rem; color: var(--muted); margin: 0; }

.form-foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
}
.form-foot .spacer { margin-left: auto; }
.form-foot small { font-size: .8rem; color: var(--muted); flex-basis: 100%; }

.review-list { list-style: none; padding: 0; margin: 0; }
.review-list li {
  display: flex; gap: 14px; justify-content: space-between; align-items: baseline;
  padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .9rem; margin: 0;
}
.review-list li:last-child { border-bottom: 0; }
.review-list dt, .review-list .rk { color: var(--muted); flex: none; }
.review-list .rv { color: var(--ink); font-weight: 600; text-align: right; word-break: break-word; }
.review-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 22px;
}
.review-box h4 {
  font-family: var(--display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}

/* --------------------------------------------------------- contact / locations */

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); align-items: flex-start; margin: 0; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.contact-list .ico svg { width: 18px; height: 18px; }
.contact-list .ct-label {
  font-family: var(--display); font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 0 0 4px;
}
.contact-list .ct-value { margin: 0; font-size: .99rem; color: var(--ink); }
.contact-list .ct-value a { color: var(--ink); font-weight: 500; }
.contact-list .ct-value a:hover { color: var(--blue); }

.loc-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; background: #fff; display: flex; flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.loc-card:hover { border-color: #C6DBF6; box-shadow: var(--shadow); transform: translateY(-3px); }
.loc-card__flag {
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  font-family: var(--display); font-weight: 800; color: var(--cyan-600); margin-bottom: 12px;
}
.loc-card h3 { font-size: 1.14rem; margin-bottom: .38em; }
.loc-card address { font-style: normal; font-size: .93rem; color: var(--body); line-height: 1.62; }
.loc-card--hq { border-color: #BFD7F7; background: linear-gradient(170deg, var(--blue-tint), #fff 58%); }

.map-embed {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface); min-height: 250px;
  display: grid; place-items: center; text-align: center; padding: 32px;
}

/* --------------------------------------------------------- TBC markers */

.tbc {
  background: var(--amber-tint); border-bottom: 1.5px dashed #E0B872;
  color: var(--amber); font-style: normal; padding: 1px 6px; border-radius: 4px;
}
.tbc-note {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--amber-tint); border: 1px solid #EFDCB8;
  border-radius: var(--radius); padding: 17px 19px;
  font-size: .87rem; color: #7A5311; line-height: 1.55;
}
.tbc-note svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }
.tbc-note b { color: #5E3F0C; }
body.hide-tbc .tbc-note { display: none; }
body.hide-tbc .tbc { background: transparent; border-bottom: 0; color: inherit; padding: 0; }

.proto-flag {
  position: fixed; right: 16px; bottom: 16px; z-index: 120;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy); color: #fff; border: 1px solid rgba(255,255,255,.16);
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  padding: 10px 16px; border-radius: 999px; cursor: pointer; box-shadow: var(--shadow-lg);
}
.proto-flag:hover { background: var(--navy-700); }
.proto-flag i { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); display: block; }
body.hide-tbc .proto-flag i { background: #3E8F63; }
@media print { .proto-flag { display: none; } }
@media (max-width: 640px) { .proto-flag { bottom: 76px; font-size: .72rem; padding: 8px 13px; } }

/* --------------------------------------------------------- mobile sticky CTA */

.mobile-cta {
  display: none; position: fixed; inset: auto 0 0; z-index: 110;
  background: rgba(255,255,255,.94); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line); padding: 10px var(--gutter);
  gap: 10px;
}
.mobile-cta .btn { flex: 1; }
@media (max-width: 1000px) { .mobile-cta { display: flex; } body { padding-bottom: 72px; } }

/* --------------------------------------------------------- footer */

.site-footer { background: var(--grad-dark); color: #8CA5BB; padding-block: clamp(54px, 6.5vw, 84px) 0; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; width: 700px; height: 400px; top: -180px; left: 50%;
  transform: translateX(-50%); background: radial-gradient(ellipse, rgba(20,110,245,.16), transparent 70%);
}
.site-footer > .wrap { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 56px); padding-bottom: 48px;
}
@media (max-width: 940px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { color: #6E869C; }
.site-footer p { font-size: .9rem; color: #8CA5BB; max-width: 40ch; }
.site-footer h4 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 800; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #8CA5BB; font-size: .92rem; transition: color .18s var(--ease); }
.footer-links a:hover { color: var(--cyan); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: .84rem; color: #6B8299;
}
.footer-bar a { color: #6B8299; }
.footer-bar a:hover { color: var(--cyan); }
.footer-bar nav { display: flex; flex-wrap: wrap; gap: 22px; }

/* --------------------------------------------------------- motion */

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
