:root {
  --black: #050507;
  --black-2: #0b0d10;
  --panel: rgba(12, 14, 17, 0.88);
  --panel-solid: #11141a;
  --white: #f5f2e9;
  --muted: #aeb3b8;
  --silver: #b8bdc2;
  --silver-dark: #505760;
  --orange: #ff9d1a;
  --orange-2: #d56b00;
  --red: #cc2027;
  --red-bright: #ff3945;
  --line: rgba(184, 189, 194, 0.24);
  --shadow: rgba(0, 0, 0, 0.66);
  --sidebar-width: 300px;
  --header-height: clamp(150px, 15vh, 190px);
  --font-main: "Segoe UI", Roboto, Arial, sans-serif;
  --font-tech: "Consolas", "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: var(--font-main);
  background:
    linear-gradient(90deg, rgba(5,5,7,.96), rgba(5,5,7,.78) 45%, rgba(5,5,7,.92)),
    url('../img/bg/ut3-artwork.jpg') center top / cover fixed no-repeat,
    var(--black);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025), rgba(255,255,255,.025) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 80% 10%, rgba(255,157,26,.18), transparent 24rem),
    radial-gradient(circle at 10% 50%, rgba(204,32,39,.13), transparent 28rem);
  mix-blend-mode: screen;
  opacity: .65;
  z-index: 0;
}

.site-shell { position: relative; z-index: 1; min-height: 100vh; }
.site-header {
  position: relative;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 157, 26, .5);
  box-shadow: 0 18px 50px var(--shadow);
  overflow: hidden;
}
.header-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.35) 48%, rgba(0,0,0,.88)),
    url('../img/screens/1148096821.jpg') center 40% / cover no-repeat;
  filter: saturate(1.05) contrast(1.1);
}
.header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 30%, rgba(255,157,26,.18) 30% 31%, transparent 31% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.05) 1px, transparent 1px, transparent 42px);
}
.header-grid {
  position: relative;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 160px 1fr 170px;
  align-items: center;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px 44px;
}
.corner-logo {
  width: 137px;
  height: 126px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,157,26,.5);
  box-shadow: 0 0 0 4px rgba(0,0,0,.25), 0 0 36px rgba(255,157,26,.18);
}
.corner-logo img { display: block; width: 137px; height: 126px; object-fit: contain; }
.main-logo-placeholder {
  justify-self: stretch;
  min-height: 94px;
  padding: 20px 28px;
  border: 1px solid rgba(184,189,194,.32);
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28)),
    linear-gradient(135deg, rgba(255,157,26,.16), transparent 52%);
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  overflow: hidden;
}
.main-logo-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255,157,26,.34);
}
.placeholder-kicker { color: var(--orange); font: 700 12px var(--font-tech); position: relative; }
.placeholder-title { font-size: clamp(30px, 4.2vw, 58px); line-height: .92; font-weight: 900; position: relative; }
.placeholder-subtitle { color: var(--muted); font: 700 12px var(--font-tech); position: relative; margin-top: 8px; }
.header-side-mark {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--silver);
  font: 800 13px/1.1 var(--font-tech);
  text-align: right;
  text-transform: uppercase;
}
.header-side-mark img {
  max-width: 74px;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.2));
}
.main-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 32px));
  display: flex;
  justify-content: center;
  gap: 0;
  background: linear-gradient(180deg, rgba(20,23,28,.96), rgba(8,9,11,.96));
  border: 1px solid rgba(255,157,26,.48);
  border-bottom: 0;
  box-shadow: 0 -12px 30px rgba(0,0,0,.45);
}
.main-nav a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font: 800 12px var(--font-tech);
  letter-spacing: .04em;
  padding: 13px 14px;
  white-space: nowrap;
}
.main-nav a::before { content: "|"; color: var(--orange); margin-right: 12px; }
.main-nav a:last-child::after { content: "|"; color: var(--orange); margin-left: 12px; }
.main-nav a:hover { color: var(--orange); background: rgba(255,157,26,.08); }

