/* =====================================================================
   HELIX PRECISION — Industrial Template B
   Aerospace / Medical-Grade Precision CNC Machine Shop
   AS9100D · ISO 13485 · ITAR · NADCAP-AC7110
   Scoped to .hp- prefix. Standalone stylesheet for template-b/.
   ===================================================================== */

/* ---------- 0. Reset / Base ------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.hp-body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--hp-ink);
  background: var(--hp-paper);
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- 1. Tokens ------------------------------------------------ */
:root {
  /* Palette */
  --hp-paper:        #FAFAFA;
  --hp-paper-2:      #EEF0F2;   /* lab grey */
  --hp-paper-3:      #E4E7EA;
  --hp-ink:          #1A1D24;
  --hp-ink-2:        #3A404C;
  --hp-ink-soft:     #6B7280;
  --hp-line:         #D4D8DE;
  --hp-line-2:       #C3C8D0;

  --hp-blue:         #1E4E8C;   /* instrument blue */
  --hp-blue-deep:    #163964;
  --hp-blue-soft:    #E6EDF6;
  --hp-blue-50:      #F2F6FB;

  --hp-aluminum:     #B8BCC2;   /* machined aluminum */
  --hp-aluminum-2:   #9CA1A9;

  --hp-green:        #6FB37A;   /* tolerance pass */
  --hp-green-deep:   #4A8C57;
  --hp-green-soft:   #E8F3EB;

  --hp-amber:        #C99A2E;   /* caution / out-of-tol */
  --hp-red:          #B33A3A;

  /* Typography */
  --hp-display: "Manrope", "Suisse Int'l", "Söhne", -apple-system, BlinkMacSystemFont, sans-serif;
  --hp-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hp-mono:    "Azeret Mono", "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;

  /* Spacing scale (8pt) */
  --hp-s1:  4px;
  --hp-s2:  8px;
  --hp-s3:  12px;
  --hp-s4:  16px;
  --hp-s5:  24px;
  --hp-s6:  32px;
  --hp-s7:  48px;
  --hp-s8:  64px;
  --hp-s9:  96px;
  --hp-s10: 128px;

  /* Radii */
  --hp-r-sm: 2px;
  --hp-r-md: 4px;
  --hp-r-lg: 8px;
  --hp-r-pill: 999px;

  /* Shadows */
  --hp-shadow-1: 0 1px 2px rgba(26, 29, 36, 0.04), 0 1px 1px rgba(26, 29, 36, 0.03);
  --hp-shadow-2: 0 4px 12px rgba(26, 29, 36, 0.06), 0 1px 3px rgba(26, 29, 36, 0.04);
  --hp-shadow-3: 0 12px 32px rgba(26, 29, 36, 0.10), 0 4px 12px rgba(26, 29, 36, 0.06);
  --hp-shadow-blue: 0 8px 24px rgba(30, 78, 140, 0.18);

  /* Motion */
  --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hp-ease-fast: cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --hp-container: 1320px;
  --hp-container-wide: 1480px;
  --hp-gutter: 32px;
}

/* ---------- 2. Typography Utilities ---------------------------------- */
.hp-eyebrow {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--hp-s2);
}

.hp-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hp-blue);
  display: inline-block;
}

.hp-eyebrow--muted {
  color: var(--hp-ink-soft);
}
.hp-eyebrow--muted::before {
  background: var(--hp-aluminum-2);
}

.hp-h1 {
  font-family: var(--hp-display);
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
  color: var(--hp-ink);
}

.hp-h2 {
  font-family: var(--hp-display);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0;
}

.hp-h3 {
  font-family: var(--hp-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

.hp-h4 {
  font-family: var(--hp-display);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  font-weight: 600;
  margin: 0;
}

.hp-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--hp-ink-2);
  font-weight: 400;
  max-width: 64ch;
}

.hp-mono {
  font-family: var(--hp-mono);
  font-feature-settings: "tnum";
  letter-spacing: 0;
}

.hp-num {
  font-family: var(--hp-display);
  font-feature-settings: "tnum", "ss01";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

/* ---------- 3. Layout primitives ------------------------------------- */
.hp-container {
  width: 100%;
  max-width: var(--hp-container);
  margin: 0 auto;
  padding: 0 var(--hp-gutter);
}

.hp-container--wide {
  max-width: var(--hp-container-wide);
}

.hp-section {
  padding: var(--hp-s10) 0;
  position: relative;
}

.hp-section--tight {
  padding: var(--hp-s9) 0;
}

.hp-section--lab {
  background: var(--hp-paper-2);
}

.hp-section--ink {
  background: var(--hp-ink);
  color: var(--hp-paper);
}

.hp-section--blue {
  background: linear-gradient(180deg, var(--hp-blue-deep) 0%, var(--hp-blue) 100%);
  color: var(--hp-paper);
}

.hp-rule {
  height: 1px;
  background: var(--hp-line);
  border: 0;
  margin: 0;
}

.hp-rule--ink {
  background: rgba(250, 250, 250, 0.12);
}

/* ---------- 4. Buttons ----------------------------------------------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--hp-s2);
  padding: 12px 22px;
  font-family: var(--hp-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  border-radius: var(--hp-r-md);
  transition: all 0.2s var(--hp-ease-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.hp-btn--primary {
  background: var(--hp-blue);
  color: #fff;
  border-color: var(--hp-blue);
}

.hp-btn--primary:hover {
  background: var(--hp-blue-deep);
  border-color: var(--hp-blue-deep);
  transform: translateY(-1px);
  box-shadow: var(--hp-shadow-blue);
}

.hp-btn--ghost {
  background: transparent;
  color: var(--hp-ink);
  border-color: var(--hp-line);
}

.hp-btn--ghost:hover {
  background: var(--hp-ink);
  color: var(--hp-paper);
  border-color: var(--hp-ink);
}

.hp-btn--ghost-light {
  background: transparent;
  color: var(--hp-paper);
  border-color: rgba(250, 250, 250, 0.28);
}

.hp-btn--ghost-light:hover {
  background: var(--hp-paper);
  color: var(--hp-ink);
  border-color: var(--hp-paper);
}

.hp-btn--lg {
  padding: 14px 26px;
  font-size: 15px;
}

.hp-btn__arrow {
  display: inline-block;
  transition: transform 0.2s var(--hp-ease-fast);
}

.hp-btn:hover .hp-btn__arrow {
  transform: translateX(3px);
}

/* ---------- 5. Navigation -------------------------------------------- */
.hp-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 250, 250, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--hp-ease-fast), box-shadow 0.25s var(--hp-ease-fast);
}

