/* Squadera — site styles
   Depends on tokens.css for colours, keyframes and the reduced-motion rule.
   ================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  position: relative;
  overflow-x: clip;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 10000;
  background: var(--ac);
  color: #0d0e0c !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: top .15s ease;
}

.skip:focus,
.skip:focus-visible {
  left: 16px;
  top: 12px;
  outline: 3px solid var(--tx) !important;
  outline-offset: 2px !important;
}

/* Universal high-contrast focus indicator for keyboard users (excluding form inputs) */
:focus-visible:not(input):not(textarea):not(select) {
  outline: 2px solid var(--ac) !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

/* Mouse cursor pointer for all interactive elements */
button,
a,
[role="button"],
[role="tab"],
.acc__head,
.card--link,
.tab,
.burger,
.mode,
.mnav__row {
  cursor: pointer;
}

/* Screen reader only utility (WCAG compliant) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- layout ---------- */
.wrap {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
}

main {
  position: relative;
  z-index: 1;
}

.sec {
  padding: clamp(50px, 6vw, 86px) 0;
  border-top: 1px solid var(--bd2);
}

.sec--major {
  padding: clamp(60px, 8vw, 110px) 0;
  border-top: 1px solid var(--bd2);
}

.sec--hero {
  padding: clamp(46px, 6.5vw, 80px) 0 clamp(40px, 5vw, 64px);
  border-top: 0;
}

.sec--last {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.sec--flush {
  border-top: 0;
  padding-top: 0;
}

.grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid--cards-sm {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.grid--two-mid {
  align-items: center;
}

.hold-w {
  max-width: 760px;
}

.hold-w--wide {
  max-width: 840px;
}

/* ---------- type ---------- */
h1,
h2,
h3 {
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.032em;
}

.h1--home {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.03;
}

.h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.028em;
}

.h2--sm {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.024em;
}

.h2--md {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -.026em;
}

.h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--tc);
  max-width: 40em;
}

.body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--tc);
}

.body--lg {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--tc);
}

.small {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--t2);
}

.foot-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--t2);
  max-width: 60em;
  border-top: 1px solid var(--bd2);
  padding-top: 20px;
}

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
}

.kicker {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ac);
}

.label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--t3);
}

.label--micro {
  font-size: 10.5px;
}

.label--gold {
  color: var(--gd);
}

.label--ac {
  color: var(--ac);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ac);
  border: 1px solid var(--ab);
  background: var(--as);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--t2);
  border: 1px dashed var(--st);
  padding: 6px 12px;
  border-radius: 100px;
}

.figure {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -.028em;
  line-height: 1;
}

.figure--gold {
  color: var(--gd);
}

.mb-sm {
  margin-bottom: 14px;
}

.mt-sm {
  margin-top: 16px;
}

.mb {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 20px;
}

.mb-lg {
  margin-bottom: clamp(26px, 3.4vw, 40px);
}

.mb-xl {
  margin-bottom: clamp(30px, 4vw, 50px);
}

.mb-2xl {
  margin-bottom: clamp(40px, 5vw, 60px);
}

/* ---------- buttons and chips ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 46px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.btn--pri {
  background: var(--ac);
  color: var(--on);
  border: 1px solid var(--ac);
}

.btn--pri:hover {
  background: var(--al);
  border-color: var(--al);
  color: var(--on);
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  color: var(--tx);
  border: 1px solid var(--bd);
}

.btn--ghost:hover {
  border-color: var(--ab);
  background: var(--as);
  color: var(--tx);
  opacity: 1;
}

.btn--sm {
  font-size: 14px;
  padding: 9px 15px;
  min-height: 40px;
}

.btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 13.5px;
  color: var(--t2);
  border: 1px solid var(--bd);
  background: transparent;
  padding: 8px 13px;
  border-radius: 7px;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

a.chip:hover {
  border-color: var(--ab);
  color: var(--tc);
  opacity: 1;
}

[data-theme="light"] .btn--pri {
  box-shadow: 0 2px 6px rgba(11, 111, 107, .24), 0 10px 24px -10px rgba(11, 111, 107, .4);
}

[data-theme="light"] .btn--pri:hover {
  box-shadow: 0 4px 10px rgba(11, 111, 107, .3), 0 14px 28px -10px rgba(11, 111, 107, .48);
}

[data-theme="light"] .btn--ghost {
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--bd);
  box-shadow: 0 1px 2px rgba(20, 24, 16, .04), 0 14px 34px -14px rgba(20, 24, 16, .16);
}

[data-theme="light"] .btn--ghost:hover {
  background: #FFFFFF;
  border-color: var(--ab);
}

[data-theme="light"] .chip {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  border: 1px solid var(--bd);
  box-shadow: 0 1px 2px rgba(20, 24, 16, .04);
  color: var(--t2);
}


.reassure {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12.5px;
  color: var(--t2);
}

.reassure .sep {
  color: var(--t3);
}

/* ---------- header ---------- */
.hdr {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bd2);
}

.hdr__in {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px clamp(18px, 4vw, 40px);
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hdr__left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.hdr__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr__right .btn,
.hdr__right .btn--sm {
  width: auto;
  flex: 0 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: auto;
}

.brand__sym {
  height: 45px;
  /* height: 26px; */
}

.brand__word {
  height: 20px;
  /* height: 17px; */
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  color: var(--t2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.nav__item:hover {
  color: var(--tx);
  opacity: 1;
}

.nav__item[aria-current="page"],
.nav__item.is-active {
  color: var(--tx);
  background: var(--as);
}

.nav__group button[aria-expanded="true"] {
  color: var(--tx);
  background: var(--pn);
  border-color: var(--bd);
}

[data-theme="light"] .nav__item:hover {
  color: var(--tx);
  background: rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .nav__item[aria-current="page"],
[data-theme="light"] .nav__item.is-active,
[data-theme="light"] .nav__group button[aria-expanded="true"] {
  color: var(--tx);
  background: #FFFFFF;
  border-color: var(--bd);
  box-shadow: 0 1px 3px rgba(20, 24, 16, 0.06), 0 1px 2px rgba(20, 24, 16, 0.04);
}

.nav__caret {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13.5px;
  display: inline-block;
  margin-left: 3px;
  transition: transform .2s ease;
}

.nav__group button[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__group {
  position: relative;
}

.drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  padding: 8px;
  background: var(--pn);
  border: 1px solid var(--bd);
  border-radius: 12px;
  z-index: 50;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .6);
  animation: v2drop .2s ease-out both;
}

[data-theme="light"] .drop {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  box-shadow: rgba(20, 24, 16, 0.05) 0px 2px 5px, rgba(20, 24, 16, 0.22) 0px 30px 70px -24px;
}

.drop[hidden] {
  display: none;
}

.drop__item {
  display: block;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}

.drop__item:hover {
  background: var(--as);
  opacity: 1;
}

.drop__name {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 4px;
}

.drop__note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--t2);
}

.mode {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 8px 12px;
  border-radius: 7px;
  cursor: pointer;
  background: transparent;
  color: var(--t2);
  border: 1px solid var(--bd);
  min-height: 38px;
}

.mode:hover {
  color: var(--tx);
  border-color: var(--ab);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--bd);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.burger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 1.5px;
  background: var(--tx);
  transition: transform .22s ease, opacity .22s ease;
}

.burger span:nth-child(1) {
  top: 17px;
}

.burger span:nth-child(2) {
  top: 23px;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) translateY(3px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  transform: translateX(-50%) translateY(-3px) rotate(-45deg);
}

.hdr.is-open {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
}

.hdr.is-open .mnav {
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mnav {
  border-top: 1px solid var(--bd2);
  padding: 10px clamp(18px, 4vw, 40px) 16px;
  animation: v2drop .2s ease-out both;
}

.mnav[hidden] {
  display: none;
}

.mnav__list {
  display: grid;
  gap: 2px;
}

.mnav__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  border-radius: 9px;
  min-height: 48px;
  text-decoration: none;
  color: var(--t2);
  font-size: 15px;
  font-weight: 600;
}

.mnav__row:hover {
  background: var(--as);
  opacity: 1;
}

.mnav__row[aria-current="page"] {
  background: var(--as);
  color: var(--tx);
}

.mnav__note {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--t3);
  margin-left: auto;
  font-weight: 400;
}

.mnav__group {
  display: grid;
  gap: 2px;
}

