:root {
  --navy: #020617;
  --navy-soft: #0f172a;
  --navy-panel: #111d32;
  --teal: #00849d;
  --teal-dark: #006f85;
  --cyan: #38bdf8;
  --blue: #2563eb;
  --amber: #f59e0b;
  --white: #ffffff;
  --paper: #f8fafc;
  --mist: #e7f3f5;
  --line: #cbd5e1;
  --text: #13202b;
  --muted: #526273;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.js .hero .reveal {
  opacity: 1;
  transform: none;
}

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

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: .65rem .9rem;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 64px;
  padding: .65rem max(1.25rem, calc((100% - 1160px) / 2));
  border-bottom: 1px solid rgba(15, 23, 42, .1);
  background: rgba(248, 250, 252, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  color: #334155;
  font-size: .86rem;
  font-weight: 700;
}

.main-nav a,
.header-login {
  transition: color .18s ease;
}

.main-nav a:hover,
.header-login:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .86rem;
  font-weight: 750;
}

.header-login {
  color: var(--navy-soft);
  white-space: nowrap;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .72rem 1rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--teal);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(2, 6, 23, .98) 0%, rgba(15, 23, 42, .94) 52%, rgba(0, 132, 157, .68) 100%),
    radial-gradient(circle at 74% 24%, rgba(56, 189, 248, .32), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(245, 158, 11, .18), transparent 28%);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 52%, #000);
}

.hero-inner {
  display: grid;
  justify-items: center;
  width: min(1180px, calc(100% - 2rem));
  padding: 5.5rem 0;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 .9rem;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #68d7e7;
}

.hero-title-lockup {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  isolation: isolate;
}

.hero-title-icon {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: clamp(170px, 23vw, 300px);
  height: auto;
  opacity: .16;
  clip-path: inset(2% round 26%);
  filter: saturate(.85) contrast(1.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 5.2rem;
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  color: #9fe7f1;
}

.hero-lead {
  max-width: 820px;
  margin: 1.5rem auto 0;
  color: #cbd5e1;
  font-size: 1.25rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.8rem;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .14);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.2rem;
}

.hero-signals span {
  padding: .48rem .72rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(15, 23, 42, .45);
  font-size: .78rem;
  font-weight: 750;
}

.supports-section,
.client-portal-section,
.technician-space-section,
.role-space-section,
.profiles-section,
.visual-section,
.cta-section {
  padding: 6.5rem max(1.25rem, calc((100% - 1180px) / 2));
}

.supports-section {
  background: var(--paper);
}

.section-heading,
.visual-heading {
  width: min(850px, 100%);
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-heading h2,
.visual-heading h2,
.cta-inner h2 {
  margin: 0;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.visual-heading > p:last-child {
  width: min(720px, 100%);
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.supports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.support-panel {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  padding: 2.3rem;
  border-radius: 8px;
}

.support-mobile {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 82%, rgba(56, 189, 248, .24), transparent 36%),
    var(--navy-soft);
}

.support-desktop {
  color: var(--navy);
  background:
    radial-gradient(circle at 84% 82%, rgba(245, 158, 11, .2), transparent 36%),
    var(--mist);
}

.support-client {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 82%, rgba(37, 99, 235, .3), transparent 38%),
    linear-gradient(145deg, var(--teal-dark), #12335f);
}

.support-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-index {
  color: var(--cyan);
  font-size: 1.7rem;
  font-weight: 900;
}

.support-desktop .support-index {
  color: var(--amber);
}

.support-client .support-index {
  color: #9fe7f1;
}

.support-platform {
  font-size: .76rem;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
}

.support-panel h3 {
  margin: 4.2rem 0 0;
  font-size: 3.2rem;
  line-height: 1;
}

.support-panel > p {
  max-width: 500px;
  margin: 1rem 0 0;
  color: #aebdce;
  font-size: 1.05rem;
}

.support-desktop > p {
  color: var(--muted);
}

.support-client > p {
  color: #d7e8f3;
}

.support-panel ul {
  display: grid;
  gap: .55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.support-panel li::before {
  content: "";
  display: inline-block;
  width: .48rem;
  height: .48rem;
  margin-right: .65rem;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: .08rem;
}

.support-desktop li::before {
  background: var(--amber);
}

.support-client li::before {
  background: #9fe7f1;
}

.support-line {
  position: absolute;
  left: 2.3rem;
  right: 2.3rem;
  bottom: 2.3rem;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan), transparent);
}

.support-desktop .support-line {
  background: linear-gradient(90deg, var(--blue), var(--amber), transparent);
}

.support-client .support-line {
  background: linear-gradient(90deg, #9fe7f1, var(--cyan), transparent);
}

.client-portal-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(56, 189, 248, .18), transparent 30%),
    linear-gradient(125deg, #e9f7f8, #f8fafc 56%, #eef4ff);
}

.client-portal-copy {
  width: min(540px, 100%);
  justify-self: center;
}

.client-portal-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.client-portal-lead {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.client-benefits {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.client-benefits li {
  position: relative;
  padding-left: 1.45rem;
}

.client-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 132, 157, .12);
}

.client-benefits strong,
.client-benefits span {
  display: block;
}

.client-benefits strong {
  color: var(--navy-soft);
}

.client-benefits span {
  margin-top: .18rem;
  color: var(--muted);
  font-size: .92rem;
}

.client-portal-preview {
  position: relative;
  width: min(720px, 100%);
  min-width: 0;
  justify-self: center;
  overflow: visible;
  border: 1px solid rgba(148, 163, 184, .38);
  border-radius: 8px;
  background: #020617;
  box-shadow: 0 30px 75px rgba(15, 23, 42, .24);
  margin-bottom: 3.4rem;
}

.portal-mock-shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border-radius: 7px;
  color: #f8fafc;
  background:
    linear-gradient(105deg, rgba(2, 6, 23, .95), rgba(15, 23, 42, .88)),
    url('../tech1.webp') center / cover;
}

.portal-mock-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: .75rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 6, 23, .9);
  box-shadow: 10px 0 28px rgba(0, 0, 0, .24);
}