.hp-nav.is-scrolled {
  border-bottom-color: var(--hp-line);
  box-shadow: 0 1px 0 rgba(26, 29, 36, 0.02), 0 6px 18px rgba(26, 29, 36, 0.04);
}

.hp-nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hp-s6);
}

.hp-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--hp-s3);
  color: var(--hp-ink);
}

.hp-logo__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.hp-logo__mark svg {
  width: 100%;
  height: 100%;
}

.hp-logo__type {
  font-family: var(--hp-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.012em;
  line-height: 1;
}

.hp-logo__type small {
  display: block;
  font-family: var(--hp-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--hp-ink-soft);
  text-transform: uppercase;
  margin-top: 3px;
}

.hp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-nav__link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hp-ink-2);
  border-radius: var(--hp-r-md);
  transition: all 0.15s var(--hp-ease-fast);
  position: relative;
}

.hp-nav__link:hover {
  color: var(--hp-ink);
  background: var(--hp-paper-2);
}

.hp-nav__link.is-active {
  color: var(--hp-blue);
}

.hp-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--hp-blue);
}

.hp-nav__cta {
  display: flex;
  align-items: center;
  gap: var(--hp-s3);
}

.hp-nav__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-ink-soft);
}

.hp-nav__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hp-green);
  box-shadow: 0 0 0 3px var(--hp-green-soft);
  animation: hp-pulse 2.6s ease-in-out infinite;
}

@keyframes hp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.88); }
}

.hp-nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  align-items: center;
  justify-content: center;
}

.hp-nav__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--hp-ink);
  position: relative;
}
.hp-nav__burger span::before,
.hp-nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--hp-ink);
}
.hp-nav__burger span::before { top: -5px; }
.hp-nav__burger span::after { top: 5px; }

/* ---------- 6. Top Compliance Strip ---------------------------------- */
.hp-strip {
  background: var(--hp-ink);
  color: rgba(250, 250, 250, 0.78);
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hp-strip__inner {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hp-s5);
  overflow: hidden;
}

.hp-strip__left,
.hp-strip__right {
  display: flex;
  align-items: center;
  gap: var(--hp-s5);
  white-space: nowrap;
}

.hp-strip__divider {
  width: 1px;
  height: 12px;
  background: rgba(250, 250, 250, 0.18);
}

.hp-strip__badge {
  color: var(--hp-paper);
}

.hp-strip__badge strong {
  color: var(--hp-paper);
  font-weight: 600;
}

/* ---------- 7. Hero (index) ------------------------------------------ */
.hp-hero {
  position: relative;
  overflow: hidden;
  background: var(--hp-ink);
  color: var(--hp-paper);
  isolation: isolate;
}

.hp-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 29, 36, 0.78) 0%, rgba(26, 29, 36, 0.55) 38%, rgba(22, 57, 100, 0.72) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 78, 140, 0.35) 0%, transparent 60%);
}

.hp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(0.85);
}

.hp-hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--hp-s10) 0 var(--hp-s9);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--hp-s8);
  align-items: end;
  min-height: 720px;
}

.hp-hero__content {
  max-width: 760px;
}

.hp-hero__eyebrow {
  color: var(--hp-paper);
  margin-bottom: var(--hp-s5);
}
.hp-hero__eyebrow::before {
  background: var(--hp-paper);
  opacity: 0.6;
}

.hp-hero__title {
  font-family: var(--hp-display);
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 var(--hp-s5);
  color: var(--hp-paper);
}

.hp-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--hp-aluminum);
}

.hp-hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.82);
  max-width: 52ch;
  margin: 0 0 var(--hp-s6);
}

.hp-hero__actions {
  display: flex;
  gap: var(--hp-s3);
  flex-wrap: wrap;
}

/* Hero capacity panel — live readout */
.hp-capacity {
  background: rgba(20, 22, 28, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(250, 250, 250, 0.12);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s6);
  display: flex;
  flex-direction: column;
  gap: var(--hp-s4);
  max-width: 420px;
  margin-left: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.hp-capacity__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--hp-s3);
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.hp-capacity__title {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.68);
  display: inline-flex;
  align-items: center;
  gap: var(--hp-s2);
}

.hp-capacity__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-green);
}

.hp-capacity__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-green);
  animation: hp-pulse 2s ease-in-out infinite;
}

