:root {
  --red: #e30613;
  --red-dark: #b40d17;
  --red-soft: #fff1f2;
  --burgundy: #760008;
  --black: #0b0c0e;
  --charcoal: #191b1f;
  --ink: #111216;
  --muted: #5d626a;
  --soft: #f5f5f3;
  --soft-2: #eeeeec;
  --border: #dedfdf;
  --white: #fff;
  --amber: #b97818;
  --shadow-sm: 0 8px 24px rgba(15, 15, 17, .08);
  --shadow-md: 0 24px 60px rgba(15, 15, 17, .14);
  --radius-sm: 5px;
  --radius-md: 9px;
  --container: 1440px;
  --header-height: 114px;
  --ease: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Geist, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.8rem, 5.4vw, 6rem);
}

h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -.025em;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(92px, 9vw, 150px) 0;
}

.red-dot {
  color: var(--red);
}

.short-rule {
  display: block;
  width: 94px;
  height: 3px;
  margin: 0 0 24px;
  background: var(--red);
}

.section-heading {
  max-width: 620px;
}

.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, .38);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  font-size: .94rem;
  font-weight: 680;
  line-height: 1.2;
  transition: color var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 10px 24px rgba(227, 6, 19, .18);
  transform: translateY(-1px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .83rem;
  white-space: nowrap;
}

.button-secondary {
  color: var(--red);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--red);
}

.button-dark-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
}

.button-dark-secondary:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--red);
  font-weight: 700;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(222, 223, 223, .85);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(18, 18, 20, .09);
}

.utility-bar {
  height: 34px;
  border-bottom: 1px solid #ececec;
}

.utility-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #33363b;
  font-size: .78rem;
  font-weight: 560;
}

.utility-inner > a,
.utility-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.utility-inner > a:first-child {
  color: var(--red);
  font-weight: 700;
}

.utility-inner svg {
  width: 15px;
  height: 15px;
}

.utility-divider {
  width: 1px;
  height: 14px;
  background: #c8c8c8;
}

.utility-client-link {
  padding-left: 18px;
  margin-left: 2px;
  border-left: 1px solid #d8d8d8;
}

.utility-client-link:hover {
  color: var(--red);
}

.nav-wrap {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 214px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.25vw, 24px);
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: #25272b;
  font-size: clamp(.78rem, .72vw, .9rem);
  font-weight: 610;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav > a.is-active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform var(--ease);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 245, 243, .72) 1px, transparent 1px),
    linear-gradient(rgba(245, 245, 243, .72) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
}

.hero-grid {
  display: grid;
  min-height: 535px;
  grid-template-columns: minmax(430px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 610px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 48px 54px 0;
  background: linear-gradient(90deg, #fff 0%, #fff 80%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy h1 {
  margin-bottom: 18px;
}

.hero-copy > p {
  max-width: 575px;
  margin-bottom: 28px;
  color: #34383e;
  font-size: clamp(1.06rem, 1.3vw, 1.28rem);
  line-height: 1.55;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0 -32px 0 -80px;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.network-overlay {
  position: absolute;
  z-index: 2;
  top: 11%;
  right: 2%;
  width: 42%;
  height: 35%;
  opacity: .72;
}

.network-overlay::before,
.network-overlay::after,
.network-overlay span {
  position: absolute;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .76);
  transform-origin: right;
}

.network-overlay::before {
  top: 12%;
  right: 0;
  width: 92%;
}

.network-overlay::after {
  top: 67%;
  right: 0;
  width: 70%;
}

.network-overlay span:nth-child(1) {
  top: 29%;
  right: 0;
  width: 78%;
}

.network-overlay span:nth-child(2) {
  top: 48%;
  right: 0;
  width: 88%;
}

.network-overlay span:nth-child(3) {
  top: 84%;
  right: 0;
  width: 58%;
}

.network-overlay span:nth-child(4),
.network-overlay span:nth-child(5) {
  width: 7px;
  height: 7px;
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
}

.network-overlay span:nth-child(4) {
  top: 26%;
  left: 42%;
}

.network-overlay span:nth-child(5) {
  top: 64%;
  left: 62%;
}

/* Proof */

.proof-band {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  display: grid;
  min-width: 0;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 8px 28px;
  border-left: 1px solid var(--border);
}

.proof-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-grid article:last-child {
  padding-right: 0;
}

.proof-grid article > svg {
  width: 46px;
  height: 46px;
  color: var(--red);
  stroke-width: 1.45;
}

.proof-grid article > img {
  width: 54px;
  height: 48px;
  object-fit: contain;
}

.proof-grid h2 {
  margin: 2px 0 6px;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.proof-grid p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.55;
}

/* Solutions */

.solutions-section {
  background: var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 140px);
}

.solution-rail {
  border-top: 1px solid var(--border);
}

.solution-rail article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 30px;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
}

.solution-icon {
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid #ffd2d6;
  border-radius: 50%;
}

.solution-icon svg {
  width: 34px;
  height: 34px;
}