.page-layout {
  max-width: 1240px;
  margin: 26px auto 0;
  padding: 0 24px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  gap: 22px;
  align-items: start;
}
.content-column { display: grid; gap: 22px; }
.sidebar { display: grid; gap: 18px; position: sticky; top: 16px; }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,157,26,.16), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 18%);
  opacity: .75;
}
.section-card, .screenshot-panel { padding: 28px; }
.hero-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.42) 58%, rgba(0,0,0,.75)),
    url('../img/screens/1148096822.jpg') center / cover no-repeat;
}
.panel > * { position: relative; z-index: 1; }
.corporate-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: var(--black);
  background: var(--orange);
  font: 900 12px var(--font-tech);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(34px, 5vw, 64px); line-height: .96; margin-bottom: 16px; text-transform: uppercase; letter-spacing: -.03em; }
.lead { max-width: 740px; color: var(--white); font-size: 19px; line-height: 1.55; }
p { color: var(--muted); line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255,157,26,.65);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font: 900 12px var(--font-tech);
  letter-spacing: .05em;
}
.button-primary { background: linear-gradient(180deg, var(--orange), var(--orange-2)); color: #111; }
.button-secondary { background: rgba(0,0,0,.4); }
.button:hover { filter: brightness(1.12); }
.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,157,26,.3);
  padding-bottom: 12px;
}
.section-heading span {
  width: 38px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  font: 900 13px var(--font-tech);
}
.section-heading h2 { margin: 0; text-transform: uppercase; letter-spacing: .05em; font-size: 25px; }
.two-card-grid, .event-grid, .feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.micro-card, .event-card, .feature-list > div {
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(184,189,194,.2);
  padding: 16px;
}
.micro-card h3, .feature-list h3 { color: var(--white); text-transform: uppercase; font-size: 16px; margin-bottom: 7px; }
.micro-card p, .feature-list p { margin-bottom: 0; }
.event-card { display: grid; gap: 7px; min-height: 112px; }
.event-card strong { color: var(--white); text-transform: uppercase; font-size: 16px; }
.event-card span { color: var(--muted); line-height: 1.45; }
.alert-orange { border-top: 3px solid var(--orange); }
.alert-red { border-top: 3px solid var(--red-bright); }
.alert-silver { border-top: 3px solid var(--silver); }
.screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.screen-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid rgba(255,157,26,.32);
  filter: saturate(.92) contrast(1.05);
}
.download-table { display: grid; gap: 10px; margin-top: 16px; }
.download-table div, .contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,.34);
  border-left: 4px solid var(--orange);
  border-top: 1px solid rgba(184,189,194,.17);
}
.download-table strong, .contact-strip strong { color: var(--white); }
.download-table span, .contact-strip span { color: var(--muted); }
.sidebar .panel { padding: 18px; }
.sidebar-heading {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  font: 900 13px var(--font-tech);
  margin-bottom: 14px;
}
.status-light {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(0,0,0,.44);
  border: 1px solid rgba(255,157,26,.2);
  margin-bottom: 14px;
  text-transform: uppercase;
  font: 900 13px var(--font-tech);
}
.status-light span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
}
.status-light.online span { background: #59ff7a; box-shadow: 0 0 18px #59ff7a; }
.status-light.offline span { background: var(--red-bright); box-shadow: 0 0 18px var(--red-bright); }
.status-list { margin: 0; display: grid; gap: 9px; }
.status-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px solid rgba(184,189,194,.16);
  padding-bottom: 8px;
}
.status-list dt { color: var(--silver); font: 800 11px var(--font-tech); text-transform: uppercase; }
.status-list dd { margin: 0; color: var(--white); font-size: 14px; word-break: break-word; }
.panel-note { margin: 14px 0 0; color: #878d96; font-size: 12px; line-height: 1.55; }
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.link-list a {
  display: block;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(184,189,194,.16);
  background: rgba(0,0,0,.28);
  padding: 10px;
  font: 800 12px var(--font-tech);
  text-transform: uppercase;
}
.link-list a:hover { border-color: var(--orange); color: var(--orange); }
.corporate-seal { display: grid; gap: 12px; }
.corporate-seal img { width: 100%; border: 1px solid rgba(184,189,194,.2); }
.corporate-seal strong { display: block; color: var(--white); text-transform: uppercase; }
.corporate-seal span { color: var(--muted); font-size: 13px; }
.counter-value {
  color: var(--orange);
  font: 900 38px var(--font-tech);
  letter-spacing: .08em;
  text-shadow: 0 0 18px rgba(255,157,26,.3);
}
.counter-card span { color: var(--muted); text-transform: uppercase; font: 800 11px var(--font-tech); }
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(255,157,26,.26);
  font: 800 12px var(--font-tech);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .header-grid { grid-template-columns: 137px 1fr; padding-bottom: 56px; }
  .header-side-mark { display: none; }
  .main-nav { overflow-x: auto; justify-content: flex-start; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .status-panel { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .header-grid { grid-template-columns: 1fr; justify-items: center; padding: 16px 16px 62px; }
  .corner-logo { justify-self: center; }
  .main-logo-placeholder { width: 100%; text-align: center; padding: 18px; }
  .page-layout { padding: 0 14px 28px; margin-top: 18px; }
  .section-card, .screenshot-panel { padding: 20px; }
  .two-card-grid, .event-grid, .feature-list, .screen-grid, .sidebar { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; padding: 18px 14px; }
  .download-table div, .contact-strip { flex-direction: column; }
}

/* v6.1 sticky header/menu update
   Keeps the corporate header and navigation visible while scrolling. */
.site-header,
body > header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-nav,
body > header nav {
    z-index: 1001;
}

/* Anchor links should not hide content behind the sticky header. */
section,
[id] {
    scroll-margin-top: 170px;
}

/* v6.3 config-driven Events / Features */
.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.card-title-row h3,
.card-title-row strong {
  margin-right: auto;
}
.card-title-row em {
  flex: 0 0 auto;
  display: inline-block;
  border: 1px solid rgba(184,189,194,.25);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--silver);
  background: rgba(0,0,0,.3);
  font: 900 10px var(--font-tech);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-style: normal;
}
.wy-config-card.is-enabled .card-title-row em {
  border-color: rgba(89,255,122,.45);
  color: #59ff7a;
  box-shadow: 0 0 14px rgba(89,255,122,.13);
}
.wy-config-card.is-disabled {
  opacity: .54;
  filter: grayscale(.35);
}
.wy-config-card.is-disabled .card-title-row em {
  border-color: rgba(255,75,89,.45);
  color: var(--red-bright);
}
.wy-config-card.is-configured .card-title-row em {
  border-color: rgba(255,157,26,.5);
  color: var(--orange);
}
.wy-config-card.is-unknown .card-title-row em {
  border-color: rgba(184,189,194,.22);
  color: var(--muted);
}
[data-wy-config-note] code {
  color: var(--orange);
}

/* v6.3.9 protocol reference / content consistency */
.protocol-reference {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(184,189,194,.18);
}
.compact-heading {
  margin-bottom: 10px;
}
.compact-heading span {
  min-width: 42px;
}
.protocol-reference > p {
  color: var(--muted);
  line-height: 1.75;
}
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.protocol-grid > div {
  border: 1px solid rgba(184,189,194,.16);
  background: linear-gradient(135deg, rgba(255,157,26,.08), rgba(0,0,0,.24));
  padding: 14px;
}
.protocol-grid strong {
  display: block;
  color: var(--orange);
  font: 900 12px var(--font-tech);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}
.protocol-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .protocol-grid {
    grid-template-columns: 1fr;
  }
}