.hp-capacity__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--hp-s3);
  align-items: baseline;
}

.hp-capacity__label {
  font-family: var(--hp-mono);
  font-size: 12px;
  color: rgba(250, 250, 250, 0.62);
}

.hp-capacity__value {
  font-family: var(--hp-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--hp-paper);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hp-capacity__value small {
  font-family: var(--hp-mono);
  font-size: 11px;
  font-weight: 400;
  color: rgba(250, 250, 250, 0.52);
  margin-left: 4px;
}

.hp-capacity__bar {
  height: 4px;
  background: rgba(250, 250, 250, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}

.hp-capacity__bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--hp-green) 0%, var(--hp-blue) 100%);
  width: 0;
  transition: width 1.6s var(--hp-ease);
}

.hp-capacity__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--hp-s3);
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  font-family: var(--hp-mono);
  font-size: 11px;
  color: rgba(250, 250, 250, 0.62);
}

.hp-capacity__foot strong {
  color: var(--hp-paper);
  font-weight: 500;
}

/* Hero corner registration marks */
.hp-hero__marks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hp-hero__mark {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(250, 250, 250, 0.32);
}

.hp-hero__mark--tl { top: 24px;    left: 24px;    border-right: 0; border-bottom: 0; }
.hp-hero__mark--tr { top: 24px;    right: 24px;   border-left: 0;  border-bottom: 0; }
.hp-hero__mark--bl { bottom: 24px; left: 24px;    border-right: 0; border-top: 0; }
.hp-hero__mark--br { bottom: 24px; right: 24px;   border-left: 0;  border-top: 0; }

.hp-hero__stamp {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--hp-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.42);
  z-index: 2;
}

/* ---------- 8. Capability Ticker ------------------------------------ */
.hp-ticker {
  background: var(--hp-paper);
  border-bottom: 1px solid var(--hp-line);
  overflow: hidden;
  padding: 18px 0;
}

.hp-ticker__track {
  display: flex;
  gap: var(--hp-s8);
  white-space: nowrap;
  animation: hp-ticker 42s linear infinite;
  width: max-content;
}

.hp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--hp-s3);
  font-family: var(--hp-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--hp-ink-2);
}

.hp-ticker__item span {
  color: var(--hp-blue);
  font-weight: 500;
}

.hp-ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hp-aluminum);
}

@keyframes hp-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 9. Section header --------------------------------------- */
.hp-sec-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--hp-s7);
  align-items: end;
  margin-bottom: var(--hp-s8);
}

.hp-sec-head__title {
  margin-top: var(--hp-s4);
}

.hp-sec-head__copy {
  color: var(--hp-ink-2);
  font-size: 17px;
  line-height: 1.6;
}

.hp-sec-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hp-sec-head--center .hp-eyebrow {
  justify-content: center;
}

/* ---------- 10. Service Blocks (4-up) ------------------------------- */
.hp-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hp-line);
  border: 1px solid var(--hp-line);
}

.hp-service {
  background: var(--hp-paper);
  padding: var(--hp-s6) var(--hp-s5) var(--hp-s5);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 360px;
  transition: background 0.3s var(--hp-ease-fast);
}

.hp-service:hover {
  background: var(--hp-blue-50);
}

.hp-service__num {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--hp-aluminum-2);
  margin-bottom: var(--hp-s4);
}

.hp-service__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--hp-s5);
  color: var(--hp-blue);
}

.hp-service__icon svg {
  width: 100%;
  height: 100%;
}

.hp-service__name {
  font-family: var(--hp-display);
  font-size: 22px;
  letter-spacing: -0.018em;
  font-weight: 600;
  margin: 0 0 var(--hp-s3);
}

.hp-service__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hp-ink-2);
  margin: 0 0 var(--hp-s5);
}

.hp-service__specs {
  margin-top: auto;
  padding-top: var(--hp-s4);
  border-top: 1px dashed var(--hp-line-2);
  display: grid;
  gap: 6px;
}

.hp-service__spec {
  display: flex;
  justify-content: space-between;
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-ink-soft);
}

.hp-service__spec strong {
  color: var(--hp-ink);
  font-weight: 500;
}

/* ---------- 11. Tolerance Band -------------------------------------- */
.hp-tol {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--hp-s8);
  align-items: start;
}

.hp-tol__chart {
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s6);
  position: relative;
  box-shadow: var(--hp-shadow-1);
}

.hp-tol__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--hp-s4);
  border-bottom: 1px solid var(--hp-line);
  margin-bottom: var(--hp-s5);
}

.hp-tol__head h4 {
  font-family: var(--hp-display);
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.012em;
}

.hp-tol__head span {
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-ink-soft);
}

.hp-tol__scale {
  position: relative;
  margin: var(--hp-s6) 0 var(--hp-s5);
  padding: 0 4px;
}

.hp-tol__scale-line {
  height: 2px;
  background: linear-gradient(90deg,
    var(--hp-green) 0%,
    var(--hp-green) 28%,
    var(--hp-blue) 28%,
    var(--hp-blue) 68%,
    var(--hp-amber) 68%,
    var(--hp-amber) 100%);
  border-radius: 2px;
  position: relative;
}

.hp-tol__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: var(--hp-s2);
}

.hp-tol__tick {
  font-family: var(--hp-mono);
  font-size: 10px;
  color: var(--hp-ink-soft);
  text-align: center;
  position: relative;
  width: 80px;
  margin-left: -32px;
}
.hp-tol__tick:first-child { margin-left: 0; }
.hp-tol__tick:last-child  { margin-right: 0; }