.mnav__row--trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.mnav__caret {
  margin-left: auto;
  font-size: 17px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--t2);
  transition: transform .22s ease, color .22s ease;
}

.mnav__row--trigger[aria-expanded="true"] .mnav__caret {
  transform: rotate(180deg);
  color: var(--ac);
}

.mnav__row--trigger.is-active {
  color: var(--tx);
}

.mnav__sub {
  display: grid;
  gap: 3px;
  padding: 4px 0 6px 14px;
  margin-left: 15px;
  border-left: 1.5px solid var(--bd2);
  animation: v2drop .2s ease-out both;
}

.mnav__sub[hidden] {
  display: none;
}

.mnav__sub-row {
  display: flex;
  flex-direction: column;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s ease;
}

.mnav__sub-row:hover {
  background: var(--as);
}

.mnav__sub-row[aria-current="page"] {
  background: var(--as);
}

.mnav__sub-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mnav__sub-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tx);
}

.mnav__sub-desc {
  font-size: 12px;
  color: var(--t3);
  margin-top: 2px;
  padding-left: 16px;
  line-height: 1.4;
}

/* status dots */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot--live {
  background: var(--ac);
  animation: v2breathe 2.6s ease-in-out infinite;
}

.dot--next {
  border: 2px solid var(--al);
}

.dot--dev {
  border: 2px dashed var(--t3);
}

.dot--sm {
  width: 7px;
  height: 7px;
}

/* ---------- decorative layers ---------- */
.wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.motif {
  position: absolute;
  right: clamp(-60px, -2vw, 0px);
  top: 40px;
  width: clamp(300px, 42vw, 560px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

.motif svg,
.motif img {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: v2drift 38s ease-in-out infinite;
  display: block;
  opacity: 0.6;
}

.motif--pharm svg,
.motif--pharm img,
.motif--contact svg,
.motif--contact img {
  animation-duration: 34s;
}

/* ---------- panels and cards ---------- */
.panel {
  position: relative;
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  background: var(--pn);
}

.panel--pad {
  padding: clamp(20px, 2.6vw, 32px);
}

.card {
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: clamp(18px, 2.4vw, 26px);
  background: var(--pn);
}

.card--lg {
  border-radius: 16px;
  padding: clamp(20px, 2.6vw, 28px);
}

.card--soft {
  border-radius: 12px;
  padding: 16px 18px;
}

[data-theme="light"] .panel,
[data-theme="light"] .card {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  border: 1px solid var(--bd);
  box-shadow: rgba(20, 24, 16, 0.04) 0px 1px 2px, rgba(20, 24, 16, 0.16) 0px 14px 34px -14px;
}

.rows {
  display: grid;
  border-top: 1px solid var(--bd);
}

.row {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-bottom: 1px solid var(--bd2);
  align-items: start;
}

.row--num {
  grid-template-columns: 2.6em 1fr;
}

.row--num3 {
  grid-template-columns: 2.6em minmax(180px, 1.1fr) 1.4fr;
  gap: clamp(12px, 2vw, 28px);
}

.row--split {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 40px);
}

.row__num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ac);
  padding-top: 4px;
}

.row__num--mute {
  color: var(--t3);
  padding-top: 6px;
}

.row__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.row__title--lg {
  font-size: clamp(18px, 1.9vw, 23px);
  letter-spacing: -.016em;
  line-height: 1.3;
  margin-bottom: 0;
}

.row__title--xl {
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.3;
  letter-spacing: -.018em;
  font-weight: 600;
  max-width: 20em;
}

.row__detail {
  font-size: 14px;
  line-height: 1.5;
  color: var(--t2);
}

.tick-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: clamp(16px, 2vw, 22px) 0;
  border-bottom: 1px solid var(--bd2);
}

.tick-row__mark {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--ac);
  flex-shrink: 0;
}

.tick-row__text {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.4;
  font-weight: 600;
}

.held-card {
  border: 1px solid var(--gb);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--gs);
}

.rule-line {
  flex: 1;
  height: 1px;
  background: var(--bd);
  display: block;
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: .08s;
}

.reveal-d2 {
  transition-delay: .16s;
}

.reveal-d3 {
  transition-delay: .24s;
}

.reveal-d4 {
  transition-delay: .32s;
}

.reveal-d5 {
  transition-delay: .4s;
}

.enter {
  animation: v2rise .6s ease-out both;
}

.enter-1 {
  animation-delay: .06s;
}

.enter-2 {
  animation-delay: .14s;
}

.enter-3 {
  animation-delay: .22s;
}

.enter-4 {
  animation-delay: .3s;
}

/* ---------- home: demo panel ---------- */
.demo {
  position: relative;
  border: 1px solid var(--bd);
  border-radius: 18px;
  overflow: hidden;
  background: var(--pn);
}

[data-theme="light"] .demo,
[data-theme="light"] .holdp {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  box-shadow: rgba(20, 24, 16, 0.05) 0px 2px 5px, rgba(20, 24, 16, 0.22) 0px 30px 70px -24px;
}

.demo__head {
  padding: clamp(20px, 2.6vw, 28px) clamp(20px, 3vw, 32px) 0;
  position: relative;
  overflow: hidden;
}

.demo__scan {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 24%;
  background: linear-gradient(90deg, transparent, var(--ac), transparent);
  animation: v2scan 7s linear infinite;
}

.demo__title {
  font-size: clamp(23px, 2.8vw, 35px);
  line-height: 1.1;
  letter-spacing: -.022em;
  font-weight: 600;
}

.demo__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.demo__count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--t2);
  padding-bottom: 4px;
}

.tabs {
  display: flex;
  gap: 10px;
  padding-bottom: 18px;
}

.tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  min-width: 0;
  font-family: inherit;
}

.tab__rail {
  display: block;
  height: 3px;
  border-radius: 4px;
  background: var(--bd);
  overflow: hidden;
  position: relative;
  margin-bottom: 9px;
}

.tab__fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--al);
  border-radius: 4px;
}

.tab[aria-selected="true"] .tab__fill {
  background: var(--ac);
}

.tab[data-done="true"] .tab__fill {
  width: 100%;
}

.tab__label {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--t3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tab[aria-selected="true"] .tab__label {
  color: var(--tx);
}

.tab__label--short {
  display: none;
}

.demo__body {
  padding: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--bd2);
  background: var(--pn2);
  min-height: 340px;
}

[data-theme="light"] .demo__body {
  background: linear-gradient(180deg, #FAF9F6 0%, #F4F3ED 100%);
}

.demo__panel[hidden] {
  display: none;
}

.demo__note {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--t2);
  margin-top: 22px;
}

.stores {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ticks {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 18px;
}

.ticks span {
  width: 3px;
  background: var(--al);
  border-radius: 2px;
  transform-origin: bottom;
  animation: v2tick .4s ease-out both;
}

.stat {
  border: 1px solid var(--bd);
  border-radius: 13px;
  padding: 18px;
  background: var(--pn);
}

[data-theme="light"] .stat {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  border: 1px solid var(--bd);
  box-shadow: rgba(20, 24, 16, 0.04) 0px 1px 2px, rgba(20, 24, 16, 0.16) 0px 14px 34px -14px;
}


.stat__bar {
  display: block;
  height: 3px;
  border-radius: 3px;
  transform-origin: left;
  animation: v2grow .8s cubic-bezier(.2, .7, .3, 1) both;
}

.ask {
  max-width: 800px;
}

.ask__bar {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--ab);
  background: var(--as);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.ask__bar--mute {
  border-color: var(--bd);
  background: transparent;
}

[data-theme="light"] .ask__bar {
  background: rgba(11, 111, 107, 0.05);
  border: 1px solid rgba(11, 111, 107, 0.28);
  box-shadow: none;
  border-radius: 11px;
}

[data-theme="light"] .ask__bar--mute {
  background: transparent;
  border: 1px solid var(--bd);
  box-shadow: none;
}

.ask__q {
  font-size: clamp(14.5px, 1.4vw, 16px);
  color: var(--tx);
  line-height: 1.45;
}

.caret {
  animation: v2caret 1s step-end infinite;
  color: var(--ac);
}

.ask__work {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.ask__work-bar {
  flex: 1;
  max-width: 110px;
  height: 2px;
  background: var(--bd);
  border-radius: 2px;
  overflow: hidden;
  display: block;
}

.ask__work-bar span {
  display: block;
  height: 100%;
  background: var(--ac);
  transform-origin: left;
  animation: v2grow 1.1s ease-out both;
}

.ask__answer {
  border-left: 2px solid var(--ac);
  padding-left: 18px;
  margin-bottom: 24px;
  animation: v2rise .5s ease-out both;
}

.ask__held {
  border-left: 2px solid var(--gd);
  padding-left: 18px;
}

.ask__step[hidden] {
  display: none;
}

.fc__chart {
  border: 1px solid var(--bd);
  border-radius: 13px;
  padding: 18px;
  background: var(--pn);
}

[data-theme="light"] .fc__chart {
  /* background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(20, 24, 16, .04); */
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  box-shadow: rgba(20, 24, 16, 0.04) 0px 1px 2px, rgba(20, 24, 16, 0.16) 0px 14px 34px -14px;
  border: 1px solid var(--bd);
}

.fc__svg {
  width: 100%;
  height: clamp(130px, 17vw, 168px);
  display: block;
  overflow: visible;
}

[data-theme="light"] .fc__svg path {
  fill: rgba(11, 111, 107, 0.13);
}

.fc__axis {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.fc__legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bd2);
}

.fc__key {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--t2);
}