.item-number {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  font-size: .73rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.solution-rail h3 {
  margin-bottom: 11px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.solution-rail p {
  max-width: 680px;
  margin-bottom: 15px;
  font-size: .98rem;
}

.solution-rail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: .88rem;
  font-weight: 700;
}

.solution-rail a svg {
  width: 16px;
  height: 16px;
  transition: transform var(--ease);
}

.solution-rail a:hover svg {
  transform: translateX(4px);
}

/* Dark sections */

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(227, 6, 19, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(227, 6, 19, .035) 1px, transparent 1px),
    var(--black);
  background-size: 60px 60px;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #bfc2c7;
}

/* Print */

.print-section {
  padding: clamp(82px, 8vw, 125px) 0;
}

.print-section::after {
  position: absolute;
  right: -10%;
  bottom: -35%;
  width: 650px;
  height: 650px;
  content: "";
  background: radial-gradient(circle, rgba(227, 6, 19, .13), transparent 66%);
}

.print-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(280px, .62fr) minmax(340px, .8fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}

.print-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
}

.print-copy > p {
  max-width: 570px;
  margin-bottom: 34px;
  font-size: 1.05rem;
}

.print-points {
  padding: 0 0 0 42px;
  margin: 0;
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.print-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 17px 0;
}

.print-points svg {
  width: 35px;
  height: 35px;
  color: var(--red);
}

.print-points strong,
.print-points span {
  display: block;
}

.print-points strong {
  margin-bottom: 5px;
  color: var(--white);
}

.print-points span {
  color: #bfc2c7;
  font-size: .87rem;
  line-height: 1.55;
}

.printer-stage {
  position: relative;
  min-height: 470px;
  align-self: stretch;
}

.authorized-mark {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: 0;
  width: 175px;
  height: 72px;
  padding: 6px 12px;
  object-fit: contain;
  background: var(--white);
}

.printer-family {
  position: absolute;
  right: -5%;
  bottom: -5%;
  width: 112%;
  max-height: 440px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 25px rgba(0, 0, 0, .32));
}

/* Managed IT */

.managed-section {
  background: var(--white);
}

.managed-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, .9fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.managed-list {
  margin-top: 44px;
  border-top: 1px solid var(--border);
}

.managed-list article {
  display: grid;
  grid-template-columns: 44px 230px 1fr;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.managed-list svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.managed-list h3 {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -.02em;
}

.managed-list p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.52;
}

.systems-illustration {
  position: relative;
  min-height: 590px;
}

.system-layer {
  position: absolute;
  left: 11%;
  width: 78%;
  height: 200px;
  border: 2px solid #c8cace;
  transform: rotate(30deg) skewX(-30deg) scaleY(.86);
}

.system-layer::before,
.system-layer::after {
  position: absolute;
  content: "";
  border: 1px dashed #d9dadd;
}

.system-layer::before {
  inset: 20%;
}

.system-layer::after {
  inset: 38%;
}

.layer-a { top: 48px; }
.layer-b { top: 194px; }
.layer-c { top: 340px; }

.system-node {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  color: #30343a;
  background: var(--white);
  border: 1px solid #cfd1d4;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.system-node svg {
  width: 35px;
  height: 35px;
}

.node-security { top: 6%; left: 52%; color: var(--red); border-color: var(--red); }
.node-users { top: 27%; left: 15%; }
.node-cloud { top: 32%; right: 10%; }
.node-server { top: 49%; left: 45%; }
.node-data { bottom: 13%; left: 21%; }
.node-device { right: 18%; bottom: 7%; }

.diagram-dot {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--red);
}

.dot-a { top: 26%; left: 38%; }
.dot-b { top: 45%; right: 24%; }
.dot-c { bottom: 27%; left: 39%; }
.dot-d { bottom: 11%; right: 42%; }

.platform-strip {
  padding-top: 68px;
  margin-top: 76px;
  border-top: 1px solid var(--border);
}

.platform-strip > p {
  margin-bottom: 18px;
  font-size: .83rem;
}

.platform-strip ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.platform-strip li {
  padding: 8px 14px;
  color: #4c5158;
  border: 1px solid var(--border);
  border-right: 0;
  font-size: .78rem;
  font-weight: 650;
}

.platform-strip li:last-child {
  border-right: 1px solid var(--border);
}

/* Security */

.security-practices {
  padding: 72px 0;
  color: var(--white);
  background: var(--charcoal);
}

.security-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.security-grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.3rem, 3.5vw, 4rem);
}

.security-grid > div p {
  max-width: 510px;
  margin: 0;
  color: #bfc2c7;
}

.security-grid ol {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.security-grid li {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.security-grid li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.security-grid li:nth-child(even) {
  padding-left: 22px;
}

.security-grid li span {
  color: var(--red);
  font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  font-size: .75rem;
  font-weight: 750;
}

.security-grid li strong {
  font-size: .92rem;
}

/* Heritage */

.heritage-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 45%, rgba(227, 6, 19, .3), transparent 28%),
    linear-gradient(105deg, #500006, #87000a 64%, #390004);
}

.heritage-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
}