.hp-tol__tick::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 1px;
  height: 6px;
  background: var(--hp-line-2);
}

.hp-tol__tick strong {
  display: block;
  color: var(--hp-ink);
  font-weight: 500;
  margin-bottom: 2px;
}

.hp-tol__rows {
  display: grid;
  gap: var(--hp-s2);
  margin-top: var(--hp-s5);
}

.hp-tol__row {
  display: grid;
  grid-template-columns: 140px 1fr 90px;
  align-items: center;
  gap: var(--hp-s3);
  padding: 10px 12px;
  background: var(--hp-paper-2);
  border-radius: var(--hp-r-sm);
  font-size: 13px;
  transition: background 0.2s;
}

.hp-tol__row:hover {
  background: var(--hp-blue-soft);
}

.hp-tol__mat {
  font-weight: 500;
  color: var(--hp-ink);
}

.hp-tol__mat small {
  font-family: var(--hp-mono);
  font-weight: 400;
  font-size: 11px;
  color: var(--hp-ink-soft);
  display: block;
}

.hp-tol__bar {
  position: relative;
  height: 6px;
  background: rgba(184, 188, 194, 0.25);
  border-radius: 3px;
  overflow: hidden;
}

.hp-tol__bar > i {
  display: block;
  height: 100%;
  background: var(--hp-blue);
  width: 0;
  transition: width 1.2s var(--hp-ease) 0.2s;
}

.hp-tol__row[data-grade="A"] .hp-tol__bar > i { background: var(--hp-green); }
.hp-tol__row[data-grade="B"] .hp-tol__bar > i { background: var(--hp-blue); }
.hp-tol__row[data-grade="C"] .hp-tol__bar > i { background: var(--hp-amber); }

.hp-tol__val {
  font-family: var(--hp-mono);
  font-size: 12px;
  text-align: right;
  color: var(--hp-ink);
  font-feature-settings: "tnum";
}

.hp-tol__copy h2 {
  margin-bottom: var(--hp-s4);
}

.hp-tol__copy p {
  color: var(--hp-ink-2);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 var(--hp-s4);
}

.hp-tol__features {
  margin-top: var(--hp-s5);
  display: grid;
  gap: var(--hp-s3);
}

.hp-tol__feature {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--hp-s3);
  align-items: start;
  padding: var(--hp-s3) 0;
  border-top: 1px solid var(--hp-line);
}

.hp-tol__feature-num {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--hp-blue);
  padding-top: 3px;
}

.hp-tol__feature h5 {
  font-family: var(--hp-display);
  font-size: 15px;
  margin: 0 0 4px;
  letter-spacing: -0.008em;
  font-weight: 600;
}

.hp-tol__feature p {
  font-size: 13.5px;
  margin: 0;
  color: var(--hp-ink-soft);
  line-height: 1.55;
}

/* ---------- 12. Capability Matrix ----------------------------------- */
.hp-matrix-wrap {
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  overflow: hidden;
  box-shadow: var(--hp-shadow-1);
}

.hp-matrix-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--hp-s5) var(--hp-s6);
  border-bottom: 1px solid var(--hp-line);
  gap: var(--hp-s5);
  flex-wrap: wrap;
}

.hp-matrix-head h3 {
  margin: 0;
}

.hp-matrix-key {
  display: flex;
  gap: var(--hp-s4);
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-ink-soft);
}

.hp-matrix-key span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hp-matrix-key i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.hp-matrix-key i.lvl-full   { background: var(--hp-blue); }
.hp-matrix-key i.lvl-most   { background: rgba(30, 78, 140, 0.55); }
.hp-matrix-key i.lvl-some   { background: rgba(30, 78, 140, 0.22); border: 1px solid rgba(30, 78, 140, 0.3); }
.hp-matrix-key i.lvl-none   { background: var(--hp-paper-2); border: 1px solid var(--hp-line); }

.hp-matrix-scroll {
  overflow-x: auto;
}

.hp-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 760px;
}

.hp-matrix th,
.hp-matrix td {
  padding: 14px var(--hp-s4);
  text-align: center;
  border-bottom: 1px solid var(--hp-line);
  vertical-align: middle;
}

.hp-matrix thead th {
  background: var(--hp-paper-2);
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-ink-2);
  font-weight: 500;
  border-bottom: 1px solid var(--hp-line-2);
}

.hp-matrix tbody th {
  text-align: left;
  background: var(--hp-paper);
  font-weight: 500;
  color: var(--hp-ink);
  border-right: 1px solid var(--hp-line);
  padding-left: var(--hp-s6);
}

.hp-matrix tbody th small {
  display: block;
  font-family: var(--hp-mono);
  font-size: 10px;
  color: var(--hp-ink-soft);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.hp-matrix tbody tr:hover {
  background: var(--hp-blue-50);
}

.hp-matrix tbody tr:hover th {
  background: var(--hp-blue-50);
}

.hp-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  font-family: var(--hp-mono);
  font-size: 11px;
}

.hp-cell--full {
  background: var(--hp-blue);
  color: #fff;
}
.hp-cell--most {
  background: rgba(30, 78, 140, 0.55);
  color: #fff;
}
.hp-cell--some {
  background: rgba(30, 78, 140, 0.18);
  color: var(--hp-blue-deep);
  border: 1px solid rgba(30, 78, 140, 0.3);
}
.hp-cell--none {
  background: var(--hp-paper-2);
  color: var(--hp-aluminum-2);
  border: 1px solid var(--hp-line);
}