.fc__swatch {
  width: 14px;
  height: 2.5px;
  border-radius: 2px;
  flex-shrink: 0;
}

.fc__swatch--actual {
  background: var(--tc);
}

.fc__swatch--fc {
  background: repeating-linear-gradient(90deg, var(--ac) 0 4px, transparent 4px 7px);
}

.fc__swatch--cone {
  width: 14px;
  height: 10px;
  border-radius: 3px;
  background: var(--as);
  border: 1px solid var(--ab);
}

[data-theme="light"] .fc__swatch--cone {
  background: rgba(11, 111, 107, 0.13);
  border: 1px solid rgba(11, 111, 107, 0.28);
}

.fc__row {
  border: 1px solid var(--bd2);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--pn);
}

[data-theme="light"] .fc__row {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  border: 1px solid var(--bd);
  box-shadow: rgba(20, 24, 16, 0.04) 0px 1px 2px, rgba(20, 24, 16, 0.16) 0px 14px 34px -14px;
}

.conf {
  display: flex;
  gap: 4px;
  align-items: center;
}

.conf span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--st);
}

[data-theme="light"] .conf span {
  background: #D8D6CE;
}

.conf span.on {
  background: var(--ac);
}

[data-theme="light"] .conf span.on {
  background: var(--ac);
}

.wf__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--pn);
}

[data-theme="light"] .wf__card {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  border: 1px solid var(--bd);
  box-shadow: rgba(20, 24, 16, 0.04) 0px 1px 2px, rgba(20, 24, 16, 0.16) 0px 14px 34px -14px;
}


.wf__badge {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gd);
  border: 1px solid var(--gb);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  animation: v2badgePulseDark 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

[data-theme="light"] .wf__badge {
  color: #8A6E06;
  background: #FAF8F2;
  border: 1px solid rgba(160, 130, 25, 0.35);
  border-radius: 6px;
  box-shadow: 0 0 0 0 rgba(243, 238, 219, 0);
  margin: 5px 8px;
  animation: v2badgePulse 2.3s ease-out infinite;
}


@keyframes v2badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 163, 7, 0.75);
    border-color: rgba(160, 130, 25, 0.4);
  }

  26% {
    box-shadow: 0 0 0 5.5px #EFE3C3, 0 0 12px rgba(200, 163, 7, 0.32);
    border-color: rgba(160, 130, 25, 0.7);
  }

  50% {
    box-shadow: 0 0 0 11.5px rgba(200, 163, 7, 0);
    border-color: rgba(160, 130, 25, 0.4);
  }

  100% {
    box-shadow: 0 0 0 11.5px rgba(200, 163, 7, 0);
    border-color: rgba(160, 130, 25, 0.4);
  }
}

@keyframes v2badgePulseDark {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 163, 7, 0.8);
  }

  26% {
    box-shadow: 0 0 0 6px rgba(200, 163, 7, 0.45);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(200, 163, 7, 0);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(200, 163, 7, 0);
  }
}








/* ---------- home: governance ---------- */
.holdp {
  position: relative;
  border: 1px solid var(--bd);
  border-radius: 18px;
  overflow: hidden;
  background: var(--pn);
}

.holdp__motif {
  position: absolute;
  right: -30px;
  top: -20px;
  width: min(46%, 380px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: .8;
}

.holdp__motif svg,
.holdp__motif img {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.stage {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--st);
  opacity: .3;
  transition: opacity .5s ease, border-color .5s ease;
}

.stage__dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--st);
  transition: background .5s ease;
}

.stage.is-on {
  opacity: 1;
  border-top-color: var(--ac);
}

.stage.is-on .stage__dot {
  background: var(--ac);
}

.stage.is-on .stage__label {
  color: var(--ac);
}

.stage--gold.is-on {
  border-top-color: var(--gd);
}

.stage--gold.is-on .stage__dot {
  background: var(--gd);
  animation: v2hold 1.8s ease-out 2;
}

.stage--gold.is-on .stage__label {
  color: var(--gd);
}

.stage__label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--t3);
  transition: color .5s ease;
}

.stage__text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--tc);
}

.holdp__reply {
  border-top: 1px solid var(--bd2);
  background: var(--gs);
  padding: clamp(18px, 2.2vw, 26px) clamp(22px, 3vw, 38px);
}

[data-theme="light"] .holdp__reply {
  background: linear-gradient(rgba(154, 124, 8, 0.05), rgba(154, 124, 8, 0.02));
}

.holdp__reply-in {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.holdp__typed {
  flex: 1;
  min-width: 240px;
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--tx);
  min-height: 1.5em;
}

/* ---------- home: roadmap track ---------- */
.track {
  position: relative;
}

.track__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1.5px;
  background: var(--bd2);
}

.track__fill {
  position: absolute;
  left: 0;
  top: 7px;
  height: 1.5px;
  width: 100%;
  background: linear-gradient(90deg, var(--ac), var(--al));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.2, .7, .3, 1);
}

.track.is-in .track__fill {
  transform: scaleX(0.51);
}

.track__stations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(22px, 3vw, 40px);
  position: relative;
}

.station__marker {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  background: var(--bg);
  box-sizing: border-box;
  transform: scale(0);
  transition: transform .45s cubic-bezier(.2, .9, .3, 1);
}

.track.is-in .station__marker {
  transform: scale(1);
}

.station:nth-child(2) .station__marker {
  transition-delay: .2s;
}

.station:nth-child(3) .station__marker {
  transition-delay: .4s;
}

.station__marker--live {
  background: var(--ac);
  border: none;
}

.station__marker--next {
  border: 2px solid var(--al);
  background: var(--bg);
}

.station__marker--dev {
  border: none;
  background: var(--bg);
}

.station__marker--dev::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--t3);
  animation: v2spin 16s linear infinite;
  box-sizing: border-box;
}

@keyframes v2spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.station__body {
  margin-top: 22px;
}

.station:nth-child(3) .station__body {
  opacity: 0.65;
}

.station__tag {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.station__title {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -.018em;
  margin-bottom: 8px;
}

/* ---------- platform: night shift ---------- */
.ns {
  position: relative;
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  background: var(--pn);
}

[data-theme="light"] .ns {
  background: linear-gradient(100deg, #FFFFFF 0%, #FBFAF7 52%, #FBF6E9 80%, #F8F1DF 100%);
  box-shadow: 0 1px 2px rgba(18, 22, 15, .05), 0 20px 50px -28px rgba(18, 22, 15, .2);
}

.ns__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px clamp(18px, 2.4vw, 26px);
  border-bottom: 1px solid var(--bd2);
}

.ns__body {
  position: relative;
  padding: clamp(24px, 3.2vw, 42px) clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px);
}

.ns__track {
  position: relative;
  height: 198px;
  --ty: 78px;
}

.ns__rule {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--ty);
  height: 1px;
  background: var(--bd);
}

.ns__fill {
  position: absolute;
  left: 0;
  top: var(--ty);
  height: 1px;
  width: 86%;
  background: linear-gradient(90deg, var(--al), var(--ac));
  animation: nsFill 11s linear infinite;
}

.ns__sweep {
  position: absolute;
  top: calc(var(--ty) - 40px);
  height: 80px;
  width: 1px;
  left: 86%;
  opacity: 0;
  background: linear-gradient(180deg, transparent, var(--ac), transparent);
  animation: nsSweep 11s cubic-bezier(.4, 0, .5, 1) infinite;
}

