:root {
  --teal:        #48acaf;
  --teal-deep:   #34878a;
  --teal-dark:   #256467;
  --teal-glow:   rgba(72,172,175,.42);
  --mist:        #dfecee;
  --mist-soft:   #eff6f7;
  --slate:       #314257;
  --slate-deep:  #22303f;
  --ink:         #16212c;

  --paper:       #ffffff;
  --wash:        #f6fafb;
  --line:        #dce6e9;
  --line-soft:   #e9f1f2;

  --text:        #23323f;
  --text-soft:   #5b6b78;
  --text-faint:  #8b9aa5;
  --on-dark:     #eaf3f4;
  --on-dark-soft:#a8bdc4;

  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-md: 24px;
  --r-lg: 32px;
  --r-xl: 44px;
  --r-pill: 999px;

  --sh-sm: 0 2px 8px rgba(49,66,87,.06);
  --sh:    0 10px 30px -12px rgba(49,66,87,.18);
  --sh-lg: 0 28px 60px -28px rgba(49,66,87,.32);

  --gap: 24px;
  --section: 104px;
  --maxw: 1240px;
  --header-h: 92px;

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

html, body { overflow-x: clip; }

@supports not (overflow-x: clip) {
  body > .section, body > footer { overflow-x: hidden; }
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;

}
body.is-locked { overflow: hidden; }

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

.card__media img, .fam__media img, .tile img,
.gallery__main img, .gallery__thumb img, .qline__img img, .dline__img img,
.seg-slide__img img, .seghead__bg img, .fill-frame img {
  width: 100%;
  height: 100%;
}

a { color: var(--teal-deep); text-decoration: none; }
a:hover { color: var(--teal-dark); }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute; left: 16px; top: -70px; z-index: 999;
  background: var(--slate); color: #fff;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--slate);
}
h1 { font-size: clamp(2.15rem, 1.35rem + 3.3vw, 4rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.6rem); letter-spacing: -.015em; }
h4 { font-size: 1.08rem; letter-spacing: -.008em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--slate); }

.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 18px;
}
.eyebrow--light { color: var(--teal); }

.lede {
  font-size: clamp(1.02rem, .96rem + .34vw, 1.22rem);
  line-height: 1.62; color: var(--text-soft); font-weight: 400;
}
.measure { max-width: 62ch; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: 72px; }
.section--mist { background: var(--mist-soft); }
.section--wash { background: var(--wash); }
.section--dark { background: var(--slate); color: var(--on-dark-soft); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lede { color: var(--on-dark-soft); }

.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 76px); align-items: center;
}

.split--wide-left  { grid-template-columns: 1.3fr .7fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }
.checklist--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kpi-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border: 2px solid transparent; border-radius: var(--r-pill);
  font-size: .93rem; font-weight: 700; cursor: pointer;
  text-align: center; overflow: hidden;
  transition: transform .2s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease),
              box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 8px 22px -10px var(--teal-glow); }
.btn--primary:hover { background: var(--teal-deep); color: #fff; box-shadow: 0 16px 34px -12px var(--teal-glow); }
.btn--primary::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg); transition: left .55s var(--ease-out);
}
.btn--primary:hover::after { left: 130%; }

.btn--slate { background: var(--slate); color: #fff; }
.btn--slate:hover { background: var(--slate-deep); color: #fff; }
.btn--ghost { border-color: var(--line); background: var(--paper); color: var(--slate); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn--onDark { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.btn--onDark:hover { background: #fff; border-color: #fff; color: var(--slate); }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9rem; color: var(--teal-deep);
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  padding: 0;
  transition: padding .55s var(--ease-out);
}

.header .header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  min-height: var(--header-h);

  max-width: none; margin-inline: 0; width: 100%;
  padding-inline: clamp(20px, 3.4vw, 46px);
  border-radius: 0;
  border: 1px solid transparent;
  border-bottom-color: rgba(255,255,255,.28);

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.62),
    rgba(255,255,255,.46));
  backdrop-filter: blur(26px) saturate(190%);
  -webkit-backdrop-filter: blur(26px) saturate(190%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);

  transition:
    padding-inline .55s var(--ease-out),
    border-radius .55s var(--ease-out),
    min-height .55s var(--ease-out),
    background .55s var(--ease-out),
    border-color .55s var(--ease-out),
    box-shadow .55s var(--ease-out);
}

.header.is-stuck { padding: clamp(10px, 1vw, 15px) clamp(12px, 1.3vw, 22px); }
.header.is-stuck .header__inner {
  min-height: 74px;
  padding-inline: clamp(18px, 2.2vw, 34px);
  border-radius: var(--r-lg);
  border-color: rgba(255,255,255,.7);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.8),
    rgba(255,255,255,.66));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 2px 6px rgba(49,66,87,.05),
    0 18px 44px -22px rgba(49,66,87,.45);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 18px; border-radius: var(--r-pill);
  font-size: .88rem; font-weight: 600; color: var(--slate);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__link:hover { background: var(--mist); color: var(--slate-deep); }
.nav__link[aria-current="page"] { color: var(--teal-dark); background: var(--mist); }
.nav__link svg { transition: transform .22s var(--ease); }

.has-menu { position: relative; }
.has-menu::after {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 22px;
}
.menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 310px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 12px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 20;
}
.menu::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: 100%; height: 22px;
}
.has-menu:hover .menu,
.has-menu:focus-within .menu,
.has-menu.is-open .menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-menu:hover .nav__link svg,
.has-menu:focus-within .nav__link svg { transform: rotate(180deg); }