/* ---------- 13. Certifications -------------------------------------- */
.hp-certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-s4);
}

.hp-cert {
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s5);
  display: flex;
  flex-direction: column;
  gap: var(--hp-s3);
  position: relative;
  transition: all 0.2s var(--hp-ease-fast);
}

.hp-cert:hover {
  border-color: var(--hp-blue);
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow-2);
}

.hp-cert__seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
  font-family: var(--hp-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  border: 1px solid rgba(30, 78, 140, 0.18);
}

.hp-cert__name {
  font-family: var(--hp-display);
  font-size: 16px;
  letter-spacing: -0.008em;
  font-weight: 600;
  margin: 0;
}

.hp-cert__name small {
  display: block;
  font-family: var(--hp-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--hp-ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hp-cert__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--hp-ink-soft);
  margin: 0;
}

.hp-cert__meta {
  margin-top: auto;
  padding-top: var(--hp-s3);
  border-top: 1px dashed var(--hp-line-2);
  display: flex;
  justify-content: space-between;
  font-family: var(--hp-mono);
  font-size: 10.5px;
  color: var(--hp-ink-soft);
}

/* ---------- 14. Case Study ------------------------------------------ */
.hp-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  overflow: hidden;
  box-shadow: var(--hp-shadow-2);
}

.hp-case__media {
  position: relative;
  min-height: 540px;
  background: var(--hp-ink);
  overflow: hidden;
}

.hp-case__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}

.hp-case__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 57, 100, 0.15), rgba(26, 29, 36, 0.45));
}

.hp-case__callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hp-callout {
  position: absolute;
  font-family: var(--hp-mono);
  font-size: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-callout::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hp-callout--a { top: 22%; left: 18%; }
.hp-callout--b { top: 46%; right: 14%; }
.hp-callout--c { bottom: 18%; left: 22%; }

.hp-callout__line {
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transform-origin: left center;
}

.hp-case__body {
  padding: var(--hp-s8) var(--hp-s7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--hp-s5);
}

.hp-case__part {
  display: flex;
  flex-direction: column;
  gap: var(--hp-s2);
}

.hp-case__pn {
  font-family: var(--hp-mono);
  font-size: 12px;
  color: var(--hp-blue);
  letter-spacing: 0.05em;
}

.hp-case__title {
  font-family: var(--hp-display);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}

.hp-case__lede {
  color: var(--hp-ink-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.hp-case__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-s4);
  padding: var(--hp-s5);
  background: var(--hp-paper-2);
  border-radius: var(--hp-r-md);
}

.hp-case__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-case__spec dt {
  font-family: var(--hp-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-ink-soft);
}

.hp-case__spec dd {
  margin: 0;
  font-family: var(--hp-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--hp-ink);
  letter-spacing: -0.008em;
}

.hp-case__spec dd small {
  font-family: var(--hp-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--hp-ink-soft);
  margin-left: 4px;
}

.hp-case__cta {
  margin-top: var(--hp-s3);
}

/* ---------- 15. Stats / Numerals ----------------------------------- */
.hp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-s6);
  padding: var(--hp-s7) 0;
  border-top: 1px solid rgba(250, 250, 250, 0.12);
  border-bottom: 1px solid rgba(250, 250, 250, 0.12);
}

.hp-stat {
  display: flex;
  flex-direction: column;
  gap: var(--hp-s2);
}

.hp-stat__num {
  font-family: var(--hp-display);
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 700;
  color: var(--hp-paper);
  font-variant-numeric: tabular-nums;
}

.hp-stat__num small {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--hp-aluminum);
  margin-left: 4px;
}

.hp-stat__label {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.62);
}

.hp-stat__note {
  font-size: 13px;
  color: rgba(250, 250, 250, 0.7);
  margin-top: 4px;
  max-width: 28ch;
}

/* ---------- 16. Process / QA --------------------------------------- */
.hp-process {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--hp-s8);
  align-items: start;
}

.hp-process__steps {
  display: grid;
  gap: 0;
}

.hp-step {
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  align-items: start;
  gap: var(--hp-s5);
  padding: var(--hp-s5) 0;
  border-top: 1px solid var(--hp-line);
  position: relative;
}

.hp-step:last-child {
  border-bottom: 1px solid var(--hp-line);
}

.hp-step__num {
  font-family: var(--hp-mono);
  font-size: 12px;
  color: var(--hp-blue);
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.hp-step__body h4 {
  font-family: var(--hp-display);
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -0.012em;
  font-weight: 600;
}

.hp-step__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hp-ink-soft);
}

.hp-step__time {
  font-family: var(--hp-mono);
  font-size: 11px;
  text-align: right;
  color: var(--hp-ink-soft);
  padding-top: 4px;
}

.hp-step__time strong {
  color: var(--hp-ink);
  font-weight: 500;
}

.hp-process__aside {
  position: sticky;
  top: 96px;
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s6);
  box-shadow: var(--hp-shadow-1);
}

.hp-process__aside img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--hp-r-sm);
  margin-bottom: var(--hp-s4);
  filter: grayscale(0.12);
}

.hp-process__aside h5 {
  font-family: var(--hp-display);
  font-size: 17px;
  margin: 0 0 var(--hp-s2);
  letter-spacing: -0.012em;
}