.heritage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .7fr 1.15fr .65fr;
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.heritage-visual {
  position: relative;
  min-height: 420px;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.heritage-visual > svg {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 230px;
  height: 230px;
  color: rgba(255, 255, 255, .5);
  stroke-width: .7;
  transform: translate(-50%, -50%);
}

.heritage-visual span {
  position: absolute;
  width: 72%;
  height: 1px;
  background: rgba(255, 255, 255, .17);
}

.heritage-visual span:nth-child(2) { top: 23%; left: 0; }
.heritage-visual span:nth-child(3) { top: 42%; left: 16%; }
.heritage-visual span:nth-child(4) { top: 61%; left: 5%; }
.heritage-visual span:nth-child(5) { top: 79%; left: 21%; }

.heritage-copy h2 {
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(2.55rem, 4vw, 4.7rem);
}

.heritage-copy > p {
  color: #f2dadd;
  font-size: 1.02rem;
}

.timeline {
  position: relative;
  display: grid;
  padding: 46px 0 0;
  margin: 36px 0 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 15px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .65);
}

.timeline li {
  position: relative;
  text-align: center;
}

.timeline li > span {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline strong {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
}

.timeline p {
  margin: 4px 0 0;
  color: #f2dadd;
  font-size: .82rem;
  line-height: 1.35;
}

.heritage-facts {
  padding: 0 0 0 38px;
  margin: 0;
  list-style: none;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.heritage-facts li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 17px 0;
}

.heritage-facts svg {
  width: 34px;
  height: 34px;
  color: var(--white);
}

.heritage-facts strong,
.heritage-facts span {
  display: block;
}

.heritage-facts strong {
  color: var(--white);
  font-size: .94rem;
}

.heritage-facts span {
  margin-top: 4px;
  color: #e9cfd2;
  font-size: .8rem;
  line-height: 1.48;
}

/* Industries */

.industries-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
}

.industry-list {
  border-top: 1px solid var(--border);
}

.industry-list article {
  display: grid;
  grid-template-columns: 48px 245px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.industry-list article > span {
  color: var(--red);
  font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  font-size: .9rem;
  font-weight: 780;
}

.industry-list h3 {
  margin: 0;
  font-size: 1.24rem;
}

.industry-list p {
  margin: 0;
  font-size: .91rem;
}

/* Process */

.process-section {
  padding: clamp(82px, 8vw, 120px) 0;
}

.process-heading h2 {
  margin-bottom: 15px;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
}

.process-heading p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.process-list {
  position: relative;
  display: grid;
  padding: 48px 0 0;
  margin: 0;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 97px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: var(--red);
}

.process-list li {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.process-number {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 1rem;
  font-weight: 780;
}

.process-list i {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: 50%;
}

.process-list i svg {
  width: 31px;
  height: 31px;
}

.process-list h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.25rem;
}

.process-list p {
  margin-bottom: 0;
  color: #c6c8cc;
  font-size: .79rem;
  line-height: 1.55;
}

.process-action {
  margin-top: 40px;
  text-align: center;
}

/* FAQ */

.faq-section {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: clamp(60px, 8vw, 130px);
}

.faq-art {
  position: relative;
  width: 165px;
  height: 110px;
  margin-top: 40px;
}

.faq-art::before,
.faq-art::after {
  position: absolute;
  content: "";
  background: var(--white);
  border: 2px solid var(--ink);
}

.faq-art::before {
  top: 0;
  left: 22px;
  width: 82px;
  height: 69px;
  border-radius: 50%;
}

.faq-art::after {
  right: 0;
  bottom: 0;
  width: 65px;
  height: 52px;
  border-radius: 50%;
}

.faq-art > span {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 51px;
  color: var(--red);
  font-size: 2.2rem;
  font-weight: 750;
}

.faq-art > i {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 24px;
  width: 30px;
  height: 1px;
  background: var(--ink);
  box-shadow: 0 8px 0 var(--ink);
}

.accordion {
  border-top: 1px solid #cfd0d1;
}

.accordion-item {
  border-bottom: 1px solid #cfd0d1;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.accordion-item button > span {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 1.05rem;
  font-weight: 700;
}

.accordion-item button > span svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.accordion-item .plus {
  width: 23px;
  height: 23px;
  color: var(--red);
  transition: transform var(--ease);
}

.accordion-item button[aria-expanded="true"] .plus {
  transform: rotate(45deg);
}

.accordion-panel {
  max-width: 730px;
  padding: 0 48px 20px 51px;
}

.accordion-panel p {
  margin: 0;
  font-size: .91rem;
}

/* Contact */

.contact-section {
  padding: 0 0 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.12fr .76fr;
  min-height: 520px;
}

.contact-intro,
.contact-form,
.contact-panel {
  padding: clamp(55px, 6vw, 86px) clamp(28px, 4vw, 62px);
}

.contact-intro {
  padding-left: 0;
}

.contact-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.contact-intro p {
  margin: 0;
  font-size: 1rem;
}

.contact-form {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  border-left: 1px solid var(--border);
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  font-weight: 700;
}

.field label span {
  color: var(--red);
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cdd0d3;
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input {
  height: 46px;
  padding: 0 13px;
}

.field textarea {
  min-height: 124px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(227, 6, 19, .09);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--red);
}

.field-error {
  display: block;
  min-height: 16px;
  padding-top: 3px;
  color: var(--red-dark);
  font-size: .7rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.form-actions .button {
  min-width: 190px;
}

.form-status {
  flex: 1 1 220px;
  margin: 0;
  font-size: .78rem;
}

.contact-panel {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 6, 19, .16), transparent 35%),
    var(--black);
  border-left: 10px solid var(--red);
}