.menu__item {
  display: block; padding: 11px 15px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 600; color: var(--slate);
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.menu__item:hover { background: var(--mist-soft); color: var(--teal-dark); transform: translateX(3px); }
.menu__item span { display: block; font-size: .76rem; font-weight: 500; color: var(--text-faint); margin-top: 2px; }

.header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.quote-chip {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  border: 2px solid var(--mist); background: var(--mist-soft);
  border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 700; color: var(--slate);
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.quote-chip:hover { border-color: var(--teal); color: var(--teal-dark); }
.quote-chip__count {
  min-width: 22px; height: 22px; padding: 0 6px;
  display: inline-grid; place-items: center;
  background: var(--teal); color: #fff;
  border-radius: var(--r-pill); font-size: .74rem; font-weight: 800;
}
.quote-chip.is-empty .quote-chip__count { background: var(--text-faint); }
.quote-chip.is-bumped { animation: chipBump .45s var(--ease); }
@keyframes chipBump {
  0%,100% { transform: scale(1); }
  35%     { transform: scale(1.14); }
}

.icon-btn {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 2px solid var(--line-soft); background: var(--paper);
  border-radius: var(--r-pill); cursor: pointer; color: var(--slate);
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.icon-btn:hover { border-color: var(--teal); color: var(--teal-dark); }

.burger {
  display: none; width: 46px; height: 46px;
  border: 2px solid var(--line); background: var(--paper);
  border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 19px; height: 2px; background: var(--slate); border-radius: 2px; position: relative; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 19px; height: 2px;
  background: var(--slate); border-radius: 2px; transition: transform .22s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  max-width: var(--maxw);
  margin: 10px auto 0;
  padding: 16px 22px 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 46px -22px rgba(49,66,87,.45);
  max-height: calc(100vh - 120px); overflow-y: auto;
}
.mobile-nav.is-open { display: block; animation: fadeUp .3s var(--ease-out); }
.mobile-nav a {
  display: block; padding: 13px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600; color: var(--slate);
}
.mobile-nav .sub { padding-left: 18px; font-size: .88rem; font-weight: 500; color: var(--text-soft); }
.mobile-nav .btn { margin-top: 20px; }

.hero {
  position: relative;
  min-height: min(88vh, 840px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--mist-soft);
  color: var(--text);
  isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;

  object-position: center 34%;
}

.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:

    linear-gradient(to top,
      rgba(240,248,249,.97) 0%,
      rgba(240,248,249,.92) 18%,
      rgba(240,248,249,.66) 32%,
      rgba(240,248,249,.28) 46%,
      rgba(240,248,249,0)   60%),

    radial-gradient(ellipse 62% 46% at 22% 86%,
      rgba(240,248,249,.94) 0%,
      rgba(240,248,249,.78) 42%,
      rgba(240,248,249,.34) 68%,
      rgba(240,248,249,0)   88%);
}

.hero__grid {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  display: grid;
  -webkit-mask-image: linear-gradient(to top, transparent 4%, #000 30%, #000 84%, transparent 100%);
          mask-image: linear-gradient(to top, transparent 4%, #000 30%, #000 84%, transparent 100%);
}

.hero__grid:empty {
  background-image:
    linear-gradient(to right, rgba(49,66,87,.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(49,66,87,.09) 1px, transparent 1px);
  background-size: 74px 74px;
}

.grid-cell {
  border-right: 1px solid rgba(49,66,87,.13);
  border-bottom: 1px solid rgba(49,66,87,.13);
  background-color: transparent;
  transition: background-color .55s var(--ease), border-color .55s var(--ease);
}

.grid-cell.is-far {
  border-color: rgba(72,172,175,.34);
  background-color: rgba(16,78,80,.09);
  transition-duration: .6s;
}
.grid-cell.is-near {
  border-color: rgba(72,172,175,.62);
  background-color: rgba(16,78,80,.20);
  transition-duration: .35s;
}
.grid-cell.is-hot {
  border-color: rgba(72,172,175,.95);
  background-color: rgba(16,78,80,.40);
  transition-duration: .12s;
}

@media (prefers-reduced-motion: reduce) {
  .grid-cell { transition: none; }
}

.hero__inner {
  position: relative; z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 24px clamp(34px, 4vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
}

.hero__kicker {
  display: flex; align-items: center; gap: 13px;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;

  color: #17494c;
  margin-bottom: 16px;
}
.hero__kicker::before {
  content: ''; width: clamp(24px, 4vw, 46px); height: 2px;
  background: var(--teal); flex-shrink: 0;
}

.hero h1 {
  color: var(--slate);
  font-size: clamp(1.9rem, 1.15rem + 2.7vw, 3.05rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -.034em;
  margin-bottom: 16px;
}
.hero h1 .rule { display: inline-block; position: relative; padding-bottom: .18em; }
.hero h1 .rule::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: var(--teal); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  animation: ruleIn .9s var(--ease-out) .7s forwards;
}
@keyframes ruleIn { to { transform: scaleX(1); } }
.hero h1 .thin {
  display: block; margin-top: .38em;
  font-size: .4em; font-weight: 400; letter-spacing: -.01em;
  line-height: 1.35; color: var(--text-soft);
}

.hero__lede {
  font-size: clamp(.94rem, .9rem + .28vw, 1.04rem);
  color: var(--text); margin-bottom: 22px; max-width: 34rem; line-height: 1.62;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.finder {
  position: relative; z-index: 3;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--r-md);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 22px 50px -28px rgba(49,66,87,.45);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 18px;
  align-items: center;
}
.finder__label {
  font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal-deep);
  display: block; margin-bottom: 6px;
}
.finder__control { display: flex; align-items: center; gap: 8px; }
.finder__control input {
  width: 84px; padding: 9px 10px;
  background: #fff; border: 1.5px solid var(--line-soft);
  border-radius: var(--r-sm);
  font-size: .98rem; font-weight: 800; color: var(--slate);
  font-variant-numeric: tabular-nums; text-align: center;
}
.finder__control input:focus { outline: 3px solid var(--teal); outline-offset: 2px; }
.finder__unit { font-size: .78rem; font-weight: 600; color: var(--text-soft); }

.finder__out { min-width: 0; }
.finder__out span {
  display: block; font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: 4px;
}
.finder__out strong {
  display: block; font-size: .92rem; font-weight: 700; color: var(--slate);
  line-height: 1.4;
}
.finder__out strong em { font-style: normal; color: var(--teal-dark); font-variant-numeric: tabular-nums; }
.finder__out.is-fresh strong { animation: flashIn .5s var(--ease); }
@keyframes flashIn {
  0%   { color: var(--teal-dark); transform: translateY(3px); opacity: .4; }
  100% { color: var(--slate); transform: none; opacity: 1; }
}
.finder .btn { grid-column: 1 / -1; }

.plate { display: flex; flex-wrap: wrap; gap: 10px; }
.plate__cell {
  flex: 1 1 150px;
  background: var(--mist-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 16px 18px;
}
.plate__k {
  display: block; font-size: .64rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 5px;
}
.plate__v {
  display: block; font-size: 1.05rem; font-weight: 800; color: var(--slate);
  font-variant-numeric: tabular-nums; letter-spacing: -.01em; line-height: 1.25;
}
.plate--onDark .plate__cell {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.plate--onDark .plate__k { color: var(--teal); }
.plate--onDark .plate__v { color: #fff; }
.hero .plate { margin-top: 40px; max-width: 620px; }

.pagehead {
  position: relative; overflow: hidden;
  background: var(--mist-soft);
  border-bottom-left-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
  padding-block: clamp(56px, 7vw, 92px);
}
.pagehead::before {
  content: ''; position: absolute; top: -160px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(72,172,175,.18), transparent 68%);
}
.pagehead > .wrap { position: relative; z-index: 1; }
.pagehead h1 { margin-bottom: 18px; }
.pagehead .lede { max-width: 58ch; }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--text-faint); margin-bottom: 22px;
}
.crumbs a { color: var(--text-soft); font-weight: 600; }
.crumbs a:hover { color: var(--teal-dark); }
.crumbs span[aria-hidden] { color: var(--line); }

.seghead {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.seghead__bg { position: absolute; inset: 0; z-index: 0; }
.seghead__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03);
  animation: segDrift 30s ease-in-out infinite alternate;
}
@keyframes segDrift {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09); }
}

.seghead__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(12,20,26,.92) 0%,
      rgba(14,24,31,.78) 26%,
      rgba(16,28,36,.42) 52%,
      rgba(18,32,40,.12) 78%,
      rgba(20,34,42,.06) 100%),
    linear-gradient(105deg, rgba(12,20,26,.6) 0%, transparent 58%);
}