.portal-mock-client {
  display: grid;
  gap: .2rem;
  padding: .25rem .25rem .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.portal-mock-client span,
.portal-mock-company small {
  color: #94a3b8;
  font-size: .48rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-mock-client strong {
  font-size: .72rem;
  line-height: 1.2;
}

.portal-mock-client small {
  color: #cbd5e1;
  font-size: .52rem;
}

.portal-mock-nav {
  display: grid;
  gap: .34rem;
  margin-top: .75rem;
}

.portal-mock-nav span {
  display: flex;
  align-items: center;
  gap: .42rem;
  min-height: 30px;
  padding: .42rem .5rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  color: #dbeafe;
  background: rgba(15, 23, 42, .64);
  font-size: .56rem;
  font-weight: 850;
}

.portal-mock-nav span.is-active {
  border-color: rgba(56, 189, 248, .48);
  color: #f8fafc;
  background: linear-gradient(135deg, rgba(56, 189, 248, .22), rgba(15, 118, 110, .18));
}

.portal-mock-nav i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px rgba(56, 189, 248, .7);
}

.portal-mock-workspace {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.portal-mock-topbar {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 88px;
  align-items: center;
  gap: .65rem;
  min-height: 64px;
  padding: .45rem .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 6, 23, .84);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .24);
}

.portal-mock-brand,
.portal-mock-company {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: .5rem;
}

.portal-mock-brand img {
  width: 52px;
  height: 23px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  background: #fff;
}

.portal-mock-brand span,
.portal-mock-brand strong,
.portal-mock-brand small,
.portal-mock-company span,
.portal-mock-company strong,
.portal-mock-company small,
.portal-mock-company em,
.portal-mock-session strong,
.portal-mock-session span {
  display: block;
}

.portal-mock-brand strong {
  font-size: .52rem;
}

.portal-mock-brand small,
.portal-mock-company em,
.portal-mock-session span {
  color: #cbd5e1;
  font-size: .4rem;
  font-style: normal;
}

.portal-mock-company i {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: #fff;
  background: #00849d;
  font-size: .58rem;
  font-style: normal;
  font-weight: 950;
}

.portal-mock-company strong {
  overflow: hidden;
  font-size: .52rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-mock-session {
  min-width: 0;
  padding: .4rem .5rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: #f8fafc;
  background: rgba(15, 23, 42, .62);
  font-size: .4rem;
  overflow: hidden;
}

.portal-mock-session strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-mock-main {
  min-width: 0;
  padding: .85rem;
}

.portal-mock-overview {
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 4px solid #38bdf8;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, .92), rgba(15, 23, 42, .76)),
    url('../tech1.webp') center / cover;
  box-shadow: 0 16px 35px rgba(2, 6, 23, .2);
}

.portal-mock-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}

.portal-mock-overview-head > div > span {
  display: inline-flex;
  padding: .25rem .42rem;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56, 189, 248, .16);
  font-size: .46rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-mock-overview h3 {
  margin: .5rem 0 .25rem;
  color: #f8fafc;
  font-size: 1.15rem;
  line-height: 1.15;
}

.portal-mock-overview p {
  max-width: 380px;
  margin: 0;
  color: #cbd5e1;
  font-size: .58rem;
  line-height: 1.45;
}

.portal-mock-overview-head > strong {
  flex: 0 0 auto;
  padding: .4rem .5rem;
  border: 1px solid rgba(134, 239, 172, .24);
  border-radius: 6px;
  color: #bbf7d0;
  background: rgba(21, 128, 61, .18);
  font-size: .5rem;
  white-space: nowrap;
}

.portal-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
  margin-top: .8rem;
}

.portal-mock-stats div {
  min-width: 0;
  padding: .58rem .62rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  background: rgba(15, 23, 42, .66);
}

.portal-mock-stats strong,
.portal-mock-stats span {
  display: block;
}

.portal-mock-stats strong {
  color: #f8fafc;
  font-size: 1rem;
}

.portal-mock-stats span {
  overflow: hidden;
  color: #cbd5e1;
  font-size: .48rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-monitor {
  position: absolute;
  z-index: 4;
  right: -2.2rem;
  bottom: -3.2rem;
  width: 255px;
  filter: drop-shadow(0 20px 25px rgba(15, 23, 42, .35));
}

.portal-monitor-frame {
  padding: 7px;
  border: 1px solid #4b5563;
  border-radius: 8px;
  background: linear-gradient(145deg, #384250, #090d14 55%, #202733);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .34),
    0 0 24px rgba(245, 158, 11, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.portal-monitor-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 3px;
  color: #f8fafc;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, .9), rgba(15, 23, 42, .78)),
    url('../tech1.webp') center / cover;
}

.portal-monitor-slides {
  position: relative;
  height: 100%;
}

.portal-monitor-slide {
  position: absolute;
  inset: 0;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.portal-monitor-slide.is-active {
  visibility: visible;
}

.portal-monitor-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-monitor-neck {
  width: 34px;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(90deg, #111827, #475569 48%, #111827);
}

.portal-monitor-base {
  width: 92px;
  height: 7px;
  margin: 0 auto;
  border-radius: 50% 50% 3px 3px;
  background: linear-gradient(180deg, #4b5563, #111827);
  box-shadow: 0 5px 10px rgba(15, 23, 42, .35);
}

.technician-space-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(56, 189, 248, .18), transparent 28%),
    linear-gradient(145deg, rgba(2, 6, 23, .98), rgba(15, 23, 42, .96)),
    var(--navy);
}

.technician-space-copy {
  width: min(540px, 100%);
  justify-self: center;
}

.technician-space-copy .section-label {
  color: #68d7e7;
}

.technician-space-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.technician-space-lead {
  margin: 1.35rem 0 0;
  color: #aebdce;
  font-size: 1.12rem;
}

.technician-space-benefits {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.technician-space-benefits li {
  position: relative;
  padding-left: 1.45rem;
}

.technician-space-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .14);
}

.technician-space-benefits strong,
.technician-space-benefits span {
  display: block;
}

.technician-space-benefits strong {
  color: #f8fafc;
}

.technician-space-benefits span {
  margin-top: .18rem;
  color: #aebdce;
  font-size: .92rem;
}

.technician-space-preview {
  order: -1;
  width: min(720px, 100%);
  min-width: 0;
  justify-self: center;
}

.role-space-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.role-space-charge {
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 158, 11, .18), transparent 30%),
    linear-gradient(125deg, #f8fafc, #e9f7f8 58%, #eef4ff);
}

.role-space-secretariat {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 22%, rgba(245, 158, 11, .18), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(56, 189, 248, .13), transparent 30%),
    linear-gradient(145deg, rgba(2, 6, 23, .98), rgba(15, 23, 42, .96)),
    var(--navy);
}

.role-space-be {
  background:
    radial-gradient(circle at 86% 20%, rgba(0, 132, 157, .16), transparent 30%),
    linear-gradient(125deg, #eef4ff, #f8fafc 54%, #e9f7f8);
}

.role-space-copy {
  width: min(540px, 100%);
  justify-self: center;
}

.role-space-copy .section-label {
  color: var(--teal);
}

.role-space-secretariat .role-space-copy .section-label {
  color: #fbbf24;
}

.role-space-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.role-space-secretariat .role-space-copy h2 {
  color: var(--white);
}

.role-space-lead {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.role-space-secretariat .role-space-lead {
  color: #aebdce;
}

.role-space-benefits {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.role-space-benefits li {
  position: relative;
  padding-left: 1.45rem;
}

.role-space-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 132, 157, .12);
}

.role-space-secretariat .role-space-benefits li::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .14);
}