.contact-list {
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 17px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.contact-list svg {
  width: 29px;
  height: 29px;
  color: var(--red);
}

.contact-list a,
.contact-list span {
  color: var(--white);
  font-size: 1.02rem;
}

.client-links {
  display: grid;
  gap: 10px;
}

.client-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 680;
  transition: background var(--ease);
}

.client-links a:hover {
  background: var(--red);
}

.client-links svg {
  width: 19px;
  height: 19px;
}

/* Footer */

.site-footer {
  padding: 62px 0 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 30%, rgba(227, 6, 19, .08), transparent 28%),
    var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, .7fr);
  gap: clamp(40px, 6vw, 96px);
}

.footer-brand img {
  width: 270px;
  max-width: 100%;
  margin-bottom: 22px;
  filter: saturate(1.08);
}

.footer-brand p {
  max-width: 450px;
  color: #d2d4d7;
  font-size: .86rem;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: .92rem;
  letter-spacing: -.01em;
}

.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
  color: #c6c8cc;
  font-size: .83rem;
}

.footer-grid a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  margin-top: 48px;
  border-top: 2px solid var(--red);
}

.footer-bottom p {
  margin: 0;
  color: #c6c8cc;
  font-size: .75rem;
}

/* Events page */

.events-page {
  background: var(--white);
}

.events-hero {
  padding: clamp(76px, 7vw, 112px) 0 62px;
  background:
    linear-gradient(90deg, rgba(245, 245, 243, .68) 1px, transparent 1px),
    linear-gradient(rgba(245, 245, 243, .68) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
  border-bottom: 1px solid var(--border);
}

.events-hero-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: center;
}

.events-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}

.events-hero p {
  max-width: 560px;
  margin: 0;
  font-size: 1.1rem;
}

.events-art {
  position: relative;
  min-height: 190px;
  color: #aeb1b6;
}

.events-art svg {
  position: absolute;
  width: 94px;
  height: 94px;
  stroke-width: 1.25;
}

.events-art svg:first-child {
  bottom: 20px;
  left: 10%;
}

.events-art svg:last-child {
  top: 0;
  right: 8%;
  width: 130px;
  height: 130px;
}

.events-art span {
  position: absolute;
  top: 40%;
  right: 23%;
  left: 24%;
  height: 1px;
  background: #cfd1d4;
}

.events-art i,
.events-art i::before {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--red);
}

.events-art i {
  top: 38%;
  left: 49%;
}

.events-art i::before {
  top: -55px;
  left: 130px;
}

.event-feature-section {
  padding: 42px 0 clamp(90px, 8vw, 130px);
}

.event-feature-section.is-empty {
  display: none;
}

.event-section-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
}

.event-section-label span {
  color: var(--red);
  font-size: 1rem;
  font-weight: 720;
}

.event-section-label i {
  position: relative;
  height: 1px;
  background: var(--red);
}

.event-section-label i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.event-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.event-copy {
  padding-top: 18px;
}

.event-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
}

.event-basics {
  padding: 0;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.event-basics > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}

.event-basics dt,
.event-basics dd {
  margin: 0;
}

.event-basics svg {
  width: 25px;
  height: 25px;
  color: var(--red);
}

.event-basics dd {
  font-size: .97rem;
  font-weight: 580;
}

.event-summary {
  max-width: 570px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.event-details {
  position: relative;
  padding: 0 0 0 1px;
  margin: 0 0 28px;
  list-style: none;
}

.event-details::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 15px;
  width: 1px;
  content: "";
  background: var(--red);
}

.event-details li {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 17px;
  font-size: .9rem;
  font-weight: 620;
}

.event-details svg {
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 5px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.event-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 1.12rem;
  font-weight: 650;
}

.event-phone svg {
  width: 27px;
  height: 27px;
  color: var(--red);
}

.event-poster {
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid #aeb1b5;
  box-shadow: var(--shadow-md);
}

.event-poster img {
  width: 100%;
  height: auto;
}

.past-events-section {
  padding: 0 0 28px;
}

.past-events-wrap {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 28px;
  align-items: start;
  padding: 35px 45px;
  background: var(--soft);
}

.past-events-wrap > svg {
  width: 68px;
  height: 68px;
  padding: 16px;
  color: #73777d;
  border: 1px solid #bfc2c6;
  border-radius: 50%;
}

.past-events-wrap h2 {
  margin-bottom: 8px;
  font-size: 1.34rem;
  letter-spacing: -.025em;
}

.past-events-wrap p {
  margin: 0;
  font-size: .9rem;
}