.seghead__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 84px) 24px clamp(44px, 5vw, 72px);
}
.seghead__copy { max-width: 46rem; }

.seghead h1 {
  color: #fff;
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 4rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.035em;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.seghead__lede {
  color: #d7e6e9;
  font-size: clamp(1rem, .95rem + .4vw, 1.18rem);
  line-height: 1.66;
  margin-bottom: 32px;
  max-width: 40rem;
  text-shadow: 0 1px 20px rgba(0,0,0,.45);
}
.seghead__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.seghead .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; margin-bottom: 18px;
}
.seghead .eyebrow::before {
  content: ''; width: 34px; height: 2px; background: var(--teal);
}

.seghead .crumbs { color: rgba(255,255,255,.6); }
.seghead .crumbs a { color: rgba(255,255,255,.85); }
.seghead .crumbs a:hover { color: #fff; }
.seghead .crumbs span[aria-hidden] { color: rgba(255,255,255,.35); }

.seghead__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 18px;
  transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid rgba(255,255,255,.4);
  display: grid; justify-items: center; padding-top: 8px;
}
.seghead__scroll::before {
  content: ''; width: 3px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,.85);
  animation: scrollHint 1.9s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .header__cta { display: none; }
  .nav { gap: 4px; }
  .nav__link { padding: 11px 13px; }
}

@media (max-width: 900px) {
  .header__account-name,
  .header__account .nav__link > svg:last-of-type { display: none; }
  .header__account .nav__link {
    padding: 10px !important;
    width: 42px; height: 42px;
    justify-content: center;
  }
  .header__account .menu { right: 0; left: auto; }
}

@media (max-width: 900px) {
  .seghead { min-height: min(78vh, 640px); }
  .seghead__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .seghead__bg img { animation: none; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--mist); }

.card__media {
  position: relative; display: block;
  aspect-ratio: 1 / 1;
  background: var(--mist-soft);
  overflow: hidden;
}
.card__media img { object-fit: contain; padding: 20px; transition: transform .45s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--cover { aspect-ratio: 16 / 10; }
.card__media--cover img { object-fit: cover; padding: 0; }

.card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--teal-dark);
  padding: 6px 13px; border-radius: var(--r-pill);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.card__sku { font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); }