.role-space-benefits strong,
.role-space-benefits span {
  display: block;
}

.role-space-benefits strong {
  color: var(--navy-soft);
}

.role-space-secretariat .role-space-benefits strong {
  color: #f8fafc;
}

.role-space-benefits span {
  margin-top: .18rem;
  color: var(--muted);
  font-size: .92rem;
}

.role-space-secretariat .role-space-benefits span {
  color: #aebdce;
}

.role-space-preview {
  width: min(720px, 100%);
  min-width: 0;
  justify-self: center;
}

.role-space-reverse .role-space-preview {
  order: -1;
}

.role-workstation {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(148, 163, 184, .36);
  border-radius: 8px;
  background: #020617;
  box-shadow: 0 30px 75px rgba(15, 23, 42, .24);
}

.role-workstation::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background:
    linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.role-workstation-charge {
  color: #f8fafc;
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 158, 11, .24), transparent 32%),
    linear-gradient(135deg, #0f172a, #083344 62%, #0f172a);
}

.role-workstation-secretariat {
  color: #f8fafc;
  background:
    radial-gradient(circle at 18% 88%, rgba(245, 158, 11, .22), transparent 30%),
    linear-gradient(135deg, #111827, #0f172a 55%, #082f49);
}

.role-workstation-be {
  color: #f8fafc;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, .24), transparent 30%),
    linear-gradient(135deg, #061526, #0f172a 54%, #133a4a);
}

.role-workstation-charge {
  min-height: 430px;
  overflow: visible;
  padding: .95rem 1rem 2.15rem;
}

.ca-showcase {
  position: relative;
  min-height: 374px;
  isolation: isolate;
}

.ca-gmao-backdrop {
  position: absolute;
  inset: .35rem 0 4.3rem;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 8px;
  background: #020617;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 22px 44px rgba(2, 6, 23, .34);
}

.ca-gmao-backdrop::before,
.ca-gmao-backdrop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 16%;
  pointer-events: none;
}

.ca-gmao-backdrop::before {
  top: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, .74), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 38%);
}

.ca-gmao-backdrop::after {
  bottom: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, .8), transparent),
    linear-gradient(0deg, rgba(255, 255, 255, .05), transparent 42%);
}

.ca-gmao-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: .74;
  filter: saturate(.92) contrast(.98);
}

.ca-monitor {
  position: absolute;
  right: -1.55rem;
  bottom: -1.55rem;
  z-index: 3;
  width: min(475px, 76%);
  filter:
    drop-shadow(0 0 22px rgba(245, 158, 11, .38))
    drop-shadow(0 24px 28px rgba(2, 6, 23, .44));
}

.ca-monitor-frame {
  padding: 8px;
  border: 1px solid #475569;
  border-radius: 8px;
  background: linear-gradient(145deg, #384250, #090d14 55%, #202733);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .34),
    0 0 30px rgba(245, 158, 11, .24),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.ca-monitor-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  color: #f8fafc;
  background: #020617;
}

.ca-monitor-slides {
  position: relative;
  height: 100%;
}

.ca-monitor-slide {
  position: absolute;
  inset: 0;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.ca-monitor-slide.is-active {
  visibility: visible;
}

.ca-monitor-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.ca-monitor-neck {
  width: 40px;
  height: 20px;
  margin: 0 auto;
  background: linear-gradient(90deg, #111827, #475569 48%, #111827);
}

.ca-monitor-base {
  width: 112px;
  height: 8px;
  margin: 0 auto;
  border-radius: 50% 50% 3px 3px;
  background: linear-gradient(180deg, #4b5563, #111827);
  box-shadow: 0 5px 10px rgba(15, 23, 42, .35);
}

.role-workstation-secretariat {
  min-height: 430px;
  overflow: visible;
  padding: .95rem 1rem 2.15rem;
}

.secretariat-showcase {
  position: relative;
  min-height: 374px;
  isolation: isolate;
}

.secretariat-dashboard-backdrop {
  position: absolute;
  inset: .35rem 0 4.3rem;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 8px;
  background: #020617;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 22px 44px rgba(2, 6, 23, .34);
}

.secretariat-dashboard-backdrop::before,
.secretariat-dashboard-backdrop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 16%;
  pointer-events: none;
}

.secretariat-dashboard-backdrop::before {
  top: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, .72), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 38%);
}

.secretariat-dashboard-backdrop::after {
  bottom: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, .8), transparent),
    linear-gradient(0deg, rgba(255, 255, 255, .05), transparent 42%);
}

.secretariat-dashboard-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .76;
  filter: saturate(.92) contrast(.98);
}

.secretariat-monitor {
  position: absolute;
  left: -1.55rem;
  bottom: -1.55rem;
  z-index: 3;
  width: min(475px, 76%);
  filter:
    drop-shadow(0 0 22px rgba(245, 158, 11, .38))
    drop-shadow(0 24px 28px rgba(2, 6, 23, .44));
}

.secretariat-monitor-frame {
  padding: 8px;
  border: 1px solid #475569;
  border-radius: 8px;
  background: linear-gradient(145deg, #384250, #090d14 55%, #202733);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .34),
    0 0 30px rgba(245, 158, 11, .24),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.secretariat-monitor-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  color: #f8fafc;
  background: #020617;
}

.secretariat-monitor-slides {
  position: relative;
  height: 100%;
}

.secretariat-monitor-slide {
  position: absolute;
  inset: 0;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.secretariat-monitor-slide.is-active {
  visibility: visible;
}

.secretariat-monitor-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.secretariat-monitor-neck {
  width: 40px;
  height: 20px;
  margin: 0 auto;
  background: linear-gradient(90deg, #111827, #475569 48%, #111827);
}

.secretariat-monitor-base {
  width: 112px;
  height: 8px;
  margin: 0 auto;
  border-radius: 50% 50% 3px 3px;
  background: linear-gradient(180deg, #4b5563, #111827);
  box-shadow: 0 5px 10px rgba(15, 23, 42, .35);
}

.role-workstation-be {
  min-height: 430px;
  overflow: visible;
  padding: .95rem 1rem 2.15rem;
}

.be-showcase {
  position: relative;
  min-height: 374px;
  isolation: isolate;
}

.be-hydra-backdrop {
  position: absolute;
  inset: .35rem 0 4.3rem;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .34);
  border-radius: 8px;
  background: #020617;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    0 22px 44px rgba(2, 6, 23, .34);
}

.be-hydra-backdrop::before,
.be-hydra-backdrop::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 14%;
  pointer-events: none;
}

.be-hydra-backdrop::before {
  top: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, .58), transparent);
}