.past-events-wrap .event-feature {
  padding-top: 34px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.past-events-wrap .event-feature .event-copy h2 {
  font-size: clamp(2.35rem, 3.6vw, 4.2rem);
}

/* Downloads page */

.downloads-page {
  background: var(--white);
}

.downloads-hero {
  padding: clamp(70px, 6.5vw, 104px) 0 54px;
  background:
    linear-gradient(90deg, rgba(245, 245, 243, .68) 1px, transparent 1px),
    linear-gradient(rgba(245, 245, 243, .68) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
  border-bottom: 1px solid var(--border);
}

.downloads-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.downloads-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.downloads-hero p {
  max-width: 590px;
  margin: 0;
  font-size: 1.1rem;
}

.downloads-art {
  position: relative;
  min-height: 180px;
  color: #aeb1b6;
}

.downloads-art > svg:not(.downloads-art-lines) {
  position: absolute;
  z-index: 1;
  padding: 10px;
  background: rgba(255, 255, 255, .9);
  stroke-width: 1.25;
}

.downloads-art-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #c7c9cc;
  stroke-width: 1.2;
}

.downloads-art-lines circle {
  color: var(--red);
  fill: currentColor;
  stroke: var(--white);
  stroke-width: 3;
}

.downloads-art-file {
  top: 48px;
  left: 4%;
  width: 74px;
  height: 74px;
}

.downloads-art-monitor {
  top: 12px;
  left: 42%;
  width: 116px;
  height: 116px;
}

.downloads-art-printer {
  right: 1%;
  bottom: 2px;
  width: 106px;
  height: 106px;
}

.download-library {
  padding: 24px 0 clamp(76px, 7vw, 112px);
}

.download-resource-list {
  border-top: 1px solid var(--border);
}

.download-resource {
  display: grid;
  grid-template-columns: 190px minmax(280px, .85fr) minmax(440px, 1.15fr);
  gap: clamp(30px, 3.5vw, 64px);
  align-items: center;
  min-height: 196px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.download-resource-mark {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 106px;
  padding-right: 26px;
  border-right: 1px solid var(--border);
}

.download-resource-mark svg {
  width: 82px;
  height: 82px;
  color: #777b81;
  stroke-width: 1.25;
}

.download-resource-mark span {
  color: var(--red);
  font-size: 1.9rem;
  font-weight: 730;
  letter-spacing: -.05em;
}

.download-resource-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.28rem, 1.6vw, 1.65rem);
}

.download-resource-copy p {
  margin-bottom: 8px;
  font-size: .91rem;
  line-height: 1.55;
}

.download-resource-copy p:last-child {
  margin-bottom: 0;
}

.download-note {
  color: #3f4349;
  font-size: .84rem !important;
}

.download-resource-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 24px;
  align-items: start;
}

.download-resource-actions-three {
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 18px;
}

.download-resource-actions > div {
  display: grid;
  gap: 8px;
}

.download-resource-actions .button {
  width: 100%;
  min-height: 50px;
  padding-inline: 18px;
  font-size: .87rem;
  text-align: center;
}

.download-resource-actions > div > span {
  color: #6d7178;
  font-size: .75rem;
  text-align: center;
}

.download-help-section {
  padding-bottom: 28px;
}

.download-help {
  display: grid;
  grid-template-columns: 92px minmax(260px, 1fr) auto auto;
  gap: 30px;
  align-items: center;
  padding: 30px 38px;
  background: var(--soft);
}

.download-help-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #575b61;
  border: 1px solid #bfc2c6;
  border-radius: 50%;
}

.download-help-icon svg {
  width: 42px;
  height: 42px;
}

.download-help h2 {
  margin-bottom: 7px;
  font-size: 1.25rem;
  letter-spacing: -.025em;
}

.download-help p {
  margin: 0;
  font-size: .88rem;
}

.download-help > .button {
  min-width: 178px;
}

.download-help-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 30px;
  border-left: 1px solid #d0d1d2;
}

.download-help-phone > svg {
  width: 31px;
  height: 31px;
  color: var(--red);
}

.download-help-phone span {
  display: grid;
}

.download-help-phone strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.download-help-phone small {
  color: var(--muted);
  font-size: .72rem;
}

/* Support page */

.support-page {
  background: var(--white);
}

.support-hero {
  padding: clamp(70px, 6.5vw, 104px) 0 62px;
  background:
    linear-gradient(90deg, rgba(245, 245, 243, .68) 1px, transparent 1px),
    linear-gradient(rgba(245, 245, 243, .68) 1px, transparent 1px),
    var(--white);
  background-size: 64px 64px;
  border-bottom: 1px solid var(--border);
}

.support-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.support-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.support-hero p {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.support-art {
  position: relative;
  min-height: 230px;
  color: #aeb1b6;
}

.support-art > svg:not(.support-art-lines) {
  position: absolute;
  z-index: 1;
  padding: 12px;
  background: rgba(255, 255, 255, .92);
  stroke-width: 1.25;
}

.support-art-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #c7c9cc;
  stroke-width: 1.2;
}

.support-art-lines circle {
  color: var(--red);
  fill: currentColor;
  stroke: var(--white);
  stroke-width: 3;
}

.support-art-tool {
  bottom: 8px;
  left: 2%;
  width: 104px;
  height: 104px;
}

.support-art-help {
  top: 5px;
  left: 40%;
  width: 126px;
  height: 126px;
}

.support-art-file {
  right: 1%;
  bottom: 23px;
  width: 94px;
  height: 94px;
}

.support-routes {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 35%, rgba(227, 6, 19, .13), transparent 30%),
    var(--black);
}

.support-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.support-route-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  min-height: 250px;
  padding: 48px clamp(30px, 3.2vw, 56px);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.support-route-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.support-route-grid article:last-child {
  padding-right: 0;
}