.ns__gate {
  position: absolute;
  left: 86%;
  top: calc(var(--ty) - 34px);
  width: 2px;
  height: 62px;
  margin-left: -1px;
  border-radius: 2px;
  background: var(--gd);
}

.ns__gate-dot {
  position: absolute;
  left: 86%;
  top: calc(var(--ty) - 5.5px);
  width: 11px;
  height: 11px;
  margin-left: -5.5px;
  border-radius: 50%;
  background: var(--gd);
  animation: nsGateDot 11s ease-out infinite;
}

.ns__gate-label {
  position: absolute;
  left: 86%;
  top: calc(var(--ty) + 40px);
  transform: translateX(-50%);
  text-align: center;
  width: 120px;
  animation: nsReveal 11s ease-in-out infinite;
}

.ns__stage {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 118px;
  transform: translateX(-50%);
  text-align: center;
}

.ns__time {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--ty) - 30px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: .09em;
  color: var(--ac);
  animation: nsTime 11s linear infinite backwards;
}

.ns__dot {
  position: absolute;
  left: 50%;
  top: calc(var(--ty) - 4.5px);
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--ac);
  animation: nsDot 11s cubic-bezier(.2, .9, .3, 1) infinite backwards;
}

.ns__name {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--ty) + 18px);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--tx);
  animation: nsTitle 11s linear infinite backwards;
}

.ns__value {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--ty) + 40px);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--t2);
  animation: nsCount 11s linear infinite backwards;
}

.ns__stage--1 .ns__time,
.ns__stage--1 .ns__dot,
.ns__stage--1 .ns__name,
.ns__stage--1 .ns__value,
.ns__stage:nth-of-type(1) .ns__time,
.ns__stage:nth-of-type(1) .ns__dot,
.ns__stage:nth-of-type(1) .ns__name,
.ns__stage:nth-of-type(1) .ns__value {
  animation-delay: 0s;
}

.ns__stage--2 .ns__time,
.ns__stage--2 .ns__dot,
.ns__stage--2 .ns__name,
.ns__stage--2 .ns__value,
.ns__stage:nth-of-type(2) .ns__time,
.ns__stage:nth-of-type(2) .ns__dot,
.ns__stage:nth-of-type(2) .ns__name,
.ns__stage:nth-of-type(2) .ns__value {
  animation-delay: 1.15s;
}

.ns__stage--3 .ns__time,
.ns__stage--3 .ns__dot,
.ns__stage--3 .ns__name,
.ns__stage--3 .ns__value,
.ns__stage:nth-of-type(3) .ns__time,
.ns__stage:nth-of-type(3) .ns__dot,
.ns__stage:nth-of-type(3) .ns__name,
.ns__stage:nth-of-type(3) .ns__value {
  animation-delay: 2.3s;
}

.ns__stage--4 .ns__time,
.ns__stage--4 .ns__dot,
.ns__stage--4 .ns__name,
.ns__stage--4 .ns__value,
.ns__stage:nth-of-type(4) .ns__time,
.ns__stage:nth-of-type(4) .ns__dot,
.ns__stage:nth-of-type(4) .ns__name,
.ns__stage:nth-of-type(4) .ns__value {
  animation-delay: 3.45s;
}

.ns__stage--5 .ns__time,
.ns__stage--5 .ns__dot,
.ns__stage--5 .ns__name,
.ns__stage--5 .ns__value,
.ns__stage:nth-of-type(5) .ns__time,
.ns__stage:nth-of-type(5) .ns__dot,
.ns__stage:nth-of-type(5) .ns__name,
.ns__stage:nth-of-type(5) .ns__value {
  animation-delay: 4.6s;
}

.ns__held {
  border-top: 1px solid var(--bd2);
  margin-top: clamp(14px, 1.8vw, 22px);
  padding-top: clamp(16px, 2vw, 22px);
  animation: nsReveal 11s ease-in-out infinite;
}

.ns__held-row {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.35;
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--gs);
}

.ns__tag {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gd);
  margin-left: auto;
  border: 1px solid var(--gb);
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.ns__record {
  border-top: 1px solid var(--bd2);
  padding: clamp(16px, 2vw, 20px) clamp(20px, 2.6vw, 28px);
  background: var(--bg2);
}

[data-theme="light"] .ns__held-row {
  background: rgba(154, 124, 8, .04);
}

[data-theme="light"] .ns__record {
  background: rgba(18, 22, 15, .025);
}

/* ---------- platform: under the hood support ---------- */
.vert__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.vert__name {
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.vert__rows {
  display: grid;
  gap: 14px;
}

/* Platform timeline stages & sub-elements */
.ns__stage--1 {
  left: 3%;
}

.ns__stage--2 {
  left: 20%;
}

.ns__stage--3 {
  left: 38%;
}

.ns__stage--4 {
  left: 55%;
}

.ns__stage--5 {
  left: 69%;
}

.ns__head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ns__head-label {
  font-size: 11.5px;
  color: var(--t2);
}

.ns__head-time {
  font-size: 12px;
  color: var(--tc);
}

.ns__gate-label-time {
  margin-bottom: 6px;
}

.ns__gate-title {
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
}

.ns__gate-sub {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--t2);
  margin-top: 4px;
}

.ns__held-label {
  margin-bottom: 12px;
}

.ns__held-grid {
  gap: 8px;
}

.ns__held-item {
  font-size: 14px;
  color: var(--tc);
}

.ns__record-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ns__record-text {
  font-size: 14px;
  color: var(--tc);
}

.ns__record-flow {
  font-size: 11.5px;
  color: var(--t3);
  margin-left: auto;
}

.held-card__label {
  margin-bottom: 8px;
}

.held-card__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--tc);
}

.vert__sublabel {
  margin-bottom: 5px;
}

.vert__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--tc);
}

.h2--vert {
  max-width: 18em;
}

.h2--compound {
  max-width: 24em;
}

.row__split-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--t2);
  max-width: 30em;
}

.h2--stack {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 14px;
}

.panel-lead-desc {
  font-size: 15.5px;
  margin-bottom: 22px;
}

.panel-subnote {
  font-size: 12.5px;
  color: var(--t2);
}

/* Common clean component styles */
.hero-box {
  max-width: 840px;
}

.hero-box--980 {
  max-width: 980px;
}

.hero-box--860 {
  max-width: 860px;
}

.hero-box--840 {
  max-width: 840px;
}

.hero-box--820 {
  max-width: 820px;
}

.hero-box--800 {
  max-width: 800px;
}

.hero-box--760 {
  max-width: 760px;
}

.hero-box--720 {
  max-width: 720px;
}

.hero-box--700 {
  max-width: 700px;
}

.hero-box--680 {
  max-width: 680px;
}

.hero-box--660 {
  max-width: 660px;
}

.hero-box--640 {
  max-width: 640px;
}

.hero-box--540 {
  max-width: 540px;
}

.hero-box--520 {
  max-width: 520px;
}

.lede--max {
  max-width: 38em;
}

.h1--hero-spaced {
  margin: 22px 0 20px;
}

.h1--hero-20 {
  margin: 20px 0 18px;
}

.h1--hero-mb {
  margin-bottom: 20px;
}

.h2--callout {
  font-size: clamp(28px, 4vw, 50px);
  margin-bottom: 16px;
}

.body--clamp-lg {
  font-size: clamp(15.5px, 1.4vw, 18px);
}

.grid--dev-badges {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.dev-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed var(--st);
  border-radius: 11px;
  padding: 15px 16px;
}

.dev-badge-item__text {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--tc);
}

.contact-step-row {
  grid-template-columns: 2.4em 1fr;
  padding: clamp(16px, 2vw, 22px) 0;
}

.contact-step-title {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.45;
}

.req-star {
  color: var(--ac);
}

.panel--feature-list {
  padding: clamp(22px, 2.8vw, 32px);
  display: grid;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item__text {
  font-size: 15.5px;
  color: var(--tc);
}

.feature-item__text--mute {
  font-size: 15.5px;
  color: var(--t2);
}

.dot--lg {
  width: 9px;
  height: 9px;
}

.dot--ac {
  background: var(--ac);
}

.dot--st {
  background: var(--st);
}

.dot--border-t3 {
  border-color: var(--t3);
  border-width: 1.5px;
}

.divider-line {
  height: 1px;
  background: var(--bd2);
}

.visually-hidden-input {
  position: absolute;
  left: -9999px;
}

.sec--hero-spaced {
  padding-bottom: clamp(40px, 5vw, 60px);
}

.sec--flat-top {
  padding-top: 0;
  border-top: 0;
}

.label--spacious {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.enter-hero-badge {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}

.hero-powered {
  font-size: 12px;
  color: var(--t3);
}

.sec-head-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 3.4vw, 40px);
}