.be-hydra-backdrop::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, .68), transparent);
}

.be-hydra-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  filter: saturate(.94) contrast(1.02);
}

.be-monitor {
  position: absolute;
  right: -1.55rem;
  bottom: -1.55rem;
  z-index: 3;
  width: min(475px, 76%);
  filter:
    drop-shadow(0 0 22px rgba(245, 158, 11, .38))
    drop-shadow(0 24px 28px rgba(2, 6, 23, .44));
}

.be-monitor-frame {
  padding: 8px;
  border: 1px solid #475569;
  border-radius: 8px;
  background: linear-gradient(145deg, #384250, #090d14 55%, #202733);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .34),
    0 0 30px rgba(245, 158, 11, .24),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.be-monitor-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  color: #f8fafc;
  background: #020617;
}

.be-monitor-slides {
  position: relative;
  height: 100%;
}

.be-monitor-slide {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.be-monitor-slide.is-active {
  visibility: visible;
}

.be-monitor-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

.be-monitor-neck {
  width: 40px;
  height: 20px;
  margin: 0 auto;
  background: linear-gradient(90deg, #111827, #475569 48%, #111827);
}

.be-monitor-base {
  width: 112px;
  height: 8px;
  margin: 0 auto;
  border-radius: 50% 50% 3px 3px;
  background: linear-gradient(180deg, #4b5563, #111827);
  box-shadow: 0 5px 10px rgba(15, 23, 42, .35);
}

.role-screen-top {
  display: grid;
  grid-template-columns: 8px 8px 8px minmax(0, 1fr);
  align-items: center;
  gap: .38rem;
  min-height: 42px;
  padding: 0 .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 6, 23, .72);
}

.role-screen-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748b;
}

.role-screen-top span:first-child {
  background: #f97316;
}

.role-screen-top span:nth-child(2) {
  background: #f59e0b;
}

.role-screen-top span:nth-child(3) {
  background: #22c55e;
}

.role-screen-top strong {
  overflow: hidden;
  margin-left: .35rem;
  color: #cbd5e1;
  font-size: .72rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-screen-body {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 388px;
}

.role-screen-sidebar {
  display: grid;
  align-content: start;
  gap: .48rem;
  padding: .9rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 6, 23, .54);
}

.role-screen-sidebar strong {
  margin-bottom: .35rem;
  color: #f8fafc;
  font-size: .72rem;
}

.role-screen-sidebar span {
  min-width: 0;
  padding: .48rem .52rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, .5);
  font-size: .56rem;
  font-weight: 850;
}

.role-screen-sidebar span.is-active {
  border-color: rgba(56, 189, 248, .44);
  color: #fff;
  background: rgba(0, 132, 157, .42);
}

.role-screen-main {
  min-width: 0;
  padding: 1rem;
}

.role-screen-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.role-screen-heading span,
.role-admin-title span,
.role-engineering-panel > span {
  color: #93c5fd;
  font-size: .58rem;
  font-weight: 950;
  text-transform: uppercase;
}

.role-screen-heading h3 {
  margin: .25rem 0 0;
  color: #f8fafc;
  font-size: 1.55rem;
  line-height: 1.05;
}

.role-screen-heading > strong {
  flex: 0 0 auto;
  padding: .42rem .55rem;
  border: 1px solid rgba(134, 239, 172, .24);
  border-radius: 6px;
  color: #bbf7d0;
  background: rgba(21, 128, 61, .18);
  font-size: .58rem;
  white-space: nowrap;
}

.role-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  margin-top: .95rem;
}

.role-kpi-grid div {
  min-width: 0;
  padding: .7rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  background: rgba(15, 23, 42, .58);
}

.role-kpi-grid strong,
.role-kpi-grid span {
  display: block;
}

.role-kpi-grid strong {
  color: #f8fafc;
  font-size: 1.25rem;
  line-height: 1;
}

.role-kpi-grid span {
  margin-top: .28rem;
  color: #cbd5e1;
  font-size: .52rem;
  font-weight: 800;
}

.role-list-panel {
  display: grid;
  gap: .55rem;
  margin-top: .95rem;
}

.role-list-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: .48rem .65rem;
  align-items: center;
  padding: .7rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  background: rgba(2, 6, 23, .42);
}

.role-list-row strong,
.role-list-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-list-row strong {
  color: #f8fafc;
  font-size: .72rem;
}

.role-list-row em {
  grid-column: 2;
  color: #cbd5e1;
  font-size: .56rem;
  font-style: normal;
}

.role-status {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.role-status-hot {
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .14);
}

.role-status-wait {
  background: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, .14);
}

.role-status-ok {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}

.role-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1rem;
  min-height: 388px;
  padding: 1rem;
}

.role-admin-queue,
.role-admin-preview,
.role-engineering-canvas,
.role-engineering-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(15, 23, 42, .58);
}

.role-admin-queue {
  display: grid;
  align-content: start;
  gap: .65rem;
  padding: .9rem;
}

.role-admin-title strong {
  display: block;
  margin-top: .18rem;
  color: #f8fafc;
  font-size: 1.15rem;
}

.role-admin-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: .65rem;
  align-items: center;
  padding: .68rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 7px;
  background: rgba(2, 6, 23, .42);
}

.role-admin-card i {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  color: #fff7ed;
  background: rgba(245, 158, 11, .9);
  font-size: .52rem;
  font-style: normal;
  font-weight: 950;
}

.role-admin-card strong,
.role-admin-card small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-admin-card strong {
  color: #f8fafc;
  font-size: .72rem;
}

.role-admin-card small {
  color: #cbd5e1;
  font-size: .54rem;
}

.role-admin-preview {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .85rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, .13), transparent 34%),
    rgba(2, 6, 23, .38);
}

.role-paper {
  display: grid;
  gap: .38rem;
  width: min(230px, 88%);
  min-height: 250px;
  padding: 1rem;
  border-radius: 4px;
  color: var(--navy);
  background: #f8fafc;
  box-shadow: 0 22px 42px rgba(0, 0, 0, .24);
}

.role-paper div {
  height: 7px;
  border-radius: 999px;
  background: #cbd5e1;
}

.role-paper div:nth-child(1) {
  width: 42%;
  background: var(--teal);
}

.role-paper div:nth-child(2) {
  width: 86%;
}