.support-route-grid article > svg {
  width: 54px;
  height: 54px;
  color: var(--red);
  stroke-width: 1.35;
}

.support-route-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.28rem;
  letter-spacing: -.025em;
}

.support-route-grid p {
  margin-bottom: 20px;
  color: #bbbfc5;
  font-size: .9rem;
  line-height: 1.55;
}

.support-route-grid a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
}

.support-route-grid a svg {
  width: 17px;
  height: 17px;
  color: var(--red);
  transition: transform var(--ease);
}

.support-route-grid a:hover svg {
  transform: translateX(4px);
}

.knowledgebase-section {
  padding: clamp(86px, 8vw, 132px) 0;
}

.knowledgebase-grid {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(560px, 1.32fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.knowledgebase-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.knowledgebase-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.knowledgebase-intro > p {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.knowledgebase-note {
  padding: 16px 0 0 20px;
  color: #3f4349;
  border-left: 3px solid var(--red);
  font-size: .84rem !important;
}

.knowledgebase-tools {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.support-search {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  align-items: center;
  padding: 0 4px 12px;
  border-bottom: 2px solid var(--ink);
}

.support-search:focus-within {
  border-color: var(--red);
}

.support-search svg {
  width: 23px;
  height: 23px;
  color: var(--red);
}

.support-search input {
  width: 100%;
  padding: 4px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1.05rem;
}

.support-search input::placeholder {
  color: #7b7f85;
}

.support-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.support-filters button {
  min-height: 38px;
  padding: 8px 14px;
  color: #4d5157;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 680;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.support-filters button:hover,
.support-filters button.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.support-result-count {
  margin: 13px 0 0;
  color: #6d7178;
  font-size: .76rem;
}

.support-resource-list {
  border-bottom: 1px solid var(--border);
}

.support-resource {
  display: grid;
  grid-template-columns: 58px 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  padding: 24px 4px;
  border-top: 1px solid var(--border);
  transition: background var(--ease), padding var(--ease);
}

.support-resource:first-child {
  border-top: 0;
}

.support-resource:hover {
  padding-inline: 16px;
  background: var(--soft);
}

.support-resource[hidden] {
  display: none;
}

.support-resource-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #5d626a;
  border: 1px solid #bfc2c6;
  border-radius: 50%;
}

.support-resource-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

.support-resource-copy {
  display: grid;
}

.support-resource-copy small {
  margin-bottom: 5px;
  color: var(--red);
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.support-resource-copy strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.support-resource-copy > span {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

.support-resource-arrow {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.support-empty {
  padding: 54px 20px;
  text-align: center;
  background: var(--soft);
}

.support-empty svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  color: #74787e;
}

.support-empty h3 {
  margin-bottom: 7px;
}

.support-empty p {
  margin: 0;
  font-size: .88rem;
}

.support-empty a {
  color: var(--red);
  font-weight: 700;
}

.remote-support-section {
  padding: clamp(82px, 8vw, 126px) 0;
  overflow: hidden;
  background: var(--soft);
}

.remote-support-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.remote-support-art {
  position: relative;
  min-height: 430px;
}

.remote-ring {
  position: absolute;
  top: 50%;
  left: 48%;
  border: 1px solid #c5c8cb;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 300px;
  height: 300px;
}

.ring-two {
  width: 420px;
  height: 420px;
  border-style: dashed;
}

.remote-device,
.remote-tool {
  position: absolute;
  z-index: 2;
  padding: 20px;
  background: var(--soft);
  stroke-width: 1.2;
}

.remote-device {
  top: 50%;
  left: 48%;
  width: 170px;
  height: 170px;
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.remote-tool {
  right: 5%;
  bottom: 10%;
  width: 88px;
  height: 88px;
  color: var(--red);
}

.remote-support-art i {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  background: var(--red);
  border: 3px solid var(--soft);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--red);
}

.remote-support-art i:nth-of-type(1) {
  top: 12%;
  left: 37%;
}

.remote-support-art i:nth-of-type(2) {
  top: 45%;
  right: 7%;
}

.remote-support-art i:nth-of-type(3) {
  bottom: 5%;
  left: 23%;
}

.remote-support-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.3vw, 4.8rem);
}

.remote-support-copy > p {
  max-width: 640px;
  margin-bottom: 26px;
  font-size: 1rem;
}

.remote-support-copy ul {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.remote-support-copy li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-top: 1px solid #d8d9d8;
  font-size: .9rem;
  font-weight: 620;
}

.remote-support-copy li:last-child {
  border-bottom: 1px solid #d8d9d8;
}

.remote-support-copy li::before {
  position: absolute;
  top: 19px;
  left: 3px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--red);
  border-radius: 50%;
}

.support-final-section {
  padding: 28px 0;
}

.support-final {
  display: grid;
  grid-template-columns: 92px minmax(260px, 1fr) auto minmax(290px, auto);
  gap: 30px;
  align-items: center;
  padding: 30px 38px;
  background: var(--black);
}

.support-final-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--white);
  border: 1px solid #5c6066;
  border-radius: 50%;
}

.support-final-icon svg {
  width: 40px;
  height: 40px;
}

.support-final h2 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -.025em;
}