.label--tracking {
  font-size: 11.5px;
  letter-spacing: 0.08em;
}

.panel--rules {
  padding: clamp(18px, 2.4vw, 26px);
}

.label--rule {
  margin-bottom: 12px;
}

.ask__bar--flat {
  margin-bottom: 0;
}

.ask__prompt-chev {
  font-size: 13px;
  color: var(--ac);
  flex-shrink: 0;
}

.ask__prompt-text {
  font-size: 15px;
  line-height: 1.45;
  color: var(--tx);
}

.dryrun-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 14px;
  flex-wrap: wrap;
}

.dryrun-progress {
  flex: 1;
  min-width: 80px;
  max-width: 160px;
  height: 2px;
  background: var(--bd);
  border-radius: 2px;
  overflow: hidden;
  display: block;
}

.dryrun-progress__fill {
  display: block;
  height: 100%;
  background: var(--gd);
  transform-origin: left;
  animation: v2grow 1.1s ease-out 0.3s both;
}

.dryrun-history-label {
  font-size: 11.5px;
  color: var(--t2);
}

.rules-result-box {
  border-top: 1px solid var(--bd2);
  padding-top: 16px;
}

.rules-result-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--tc);
  margin-bottom: 12px;
}

.text-highlight {
  color: var(--tx);
}

.chip--adjust {
  font-size: 12px;
  color: var(--tx);
  letter-spacing: .02em;
}

.tl__content {
  margin-top: 22px;
}

.label--tl {
  margin-bottom: 9px;
}

.sec--overview {
  padding: 0 0 clamp(50px, 6vw, 86px);
}

.grid--cards-gap {
  gap: clamp(12px, 1.8vw, 18px);
}

.card--security {
  border-radius: 13px;
  padding: clamp(16px, 2vw, 22px);
}

.card--security-text {
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--tc);
}

.panel--pad-mid {
  padding: clamp(20px, 2.6vw, 30px);
}

.grid--gap-10 {
  gap: 10px;
}

.ten-row__title {
  font-size: 14.5px;
  color: var(--tx);
}

.ten-row__title--dim {
  font-size: 14.5px;
  color: var(--t2);
}

.ten-row__badge {
  font-size: 11.5px;
  color: var(--ac);
  margin-left: auto;
}

.ten-row__badge--mute {
  font-size: 11.5px;
  color: var(--t3);
  margin-left: auto;
}

.ten-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--bd2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ten-foot__location {
  font-size: 14px;
  color: var(--t2);
}

.grid--trace {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.trace__label {
  margin-bottom: 8px;
}

.trace__text {
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--tc);
}

.card--soft-title {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 5px;
}

.rows--mb {
  margin-bottom: clamp(30px, 4vw, 44px);
}

.sec--hero-demo {
  padding-bottom: clamp(36px, 4.5vw, 56px);
}

.grid--demo-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.demo-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-card-step {
  font-size: 11.5px;
  color: var(--ac);
}

.demo-card-title {
  font-size: clamp(18px, 1.9vw, 22px);
  margin-bottom: 9px;
}

.sec--hero-faqs {
  padding-bottom: clamp(34px, 4.4vw, 52px);
}

.faq-group {
  margin-bottom: clamp(30px, 4vw, 46px);
}

.sec--404 {
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.label--404 {
  margin-bottom: 14px;
  color: var(--ac);
}

.lede--404 {
  margin-bottom: 30px;
}

.btns-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta-mono {
  font-size: 12.5px;
  color: var(--t3);
}

.hero-meta-link {
  color: var(--t2);
  text-decoration: underline;
}

.card--legal {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4.5vw, 56px);
  border-radius: 18px;
}

.legal-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bd2);
}

.legal-title {
  margin-top: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--tx);
}

.legal-subtitle {
  color: var(--t2);
  margin-bottom: 0;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section--terms {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--bd2);
}

.legal-contact-box {
  color: var(--tc);
  background: var(--pn2);
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid var(--bd2);
}

.legal-contact-sub {
  color: var(--t2);
  margin-top: 14px;
}

.th--w38 {
  width: 38%;
}

.th--w45 {
  width: 45%;
}

.h4--spaced {
  margin-top: 36px;
}

.prose a {
  color: var(--ac);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.prose a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* ---------- header & footer dim/mono helpers ---------- */
.drop__name--dim {
  color: var(--t2);
}

.drop__note--dim {
  color: var(--t3);
}

.mnav__sub-title--dim {
  color: var(--t2);
}

.mnav__sub-desc--dim {
  color: var(--t3);
}

.ftr__mono {
  font-size: 12.5px;
  color: var(--t3);
}

/* ---------- insights detail & listing classes ---------- */
.article-wrap--pad {
  padding-top: clamp(36px, 4.8vw, 60px);
  padding-bottom: clamp(48px, 6vw, 84px);
}

.article-back i {
  font-size: 11px;
}

.h1--article {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lede--article {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--t2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.eyebrow--mb10 {
  margin-bottom: 10px;
}

.h2--article-cta {
  font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 12px;
}

.small--article-cta {
  max-width: 540px;
  margin: 0 auto 24px;
  color: var(--t2);
  line-height: 1.6;
}

.related-wrap {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--bd);
}

.related-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
}

.grid--related {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.related-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.related-card__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.related-card__desc {
  color: var(--t2);
  line-height: 1.5;
  margin-bottom: 12px;
}

.wrap--404-pad {
  padding: clamp(60px, 8vw, 120px) 0;
  text-align: center;
}

.eyebrow--warn {
  color: var(--gd);
  margin-bottom: 12px;
}

.h1--mb16 {
  margin-bottom: 16px;
}

.lede--404-sub {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--t2);
}

.sec--hero-insights {
  padding-bottom: clamp(34px, 4.4vw, 52px);
}

.h1--insights {
  margin: 20px 0 18px;
}

.grid--insights {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.insight-card__read-time {
  font-size: 11px;
  color: var(--t3);
}

.insight-card__title {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.insight-card__desc {
  color: var(--t2);
  margin-bottom: 14px;
}

.foot-note--insights {
  margin-top: clamp(24px, 3vw, 36px);
}

/* ---------- home page layout & demo classes ---------- */
.hero-box--820 {
  max-width: 820px;
}

.hero-box--720 {
  max-width: 720px;
}

.h1--home-spaced {
  margin: 20px 0 20px;
}

.lede--home {
  max-width: 38em;
  margin-bottom: 26px;
}

.btns--mb22 {
  margin-bottom: 22px;
}

.sec--demo {
  padding: 0 0 clamp(60px, 8vw, 110px);
}

.label--demo-meta {
  font-size: 11.5px;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.ticks span:nth-child(1) {
  height: 11px;
  animation-delay: .1s;
}

.ticks span:nth-child(2) {
  height: 16px;
  animation-delay: .2s;
}

.ticks span:nth-child(3) {
  height: 9px;
  animation-delay: .3s;
}

.ticks span:nth-child(4) {
  height: 14px;
  animation-delay: .4s;
}

.ticks span:nth-child(5) {
  height: 7px;
  animation-delay: .5s;
}

.ticks span:nth-child(6) {
  height: 12px;
  animation-delay: .6s;
}

.grid--stat-cards {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.stat__label {
  margin-bottom: 10px;
}

.stat__fig {
  margin-bottom: 8px;
}

.stat__bar--al {
  background: var(--al);
  animation-delay: 1s;
}

.stat__bar--gd {
  background: var(--gd);
  animation-delay: 1.14s;
}

.stat__bar--st {
  background: var(--st);
  animation-delay: 1.28s;
}

.ask-prompt-sym {
  font-size: 13px;
  color: var(--ac);
  flex-shrink: 0;
}

.ask-prompt-sym--mute {
  font-size: 13px;
  color: var(--t3);
  flex-shrink: 0;
}

.ask__answer-body {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ask__held-q {
  font-size: 15px;
  color: var(--t2);
}

.label--held-badge {
  margin-bottom: 9px;
}

.ask__held-body {
  font-size: 15.5px;
  line-height: 1.6;
}

.grid--forecast {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.fc__chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.fc__svg--responsive {
  width: 100%;
  height: auto;
  display: block;
}

.fc__axis-today {
  color: var(--tc);
}

.grid--fc-rows {
  gap: 10px;
}

.fc__lines-label {
  margin-bottom: 2px;
}

.fc__row-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.fc__row-name {
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--tc);
}

.fc__row-val {
  font-size: 13px;
  color: var(--tx);
  white-space: nowrap;
}

.fc__row-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fc__row-conf {
  font-size: 11.5px;
  color: var(--t2);
  white-space: nowrap;
}

.demo__note--mt18 {
  margin-top: 18px;
}

.label--staged {
  margin-bottom: 16px;
}

.grid--wf-cards {
  gap: 12px;
}

.wf__info {
  min-width: 0;
}

.wf__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.wf__desc {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.45;
}

.wf__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.grid--two-gov {
  display: grid;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.gov-body-col {
  padding-top: clamp(0px, 1.6vw, 26px);
}

.body--lg-mb14 {
  margin-bottom: 14px;
}

.body--lg-dim {
  color: var(--t2);
}

.holdp__inner {
  position: relative;
  padding: clamp(24px, 3vw, 38px) clamp(22px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
}

.holdp__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.4vw, 42px);
}

.label--hold-time {
  padding-top: 4px;
  white-space: nowrap;
}

.kicker--mb-gov {
  margin-bottom: clamp(26px, 3vw, 38px);
}

.grid--pharm-stats {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3.4vw, 48px);
  margin-bottom: clamp(28px, 3.4vw, 40px);
}

.figure--hero-stat {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 12px;
}

.station__tag--ac {
  color: var(--ac);
}

.station__tag--al {
  color: var(--al);
}

.station__tag--mute {
  color: var(--t3);
}

.h2--talk {
  font-size: clamp(30px, 4.2vw, 54px);
  margin-bottom: 18px;
}

.body--lg-talk {
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 28px;
}

.btns--talk {
  margin-bottom: 20px;
}

.mono--talk-note {
  font-size: 13px;
  color: var(--t2);
}

/* ---------- deployment timeline ---------- */
.tl {
  position: relative;
}

.tl__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 1px;
  background: var(--bd);
}

.tl__fill {
  position: absolute;
  left: 0;
  top: 6px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--ac), var(--al));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.2, .7, .3, 1);
}

.tl.is-in .tl__fill {
  transform: scaleX(1);
}

.tl__stops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(22px, 3vw, 40px);
  position: relative;
}