/* v6.4.0 W-Y glossary tooltip system */
.wy-term {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-weight: 800;
  border-bottom: 1px dotted rgba(255,157,26,.75);
  cursor: help;
  white-space: nowrap;
}
.wy-term .wy-help {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,157,26,.8);
  border-radius: 50%;
  color: #090909;
  background: var(--orange);
  font: 900 10px var(--font-tech);
  line-height: 1;
  box-shadow: 0 0 12px rgba(255,157,26,.32);
}
.wy-term .wy-tooltip-box {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: min(320px, 78vw);
  padding: 12px 13px;
  border: 1px solid rgba(255,157,26,.65);
  background:
    linear-gradient(135deg, rgba(255,157,26,.16), rgba(0,0,0,.94)),
    rgba(8, 8, 8, .98);
  color: var(--white);
  font: 500 12px/1.55 var(--font-body);
  letter-spacing: normal;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
  box-shadow: 0 18px 45px rgba(0,0,0,.62), 0 0 26px rgba(255,157,26,.16);
  transition: opacity .14s ease, transform .14s ease;
}
.wy-term .wy-tooltip-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 7px 7px 0 7px;
  border-style: solid;
  border-color: rgba(255,157,26,.65) transparent transparent transparent;
}
.wy-term:hover .wy-tooltip-box,
.wy-term:focus-within .wy-tooltip-box {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wy-term:focus-within {
  outline: 1px solid rgba(255,157,26,.9);
  outline-offset: 3px;
}
.protocol-grid .wy-term {
  white-space: normal;
}
@media (max-width: 680px) {
  .wy-term {
    white-space: normal;
  }
  .wy-term .wy-tooltip-box {
    left: 0;
    transform: translateX(0) translateY(4px);
  }
  .wy-term:hover .wy-tooltip-box,
  .wy-term:focus-within .wy-tooltip-box {
    transform: translateX(0) translateY(0);
  }
  .wy-term .wy-tooltip-box::after {
    left: 16px;
    transform: none;
  }
}

/* v6.4.1 tooltip fix
   Tooltip text is now stored in data-tooltip and rendered with CSS pseudo-elements.
   This prevents the explanation text from appearing inline if old CSS is cached. */
.wy-term {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-weight: 800;
  border-bottom: 1px dotted rgba(255,157,26,.75);
  cursor: help;
  white-space: nowrap;
}
.wy-term .wy-help {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,157,26,.8);
  border-radius: 50%;
  color: #090909;
  background: var(--orange);
  font: 900 10px var(--font-tech);
  line-height: 1;
  box-shadow: 0 0 12px rgba(255,157,26,.32);
}
.wy-term .wy-tooltip-box {
  display: none !important;
}
.wy-term::before {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: min(320px, 78vw);
  padding: 12px 13px;
  border: 1px solid rgba(255,157,26,.65);
  background:
    linear-gradient(135deg, rgba(255,157,26,.16), rgba(0,0,0,.94)),
    rgba(8, 8, 8, .98);
  color: var(--white);
  font: 500 12px/1.55 var(--font-body);
  letter-spacing: normal;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  z-index: 3000;
  box-shadow: 0 18px 45px rgba(0,0,0,.62), 0 0 26px rgba(255,157,26,.16);
  transition: opacity .14s ease, transform .14s ease;
}
.wy-term::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 3px);
  transform: translateX(-50%);
  border-width: 7px 7px 0 7px;
  border-style: solid;
  border-color: rgba(255,157,26,.65) transparent transparent transparent;
  opacity: 0;
  pointer-events: none;
  z-index: 3001;
  transition: opacity .14s ease;
}
.wy-term:hover::before,
.wy-term:focus-within::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wy-term:hover::after,
.wy-term:focus-within::after {
  opacity: 1;
}
@media (max-width: 680px) {
  .wy-term {
    white-space: normal;
  }
  .wy-term::before {
    left: 0;
    transform: translateX(0) translateY(4px);
  }
  .wy-term:hover::before,
  .wy-term:focus-within::before {
    transform: translateX(0) translateY(0);
  }
  .wy-term::after {
    left: 16px;
    transform: none;
  }
}