.role-paper div:nth-child(3) {
  width: 64%;
}

.role-paper div:nth-child(4) {
  width: 72%;
}

.role-paper strong {
  margin: .65rem 0 .3rem;
  font-size: .82rem;
}

.role-paper span {
  height: 34px;
  border: 1px solid #dbe4ee;
  border-radius: 5px;
  background: #fff;
}

.role-admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
}

.role-admin-actions span {
  padding: .4rem .55rem;
  border: 1px solid rgba(245, 158, 11, .3);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(245, 158, 11, .12);
  font-size: .56rem;
  font-weight: 850;
}

.role-engineering-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(190px, .7fr);
  gap: 1rem;
  min-height: 388px;
  padding: 1rem;
}

.role-engineering-canvas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(56, 189, 248, .13), transparent 32%),
    rgba(2, 6, 23, .48);
}

.role-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 28px 28px;
}

.role-pipe {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #f59e0b);
  box-shadow: 0 0 18px rgba(56, 189, 248, .35);
}

.role-pipe-main {
  top: 48%;
  left: 14%;
  width: 68%;
  height: 12px;
}

.role-pipe-branch {
  width: 12px;
  height: 34%;
}

.role-pipe-one {
  top: 20%;
  left: 34%;
}

.role-pipe-two {
  right: 24%;
  bottom: 18%;
}

.role-node {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(15, 23, 42, .85);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.role-node-a {
  top: 42%;
  left: 11%;
}

.role-node-b {
  top: 15%;
  left: 29%;
}

.role-node-c {
  right: 18%;
  bottom: 12%;
}

.role-engineering-panel {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: .62rem;
  padding: .9rem;
}

.role-engineering-panel strong {
  color: #f8fafc;
  font-size: 1.15rem;
}

.role-calc-row {
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  padding: .58rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.role-calc-row em {
  color: #cbd5e1;
  font-size: .58rem;
  font-style: normal;
}

.role-calc-row b {
  color: #f8fafc;
  font-size: .62rem;
  white-space: nowrap;
}

.role-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .35rem;
}

.role-tool-tags small {
  padding: .34rem .44rem;
  border-radius: 999px;
  color: #dff7fb;
  background: rgba(0, 132, 157, .4);
  font-size: .54rem;
  font-weight: 900;
}

.profiles-section {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(2, 6, 23, .98), rgba(15, 23, 42, .96)),
    var(--navy);
}

.section-heading-light .section-label {
  color: #68d7e7;
}

.section-heading-light > p:last-child {
  color: #aebdce;
}

.profile-selector {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.profile-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.profile-tabs button {
  min-width: 0;
  min-height: 48px;
  padding: .7rem .8rem;
  border: 0;
  border-radius: 6px;
  color: #aebdce;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.profile-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--teal);
}

.profile-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  gap: 3rem;
  min-height: 340px;
  margin-top: 1rem;
  padding: 2.8rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(0, 132, 157, .15), transparent 56%),
    var(--navy-panel);
}

.profile-panel[hidden] {
  display: none;
}

.profile-context {
  color: #68d7e7;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-copy h3 {
  margin: .7rem 0 0;
  font-size: 3.2rem;
  line-height: 1;
}

.profile-copy p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #aebdce;
  font-size: 1.08rem;
}

.profile-tools {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.profile-tools strong {
  color: var(--amber);
  font-size: .8rem;
  text-transform: uppercase;
}

.profile-tools ul {
  display: grid;
  gap: .72rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.profile-tools li {
  padding-bottom: .72rem;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  color: #e2e8f0;
  font-weight: 700;
}

.profile-panel-technician {
  grid-template-columns: 1fr;
  gap: 2.4rem;
  min-height: 0;
  padding: 2.4rem;
  background:
    linear-gradient(130deg, rgba(0, 132, 157, .22), transparent 42%),
    var(--navy-panel);
}

.technician-profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  align-items: end;
  gap: 2.5rem;
}

.technician-profile-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technician-profile-benefits li {
  position: relative;
  min-height: 42px;
  padding: .72rem .8rem .72rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, .045);
  font-size: .78rem;
  font-weight: 800;
}

.technician-profile-benefits li::before {
  content: "";
  position: absolute;
  left: .78rem;
  top: 50%;
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, .12);
  transform: translateY(-50%);
}

.technician-showcase {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(260px, 42vw, 420px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  background: linear-gradient(180deg, #10243a, #07101f 48%, #09172a);
}

.technician-product-strip {
  position: absolute;
  z-index: 0;
  top: 38px;
  right: 0;
  bottom: 38px;
  left: 0;
  height: auto;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 18px 48px rgba(2, 6, 23, .42);
}

.technician-product-strip::before,
.technician-product-strip::after {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  height: 20%;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  content: "";
}

.technician-product-strip::before {
  top: 0;
  background: linear-gradient(180deg, rgba(7, 16, 31, .52), rgba(7, 16, 31, 0));
  -webkit-mask-image: linear-gradient(180deg, #000 15%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 15%, transparent 100%);
}

.technician-product-strip::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(7, 16, 31, .58), rgba(7, 16, 31, 0));
  -webkit-mask-image: linear-gradient(0deg, #000 15%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 15%, transparent 100%);
}

.technician-product-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: technician-showcase-scroll 50s linear infinite;
}

.technician-strip-item {
  position: relative;
  flex: 0 0 auto;
  min-width: 0;
  height: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.technician-strip-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.92) contrast(1.04);
}

@keyframes technician-showcase-scroll {
  to {
    transform: translateX(-50%);
  }
}

.technician-device-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.technician-device-group {
  position: absolute;
  left: .9rem;
  right: auto;
  bottom: -1.15rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: max-content;
  transform: scale(.54);
  transform-origin: left bottom;
}

.device {
  position: relative;
  flex: 0 0 auto;
  border: 6px solid #171d27;
  background: linear-gradient(145deg, #303846, #090d14 45%, #202733);
  box-shadow:
    0 34px 75px rgba(0, 0, 0, .52),
    0 8px 20px rgba(0, 0, 0, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.device-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  color: #152337;
  background: #f5f8fb;
}

.device-tablet {
  width: 400px;
  aspect-ratio: .75;
  border-width: 7px;
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .35),
    0 0 24px rgba(245, 158, 11, .28),
    0 0 62px rgba(245, 158, 11, .16),
    0 34px 75px rgba(0, 0, 0, .52),
    inset 0 0 0 1px rgba(255, 255, 255, .1);
  transform: rotate(-1.5deg) translateY(-.4rem);
}

.device-tablet .device-screen {
  border-radius: 15px;
}

.device-tablet::before {
  position: absolute;
  top: 68px;
  right: -10px;
  width: 3px;
  height: 42px;
  border-radius: 0 3px 3px 0;
  background: #454e5c;
  box-shadow: 0 49px 0 #454e5c;
  content: "";
}

.device-camera {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #05070b;
  box-shadow: 0 0 0 1px #364152;
  transform: translateX(-50%);
}

.device-phone {
  z-index: 2;
  width: 220px;
  aspect-ratio: .455;
  margin-left: -48px;
  border-width: 5px;
  border-radius: 31px;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .52),
    0 0 22px rgba(245, 158, 11, .42),
    0 0 52px rgba(245, 158, 11, .24),
    0 34px 75px rgba(0, 0, 0, .56),
    inset 0 0 0 1px rgba(255, 255, 255, .12);
  transform: rotate(1.4deg);
}