.tl__marker {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ac);
  transform: scale(0);
  transition: transform .45s cubic-bezier(.2, .9, .3, 1);
}

.tl.is-in .tl__marker {
  transform: scale(1);
}

.tl__stop:nth-child(2) .tl__marker {
  transition-delay: .2s;
}

.tl__stop:nth-child(3) .tl__marker {
  transition-delay: .4s;
}

.tl__stop:nth-child(4) .tl__marker {
  transition-delay: .6s;
}

/* ---------- accordion ---------- */
.acc {
  position: relative;
  border: 1px solid var(--bd);
  border-radius: 16px;
  overflow: hidden;
  background: var(--pn);
}

[data-theme="light"] .acc {
  background: linear-gradient(168deg, rgb(255, 255, 255) 0%, rgb(252, 251, 248) 62%, rgb(248, 247, 242) 100%);
  box-shadow: rgba(20, 24, 16, 0.04) 0px 1px 2px, rgba(20, 24, 16, 0.16) 0px 14px 34px -14px;
}

.acc__item+.acc__item {
  border-top: 1px solid var(--bd2);
}

.acc__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(140px, 1.1fr) minmax(0, 1.5fr) auto;
  gap: clamp(10px, 1.6vw, 18px);
  align-items: center;
  padding: clamp(15px, 1.9vw, 20px) clamp(16px, 2.2vw, 24px);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--tx);
  font-family: inherit;
}

.acc__head--q {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(16px, 2.1vw, 22px) clamp(18px, 2.4vw, 26px);
}

.acc__head:hover {
  background: var(--as);
}

.acc__chev {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 15px;
  color: var(--ac);
  transition: transform .25s ease;
  display: inline-block;
}

.acc__head[aria-expanded="true"] .acc__chev {
  transform: rotate(90deg);
}

.acc__sign {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 17px;
  line-height: 1;
  color: var(--ac);
  flex-shrink: 0;
  transition: transform .25s ease;
  display: inline-block;
}

.acc__head[aria-expanded="true"] .acc__sign {
  transform: rotate(45deg);
}

.acc__name {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  min-width: 0;
}

.acc__q {
  font-size: clamp(15.5px, 1.6vw, 18px);
  font-weight: 600;
  line-height: 1.4;
}

.acc__watch {
  font-size: 14px;
  color: var(--t2);
  min-width: 0;
}

.acc__status {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  color: var(--ac);
  border: 1px solid var(--ab);
}

.acc__status--soon {
  color: var(--t3);
  border: 1px dashed var(--st);
}

.acc__body {
  padding: 0 clamp(16px, 2.2vw, 24px) clamp(20px, 2.4vw, 26px);
  animation: v2fade .3s ease-out both;
}

.acc__body--q {
  padding: 0 clamp(18px, 2.4vw, 26px) clamp(18px, 2.2vw, 24px);
}

.acc__body--q .body {
  font-size: 15.5px;
  line-height: 1.62;
  margin-bottom: 12px;
  max-width: 56em;
}

.acc__body--q .mono {
  font-size: 12.5px;
}

.acc__body--q ul {
  line-height: 1.62;
  margin-bottom: 12px;
  padding-left: 18px;
}

.acc__body[hidden] {
  display: none;
}

.acc__stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(12px, 1.8vw, 22px);
}

.acc__stage {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--ac);
}

.acc__stage:last-child {
  border-top-color: var(--gb);
}

.acc__stage-dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ac);
}

.acc__stage:last-child .acc__stage-dot {
  background: var(--gd);
}

.acc__stage:last-child .stage__label {
  color: var(--gd);
}

/* ---------- trust ---------- */
.ten-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ab);
  background: var(--as);
  border-radius: 10px;
  padding: 14px 15px;
}

[data-theme="light"] .ten-row {
  background: rgba(11, 111, 107, .05);
  border: 1px solid rgba(11, 111, 107, .28);
}

.ten-row--dim {
  border: 1px dashed var(--bd);
  background: transparent;
  opacity: .62;
}

[data-theme="light"] .ten-row--dim {
  background: transparent;
  border: 1px dashed var(--bd);
  opacity: 1;
}

.trace {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid var(--ac);
}

.trace__dot {
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ac);
}

/* ---------- forms ---------- */
.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t2);
}

.field__opt {
  font-weight: 400;
  color: var(--t3);
}

.input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bd);
  border-radius: 9px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--tx);
  background: rgba(255, 255, 255, .02);
  transition: border-color .16s ease;
}

[data-theme="light"] .input {
  background: rgba(255, 255, 255, .7);
}

.input:focus,
.input:focus-visible {
  border-color: var(--ac) !important;
  outline: none !important;
  box-shadow: 0 0 0 1px var(--ac);
}

.input::placeholder {
  color: var(--t3);
}

textarea.input {
  min-height: 92px;
  resize: vertical;
}

.field__err {
  font-size: 13px;
  color: var(--gd);
  min-height: 0;
}

.form__note {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12.5px;
  color: var(--t2);
}

.form__status {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--tc);
}

.form__bar {
  display: none !important;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.82;
  cursor: not-allowed !important;
  pointer-events: none;
}

.btn__spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: currentColor;
  animation: btnSpin 0.75s linear infinite;
  margin-right: 9px;
  flex-shrink: 0;
  vertical-align: -2px;
}

@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

.form.is-submitting {
  opacity: 0.9;
}

.form__success {
  padding: clamp(28px, 4vw, 38px) 24px;
  text-align: center;
  background: var(--pn);
  border: 1px solid rgba(19, 140, 137, 0.3);
  border-radius: 12px;
  animation: formFadeIn .35s ease-out;
}

.form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ac);
  color: #0d0e0c;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(19, 140, 137, 0.35);
}

@keyframes formFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- footer ---------- */
.ftr {
  position: relative;
  border-top: 1px solid var(--bd2);
  padding: 30px clamp(18px, 4vw, 40px);
  z-index: 1;
}