.hp-process__aside p {
  font-size: 13.5px;
  color: var(--hp-ink-2);
  line-height: 1.6;
  margin: 0 0 var(--hp-s4);
}

.hp-process__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--hp-s2);
  font-family: var(--hp-mono);
  font-size: 12px;
}

.hp-process__aside li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px dashed var(--hp-line-2);
  color: var(--hp-ink-2);
}

.hp-process__aside li:first-child {
  border-top: 0;
}

.hp-process__aside li strong {
  color: var(--hp-ink);
  font-weight: 500;
}

/* ---------- 17. CTA / RFQ ------------------------------------------- */
.hp-cta {
  position: relative;
  overflow: hidden;
}

.hp-cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--hp-s8);
  align-items: center;
}

.hp-cta__title {
  font-family: var(--hp-display);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 var(--hp-s4);
  color: var(--hp-paper);
}

.hp-cta__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 250, 250, 0.82);
  max-width: 52ch;
  margin: 0 0 var(--hp-s5);
}

.hp-cta__form {
  background: rgba(250, 250, 250, 0.06);
  border: 1px solid rgba(250, 250, 250, 0.14);
  backdrop-filter: blur(12px);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s6);
  display: grid;
  gap: var(--hp-s3);
}

.hp-cta__form h4 {
  font-family: var(--hp-display);
  margin: 0 0 var(--hp-s2);
  font-size: 18px;
  color: var(--hp-paper);
}

.hp-field {
  display: grid;
  gap: 6px;
}

.hp-field label {
  font-family: var(--hp-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.7);
}

.hp-field input,
.hp-field select,
.hp-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--hp-paper);
  padding: 11px 14px;
  font-family: var(--hp-body);
  font-size: 14px;
  border-radius: var(--hp-r-sm);
  outline: none;
  transition: border-color 0.15s;
}

.hp-field input:focus,
.hp-field select:focus,
.hp-field textarea:focus {
  border-color: var(--hp-paper);
  background: rgba(255, 255, 255, 0.1);
}

.hp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hp-s3);
}

.hp-cta__form button {
  margin-top: var(--hp-s2);
  background: var(--hp-paper);
  color: var(--hp-blue-deep);
  border: 1px solid var(--hp-paper);
  padding: 13px 22px;
  font-family: var(--hp-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--hp-r-md);
  cursor: pointer;
  transition: all 0.2s;
}

.hp-cta__form button:hover {
  background: var(--hp-ink);
  color: var(--hp-paper);
  border-color: var(--hp-ink);
}

.hp-cta__small {
  font-family: var(--hp-mono);
  font-size: 11px;
  color: rgba(250, 250, 250, 0.6);
  margin-top: var(--hp-s2);
}

/* ---------- 18. Footer ---------------------------------------------- */
.hp-foot {
  background: var(--hp-ink);
  color: rgba(250, 250, 250, 0.72);
  padding: var(--hp-s9) 0 var(--hp-s5);
}

.hp-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--hp-s7);
  padding-bottom: var(--hp-s7);
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.hp-foot__brand .hp-logo {
  color: var(--hp-paper);
}

.hp-foot__brand .hp-logo__type small {
  color: rgba(250, 250, 250, 0.5);
}

.hp-foot__about {
  margin-top: var(--hp-s4);
  font-size: 14px;
  line-height: 1.7;
  max-width: 36ch;
}

.hp-foot__col h6 {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  margin: 0 0 var(--hp-s4);
  font-weight: 400;
}

.hp-foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hp-foot__col a {
  font-size: 14px;
  color: rgba(250, 250, 250, 0.78);
  transition: color 0.15s;
}

.hp-foot__col a:hover {
  color: var(--hp-paper);
}

.hp-foot__bottom {
  padding-top: var(--hp-s5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--hp-s3);
  font-family: var(--hp-mono);
  font-size: 11px;
  color: rgba(250, 250, 250, 0.5);
}

.hp-foot__bottom strong {
  color: rgba(250, 250, 250, 0.78);
  font-weight: 500;
}

/* ---------- 19. About-page-specific --------------------------------- */
.hp-page-hero {
  background: var(--hp-paper);
  position: relative;
  padding: var(--hp-s10) 0 var(--hp-s8);
  border-bottom: 1px solid var(--hp-line);
}

.hp-page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--hp-s8);
  align-items: end;
}

.hp-page-hero__meta {
  display: grid;
  gap: var(--hp-s2);
  font-family: var(--hp-mono);
  font-size: 12px;
  color: var(--hp-ink-soft);
}

.hp-page-hero__meta strong {
  color: var(--hp-ink);
  font-weight: 500;
}

.hp-page-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--hp-r-md);
  overflow: hidden;
  box-shadow: var(--hp-shadow-2);
}

.hp-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-page-hero__tag {
  position: absolute;
  left: var(--hp-s4);
  bottom: var(--hp-s4);
  background: rgba(250, 250, 250, 0.95);
  padding: 10px 14px;
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--hp-ink);
  border-radius: var(--hp-r-sm);
}

.hp-page-hero__tag strong {
  color: var(--hp-blue);
}

/* About — founding story two-col */
.hp-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--hp-s8);
  align-items: start;
}

.hp-story__copy h2 {
  margin-bottom: var(--hp-s4);
}

.hp-story__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hp-ink-2);
  margin: 0 0 var(--hp-s4);
}

.hp-story__copy p:first-of-type::first-line {
  font-weight: 500;
  color: var(--hp-ink);
}