.card__title { font-size: 1.06rem; font-weight: 700; color: var(--slate); margin: 0; line-height: 1.35; }
.card__text { font-size: .89rem; color: var(--text-soft); margin: 0; flex: 1; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.card__specs { display: flex; flex-wrap: wrap; gap: 7px; }
.spec-pill {
  background: var(--mist-soft); border: 1px solid var(--line-soft);
  border-radius: var(--r-pill); padding: 5px 12px;
  font-size: .74rem; font-weight: 600; color: var(--slate);
  font-variant-numeric: tabular-nums;
}

.tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-md); background: var(--slate);
  min-height: 300px; color: #fff;
}
.tile img { position: absolute; inset: 0; object-fit: cover; transition: transform .6s var(--ease); }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,33,44,.9) 8%, rgba(22,33,44,.4) 54%, rgba(22,33,44,.08) 100%);
}
.tile:hover img { transform: scale(1.07); }
.tile__body {
  position: relative; z-index: 2; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px;
}
.tile__title { color: #fff; font-size: 1.25rem; font-weight: 800; margin: 0 0 6px; }
.tile__text { font-size: .87rem; color: rgba(255,255,255,.78); margin: 0 0 16px; }
.tile .link-arrow { color: #fff; }

.fam {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
  background: var(--paper);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.fam:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.fam__media { aspect-ratio: 4 / 3; background: var(--mist-soft); overflow: hidden; }
.fam__media img { object-fit: contain; padding: 20px; transition: transform .45s var(--ease); }
.fam:hover .fam__media img { transform: scale(1.05); }
.fam__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fam__range { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-deep); }
.fam__list { display: flex; flex-direction: column; gap: 7px; margin: 4px 0 0; }
.fam__list li { position: relative; padding-left: 20px; font-size: .85rem; color: var(--text-soft); }
.fam__list li::before {
  content: ''; position: absolute; left: 0; top: .58em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mist); border: 2px solid var(--teal);
}

.section--tint {
  background:
    radial-gradient(ellipse 70% 90% at 90% 8%, rgba(72,172,175,.14), transparent 62%),
    linear-gradient(175deg, var(--mist-soft) 0%, #e4f1f2 100%);
}

.card__media, .fam__media {
  background: linear-gradient(160deg, var(--mist-soft) 0%, var(--mist) 100%);
  transition: background .35s var(--ease);
}
.card:hover .card__media, .fam:hover .fam__media {
  background: linear-gradient(160deg, var(--mist) 0%, #cfe6e7 100%);
}

.card, .fam { position: relative; }
.card::before, .fam::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); z-index: 3;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.card:hover::before, .fam:hover::before { transform: scaleX(1); }

.reason-n {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow: 0 8px 18px -8px var(--teal-glow);
}
.reason-n span { font-weight: 800; color: #fff; font-size: .88rem; }

.segslider { position: relative; }
.segslider__viewport { overflow: hidden; border-radius: var(--r-lg); }
.segslider__track {
  display: flex; align-items: stretch;
  transition: transform .75s var(--ease-out); will-change: transform;
}

.seg-slide { flex: 0 0 100%; min-width: 0; display: flex; }
.seg-slide__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--slate); border-radius: var(--r-lg); overflow: hidden;
  min-height: 440px; width: 100%; height: auto; align-self: stretch;
}
.seg-slide__img { position: relative; overflow: hidden; min-height: 100%; }
.seg-slide__img img { object-fit: cover; }
.seg-slide__body {
  padding: clamp(30px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  color: var(--on-dark-soft);
}
.seg-slide__body h3 { color: #fff; font-size: clamp(1.5rem,1.2rem+1.2vw,2.1rem); margin-bottom: 14px; }
.seg-slide__body p { color: var(--on-dark-soft); font-size: .96rem; margin-bottom: 24px; }
.seg-slide__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.seg-slide__meta span {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  color: #fff; border-radius: var(--r-pill);
  padding: 5px 13px; font-size: .74rem; font-weight: 600;
}
.seg-slide__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.segslider__controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 26px; flex-wrap: wrap;
}
.segslider__dots { display: flex; gap: 10px; flex-wrap: wrap; }
.segslider__dot {
  position: relative; overflow: hidden;
  height: 5px; width: 52px; border: 0; padding: 0;
  border-radius: var(--r-pill); background: var(--mist);
  cursor: pointer; transition: background .2s var(--ease);
}
.segslider__dot::after {
  content: ''; position: absolute; inset: 0;
  background: var(--teal); transform: scaleX(0); transform-origin: left;
  border-radius: var(--r-pill);
}

.segslider__dot[aria-selected="true"]::after { animation: dotFill 3.5s linear forwards; }
.segslider.is-paused .segslider__dot[aria-selected="true"]::after { animation-play-state: paused; }
@keyframes dotFill { to { transform: scaleX(1); } }

.segslider__arrows { display: flex; gap: 10px; }
.segslider__arrow {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 2px solid var(--line); background: var(--paper);
  border-radius: 50%; cursor: pointer; color: var(--slate);
  transition: all .18s var(--ease);
}
.segslider__arrow:hover { border-color: var(--teal); color: var(--teal-dark); transform: scale(1.06); }

.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 4.5vw, 68px); align-items: start; }
.gallery__main {
  background: var(--mist-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1; overflow: hidden;
}
.gallery__main img { object-fit: contain; padding: 30px; }
.gallery__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery__thumb {
  width: 84px; height: 84px; padding: 6px;
  background: var(--mist-soft); border: 2px solid var(--line-soft);
  border-radius: var(--r-sm); cursor: pointer; overflow: hidden;
  transition: border-color .18s var(--ease);
}
.gallery__thumb img { object-fit: contain; }
.gallery__thumb[aria-selected="true"] { border-color: var(--teal); }

.pdp__aside { position: sticky; top: calc(var(--header-h) + 22px); }
.pdp__sku {
  display: inline-block; background: var(--mist); color: var(--teal-dark);
  padding: 6px 15px; border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 18px;
}
.pdp__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pdp__note {
  margin-top: 20px; padding: 16px 20px;
  background: var(--mist-soft); border-radius: var(--r);
  font-size: .84rem; color: var(--text-soft);
}

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  padding: 15px 20px; text-align: left;
  border-bottom: 1px solid var(--line-soft); font-size: .9rem;
}
.spec-table th { width: 44%; font-weight: 600; color: var(--text-soft); background: var(--mist-soft); }
.spec-table td { font-weight: 700; color: var(--slate); font-variant-numeric: tabular-nums; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

.range-table { width: 100%; border-collapse: collapse; }
.range-table caption {
  text-align: left; font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal-deep); padding-bottom: 14px;
}
.range-table th, .range-table td { padding: 15px 18px; text-align: left; font-size: .89rem; border-bottom: 1px solid var(--line-soft); }
.range-table thead th {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint); border-bottom: 2px solid var(--line);
}
.range-table td { font-variant-numeric: tabular-nums; color: var(--slate); font-weight: 600; }
.range-table tbody tr { transition: background .15s var(--ease); }
.range-table tbody tr:hover { background: var(--mist-soft); }
.table-scroll { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 8px 4px; }

.form-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--sh);
}
.form-narrow { max-width: 520px; margin-inline: auto; }
.field { margin-bottom: 16px; min-width: 0; }
.field label { display: block; font-size: .78rem; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.field .req { color: var(--teal-deep); }

.phone-row { display: grid; grid-template-columns: 94px 1fr; gap: 10px; }
.phone-row .dial-select {
  min-width: 0;
  padding-inline: 10px;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .phone-row { grid-template-columns: 86px 1fr; gap: 8px; }
}

.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  background: var(--wash); border: 1.5px solid var(--line-soft);
  border-radius: var(--r-sm); font-size: .88rem; line-height: 1.4;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}