.ftr__in {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ftr__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ftr__links a {
  font-size: 13.5px;
  color: var(--t2);
}

.ftr__links a:hover {
  color: var(--tx);
  opacity: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- breakpoints & responsiveness ---------- */

/* Global overflow protection on smaller devices */
html,
body {
  overflow-x: clip;
  max-width: 100vw;
}

@media (max-width: 1010px) {

  .nav {
    display: none !important;
  }

  .hdr__in {
    padding: 10px clamp(10px, 2.5vw, 24px);
    min-height: 56px;
    gap: 8px;
  }

  .hdr__left {
    gap: 8px;
    min-width: 0;
  }

  .brand {
    gap: 7px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand__sym {
    height: 28px;
    width: 28px;
    flex-shrink: 0;
  }

  .brand__word {
    height: 15px;
    width: auto;
    max-width: 100%;
  }

  .hdr__right {
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
  }

  .mode {
    padding: 5px 9px;
    min-height: 32px;
    font-size: 11.5px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .hdr__right .btn,
  .hdr__right .btn--sm {
    display: inline-flex !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 600;
    min-height: 32px;
    white-space: nowrap;
    border-radius: 7px;
    flex-shrink: 0;
  }

  .burger {
    display: block !important;
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    position: relative;
  }

  .burger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 1.5px;
  }

  .burger span:nth-child(1) {
    top: 11px;
  }

  .burger span:nth-child(2) {
    top: 17px;
  }

  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateX(-50%) translateY(3px) rotate(45deg);
  }

  .burger[aria-expanded="true"] span:nth-child(2) {
    transform: translateX(-50%) translateY(-3px) rotate(-45deg);
  }

  .mnav {
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 1011px) {
  .mnav {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .grid--two {
    gap: clamp(24px, 3.5vw, 42px);
  }

  .grid--cards,
  .grid--cards-lg {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 760px) {

  /* Mobile typography polish - decongest line-heights, letter-spacing and sizing */
  h1,
  h2,
  h3 {
    text-wrap: pretty;
  }

  .h1 {
    font-size: clamp(28px, 6.2vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.012em;
  }

  .h1--home {
    font-size: clamp(30px, 6.8vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.012em;
  }

  .h2 {
    font-size: clamp(24px, 5.2vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.012em;
  }

  .h2--sm {
    font-size: clamp(21px, 4.4vw, 28px);
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  .h2--md {
    font-size: clamp(22px, 4.8vw, 30px);
    line-height: 1.22;
    letter-spacing: -0.012em;
  }

  .h3 {
    font-size: clamp(19px, 4vw, 24px);
    line-height: 1.26;
    letter-spacing: -0.008em;
  }

  .lede {
    font-size: clamp(15.5px, 3.5vw, 18px);
    line-height: 1.58;
    letter-spacing: 0;
  }

  .body--lg {
    font-size: clamp(15.5px, 3.4vw, 18px);
    line-height: 1.58;
  }

  .body {
    font-size: 15.5px;
    line-height: 1.6;
  }

  .small {
    font-size: 14px;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.07em;
    padding: 5px 11px;
  }

  .kicker {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .figure {
    font-size: clamp(26px, 6vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.015em;
  }

  .grid--two,
  .grid--two-mid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
  }

  .row--num3 {
    grid-template-columns: 2.4em 1fr;
  }

  .row--num3 .row__detail-cell {
    grid-column: 2;
  }

  .acc__head {
    grid-template-columns: auto 1fr auto;
    padding: 16px 14px;
  }

  .acc__q {
    font-size: 15px;
    line-height: 1.45;
  }

  .acc__watch {
    display: none;
  }

  .motif {
    width: clamp(220px, 65vw, 340px);
    opacity: .45;
    right: -40px;
  }

  .holdp__motif {
    width: 55%;
    opacity: .4;
    right: -20px;
  }

  .tab__label {
    display: none;
  }

  .tab__label--short {
    display: block;
  }

  .demo__body {
    min-height: 0;
  }

  /* Traceability vertical timeline on mobile */
  .grid--trace {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding-left: 4px;
  }

  .grid--trace .trace {
    position: relative;
    border-top: none;
    padding-top: 0;
    padding-left: 28px;
    padding-bottom: 26px;
  }

  .grid--trace .trace::before {
    content: '';
    position: absolute;
    left: 4.25px;
    top: 7px;
    bottom: -7px;
    width: 1.5px;
    background: var(--ac);
  }

  .grid--trace .trace:last-child::before {
    display: none;
  }

  .grid--trace .trace:last-child {
    padding-bottom: 0;
  }

  .grid--trace .trace__dot {
    position: absolute;
    top: 3px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ac);
    box-shadow: 0 0 0 3px var(--pn);
    z-index: 1;
  }

  /* Night shift vertical timeline with mobile animations */
  .ns__track {
    height: auto;
    padding-left: 26px;
    position: relative;
  }

  .ns__rule {
    left: 7px;
    right: auto;
    top: 6px;
    bottom: 6px;
    width: 1px;
    height: auto;
  }

  .ns__fill {
    display: block;
    position: absolute;
    left: 7px;
    right: auto;
    top: 6px;
    width: 1px;
    height: calc(100% - 12px);
    background: linear-gradient(180deg, var(--al), var(--ac));
    transform-origin: top;
    animation: nsFillV 11s linear infinite;
  }

  .ns__sweep {
    display: block;
    position: absolute;
    left: 6px;
    width: 3px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--ac), transparent);
    opacity: 0;
    transform-origin: top;
    animation: nsSweepV 11s cubic-bezier(.4, 0, .5, 1) infinite;
  }

  .ns__gate {
    display: none;
  }

  .ns__gate-dot {
    display: block;
    position: absolute;
    left: 7px;
    bottom: 12px;
    top: auto;
    width: 11px;
    height: 11px;
    margin-left: -5px;
    border-radius: 50%;
    background: var(--gd);
    animation: nsGateDot 11s ease-out infinite;
  }

  .ns__stage {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto !important;
    width: auto;
    transform: none;
    text-align: left;
    padding: 0 0 22px 0;
  }

  .ns__time,
  .ns__name,
  .ns__value {
    position: static;
  }

  .ns__dot {
    margin: 0 0 0 -23px;
    position: absolute;
    left: 0;
    top: 4px;
    animation: nsDot 11s cubic-bezier(.2, .9, .3, 1) infinite backwards;
  }

  .ns__time {
    margin-bottom: 4px;
    animation: nsTime 11s linear infinite backwards;
  }

  .ns__name {
    margin-bottom: 3px;
    animation: nsTitle 11s linear infinite backwards;
  }

  .ns__value {
    animation: nsCount 11s linear infinite backwards;
  }

  .ns__gate-label {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    text-align: left;
    animation: nsReveal 11s ease-in-out infinite;
    padding-left: 0;
    border-top: 1px solid var(--gb);
    padding-top: 16px;
  }
}

@keyframes nsFillV {
  0% {
    transform: scaleY(0);
  }

  6% {
    transform: scaleY(0.08);
  }

  18.5% {
    transform: scaleY(0.25);
  }

  29% {
    transform: scaleY(0.45);
  }

  39% {
    transform: scaleY(0.65);
  }

  50% {
    transform: scaleY(0.85);
  }

  60% {
    transform: scaleY(1);
    opacity: 1;
  }

  88% {
    transform: scaleY(1);
    opacity: 1;
  }

  91% {
    opacity: 0;
  }

  92% {
    transform: scaleY(0);
    opacity: 0;
  }

  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

@keyframes nsSweepV {
  0% {
    top: 6px;
    opacity: 0;
  }

  5% {
    top: 6px;
    opacity: 1;
  }

  18.5% {
    top: 25%;
  }

  29% {
    top: 45%;
  }

  39% {
    top: 65%;
  }

  50% {
    top: 85%;
  }

  57% {
    top: 96%;
    opacity: 1;
  }

  62% {
    top: 96%;
    opacity: 0;
  }

  100% {
    top: 96%;
    opacity: 0;
  }
}

/* Vertical transformation for Roadmap & Deployment Timelines */
@media (max-width: 680px) {
  .track {
    position: relative;
    padding-left: 28px;
  }

  .track__line,
  .track__fill {
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    height: auto;
    right: auto;
  }

  .track__fill {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.2, .7, .3, 1);
  }

  .track.is-in .track__fill {
    transform: scaleY(0.51);
  }

  .track__stations {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .station {
    position: relative;
  }

  .station__marker {
    position: absolute;
    left: -28px;
    top: 4px;
  }

  .station__body {
    margin-top: 0;
  }

  /* LensPharm & general deployment timeline */
  .tl {
    position: relative;
    padding-left: 28px;
  }

  .tl__line,
  .tl__fill {
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    height: auto;
    right: auto;
  }

  .tl__fill {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(.2, .7, .3, 1);
  }

  .tl.is-in .tl__fill {
    transform: scaleY(1);
  }

  .tl__stops {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .tl__stop {
    position: relative;
  }

  .tl__marker {
    position: absolute;
    left: -28px;
    top: 4px;
  }

  .tl__stop>div[style*="margin-top"] {
    margin-top: 0 !important;
  }

  /* Footer stack */
  .ftr__in {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .ftr__links {
    gap: 12px 18px;
  }
}

@media (max-width: 540px) {
  .btns {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .btns .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 12px 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
    white-space: nowrap;
  }

  .stages {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .wf__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
  }

  .wf__card>div:last-child {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .chips {
    gap: 6px;
  }

  .chip {
    font-size: 12px;
    padding: 5px 9px;
  }

  .reassure {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 12.5px;
  }

  .input,
  textarea.input {
    font-size: 16px;
    /* Prevents auto-zoom in mobile Safari */
    min-height: 46px;
  }

  .fc__chart {
    padding: 14px 12px;
  }

  .fc__axis {
    font-size: 10px;
  }

  .fc__legend {
    gap: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hdr__in {
    padding: 10px clamp(10px, 3vw, 16px);
    min-height: 54px;
    gap: 6px;
  }

  .brand {
    gap: 6px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand__sym {
    height: 26px;
    width: 26px;
    flex-shrink: 0;
  }

  .brand__word {
    height: 14px;
    width: auto;
    max-width: 100%;
  }

  .hdr__right {
    gap: 5px;
    flex-shrink: 0;
  }

  .mode {
    padding: 5px 8px;
    min-height: 32px;
    font-size: 11px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .hdr__right .btn,
  .hdr__right .btn--sm {
    display: inline-flex !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 6px 10px;
    font-size: 11.5px;
    font-weight: 600;
    min-height: 32px;
    white-space: nowrap;
    border-radius: 7px;
    flex-shrink: 0;
  }

  .burger {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-shrink: 0;
    border-radius: 6px;
  }

  .burger span {
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
  }

  .burger span:nth-child(1) {
    top: 11px;
  }

  .burger span:nth-child(2) {
    top: 17px;
  }

  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateX(-50%) translateY(3px) rotate(45deg);
  }

  .burger[aria-expanded="true"] span:nth-child(2) {
    transform: translateX(-50%) translateY(-3px) rotate(-45deg);
  }

  /* Extra mobile phone typography refinement */
  .h1 {
    font-size: clamp(26px, 7.6vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.008em;
  }

  .h1--home {
    font-size: clamp(27px, 8vw, 35px);
    line-height: 1.18;
    letter-spacing: -0.008em;
  }

  .h2 {
    font-size: clamp(22px, 5.8vw, 26px);
    line-height: 1.22;
    letter-spacing: -0.008em;
  }

  .h2--sm {
    font-size: clamp(20px, 5.2vw, 24px);
    line-height: 1.24;
    letter-spacing: -0.008em;
  }

  .h2--md {
    font-size: clamp(21px, 5.5vw, 25px);
    line-height: 1.24;
    letter-spacing: -0.008em;
  }

  .h3 {
    font-size: 18.5px;
    line-height: 1.28;
    letter-spacing: 0;
  }

  .lede {
    font-size: 15px;
    line-height: 1.6;
  }

  .body {
    font-size: 15px;
    line-height: 1.6;
  }

  .row__title {
    font-size: 15.5px;
  }

  .row__title--lg {
    font-size: 18px;
    line-height: 1.32;
  }

  .row__title--xl {
    font-size: 19px;
    line-height: 1.32;
  }

  .tabs {
    gap: 6px;
  }

  .tab__label--short {
    font-size: 10px;
    letter-spacing: .04em;
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .hdr__right .btn,
  .hdr__right .btn--sm {
    width: auto !important;
    flex: 0 0 auto !important;
  }

  .btns .btn {
    width: auto;
    flex: 1 1 0;
    white-space: nowrap;
  }

  .demo__head,
  .demo__body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .panel--pad {
    padding: 18px 14px;
  }

  .card {
    padding: 16px 14px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding: 0 14px;
  }

  .h1,
  .h1--home {
    font-size: clamp(24px, 7.8vw, 27px);
    line-height: 1.22;
    letter-spacing: 0;
  }

  .h2 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .brand__sym {
    height: 26px;
  }

  .brand__word {
    height: 14px;
  }

  .btns .btn {
    padding: 11px 6px;
    font-size: 12.5px;
  }

  .stages {
    grid-template-columns: 1fr;
  }

  .tab__label--short {
    font-size: 9px;
  }
}

/* ═══════════════════════════════════════════════════════════
   INSIGHTS & ARTICLE DETAIL STYLING
   ═══════════════════════════════════════════════════════════ */

.card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .22s cubic-bezier(0.16, 1, 0.3, 1), border-color .22s ease, box-shadow .22s ease;
}

.card--link:hover {
  transform: translateY(-3px);
  border-color: var(--ab);
  opacity: 1;
}

[data-theme="light"] .card--link:hover {
  box-shadow: 0 6px 20px -6px rgba(18, 22, 15, .15);
}

.card__more {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ac);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .18s ease, color .18s ease;
}

.card--link:hover .card__more {
  gap: 10px;
  color: var(--al);
}

.article-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 26px;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.article-back:hover {
  color: var(--ac);
  transform: translateX(-3px);
  opacity: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--t3);
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
}

.article-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bd);
}

.article-feat-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--bd);
  margin: 32px 0 28px;
}

.prose {
  font-size: clamp(16px, 1.45vw, 17.5px);
  line-height: 1.8;
  color: var(--tc);
}

.prose p {
  margin-bottom: 22px;
}

.prose h2 {
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 600;
  line-height: 1.28;
  color: var(--tx);
  margin: 44px 0 16px;
  letter-spacing: -0.018em;
}

.prose h3 {
  font-size: clamp(18.5px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.32;
  color: var(--tx);
  margin: 36px 0 14px;
  letter-spacing: -0.015em;
}

.prose ul,
.prose ol {
  margin: 0 0 24px 22px;
  padding-left: 8px;
}

.prose li {
  margin-bottom: 9px;
  line-height: 1.7;
}

.prose blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--gd);
  background: var(--gs);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--t2);
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 24px 0;
  border: 1px solid var(--bd2);
}

.prose code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--pn);
  border: 1px solid var(--bd2);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0 32px;
  border: 1px solid var(--bd);
  border-radius: 12px;
  background: var(--pn);
}

.legal-table,
.prose table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: clamp(13.5px, 1.2vw, 14.5px);
  text-align: left;
}

.legal-table th,
.prose table th {
  background: var(--bg2);
  color: var(--tx);
  font-weight: 600;
  padding: 13px 18px;
  border-bottom: 1px solid var(--bd);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table td,
.prose table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--bd2);
  color: var(--tc);
  vertical-align: top;
  line-height: 1.62;
}

.legal-table tbody tr:last-child td,
.prose table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-table tbody tr:hover,
.prose table tbody tr:hover {
  background: var(--as);
}

.article-stat-box {
  border: 1px solid var(--bd);
  background: var(--pn);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 36px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.article-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ac);
  line-height: 1;
  font-family: 'IBM Plex Mono', monospace;
}

.article-stat-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.55;
}

.article-cta {
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--pn);
  text-align: center;
  margin-top: 64px;
}

/* ═══════════════════════════════════════════════════════════
   PREFERS REDUCED MOTION (WCAG A11Y)
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .motif svg,
  .motif line,
  .motif circle,
  .holdp__motif line,
  .holdp__motif circle {
    animation: none !important;
  }

  .reveal,
  .enter,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ns__dot,
  .ns__time,
  .ns__name,
  .ns__value,
  .ns__gate-label {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .tab__fill {
    transition: none !important;
  }
}

.btn-demo-ctrl:hover,
.btn-demo-pause:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

[data-theme="dark"] .btn-demo-ctrl {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: var(--tx) !important;
}

@media print {

  .hdr,
  .mnav,
  .wash,
  .motif,
  .holdp__motif {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}