/* v6.4.2 tooltip overlay / clipping fix
   Some W-Y tooltips live inside cards and panels. Those panels previously used overflow:hidden,
   which clipped the tooltip box behind the site content. */
.site-shell,
.page-layout,
.content-column,
.sidebar,
.panel,
.section-card,
.status-panel,
.sidebar-card,
.event-grid,
.feature-list,
.two-card-grid,
.protocol-reference,
.protocol-grid,
.status-list,
.status-list div,
.event-card,
.micro-card,
.wy-config-card {
  overflow: visible !important;
}

.panel {
  isolation: auto;
}

.wy-term {
  position: relative;
  z-index: 50;
}

.wy-term:hover,
.wy-term:focus-within {
  z-index: 2147483600;
}

.wy-term::before {
  z-index: 2147483600 !important;
}

.wy-term::after {
  z-index: 2147483601 !important;
}

/* Keep the yellow helper above panel scanlines and sibling cards. */
.panel:has(.wy-term:hover),
.panel:has(.wy-term:focus-within),
.wy-config-card:has(.wy-term:hover),
.wy-config-card:has(.wy-term:focus-within),
.event-card:has(.wy-term:hover),
.event-card:has(.wy-term:focus-within),
.status-list div:has(.wy-term:hover),
.status-list div:has(.wy-term:focus-within) {
  z-index: 2147483000;
}