.field select { padding-right: 34px; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--paper);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field .hint { font-size: .76rem; color: var(--text-faint); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 16px; }
.field-row-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }

.otp-input {
  letter-spacing: .5em; text-align: center;
  font-size: 1.5rem !important; font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.check label { font-size: .85rem; font-weight: 500; color: var(--text-soft); margin: 0; }

.file-drop {
  display: block; border: 2px dashed var(--line); border-radius: var(--r);
  padding: 26px; text-align: center; background: var(--wash);
  transition: border-color .18s var(--ease), background .18s var(--ease); cursor: pointer;
}
.file-drop:hover, .file-drop.is-over { border-color: var(--teal); background: var(--mist-soft); }
.file-drop input { position: absolute; opacity: 0; width: 0; height: 0; }
.file-drop__label { font-weight: 700; color: var(--slate); font-size: .9rem; display: block; }
.file-drop__hint { font-size: .78rem; color: var(--text-faint); margin-top: 5px; display: block; }

.captcha {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: 14px; align-items: end;
  padding: 16px; margin-bottom: 4px;
  background: var(--wash); border: 1px solid var(--line-soft);
  border-radius: var(--r);
}
.captcha__q {
  background: var(--slate); color: #fff;
  border-radius: var(--r-sm); padding: 10px 16px;
  font-weight: 800; font-size: .96rem; letter-spacing: .06em;
  font-variant-numeric: tabular-nums; white-space: nowrap; user-select: none;
}
.captcha__field { margin: 0; min-width: 0; }
@media (max-width: 480px) { .captcha { grid-template-columns: 1fr; } }

.turnstile {
  margin: 4px 0 20px;
  min-height: 66px;
}
.turnstile .hint { margin-top: 8px; }

.alert {
  padding: 16px 22px; border-radius: var(--r);
  font-size: .9rem; font-weight: 600; margin-bottom: 26px;
  border: 1px solid transparent;
}
.alert--ok   { background: var(--mist-soft); border-color: var(--mist); color: var(--teal-dark); }
.alert--err  { background: #fdf1f0; border-color: #f6d9d6; color: #a23c31; }
.alert--warn { background: #fff8ec; border-color: #f5e2c0; color: #8a5d16; }
.error-list { margin: 10px 0 0; padding-left: 18px; list-style: disc; font-weight: 500; }

.acc { border-top: 1px solid var(--line-soft); }
.acc__item { border-bottom: 1px solid var(--line-soft); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 0; background: none; border: 0;
  text-align: left; cursor: pointer; font-size: 1.02rem; font-weight: 700; color: var(--slate);
}
.acc__btn:hover { color: var(--teal-dark); }
.acc__icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--mist-soft); display: grid; place-items: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.acc__btn[aria-expanded="true"] .acc__icon { transform: rotate(45deg); background: var(--teal); }
.acc__btn[aria-expanded="true"] .acc__icon svg { stroke: #fff; }
.acc__panel { display: none; padding: 0 0 26px; color: var(--text-soft); font-size: .93rem; max-width: 68ch; }
.acc__panel.is-open { display: block; animation: fadeUp .35s var(--ease-out); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md); padding: 32px 26px;
  backdrop-filter: blur(8px);
}
.stat__n {
  font-size: clamp(2.1rem, 1.5rem + 2.3vw, 3.2rem); font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.stat__l { margin-top: 12px; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }

.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--text-soft); }
.checklist svg { flex-shrink: 0; margin-top: 3px; }

.problem-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.problem {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 22px 24px;
  font-size: .93rem; font-weight: 600; color: var(--slate);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.problem:hover { transform: translateX(4px); border-color: var(--mist); }
.problem::before { content: '—'; color: var(--teal); font-weight: 800; flex-shrink: 0; }

.numbered { counter-reset: step; display: grid; gap: 4px; }
.numbered__item {
  counter-increment: step;
  display: grid; grid-template-columns: 68px 1fr; gap: 22px;
  padding: 28px 0; border-bottom: 1px solid var(--line-soft);
}
.numbered__item::before {
  content: counter(step, decimal-leading-zero);
  font-size: 1.4rem; font-weight: 800; color: var(--mist);
  font-variant-numeric: tabular-nums; line-height: 1;
}
.numbered__item h4 { margin-bottom: 6px; }
.numbered__item p { font-size: .92rem; color: var(--text-soft); margin: 0; }

.stages-line { position: relative; margin: 0; padding: 0; list-style: none; }
.stages-line::before {
  content: ''; position: absolute; top: 12px; bottom: 12px; left: 27px;
  width: 2px; background: var(--line-soft);
}

.stage-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, 260px);
  gap: clamp(20px, 2.6vw, 36px);
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
}
.stage-row:last-child { border-bottom: 0; }

.stage-row__marker { position: relative; z-index: 1; }
.stage-row__n {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  font-size: .92rem; font-weight: 800; color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  transition: color .45s var(--ease), border-color .45s var(--ease),
              background .45s var(--ease), transform .45s var(--ease),
              box-shadow .45s var(--ease);
}
.stage-row.is-active .stage-row__n {
  background: var(--teal); border-color: var(--teal); color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(72,172,175,.14);
}

.stage-row__title {
  font-size: 1.16rem; margin-bottom: 8px;
  transition: color .4s var(--ease);
}
.stage-row.is-active .stage-row__title { color: var(--teal-dark); }
.stage-row__text { font-size: .93rem; color: var(--text-soft); margin: 0; }