.device-phone::before,
.device-phone::after {
  position: absolute;
  left: -9px;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: #46505e;
  content: "";
}

.device-phone::before {
  top: 74px;
  height: 32px;
  box-shadow: 0 39px 0 #46505e;
}

.device-phone::after {
  top: 72px;
  right: -9px;
  left: auto;
  height: 51px;
  border-radius: 0 3px 3px 0;
}

.device-phone .device-screen {
  border-radius: 25px;
}

.tablet-screen {
  background: #07101f;
}

.tablet-cerfa-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #eef4f8;
}

.planning-app-header {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  padding: .36rem;
  border-bottom: 1px solid rgba(148, 163, 184, .45);
  background: linear-gradient(120deg, rgba(15, 23, 42, .96), rgba(15, 23, 42, .98));
  box-shadow: 0 7px 15px rgba(15, 23, 42, .55);
}

.planning-app-header img {
  display: block;
  width: auto;
  height: 29px;
  max-width: 82%;
  border-radius: 4px;
  background: #020617;
  padding: 2px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .65);
}

.planning-layout-bar {
  display: flex;
  flex: 0 0 34px;
  align-items: flex-end;
  gap: .3rem;
  padding: .78rem .38rem .3rem;
  border-bottom: 1px solid #173d70;
  color: #f8fbff;
  background: #0c1830;
}

.planning-layout-title {
  display: flex;
  align-items: center;
  gap: .22rem;
  min-width: 0;
  margin-right: auto;
}

.planning-layout-title strong {
  font-size: .43rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.planning-layout-compass {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid #4677aa;
  border-radius: 50%;
  background: #122746;
}

.planning-layout-compass::after {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 3px;
  height: 5px;
  background: #e7f7ff;
  clip-path: polygon(50% 0, 100% 100%, 50% 72%, 0 100%);
  content: "";
  transform: rotate(35deg);
}

.planning-layout-current {
  padding: .16rem .3rem;
  border: 1px solid #36577d;
  border-radius: 9px;
  color: #dbeafe;
  background: #152640;
  font-size: .34rem;
  font-weight: 800;
}

.planning-layout-chevron {
  width: 10px;
  height: 10px;
  border: 1px solid #36577d;
  border-radius: 50%;
}

.planning-layout-chevron::after {
  display: block;
  width: 3px;
  height: 3px;
  margin: 2px auto 0;
  border-right: 1px solid #73baf2;
  border-bottom: 1px solid #73baf2;
  content: "";
  transform: rotate(45deg);
}

.planning-controls {
  display: grid;
  flex: 0 0 66px;
  gap: .25rem;
  padding: .32rem .28rem;
  color: #c5d4e7;
  background: #05080f;
}

.planning-day-nav,
.planning-view-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .28rem;
}

.planning-day-nav span,
.planning-view-switch span,
.planning-view-switch strong,
.planning-controls > small {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid #2d3543;
  border-radius: 7px;
  font-size: .34rem;
  font-weight: 750;
  text-align: center;
}

.planning-day-nav span {
  min-height: 17px;
  color: #27c2ff;
}

.planning-view-switch {
  gap: 0;
  padding: 2px;
  border: 1px solid #2d3543;
  border-radius: 8px;
}

.planning-view-switch span,
.planning-view-switch strong {
  min-height: 17px;
  border: 0;
  border-radius: 6px;
  color: #22c8ff;
}

.planning-view-switch strong {
  border: 1px solid #237698;
  background: #0c2b3a;
}

.planning-controls > small {
  min-height: 15px;
  color: #8da0ba;
  font-size: .3rem;
  font-weight: 500;
}

.planning-head {
  display: grid;
  flex: 0 0 78px;
  grid-template-columns: 42% minmax(0, 1fr);
  color: var(--white);
  background: #101a31;
}

.planning-date {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: .5rem .45rem;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.planning-date span {
  justify-self: start;
  color: #b9f1f5;
  font-size: .49rem;
  font-weight: 850;
}

.planning-date strong {
  margin-top: .08rem;
  font-size: 2rem;
  line-height: 1;
}

.planning-date small {
  margin-top: .2rem;
  color: #c7f3f6;
  font-size: .42rem;
  font-weight: 850;
  text-align: center;
}

.planning-summary {
  display: grid;
  align-content: end;
  gap: .22rem;
  min-width: 0;
  padding: .75rem .65rem;
}

.planning-summary strong {
  font-size: .68rem;
  line-height: 1.15;
}

.planning-summary span {
  color: #c4d8e8;
  font-size: .43rem;
}

.planning-list {
  display: grid;
  flex: 1 1 auto;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: .28rem;
  min-height: 0;
  padding: .32rem;
}

.planning-item {
  --planning-accent: #0ea5e9;
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 6px;
  align-items: center;
  gap: .38rem;
  min-width: 0;
  min-height: 0;
  padding: .38rem .38rem .38rem .3rem;
  border: 1px solid #d6e0e9;
  border-left: 3px solid var(--planning-accent);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(15, 23, 42, .08);
}

.planning-item.is-done {
  --planning-accent: #16a34a;
}

.planning-item.is-current {
  --planning-accent: #f59e0b;
  border-color: #5cc4d0;
  border-left-color: var(--planning-accent);
  box-shadow: 0 5px 14px rgba(8, 127, 145, .16);
}

.planning-item.is-planned {
  --planning-accent: #0d9488;
}

.planning-item time {
  display: grid;
  align-content: center;
  justify-items: center;
  align-self: stretch;
  padding-right: .35rem;
  border-right: 1px solid #e2e8f0;
}

.planning-item time strong {
  color: #087f91;
  font-size: .58rem;
  line-height: 1;
}

.planning-item time small {
  margin-top: .2rem;
  color: #64748b;
  font-size: .4rem;
  font-weight: 750;
}

.planning-item-content {
  display: grid;
  min-width: 0;
}

.planning-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .25rem;
  min-width: 0;
}