.support-final p {
  margin: 0;
  color: #b9bdc2;
  font-size: .86rem;
}

.support-final .button-secondary {
  color: var(--white);
  border-color: #74787e;
}

.support-final .button-secondary:hover {
  border-color: var(--red);
}

.support-final-portal {
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  gap: 14px;
  align-items: center;
  padding-left: 28px;
  color: var(--white);
  border-left: 1px solid #43464b;
}

.support-final-portal > svg:first-child {
  width: 31px;
  height: 31px;
  color: var(--red);
}

.support-final-portal > svg:last-child {
  width: 18px;
  height: 18px;
}

.support-final-portal span {
  display: grid;
}

.support-final-portal strong {
  font-size: .94rem;
}

.support-final-portal small {
  color: #9da1a7;
  font-size: .7rem;
}

.footer-grid a.is-current {
  color: var(--red);
}

/* Responsive */

@media (max-width: 1260px) {
  :root {
    --header-height: 108px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .brand img {
    width: 188px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav > a:not(.button) {
    font-size: .75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(390px, .8fr) minmax(0, 1.2fr);
  }

  .proof-grid article {
    grid-template-columns: 44px 1fr;
    padding-inline: 20px;
  }

  .proof-grid article > svg {
    width: 39px;
    height: 39px;
  }

  .print-grid {
    grid-template-columns: 1fr .75fr;
  }

  .printer-stage {
    grid-column: 1 / -1;
    min-height: 410px;
  }

  .printer-family {
    right: 2%;
    width: 68%;
  }

  .authorized-mark {
    top: 15%;
    left: 5%;
  }

  .heritage-grid {
    grid-template-columns: .6fr 1.25fr;
  }

  .heritage-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-left: 0;
  }

  .contact-grid {
    grid-template-columns: .65fr 1.15fr;
  }

  .contact-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 44px;
  }

  .contact-list {
    margin-bottom: 0;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 18px 36px rgba(18, 18, 20, .1);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 15px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 22px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: .85fr 1.15fr;
  }

  .hero-copy {
    padding-left: 24px;
  }

  .hero-media {
    margin-right: 0;
  }

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

  .proof-grid article {
    padding: 25px;
    border-top: 1px solid var(--border);
  }

  .proof-grid article:nth-child(odd) {
    border-left: 0;
  }

  .proof-grid article:nth-child(-n+2) {
    border-top: 0;
  }

  .proof-grid article:first-child {
    padding-left: 25px;
  }

  .proof-grid article:last-child {
    padding-right: 25px;
  }

  .managed-grid {
    grid-template-columns: 1fr;
  }

  .systems-illustration {
    width: min(100%, 650px);
    min-height: 540px;
    margin-inline: auto;
  }

  .industries-grid,
  .solutions-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .sticky-heading {
    position: static;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 55px;
  }

  .process-list::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, .8fr);
    gap: 38px;
  }

  .events-hero-grid {
    grid-template-columns: 1fr .65fr;
  }

  .download-resource {
    grid-template-columns: 130px 1fr;
  }

  .download-resource-actions {
    grid-column: 2;
  }

  .download-help {
    grid-template-columns: 82px 1fr auto;
  }

  .download-help-phone {
    grid-column: 2 / -1;
    padding: 22px 0 0;
    border-top: 1px solid #d0d1d2;
    border-left: 0;
  }

  .support-route-grid article {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding-inline: 28px;
  }

  .support-route-grid article:first-child {
    padding-left: 0;
  }

  .support-route-grid article:last-child {
    padding-right: 0;
  }

  .support-route-grid article > svg {
    width: 44px;
    height: 44px;
  }

  .knowledgebase-grid {
    grid-template-columns: minmax(280px, .62fr) minmax(500px, 1.38fr);
    gap: 54px;
  }

  .support-final {
    grid-template-columns: 82px 1fr auto;
  }

  .support-final-portal {
    grid-column: 2 / -1;
    padding: 22px 0 0;
    border-top: 1px solid #43464b;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 105px;
  }

  .utility-inner {
    justify-content: space-between;
  }

  .utility-client-link {
    display: none !important;
  }

  .nav-wrap {
    height: 71px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding: 70px 32px 54px;
    background: var(--white);
  }

  .hero-media {
    min-height: 430px;
    margin: 0;
  }

  .hero-media::before {
    display: none;
  }

  .print-grid {
    grid-template-columns: 1fr;
  }

  .print-points {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }

  .printer-stage {
    min-height: 380px;
  }

  .printer-family {
    width: 88%;
  }

  .security-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .heritage-visual {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .heritage-visual > svg {
    width: 170px;
    height: 170px;
  }

  .heritage-facts {
    grid-template-columns: 1fr;
  }

  .industry-list article {
    grid-template-columns: 46px 210px 1fr;
  }

  .contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-intro {
    padding-inline: 32px;
  }

  .contact-form {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .contact-panel {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .events-hero-grid {
    grid-template-columns: 1fr;
  }

  .events-art {
    display: none;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

  .event-poster {
    width: min(100%, 650px);
  }

  .downloads-hero-grid {
    grid-template-columns: 1fr;
  }

  .downloads-art {
    display: none;
  }

  .download-resource-actions-three {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
  }

  .download-help {
    grid-template-columns: 76px 1fr;
  }

  .download-help > .button,
  .download-help-phone {
    grid-column: 2;
  }

  .support-hero-grid {
    grid-template-columns: 1fr;
  }

  .support-art {
    display: none;
  }

  .support-route-grid {
    grid-template-columns: 1fr;
  }

  .support-route-grid article,
  .support-route-grid article:first-child,
  .support-route-grid article:last-child {
    min-height: 0;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-left: 0;
  }

  .support-route-grid article:first-child {
    border-top: 0;
  }

  .knowledgebase-grid,
  .remote-support-grid {
    grid-template-columns: 1fr;
  }

  .knowledgebase-intro {
    position: static;
  }

  .remote-support-art {
    min-height: 360px;
  }

  .ring-two {
    width: 350px;
    height: 350px;
  }

  .support-final {
    grid-template-columns: 76px 1fr;
  }

  .support-final > .button,
  .support-final-portal {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(3.05rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner > span:not(.utility-divider) {
    display: none;
  }

  .utility-inner > .utility-divider {
    display: none;
  }

  .brand img {
    width: 178px;
  }

  .hero-copy {
    padding: 55px 32px 48px;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:last-child {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .proof-grid article:first-child {
    border-top: 0;
  }

  .solution-rail article {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .solution-icon {
    width: 54px;
    height: 54px;
  }

  .solution-icon svg {
    width: 28px;
    height: 28px;
  }

  .printer-stage {
    min-height: 310px;
  }

  .authorized-mark {
    top: 0;
    left: 0;
    width: 145px;
  }

  .printer-family {
    right: -8%;
    width: 112%;
  }

  .managed-list article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .managed-list p {
    grid-column: 2;
  }

  .systems-illustration {
    min-height: 420px;
    transform: scale(.88);
    transform-origin: center;
  }

  .platform-strip li {
    border-right: 1px solid var(--border);
    margin: 0 4px 4px 0;
  }

  .security-grid ol {
    grid-template-columns: 1fr;
  }

  .security-grid li,
  .security-grid li:nth-child(even),
  .security-grid li:nth-child(odd) {
    padding: 15px 0;
    border-right: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 0 0 32px;
  }

  .timeline::before {
    top: 8%;
    bottom: 8%;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .timeline li {
    text-align: left;
  }

  .timeline li > span {
    top: 7px;
    left: -25px;
  }

  .industry-list article {
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }

  .industry-list p {
    grid-column: 2;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0 18px;
    padding: 0;
    text-align: left;
  }

  .process-number {
    grid-column: 1;
    text-align: center;
  }

  .process-list i {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 58px;
    height: 58px;
  }

  .process-list h3,
  .process-list p {
    grid-column: 2;
  }

  .process-list h3 {
    align-self: end;
  }

  .accordion-item button > span {
    gap: 14px;
    font-size: .95rem;
  }

  .accordion-panel {
    padding-left: 42px;
  }

  .contact-intro,
  .contact-form,
  .contact-panel {
    padding: 52px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .contact-panel {
    display: block;
    border-left-width: 6px;
  }

  .contact-list {
    margin-bottom: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .events-hero {
    padding-top: 65px;
  }

  .events-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .event-feature-section {
    padding-bottom: 80px;
  }

  .past-events-wrap {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .past-events-wrap > svg {
    width: 58px;
    height: 58px;
  }

  .downloads-hero {
    padding-top: 65px;
  }

  .downloads-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .download-library {
    padding-top: 8px;
  }

  .download-resource {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 0 40px;
  }

  .download-resource-mark {
    grid-template-columns: 70px auto;
    justify-content: start;
    min-height: 0;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .download-resource-mark svg {
    width: 64px;
    height: 64px;
  }

  .download-resource-actions,
  .download-resource-actions-three {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .download-help {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .download-help > .button,
  .download-help-phone {
    grid-column: auto;
  }

  .download-help-phone {
    padding: 22px 0 0;
  }

  .support-hero {
    padding-top: 65px;
  }

  .support-hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .support-route-grid article {
    grid-template-columns: 46px 1fr;
  }

  .support-route-grid article > svg {
    width: 42px;
    height: 42px;
  }

  .knowledgebase-section {
    padding: 76px 0;
  }

  .knowledgebase-grid {
    gap: 48px;
  }

  .support-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .support-filters button {
    width: 100%;
  }

  .support-resource {
    grid-template-columns: 46px 1fr 20px;
    gap: 15px;
    min-height: 132px;
    padding: 22px 0;
  }

  .support-resource:hover {
    padding-inline: 8px;
  }

  .support-resource-icon {
    width: 44px;
    height: 44px;
  }

  .support-resource-icon svg {
    width: 23px;
    height: 23px;
  }

  .support-resource-copy small {
    font-size: .62rem;
  }

  .support-resource-copy strong {
    font-size: .98rem;
  }

  .support-resource-copy > span {
    font-size: .78rem;
  }

  .remote-support-art {
    min-height: 300px;
    transform: scale(.84);
    transform-origin: center;
  }

  .support-final {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .support-final > .button,
  .support-final-portal {
    grid-column: auto;
  }

  .support-final > .button {
    width: 100%;
  }

  .support-final-portal {
    padding: 22px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