.stage-row__out {
  background: var(--mist-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 16px 18px;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.stage-row.is-active .stage-row__out { border-color: var(--mist); background: var(--mist); }
.stage-row__out span {
  display: block; font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-deep); margin-bottom: 5px;
}
.stage-row__out strong { font-size: .9rem; color: var(--slate); font-weight: 700; }

.stat__n .is-counting, .kpi__n.is-counting, [data-count].is-counting {
  color: var(--teal);
  transition: color .6s var(--ease);
}
[data-count].is-counted { transition: color .8s var(--ease); }
.stat__n [data-count] { color: inherit; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none; margin: 0; padding: 0;
}
.feature-grid__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  font-size: .89rem; font-weight: 600; color: var(--slate);
  line-height: 1.45;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.feature-grid__item:hover { border-color: var(--mist); transform: translateY(-2px); }
.feature-grid__item svg { flex-shrink: 0; margin-top: 2px; }

.ideal-card {
  position: sticky; top: calc(var(--header-h) + 22px);
  background: var(--mist-soft);
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 28px;
}
.ideal-card__list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.ideal-card__list li {
  position: relative; padding-left: 20px;
  font-size: .89rem; font-weight: 600; color: var(--slate);
}
.ideal-card__list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
}

@media (max-width: 1080px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .ideal-card { position: static; padding: 22px; }
}

.glass,
.card,
.fam,
.kpi,
.ideal-card,
.feature-grid__item,
.stage-row__out {
  position: relative;
  isolation: isolate;
}

.card::after,
.fam::after,
.kpi::after,
.ideal-card::after,
.feature-grid__item::after,
.glass::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s var(--ease);
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,.85),
    rgba(223,236,238,.35) 38%,
    transparent 68%);
}
.card:hover::after,
.fam:hover::after,
.kpi:hover::after,
.ideal-card:hover::after,
.feature-grid__item:hover::after,
.glass:hover::after { opacity: .55; }

.card > *,
.fam > *,
.kpi > *,
.ideal-card > *,
.feature-grid__item > * { position: relative; z-index: 1; }

.glass-panel {
  background: linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}

.stat {
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  transition: transform .45s var(--ease-out), background .45s var(--ease),
              border-color .45s var(--ease);
}
.stat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.26);
}

.sheen { position: relative; overflow: hidden; }
.sheen::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -60%;
  width: 40%;
  z-index: 2;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(100deg,
    transparent,
    rgba(255,255,255,.42),
    transparent);
  transition: left .85s var(--ease-out);
}
.sheen:hover::before { left: 130%; }

.tile, .seg-slide__inner {
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -28px rgba(16,28,36,.6);
}

.btn {
  transition: transform .32s var(--ease-out), background .32s var(--ease),
              border-color .32s var(--ease), color .32s var(--ease),
              box-shadow .42s var(--ease-out);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px -14px rgba(49,66,87,.4);
}

.phone-row { display: grid; grid-template-columns: 94px 1fr; gap: 10px; }
.phone-row .dial-select {
  min-width: 0;
  padding-inline: 10px;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .phone-row { grid-template-columns: 86px 1fr; gap: 8px; }
}

.field input, .field select, .field textarea {
  transition: border-color .3s var(--ease), background .3s var(--ease),
              box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  box-shadow: 0 0 0 4px rgba(72,172,175,.14);
}

@media (prefers-reduced-motion: reduce) {
  .card::after, .fam::after, .kpi::after, .ideal-card::after,
  .feature-grid__item::after, .glass::after { display: none; }
  .sheen::before { display: none; }
}

.filters { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 28px; margin-bottom: 36px; border-bottom: 1px solid var(--line-soft); }
.chip {
  padding: 10px 20px; border: 2px solid var(--line-soft);
  border-radius: var(--r-pill); background: var(--paper);
  font-size: .84rem; font-weight: 600; color: var(--slate);
  cursor: pointer; transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--teal); color: var(--teal-dark); transform: translateY(-1px); }