.planning-item-head b {
  overflow: hidden;
  color: var(--planning-accent);
  font-size: .38rem;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.planning-item-head i {
  flex: 0 0 auto;
  padding: .14rem .2rem;
  border-radius: 4px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: .34rem;
  font-style: normal;
  font-weight: 900;
}

.planning-item.is-current .planning-item-head i {
  color: #08706f;
  background: #d9f7f3;
}

.planning-item.is-done .planning-item-head i {
  color: #166534;
  background: #dcfce7;
}

.planning-item-content > strong {
  margin-top: .22rem;
  overflow: hidden;
  color: #10233d;
  font-size: .51rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planning-item-content > small {
  margin-top: .13rem;
  overflow: hidden;
  color: #52657a;
  font-size: .39rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planning-item-facts {
  display: flex;
  gap: .18rem;
  min-width: 0;
  margin-top: .3rem;
}

.planning-item-facts em {
  overflow: hidden;
  padding: .12rem .2rem;
  border-radius: 4px;
  color: #3c5268;
  background: #edf3f7;
  font-size: .33rem;
  font-style: normal;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planning-item-arrow {
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #718096;
  border-right: 1.5px solid #718096;
  transform: rotate(45deg);
}

.visual-section {
  background:
    linear-gradient(180deg, var(--paper), #eaf5f7 70%, var(--paper));
}

.visual-heading h2 span {
  color: var(--teal);
}

.ai-showcase {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.ai-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1529 / 789;
  border: 1px solid #b8d2d8;
  border-radius: 8px;
  background: var(--navy);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, .2),
    0 28px 70px rgba(2, 6, 23, .24);
}

.ai-stage-background {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ai-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 46px rgba(2, 6, 23, .38);
}

.ai-stage-agent {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: clamp(72px, 16vw, 180px);
  height: auto;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  filter:
    drop-shadow(0 0 14px rgba(0, 180, 216, .55))
    drop-shadow(0 0 10px rgba(245, 158, 11, .3));
}

.ai-showcase figcaption {
  margin-top: .9rem;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

.cta-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(245, 158, 11, .18), transparent 26%),
    linear-gradient(110deg, var(--navy), var(--teal-dark));
}

.cta-inner {
  display: grid;
  justify-items: center;
  gap: 2rem;
  text-align: center;
}

.cta-inner .section-label {
  color: #9fe7f1;
}

.cta-inner h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 3.2rem;
  text-wrap: balance;
}

.cta-copy {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #cbd5e1;
  font-size: 1rem;
}

.cta-actions {
  display: grid;
  justify-items: center;
  gap: .9rem;
}

.cta-login {
  color: #dbeafe;
  font-size: .88rem;
  font-weight: 700;
}

.cta-login:hover {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  padding: 1.5rem 1.25rem;
  color: #64748b;
  background: #eef2f7;
  font-size: .82rem;
}

.site-footer a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .site-header {
    gap: .8rem;
  }

  .main-nav {
    gap: .85rem;
    font-size: .8rem;
  }

  .header-actions {
    gap: .65rem;
    font-size: .8rem;
  }

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

@media (max-width: 900px) {
  .hero h1 {
    font-size: 4.4rem;
  }

  .section-heading h2,
  .visual-heading h2,
  .technician-space-copy h2,
  .role-space-copy h2,
  .client-portal-copy h2 {
    font-size: 3.2rem;
  }

  .supports-grid,
  .client-portal-section,
  .technician-space-section,
  .role-space-section,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .role-space-reverse .role-space-preview {
    order: -1;
  }

  .role-space-preview {
    order: -1;
  }

  .profile-panel {
    grid-template-columns: 1fr;
  }

  .technician-profile-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .technician-device-group {
    transform: scale(.5);
  }

  .profile-tools {
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .cta-actions {
    justify-items: center;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: .75rem;
    padding: .65rem 1rem;
  }

  .brand img {
    width: 136px;
  }

  .main-nav,
  .header-login {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: .56rem .72rem;
    font-size: .78rem;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-inner {
    padding: 4.5rem 0;
  }

  .hero h1 {
    font-size: 3.3rem;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-signals {
    max-width: 420px;
  }

  .supports-section,
  .client-portal-section,
  .technician-space-section,
  .role-space-section,
  .profiles-section,
  .visual-section,
  .cta-section {
    padding-top: 4.7rem;
    padding-bottom: 4.7rem;
  }

  .section-heading,
  .visual-heading {
    margin-bottom: 2.6rem;
  }

  .section-heading h2,
  .visual-heading h2,
  .technician-space-copy h2,
  .role-space-copy h2,
  .client-portal-copy h2,
  .cta-inner h2 {
    font-size: 2.55rem;
  }

  .support-panel {
    min-height: 460px;
    padding: 1.6rem;
  }

  .support-panel h3 {
    margin-top: 3.2rem;
    font-size: 2.6rem;
  }

  .support-line {
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.6rem;
  }

  .profile-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-tabs button {
    min-height: 52px;
    font-size: .82rem;
  }

  .portal-mock-shell {
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 350px;
  }

  .portal-mock-sidebar {
    padding: .45rem;
  }

  .portal-mock-client {
    padding: .15rem .1rem .5rem;
  }

  .portal-mock-client span {
    font-size: .38rem;
  }

  .portal-mock-client strong {
    font-size: .56rem;
  }

  .portal-mock-client small {
    font-size: .42rem;
  }

  .portal-mock-nav {
    gap: .25rem;
    margin-top: .5rem;
  }

  .portal-mock-nav span {
    gap: .3rem;
    min-height: 25px;
    padding: .3rem .35rem;
    font-size: .43rem;
  }

  .portal-mock-topbar {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 50px;
    padding: .35rem .45rem;
  }

  .portal-mock-brand span,
  .portal-mock-session,
  .portal-mock-company em {
    display: none;
  }

  .portal-mock-brand img {
    width: 52px;
    height: 23px;
  }

  .portal-mock-company {
    justify-self: end;
  }

  .portal-mock-company i {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
  }

  .portal-mock-company small {
    font-size: .34rem;
  }

  .portal-mock-company strong {
    max-width: 110px;
    font-size: .44rem;
  }

  .portal-mock-main {
    padding: .45rem;
  }

  .portal-mock-overview {
    padding: .62rem;
  }

  .portal-mock-overview-head {
    gap: .35rem;
  }

  .portal-mock-overview h3 {
    margin-top: .35rem;
    font-size: .82rem;
  }

  .portal-mock-overview p {
    font-size: .46rem;
  }

  .portal-mock-overview-head > strong {
    padding: .3rem .35rem;
    font-size: .38rem;
  }

  .portal-mock-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .3rem;
    margin-top: .55rem;
  }

  .portal-mock-stats div {
    padding: .42rem;
  }

  .portal-mock-stats strong {
    font-size: .72rem;
  }

  .portal-mock-stats span {
    font-size: .38rem;
  }

  .portal-monitor {
    right: -.6rem;
    bottom: -3rem;
    width: 220px;
  }

  .profile-panel {
    min-height: 470px;
    padding: 1.8rem 1.5rem;
  }

  .role-workstation {
    min-height: 390px;
  }

  .role-workstation-charge {
    min-height: 386px;
    padding: .75rem .75rem 1.85rem;
  }

  .ca-showcase {
    min-height: 342px;
  }

  .ca-gmao-backdrop {
    inset: .2rem 0 3.6rem;
  }

  .ca-monitor {
    right: -.45rem;
    bottom: -1.25rem;
    width: min(390px, 82%);
  }

  .role-workstation-secretariat {
    min-height: 386px;
    padding: .75rem .75rem 1.85rem;
  }

  .secretariat-showcase {
    min-height: 342px;
  }

  .secretariat-dashboard-backdrop {
    inset: .2rem 0 3.6rem;
  }

  .secretariat-monitor {
    left: -.45rem;
    bottom: -1.25rem;
    width: min(390px, 82%);
  }

  .role-workstation-be {
    min-height: 386px;
    padding: .75rem .75rem 1.85rem;
  }

  .be-showcase {
    min-height: 342px;
  }

  .be-hydra-backdrop {
    inset: .2rem 0 3.6rem;
  }

  .be-monitor {
    right: -.45rem;
    bottom: -1.25rem;
    width: min(390px, 82%);
  }

  .role-screen-body,
  .role-admin-layout,
  .role-engineering-layout {
    min-height: 348px;
  }

  .role-screen-body {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .role-screen-sidebar {
    padding: .58rem;
  }

  .role-screen-sidebar span {
    padding: .38rem;
    font-size: .46rem;
  }

  .role-screen-main {
    padding: .72rem;
  }

  .role-screen-heading {
    display: grid;
    gap: .45rem;
  }

  .role-screen-heading h3 {
    font-size: 1.18rem;
  }

  .role-screen-heading > strong {
    justify-self: start;
    font-size: .46rem;
  }

  .role-kpi-grid {
    grid-template-columns: 1fr;
    gap: .4rem;
  }

  .role-kpi-grid div {
    padding: .48rem;
  }

  .role-kpi-grid strong {
    font-size: .92rem;
  }

  .role-kpi-grid span,
  .role-list-row em {
    font-size: .45rem;
  }

  .role-list-row {
    padding: .52rem;
  }

  .role-list-row strong {
    font-size: .58rem;
  }

  .role-admin-layout,
  .role-engineering-layout {
    grid-template-columns: 1fr;
  }

  .role-admin-preview {
    min-height: 220px;
  }

  .role-paper {
    min-height: 185px;
  }

  .role-engineering-canvas {
    min-height: 210px;
  }

  .profile-panel-technician {
    gap: 1.6rem;
    min-height: 0;
    padding: 1rem;
  }

  .technician-profile-intro {
    padding: .6rem .5rem 0;
  }

  .technician-device-group {
    left: 1rem;
    right: auto;
    bottom: -1rem;
    transform: scale(.42);
  }

  .profile-copy h3 {
    font-size: 2.55rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: .5rem;
  }

  .brand img {
    width: 124px;
  }

  .header-cta {
    padding: .52rem .62rem;
    font-size: .72rem;
    white-space: nowrap;
  }

  .hero-inner {
    padding: 4rem 0;
  }

  .hero .eyebrow {
    max-width: 320px;
    font-size: .72rem;
    line-height: 1.35;
    text-wrap: balance;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .technician-profile-benefits {
    grid-template-columns: 1fr;
  }

  .client-portal-preview {
    margin-bottom: 2.7rem;
  }

  .portal-monitor {
    right: .45rem;
    bottom: -2.45rem;
    width: 175px;
  }

  .portal-monitor-frame {
    padding: 5px;
    border-radius: 6px;
  }

  .portal-monitor-neck {
    width: 25px;
    height: 12px;
  }

  .portal-monitor-base {
    width: 66px;
    height: 5px;
  }

  .role-workstation-charge {
    min-height: 320px;
    padding: .55rem .55rem 1.55rem;
  }

  .ca-showcase {
    min-height: 285px;
  }

  .ca-gmao-backdrop {
    inset: .15rem 0 3.05rem;
  }

  .ca-gmao-backdrop img {
    opacity: .68;
  }

  .ca-monitor {
    right: -.2rem;
    bottom: -1.05rem;
    width: min(290px, 86%);
  }

  .ca-monitor-frame {
    padding: 5px;
    border-radius: 6px;
  }

  .ca-monitor-neck {
    width: 28px;
    height: 13px;
  }

  .ca-monitor-base {
    width: 74px;
    height: 5px;
  }

  .role-workstation-secretariat {
    min-height: 320px;
    padding: .55rem .55rem 1.55rem;
  }

  .secretariat-showcase {
    min-height: 285px;
  }

  .secretariat-dashboard-backdrop {
    inset: .15rem 0 3.05rem;
  }

  .secretariat-dashboard-backdrop img {
    opacity: .68;
  }

  .secretariat-monitor {
    left: -.2rem;
    bottom: -1.05rem;
    width: min(290px, 86%);
  }

  .secretariat-monitor-frame {
    padding: 5px;
    border-radius: 6px;
  }

  .secretariat-monitor-neck {
    width: 28px;
    height: 13px;
  }

  .secretariat-monitor-base {
    width: 74px;
    height: 5px;
  }

  .role-workstation-be {
    min-height: 320px;
    padding: .55rem .55rem 1.55rem;
  }

  .be-showcase {
    min-height: 285px;
  }

  .be-hydra-backdrop {
    inset: .15rem 0 3.05rem;
  }

  .be-hydra-backdrop img {
    opacity: .72;
  }

  .be-monitor {
    right: -.2rem;
    bottom: -1.05rem;
    width: min(290px, 86%);
  }

  .be-monitor-frame {
    padding: 5px;
    border-radius: 6px;
  }

  .be-monitor-neck {
    width: 28px;
    height: 13px;
  }

  .be-monitor-base {
    width: 74px;
    height: 5px;
  }

  .technician-device-group {
    left: .65rem;
    right: auto;
    bottom: -.75rem;
    transform: scale(.32);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .technician-product-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