.hp-story__aside {
  display: grid;
  gap: var(--hp-s4);
}

.hp-story__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--hp-r-md);
  overflow: hidden;
  box-shadow: var(--hp-shadow-2);
}

.hp-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-story__caption {
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-ink-soft);
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
}

/* Leadership cards */
.hp-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--hp-s5);
}

.hp-bio {
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s5);
  transition: all 0.2s;
}

.hp-bio:hover {
  border-color: var(--hp-blue);
  transform: translateY(-2px);
  box-shadow: var(--hp-shadow-2);
}

.hp-bio__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
  display: grid;
  place-items: center;
  font-family: var(--hp-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: var(--hp-s4);
}

.hp-bio__name {
  font-family: var(--hp-display);
  font-size: 18px;
  margin: 0 0 4px;
  letter-spacing: -0.012em;
  font-weight: 600;
}

.hp-bio__title {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-blue);
  margin: 0 0 var(--hp-s3);
}

.hp-bio__bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--hp-ink-soft);
  margin: 0 0 var(--hp-s3);
}

.hp-bio__creds {
  list-style: none;
  margin: 0;
  padding: var(--hp-s3) 0 0;
  border-top: 1px dashed var(--hp-line-2);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.hp-bio__creds li {
  font-family: var(--hp-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--hp-blue-deep);
  background: var(--hp-blue-soft);
  padding: 3px 7px;
  border-radius: var(--hp-r-sm);
}

/* About — facility specs */
.hp-facility {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--hp-s4);
}

.hp-facility__item {
  padding: var(--hp-s5);
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  border-radius: var(--hp-r-md);
}

.hp-facility__num {
  font-family: var(--hp-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hp-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hp-facility__num small {
  font-size: 0.45em;
  color: var(--hp-aluminum-2);
  margin-left: 4px;
  font-weight: 500;
}

.hp-facility__label {
  margin-top: var(--hp-s3);
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-ink-soft);
}

.hp-facility__sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--hp-ink-2);
  line-height: 1.5;
}

/* Careers banner */
.hp-careers {
  background: var(--hp-paper-2);
  padding: var(--hp-s7);
  border-radius: var(--hp-r-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--hp-s6);
  align-items: center;
}

.hp-careers h3 {
  margin: 0 0 var(--hp-s2);
}

.hp-careers p {
  margin: 0;
  color: var(--hp-ink-2);
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- 20. Services-page-specific ------------------------------ */
.hp-svc-jump {
  background: var(--hp-paper);
  border-bottom: 1px solid var(--hp-line);
  padding: var(--hp-s4) 0;
  position: sticky;
  top: 72px;
  z-index: 60;
}

.hp-svc-jump__list {
  display: flex;
  gap: var(--hp-s2);
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-svc-jump__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  font-family: var(--hp-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--hp-ink-2);
  background: var(--hp-paper-2);
  border-radius: var(--hp-r-pill);
  border: 1px solid transparent;
  transition: all 0.15s;
}

.hp-svc-jump__list a:hover {
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
}

.hp-svc-jump__list a span {
  font-family: var(--hp-display);
  font-weight: 700;
  color: var(--hp-aluminum-2);
}

.hp-svc-jump__list a:hover span {
  color: var(--hp-blue);
}

/* Detailed service block */
.hp-svc-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--hp-s8);
  align-items: start;
  padding: var(--hp-s9) 0;
  border-top: 1px solid var(--hp-line);
}

.hp-svc-block:first-of-type {
  border-top: 0;
}

.hp-svc-block__head {
  display: flex;
  align-items: baseline;
  gap: var(--hp-s4);
  margin-bottom: var(--hp-s5);
}

.hp-svc-block__num {
  font-family: var(--hp-mono);
  font-size: 13px;
  color: var(--hp-blue);
  letter-spacing: 0.1em;
}

.hp-svc-block h2 {
  font-family: var(--hp-display);
  font-size: clamp(28px, 3.2vw, 42px);
  margin: 0;
  letter-spacing: -0.028em;
  font-weight: 700;
}

.hp-svc-block__sub {
  font-family: var(--hp-mono);
  font-size: 12px;
  color: var(--hp-ink-soft);
  letter-spacing: 0.08em;
  margin-bottom: var(--hp-s4);
}

.hp-svc-block__copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hp-ink-2);
  max-width: 60ch;
}

.hp-svc-block__copy p {
  margin: 0 0 var(--hp-s3);
}

.hp-svc-block__specs {
  background: var(--hp-paper-2);
  border-radius: var(--hp-r-md);
  padding: var(--hp-s5);
}

.hp-svc-block__specs h5 {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-ink-soft);
  margin: 0 0 var(--hp-s4);
  font-weight: 500;
}

.hp-svc-block__specs dl {
  margin: 0;
  display: grid;
  gap: 0;
}

.hp-svc-block__specs > dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: var(--hp-s3) 0;
  border-top: 1px solid var(--hp-line);
  font-size: 13.5px;
}

.hp-svc-block__specs > dl > div:first-child {
  border-top: 0;
}

.hp-svc-block__specs dt {
  font-family: var(--hp-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--hp-ink-soft);
  text-transform: uppercase;
  padding-top: 2px;
}

.hp-svc-block__specs dd {
  margin: 0;
  color: var(--hp-ink);
  font-weight: 500;
}

.hp-svc-block__specs dd small {
  display: block;
  font-family: var(--hp-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--hp-ink-soft);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.hp-svc-block__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--hp-s4);
}