.chip.is-active { background: var(--slate); border-color: var(--slate); color: #fff; }

.chip__n {
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px; padding: 0 6px; margin-left: 7px;
  border-radius: var(--r-pill);
  background: var(--mist); color: var(--teal-dark);
  font-size: .7rem; font-weight: 800; font-variant-numeric: tabular-nums;
}
.chip.is-active .chip__n { background: rgba(255,255,255,.22); color: #fff; }

.chip.is-disabled {
  opacity: .42; cursor: not-allowed;
  background: var(--wash); border-color: var(--line-soft); color: var(--text-faint);
}
.chip.is-disabled:hover { transform: none; border-color: var(--line-soft); color: var(--text-faint); }
.chip.is-disabled .chip__n { background: var(--line-soft); color: var(--text-faint); }

.searchbar { display: flex; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.searchbar input {
  flex: 1; min-width: 240px; padding: 14px 22px;
  border: 2px solid var(--line-soft); border-radius: var(--r-pill);
  background: var(--wash); font-size: .92rem;
}
.searchbar input:focus { outline: none; border-color: var(--teal); background: var(--paper); }
.result-count { font-size: .86rem; color: var(--text-faint); margin-bottom: 26px; font-weight: 600; }

.empty { text-align: center; padding: 80px 24px; background: var(--mist-soft); border-radius: var(--r-lg); }
.empty h3 { margin-bottom: 10px; }
.empty p { color: var(--text-soft); margin-bottom: 22px; }

.drawer-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(22,33,44,.5); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(430px, 100%);
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s var(--ease-out);
  box-shadow: -20px 0 60px -25px rgba(22,33,44,.5);
  border-top-left-radius: var(--r-lg);
  border-bottom-left-radius: var(--r-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 24px 26px; border-bottom: 1px solid var(--line-soft);
}
.drawer__head h2 { margin: 0; font-size: 1.15rem; }
.drawer__head p { margin: 2px 0 0; font-size: .78rem; color: var(--text-faint); font-weight: 600; }
.drawer__close {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 0; background: var(--mist-soft); border-radius: 50%;
  cursor: pointer; display: grid; place-items: center; color: var(--slate);
  transition: background .18s var(--ease);
}
.drawer__close:hover { background: var(--mist); }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.drawer__foot { border-top: 1px solid var(--line-soft); padding: 22px 26px; background: var(--wash); }
.drawer__foot .btn { margin-bottom: 10px; }
.drawer__foot .btn:last-of-type { margin-bottom: 0; }
.drawer__note { font-size: .76rem; color: var(--text-faint); text-align: center; margin: 12px 0 0; }

.dline { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.dline:last-child { border-bottom: 0; }
.dline__img { width: 64px; height: 64px; background: var(--mist-soft); border-radius: var(--r-sm); padding: 6px; overflow: hidden; }
.dline__img img { object-fit: contain; }
.dline__name { font-size: .88rem; font-weight: 700; color: var(--slate); margin: 0 0 3px; line-height: 1.35; }
.dline__meta { font-size: .74rem; color: var(--text-faint); margin: 0; }

.qty { display: inline-flex; align-items: center; border: 2px solid var(--line-soft); border-radius: var(--r-pill); overflow: hidden; }
.qty button {
  width: 34px; height: 34px; border: 0; background: var(--paper);
  cursor: pointer; font-size: 1.05rem; font-weight: 700; color: var(--slate);
}
.qty button:hover { background: var(--mist-soft); color: var(--teal-dark); }
.qty input {
  width: 42px; height: 34px; border: 0; text-align: center;
  font-weight: 700; background: var(--paper); font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.qty.is-busy { opacity: .55; pointer-events: none; }
.qty.is-busy input { color: var(--text-faint); }

.qline {
  display: grid; grid-template-columns: 104px 1fr auto;
  gap: 22px; align-items: center; padding: 20px;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); margin-bottom: 14px;
}
.qline__img { width: 104px; height: 104px; background: var(--mist-soft); border-radius: var(--r-sm); padding: 10px; overflow: hidden; }
.qline__img img { object-fit: contain; }
.qline__name { font-weight: 700; color: var(--slate); margin: 0 0 4px; font-size: .98rem; }
.qline__fam { font-size: .8rem; color: var(--text-faint); }
.qline__remove { background: none; border: 0; cursor: pointer; color: var(--text-faint); padding: 8px; border-radius: 50%; }
.qline__remove:hover { color: #a23c31; background: #fdf1f0; }

.steps { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.step {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: var(--r-pill);
  background: var(--mist-soft); border: 1px solid var(--line-soft);
  font-size: .82rem; font-weight: 700; color: var(--text-faint);
}
.step__n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--line); color: #fff;
  display: grid; place-items: center; font-size: .72rem; font-weight: 800;
}
.step.is-active { background: var(--slate); border-color: var(--slate); color: #fff; }
.step.is-active .step__n { background: var(--teal); }
.step.is-done { border-color: var(--teal); color: var(--teal-dark); }
.step.is-done .step__n { background: var(--teal); }

.acct { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.acct__nav {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--r-md); padding: 14px;
  position: sticky; top: calc(var(--header-h) + 22px);
}
.acct__nav a {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 15px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 600; color: var(--slate);
  transition: background .15s var(--ease);
}
.acct__nav a:hover { background: var(--mist-soft); }
.acct__nav a[aria-current="page"] { background: var(--mist); color: var(--teal-dark); }

.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th, .data-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.data-table thead th {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 800; background: var(--mist-soft);
}
.data-table tbody tr:hover { background: var(--wash); }
.data-table td { color: var(--text-soft); }
.data-table td strong { color: var(--slate); }

.badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-pill);
  font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.badge--new    { background: var(--mist); color: var(--teal-dark); }
.badge--open   { background: #fff8ec; color: #8a5d16; }
.badge--closed { background: #eef1f3; color: var(--text-faint); }
.badge--ok     { background: #e8f6ee; color: #1f7a45; }
.badge--fail   { background: #fdf1f0; color: #a23c31; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.kpi { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 24px; }
.kpi__n { font-size: 2rem; font-weight: 800; color: var(--slate); line-height: 1; font-variant-numeric: tabular-nums; }
.kpi__l { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin-top: 10px; }

.admin-body {
  min-height: 100vh;
  background: linear-gradient(150deg, #1d2b39 0%, var(--slate) 55%, #2b5f66 140%);
  display: grid; place-items: center; padding: 40px 20px;
}
.admin-card {
  width: 100%; max-width: 430px;
  background: var(--paper); border-radius: var(--r-lg);
  padding: 42px; box-shadow: var(--sh-lg);
}
.admin-card__logo { height: 38px; width: auto; margin-bottom: 26px; }
.admin-top { background: var(--slate); color: #fff; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-top__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; flex-wrap: wrap; }
.admin-top a { color: rgba(255,255,255,.78); font-size: .86rem; font-weight: 600; padding: 8px 12px; border-radius: var(--r-sm); }
.admin-top a:hover { color: #fff; background: rgba(255,255,255,.08); }
.admin-top a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.12); }

.qr-box { background: #fff; padding: 16px; border-radius: var(--r); border: 1px solid var(--line-soft); display: inline-block; }
.secret-code {

  font-weight: 600;
  font-variant-numeric: tabular-nums;
  background: var(--mist-soft); border: 1px solid var(--line-soft);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-size: .9rem; word-break: break-all; letter-spacing: .14em; text-align: center;
}

.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--slate) 0%, var(--slate-deep) 58%, var(--teal-dark) 145%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5.5vw, 72px); color: #fff;
  display: grid; grid-template-columns: 1.4fr auto; gap: 36px; align-items: center;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(72,172,175,.32), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: var(--on-dark-soft); margin: 0; max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.footer { background: var(--ink); color: var(--on-dark-soft); padding-block: 72px 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }

.footer__logo { height: 118px; width: auto; margin-bottom: 28px; }
.footer__about { font-size: .89rem; line-height: 1.7; max-width: 34ch; margin-bottom: 22px; }
.footer h4 { color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { display: grid; gap: 12px; }
.footer a { color: var(--on-dark-soft); font-size: .89rem; }
.footer a:hover { color: var(--teal); }
.footer__contact li { font-size: .89rem; line-height: 1.6; display: flex; gap: 11px; align-items: flex-start; }
.footer__contact svg { flex-shrink: 0; margin-top: 4px; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.09); padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; font-size: .8rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }

.fab { position: fixed; right: 22px; bottom: 22px; z-index: 90; }
.fab a {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal); color: #fff;
  box-shadow: 0 8px 24px -8px var(--teal-glow), var(--sh);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.fab a::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 var(--teal-glow); animation: pulse 2.6s infinite;
}
.fab a:hover { transform: scale(1.09); background: var(--teal-deep); color: #fff; }

.to-top {
  position: fixed; right: 22px; bottom: 88px; z-index: 89;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper); color: var(--slate);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--sh);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--teal); color: var(--teal-dark); }
@media (max-width: 640px) { .to-top { right: 14px; bottom: 78px; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .95s var(--ease-out), transform .95s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }
.reveal--scale { transform: scale(.95); }
.reveal--left.is-in, .reveal--right.is-in, .reveal--scale.is-in { transform: none; }

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

.hero__copy > * { animation: fadeUp .85s var(--ease-out) both; }
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .14s; }
.hero__copy > *:nth-child(3) { animation-delay: .23s; }
.hero__copy > *:nth-child(4) { animation-delay: .32s; }
.hero__copy > *:nth-child(5) { animation-delay: .41s; }
.finder { animation: fadeUp .9s var(--ease-out) .5s both; }

.section-head h2 { position: relative; display: block; padding-bottom: 18px; }
.section-head h2::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 3px; width: 72px; border-radius: 3px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease-out) .15s;
}
.section-head.is-in h2::after { transform: scaleX(1); }

.section-head--center h2::after {
  left: 50%; transform: translateX(-50%) scaleX(0); transform-origin: center;
}
.section-head--center.is-in h2::after { transform: translateX(-50%) scaleX(1); }

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .acct { grid-template-columns: 1fr; }
  .acct__nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 900px) {
  :root { --section: 72px; }
  .nav, .header__actions .btn--primary { display: none; }
  html, body { overflow-x: clip; }
  .burger { display: flex; }
  .split, .split--wide-left, .split--wide-right,
  .pdp, .seghead__inner { grid-template-columns: 1fr; }
  .checklist--two { grid-template-columns: 1fr; }

  .hero {
    display: block; min-height: 0;
    background: linear-gradient(180deg, var(--mist-soft) 0%, #e4f1f2 100%);
  }
  .hero__bg {
    position: relative; inset: auto;
    height: 40vh; min-height: 240px;
  }
  .hero__bg img { object-position: center 34%; }
  .hero__bg::after {
    background: linear-gradient(to top, rgba(240,248,249,.9) 0%, rgba(240,248,249,0) 34%);
  }
  .hero__reveal, .hero__light { display: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 20px 34px;
  }
  .hero h1 { font-size: clamp(1.75rem, 1.2rem + 3vw, 2.2rem); }
  .hero__cta { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .finder { grid-template-columns: 1fr; gap: 14px; }
  .hero__bg { border-radius: var(--r-md); box-shadow: 0 0 0 5px rgba(255,255,255,.8), 0 18px 40px -26px rgba(49,66,87,.5); }

  .header .header__inner {
    padding-inline: 14px; gap: 10px; min-height: 72px;
  }
  .header.is-stuck { padding: 8px; }
  .header.is-stuck .header__inner {
    padding-inline: 12px; min-height: 64px; border-radius: var(--r-md);
  }
  .brand img { height: 34px; }
  .mobile-nav { border-radius: var(--r-md); }
  .hero__inner { padding-block: clamp(56px, 9vw, 88px); }
  .finder { grid-template-columns: 1fr; gap: 16px; }
  .stage-row { grid-template-columns: 44px minmax(0, 1fr); }
  .stage-row__out { grid-column: 2; }
  .stage-row__n { width: 44px; height: 44px; font-size: .82rem; }
  .stages-line::before { left: 21px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
  .seg-slide__inner { grid-template-columns: 1fr; }
  .seg-slide__img { aspect-ratio: 16 / 9; }
  .pdp__aside { position: static; }
  .hero, .seghead { border-radius: 0 0 var(--r-lg) var(--r-lg); }

}

@media (max-width: 640px) {
  :root { --section: 56px; --gap: 16px; }

  .header__actions { gap: 8px; }
  .header__actions > .icon-btn { display: none; }
  .quote-chip { padding: 9px 13px; font-size: .8rem; }
  .burger { width: 42px; height: 42px; }

  .reveal--left, .reveal--right { transform: translateY(24px); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .problem-list { grid-template-columns: 1fr; }
  .stats, .kpi-grid, .kpi-grid--three { grid-template-columns: 1fr; }

  .hero__cta { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .hero__panel { padding: 22px 20px; }
  .hero h1 { font-size: clamp(1.85rem, 1.2rem + 3vw, 2.4rem); }
  .hero__lede { font-size: .95rem; }
  .hero__hint { display: none; }
  .pdp__actions .btn { flex: 1; }
  .qline { grid-template-columns: 72px 1fr; row-gap: 14px; }
  .qline__img { width: 72px; height: 72px; }
  .qline__actions { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; }
  .numbered__item { grid-template-columns: 1fr; gap: 8px; }
  .footer__grid { grid-template-columns: 1fr; }
  .fab { right: 14px; bottom: 14px; }
  .drawer { width: 100%; border-radius: 0; }

  .admin-card { padding: 30px 24px; }
  .table-scroll { border: 0; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > *, .hero__copy > * { opacity: 1 !important; transform: none !important; }
  .hero__bg img, .hero__copy { transform: none !important; }
  .hero__light { display: none !important; }
  .hero h1 .rule::after { animation: none !important; }
  .hero h1 .rule::after { transform: scaleX(1) !important; }
}

@media print {
  .header, .footer, .fab, .btn, .filters, .searchbar, .drawer, .drawer-scrim { display: none !important; }
  body { color: #000; }
  .wrap { max-width: none; }
}