/* v6.4.3 inactive Downloads / HR overlay */
.downloads-disabled {
  position: relative;
  min-height: 370px;
  filter: grayscale(.82) saturate(.45);
}
.downloads-disabled > .section-heading,
.downloads-disabled > p,
.downloads-disabled > .download-table {
  opacity: .34;
}
.downloads-disabled .download-table {
  pointer-events: none;
}
.downloads-disabled .download-table div {
  background: rgba(0,0,0,.38);
}
.downloads-disabled .download-table strong,
.downloads-disabled .download-table span {
  color: rgba(184,189,194,.62);
}
.downloads-disabled-overlay {
  position: absolute;
  inset: 18px;
  z-index: 20;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 28px;
  border: 1px solid rgba(184,189,194,.42);
  background:
    linear-gradient(135deg, rgba(184,189,194,.14), rgba(0,0,0,.76)),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.035) 0,
      rgba(255,255,255,.035) 8px,
      rgba(0,0,0,.08) 8px,
      rgba(0,0,0,.08) 16px
    );
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.65), 0 18px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.downloads-disabled-overlay::before,
.downloads-disabled-overlay::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,189,194,.55), transparent);
}
.downloads-disabled-overlay::before { top: 20px; }
.downloads-disabled-overlay::after { bottom: 20px; }
.downloads-disabled-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(184,189,194,.38);
  color: var(--silver);
  background: rgba(0,0,0,.48);
  font: 900 11px var(--font-tech);
  text-transform: uppercase;
  letter-spacing: .09em;
}
.downloads-disabled-overlay strong {
  color: var(--white);
  font: 900 clamp(22px, 3vw, 34px) var(--font-tech);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 0 18px rgba(184,189,194,.22);
}
.downloads-disabled-overlay p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(238,240,242,.86);
  line-height: 1.72;
}
.downloads-disabled-overlay p::after {
  content: " BUILDING BETTER EXCUSES.";
  color: var(--orange);
  font-weight: 900;
}
@media (max-width: 680px) {
  .downloads-disabled {
    min-height: 430px;
  }
  .downloads-disabled-overlay {
    inset: 12px;
    padding: 22px;
  }
}