.hp-svc-block__chip {
  font-family: var(--hp-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: var(--hp-r-sm);
  background: var(--hp-paper);
  border: 1px solid var(--hp-line);
  color: var(--hp-ink-2);
}

.hp-svc-block__machines {
  margin-top: var(--hp-s4);
  display: grid;
  gap: 6px;
}

.hp-svc-block__machine {
  display: grid;
  grid-template-columns: 1fr auto;
  font-family: var(--hp-mono);
  font-size: 12px;
  padding: 8px 0;
  border-top: 1px dashed var(--hp-line-2);
  color: var(--hp-ink);
}

.hp-svc-block__machine:first-child {
  border-top: 0;
}

.hp-svc-block__machine small {
  color: var(--hp-ink-soft);
  margin-left: 6px;
  font-weight: 400;
}

/* ---------- 21. Reveal animations ----------------------------------- */
.hp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--hp-ease), transform 0.7s var(--hp-ease);
  will-change: opacity, transform;
}

.hp-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.hp-reveal--delay-1 { transition-delay: 0.08s; }
.hp-reveal--delay-2 { transition-delay: 0.16s; }
.hp-reveal--delay-3 { transition-delay: 0.24s; }
.hp-reveal--delay-4 { transition-delay: 0.32s; }

.hp-draw {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s var(--hp-ease) 0.2s;
}

.hp-reveal.is-in .hp-draw {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hp-reveal,
  .hp-draw,
  .hp-tol__bar > i,
  .hp-capacity__bar > i {
    transition: none !important;
  }
  .hp-ticker__track {
    animation: none;
  }
  .hp-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 22. Misc inline-data components ------------------------- */
.hp-dim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hp-mono);
  font-size: 11px;
  color: var(--hp-blue);
  padding: 3px 7px;
  background: var(--hp-blue-soft);
  border-radius: var(--hp-r-sm);
}

.hp-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  font-family: var(--hp-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  background: var(--hp-paper-2);
  color: var(--hp-ink-2);
  border-radius: var(--hp-r-pill);
  border: 1px solid var(--hp-line);
}

.hp-pill--blue {
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
  border-color: rgba(30, 78, 140, 0.18);
}

.hp-pill--green {
  background: var(--hp-green-soft);
  color: var(--hp-green-deep);
  border-color: rgba(111, 179, 122, 0.28);
}

/* ---------- 23. Responsive ------------------------------------------ */
@media (max-width: 1100px) {
  .hp-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--hp-s7);
    min-height: 0;
    padding: var(--hp-s9) 0 var(--hp-s8);
  }

  .hp-capacity {
    margin-left: 0;
    max-width: 540px;
  }

  .hp-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-certs {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-facility {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-team {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-tol,
  .hp-process,
  .hp-case,
  .hp-page-hero__inner,
  .hp-story,
  .hp-svc-block,
  .hp-cta__inner {
    grid-template-columns: 1fr;
    gap: var(--hp-s6);
  }

  .hp-case {
    grid-template-columns: 1fr;
  }

  .hp-case__media {
    min-height: 360px;
  }

  .hp-case__body {
    padding: var(--hp-s6);
  }

  .hp-sec-head {
    grid-template-columns: 1fr;
    gap: var(--hp-s4);
  }

  .hp-process__aside {
    position: static;
  }

  .hp-foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--hp-s6);
  }
}

@media (max-width: 760px) {
  :root {
    --hp-gutter: 20px;
  }

  .hp-section {
    padding: var(--hp-s8) 0;
  }

  .hp-section--tight {
    padding: var(--hp-s7) 0;
  }

  .hp-strip__inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hp-nav__links {
    display: none;
  }

  .hp-nav__burger {
    display: inline-flex;
  }

  .hp-nav__status {
    display: none;
  }

  .hp-services {
    grid-template-columns: 1fr;
  }

  .hp-certs {
    grid-template-columns: 1fr;
  }

  .hp-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--hp-s5);
  }

  .hp-facility {
    grid-template-columns: 1fr 1fr;
  }

  .hp-team {
    grid-template-columns: 1fr;
  }

  .hp-foot__grid {
    grid-template-columns: 1fr;
    gap: var(--hp-s5);
  }

  .hp-hero__title {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hp-tol__row {
    grid-template-columns: 110px 1fr 70px;
    gap: var(--hp-s2);
    font-size: 12px;
  }

  .hp-step {
    grid-template-columns: 40px 1fr;
    gap: var(--hp-s3);
  }

  .hp-step__time {
    grid-column: 2;
    text-align: left;
  }

  .hp-careers {
    grid-template-columns: 1fr;
  }

  .hp-svc-jump {
    top: 60px;
  }

  .hp-nav__inner {
    height: 60px;
  }

  .hp-field-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- 24. Print ----------------------------------------------- */
@media print {
  .hp-nav,
  .hp-strip,
  .hp-cta,
  .hp-foot {
    display: none;
  }
  body.hp-body {
    color: #000;
  }
}

/* ---------- 25. Tiny utilities -------------------------------------- */
.hp-flex { display: flex; }
.hp-flex-center { display: flex; align-items: center; }
.hp-mt-s7 { margin-top: var(--hp-s7); }
.hp-mt-s6 { margin-top: var(--hp-s6); }
.hp-text-center { text-align: center; }
.hp-w-full { width: 100%; }
.hp-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* end of file */
