:root {
  --bg: #f6f9ff;
  --bg-deep: #eaf2ff;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --surface-soft: #eef5ff;
  --surface-tint: #e3efff;
  --ink: #071325;
  --muted: #5d6d85;
  --soft: #8290a5;
  --line: rgba(9, 34, 70, .13);
  --line-strong: rgba(9, 34, 70, .22);
  --blue: #0867e8;
  --blue-2: #159fec;
  --violet: #6747e8;
  --cyan: #0fb9c7;
  --good: #087e61;
  --warn: #b76506;
  --danger: #c53c56;
  --dark: #071a33;
  --dark-2: #0b2445;
  --shadow: 0 28px 80px rgba(16, 50, 102, .14);
  --shadow-soft: 0 14px 36px rgba(16, 50, 102, .09);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1240px;
  --nav-height: 70px;
}

html[data-theme="dark"] {
  --bg: #050b16;
  --bg-deep: #07162b;
  --surface: #0b192d;
  --surface-raised: #10223b;
  --surface-soft: #102640;
  --surface-tint: #142e4c;
  --ink: #eef6ff;
  --muted: #a9b8ce;
  --soft: #8da1bd;
  --line: rgba(214, 232, 255, .14);
  --line-strong: rgba(214, 232, 255, .25);
  --blue: #58a3ff;
  --blue-2: #51c6ff;
  --violet: #9a83ff;
  --cyan: #4bd8df;
  --good: #4ed7ad;
  --warn: #ffc067;
  --danger: #ff8095;
  --dark: #020914;
  --dark-2: #07172d;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 98px; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(21, 159, 236, .15), transparent 30rem),
    radial-gradient(circle at 92% 2%, rgba(103, 71, 232, .13), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--surface) 42%, var(--bg-deep));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 10% 2%, rgba(21, 159, 236, .16), transparent 30rem),
    radial-gradient(circle at 90% 0, rgba(103, 71, 232, .2), transparent 32rem),
    linear-gradient(180deg, var(--bg), #07162b 52%, #06101f);
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
.shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  border-radius: 12px;
  background: var(--ink);
  color: var(--surface);
  padding: .8rem 1rem;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 180;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan));
}
:focus-visible { outline: 3px solid color-mix(in srgb, var(--blue) 72%, white); outline-offset: 3px; }

.topbar {
  position: sticky;
  top: 10px;
  z-index: 100;
  width: min(var(--max), calc(100% - 28px));
  margin: 10px auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(140%);
}
.nav {
  width: 100%;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .65rem .55rem .75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-width: max-content;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 6px 20px rgba(17, 62, 118, .12);
}
.brand small {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .09em;
}
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: .08rem; min-width: 0; }
.nav-links > a,
.nav-search {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: .67rem .66rem;
  font-size: .84rem;
  font-weight: 780;
  white-space: nowrap;
}
.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-search:hover,
.nav-search:focus-visible { color: var(--ink); background: var(--surface-soft); }
.nav-links .nav-cta { margin-left: .25rem; padding-inline: .9rem; background: var(--ink); color: var(--surface); }
html[data-theme="dark"] .nav-links .nav-cta { background: linear-gradient(135deg, var(--blue), var(--violet)); color: #fff; }
.drawer-search, .drawer-product-link, .mobile-theme-switch { display: none; }
.nav-actions { display: flex; align-items: center; gap: .35rem; }
.icon-button, .theme-switch button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.icon-button:hover, .theme-switch button:hover { border-color: var(--line-strong); background: var(--surface-soft); }
.theme-switch {
  display: flex;
  align-items: center;
  gap: .15rem;
  padding: .18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}
.theme-switch button { width: 34px; height: 34px; border: 0; background: transparent; color: var(--muted); }
.theme-switch button[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: 0 3px 12px rgba(10, 35, 72, .1); }
.menu-button { display: none; position: relative; z-index: 110; }
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  border: 0;
  background: rgba(2, 9, 20, .56);
  backdrop-filter: blur(4px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5rem);
  min-height: min(790px, calc(100svh - 80px));
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}
.hero-copy { max-width: 700px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 1.15rem 0 1.35rem;
  font-size: clamp(3.25rem, 5.2vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, var(--blue) 10%, var(--violet) 62%, var(--cyan));
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p {
  max-width: 690px;
  margin-bottom: 1.65rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}
.hero-actions, .assurance-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: .78rem 1.08rem;
  font-weight: 830;
  line-height: 1.2;
}
.btn.primary {
  background: linear-gradient(135deg, var(--blue), #315dd8 52%, var(--violet));
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 103, 232, .25);
}
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(8, 103, 232, .31); }
.btn.secondary { border-color: var(--line-strong); background: var(--surface); color: var(--ink); }
.btn.secondary:hover { border-color: var(--blue); background: var(--surface-soft); }
.btn.small { min-height: 40px; padding: .62rem .8rem; font-size: .85rem; }
.hero-signin { display: inline-block; margin-top: 1.05rem; color: var(--muted); font-size: .9rem; }
.hero-signin strong { color: var(--blue); }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.15rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hero-proof span { display: inline-flex; align-items: center; gap: .45rem; color: var(--muted); font-size: .82rem; }
.hero-proof i { color: var(--blue); }

.decision-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158, 203, 255, .24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(104, 71, 232, .3), transparent 16rem),
    linear-gradient(145deg, #071a33, #0b274b 62%, #0a3258);
  color: #f4f8ff;
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 34px 90px rgba(5, 30, 68, .3);
}
.decision-preview::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% 20%;
  height: 230px;
  border-radius: 50%;
  background: rgba(31, 184, 218, .16);
  filter: blur(45px);
}
.decision-preview > * { position: relative; z-index: 1; }
.preview-topline, .preview-program, .form-foot, .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.preview-topline { color: #bcd0eb; font-size: .78rem; font-weight: 750; }
.preview-topline span { display: inline-flex; align-items: center; gap: .45rem; }
.preview-topline small { color: #9eb6d5; }
.preview-program { margin: 1.4rem 0 1rem; }
.overline {
  display: block;
  margin-bottom: .42rem;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.decision-preview .overline { color: #77d7ff; }
.preview-program h2 { margin: 0; font-size: 1.42rem; letter-spacing: -.035em; }
.state-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(105, 221, 205, .38);
  border-radius: 999px;
  background: rgba(46, 188, 165, .13);
  color: #8ff0d7;
  padding: .36rem .62rem;
  font-size: .72rem;
  font-weight: 850;
}
.decision-focus {
  border: 1px solid rgba(186, 216, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  padding: 1rem;
}
.decision-focus span, .decision-focus small { display: block; color: #a9bfdc; font-size: .72rem; }
.decision-focus strong { display: block; margin: .48rem 0; font-size: 1rem; line-height: 1.4; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-block: .8rem;
}
.preview-grid article {
  border: 1px solid rgba(186, 216, 255, .15);
  border-radius: 15px;
  background: rgba(255, 255, 255, .045);
  padding: .8rem;
}
.preview-grid span, .preview-grid small { display: block; color: #a7bdd8; font-size: .68rem; }
.preview-grid strong { display: block; margin: .2rem 0; font-size: .93rem; }
.preview-grid .warn { color: #ffd18f; }
.review-trail { display: grid; gap: .4rem; padding: .8rem 0; color: #c3d4e9; font-size: .75rem; }
.review-trail span { display: flex; align-items: center; gap: .48rem; }
.review-trail i { color: #72d9ca; }
.preview-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(186, 216, 255, .17);
  margin-top: .3rem;
  padding-top: .9rem;
  color: #8ddcff;
  font-size: .83rem;
  font-weight: 820;
}

.section { padding-block: clamp(5rem, 8vw, 8.5rem); }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 3rem; text-align: center; }
.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.section-heading h2, .assurance-copy > h2, .pilot-card > h2 {
  margin: .85rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -.052em;
}
.section-heading p, .assurance-copy > p, .pilot-card > p { color: var(--muted); font-size: 1.02rem; }
.section-heading.split > p { margin: 0; }

.control-layers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.control-layers article {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}
.control-layers article:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--blue) 35%, var(--line)); }
.layer-number { color: var(--blue); font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.control-layers h3 { margin: 1.8rem 0 .65rem; font-size: 1.18rem; letter-spacing: -.025em; }
.control-layers p { margin-bottom: 1.2rem; color: var(--muted); font-size: .91rem; }
.control-layers a { margin-top: auto; color: var(--blue); font-size: .82rem; font-weight: 850; }

.lifecycle-section {
  border-block: 1px solid rgba(169, 201, 239, .18);
  background:
    linear-gradient(135deg, rgba(8, 103, 232, .055), rgba(103, 71, 232, .05)),
    color-mix(in srgb, var(--surface-soft) 74%, transparent);
}
.lifecycle-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
}
.lifecycle-track li { position: relative; min-width: 0; }
.lifecycle-track li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 33px;
  right: -7px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
}
.lifecycle-track a {
  height: 100%;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--surface);
  padding: 1.1rem;
}
.lifecycle-track li:first-child a { border-radius: 20px 0 0 20px; }
.lifecycle-track li:last-child a { border-right: 1px solid var(--line); border-radius: 0 20px 20px 0; }
.lifecycle-track a:hover { position: relative; z-index: 3; background: var(--surface-soft); box-shadow: var(--shadow-soft); }
.lifecycle-track a > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-tint);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
}
.lifecycle-track small { margin: 1rem 0 .35rem; color: var(--blue); font-size: .68rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.lifecycle-track strong { font-size: .9rem; line-height: 1.42; }
.lifecycle-track b { margin-top: auto; padding-top: 1rem; color: var(--muted); font-size: .72rem; }
.operating-systems { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1rem; }
.operating-systems article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 1.2rem;
}
.os-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--surface-tint), color-mix(in srgb, var(--violet) 18%, var(--surface)));
  color: var(--blue);
}
.operating-systems small { color: var(--blue); font-size: .67rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.operating-systems h3 { margin: .22rem 0 .4rem; font-size: 1.08rem; }
.operating-systems p { margin: 0; color: var(--muted); font-size: .86rem; }
.operating-systems a { grid-column: 2; color: var(--blue); font-size: .8rem; font-weight: 850; }

.product-tour {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .35rem;
  padding: .6rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}
.tour-tabs button {
  min-height: 47px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--muted);
  font-weight: 820;
}
.tour-tabs button:hover { color: var(--ink); }
.tour-tabs button.active { background: var(--surface); color: var(--blue); box-shadow: 0 6px 18px rgba(14, 54, 107, .09); }
.tour-panel {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 400px;
}
.tour-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.6rem, 4vw, 3.2rem);
  background:
    radial-gradient(circle at 0 100%, rgba(8, 103, 232, .1), transparent 18rem),
    var(--surface);
}
.tour-copy h3 { margin: .65rem 0 .8rem; font-size: clamp(1.55rem, 2.5vw, 2.35rem); line-height: 1.12; letter-spacing: -.04em; }
.tour-copy p { color: var(--muted); }
.tour-status {
  width: fit-content;
  border-radius: 999px;
  padding: .45rem .7rem;
  background: var(--surface-soft);
  color: var(--blue);
  font-size: .74rem;
  font-weight: 850;
}
.tour-status.good { color: var(--good); background: color-mix(in srgb, var(--good) 12%, var(--surface)); }
.tour-status.warn { color: var(--warn); background: color-mix(in srgb, var(--warn) 12%, var(--surface)); }
.tour-facts { display: grid; align-content: center; gap: .72rem; border-left: 1px solid var(--line); background: var(--surface-soft); padding: clamp(1.4rem, 4vw, 3rem); }
.tour-facts div { border: 1px solid var(--line); border-radius: 15px; background: var(--surface); padding: .9rem 1rem; }
.tour-facts span { display: block; margin-bottom: .2rem; color: var(--muted); font-size: .7rem; }
.tour-facts strong { font-size: .88rem; }

.role-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0, rgba(103, 71, 232, .28), transparent 28rem),
    linear-gradient(145deg, #06162c, #0a294f);
  color: #f2f7ff;
}
.role-layout { display: grid; grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.role-section .kicker { color: #7edaff; }
.role-section .section-heading p { color: #b7c9df; }
.role-explorer { overflow: hidden; border: 1px solid rgba(184, 216, 255, .2); border-radius: var(--radius); background: rgba(255, 255, 255, .055); box-shadow: 0 28px 70px rgba(0, 0, 0, .24); }
.role-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .25rem; padding: .45rem; border-bottom: 1px solid rgba(184, 216, 255, .16); }
.role-tabs button { min-height: 50px; border: 0; border-radius: 12px; background: transparent; color: #aebfd5; padding: .55rem; font-size: .76rem; font-weight: 800; }
.role-tabs button.active { background: rgba(255, 255, 255, .12); color: #fff; }
.role-panel { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(220px, .88fr); gap: 2rem; align-items: center; min-height: 330px; padding: clamp(1.4rem, 4vw, 2.5rem); }
.role-panel .overline { color: #75d8ff; }
.role-panel h3 { margin: .5rem 0 .8rem; font-size: clamp(1.5rem, 2.6vw, 2.25rem); letter-spacing: -.04em; }
.role-panel p { color: #b9cbe0; }
.role-panel .btn.secondary { border-color: rgba(187, 221, 255, .3); background: rgba(255, 255, 255, .08); color: #fff; }
.role-panel ul { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.role-panel li { display: flex; gap: .55rem; color: #d8e5f4; font-size: .86rem; }
.role-panel li i { margin-top: .28rem; color: #69dfc1; }

.featured-workflows { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.workflow-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}
.workflow-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--blue) 40%, var(--line)); }
.workflow-card > span { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.workflow-card h3 { margin: 1.35rem 0 .65rem; font-size: 1.25rem; letter-spacing: -.035em; }
.workflow-card p { color: var(--muted); font-size: .9rem; }
.workflow-card b { margin-top: auto; color: var(--blue); font-size: .8rem; }
.anchor-target { display: block; position: relative; top: -90px; }
.module-directory {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.module-directory > summary {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  list-style: none;
}
.module-directory > summary::-webkit-details-marker { display: none; }
.module-directory > summary span:first-child { display: grid; gap: .25rem; }
.module-directory > summary small { color: var(--blue); font-size: .7rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.module-directory > summary strong { font-size: 1.18rem; }
.summary-action { color: var(--muted); font-size: .8rem; font-weight: 800; }
.module-directory[open] .summary-action i { transform: rotate(180deg); }
.directory-body { border-top: 1px solid var(--line); padding: 1.3rem; }
.directory-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.module-search-wrap {
  flex: 1;
  max-width: 650px;
  display: flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: .15rem .85rem;
}
.module-search-wrap i { color: var(--muted); }
.module-search-wrap input { width: 100%; min-height: 46px; border: 0; outline: 0; background: transparent; }
#moduleMeta { color: var(--muted); font-size: .78rem; }
.module-filters { display: flex; flex-wrap: wrap; gap: .45rem; margin-block: 1rem; }
.module-filters button, .load-more {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: .58rem .78rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}
.module-filters button.active { border-color: var(--blue); background: var(--surface-tint); color: var(--blue); }
.module-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; }
.module-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 1rem;
}
.module-card:hover { border-color: color-mix(in srgb, var(--blue) 40%, var(--line)); background: var(--surface-soft); }
.module-card > span { color: var(--blue); font-size: .66rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.module-card h3 { margin: .8rem 0 .45rem; font-size: .98rem; letter-spacing: -.02em; }
.module-card p { color: var(--muted); font-size: .78rem; }
.module-card small { margin-top: auto; color: var(--blue); font-weight: 800; }
.load-more { display: block; margin: 1rem auto 0; padding-inline: 1rem; }
.load-more:hover { border-color: var(--blue); color: var(--blue); }
.noscript-directory { display: flex; flex-wrap: wrap; gap: .6rem; padding: 1rem; border: 1px solid var(--line); border-radius: 14px; }
.noscript-directory p { flex-basis: 100%; }
.noscript-directory a { color: var(--blue); font-weight: 800; }

.assurance-section {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(21, 159, 236, .18), transparent 26rem),
    linear-gradient(145deg, #051426, #092b50);
  color: #f1f7ff;
}
.assurance-grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr); gap: clamp(2rem, 5vw, 5rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.assurance-copy { display: flex; flex-direction: column; }
.assurance-copy .kicker, .pilot-card .kicker { color: #7edaff; }
.assurance-copy > p, .pilot-card > p { color: #b7c9de; }
.assurance-list { display: grid; gap: .65rem; margin-block: 1.5rem; }
.assurance-list > span { display: grid; grid-template-columns: auto 1fr; gap: .1rem .7rem; border-top: 1px solid rgba(191, 220, 255, .17); padding-top: .8rem; }
.assurance-list i { grid-row: span 2; margin-top: .25rem; color: #68dfc2; }
.assurance-list b { font-size: .88rem; }
.assurance-list small { color: #aabed7; line-height: 1.45; }
.assurance-actions .text-link { color: #8dddff; font-size: .85rem; font-weight: 800; }
.pilot-card {
  border: 1px solid rgba(188, 220, 255, .2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .075);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}
.pilot-card > h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
#pilotForm { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin-top: 1.4rem; }
.field { display: grid; gap: .35rem; }
.field.full, .form-status, .form-foot { grid-column: 1 / -1; }
.field label { color: #d6e4f4; font-size: .73rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 47px;
  border: 1px solid rgba(192, 222, 255, .22);
  border-radius: 12px;
  outline: 0;
  background: rgba(1, 11, 24, .34);
  color: #f4f8ff;
  padding: .72rem .8rem;
}
.field textarea { min-height: 90px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8399b5; }
.field select option { color: #071325; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #6fcfff; box-shadow: 0 0 0 3px rgba(64, 180, 238, .13); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; border-radius: 11px; padding: .7rem .8rem; font-size: .8rem; }
.form-status.show { display: block; }
.form-status.info { background: rgba(83, 174, 255, .13); color: #c5e8ff; }
.form-status.success { background: rgba(54, 207, 163, .14); color: #baf4e0; }
.form-status.error { background: rgba(240, 91, 116, .14); color: #ffd0d8; }
.form-status a { color: inherit; text-decoration: underline; }
.form-foot { align-items: flex-end; margin-top: .2rem; }
.form-foot > span { color: #9fb5cf; font-size: .72rem; }
.noscript-fallback { border: 1px solid rgba(255, 204, 112, .35); border-radius: 12px; background: rgba(255, 191, 79, .1); padding: .8rem; color: #ffe0a7; font-size: .85rem; }

.mobile-bottom-nav { display: none; }
footer { background: #020a15; color: #eaf3ff; padding-top: 4.5rem; }
.footer { display: grid; grid-template-columns: 1.5fr repeat(3, minmax(130px, .7fr)); gap: 2rem; }
.footer-brand p { max-width: 390px; margin: 1rem 0; color: #96abc4; font-size: .86rem; }
.footer-brand > span { color: #748ba6; font-size: .76rem; }
.footer .brand small { color: #7f96b1; }
.footer-links { display: grid; align-content: start; gap: .62rem; }
.footer-links strong { margin-bottom: .3rem; color: #f7fbff; font-size: .78rem; }
.footer-links a { color: #96abc4; font-size: .78rem; }
.footer-links a:hover { color: #82d8ff; }
.install-utility {
  display: flex;
  align-items: center;
  gap: .9rem;
  max-width: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: .85rem 1.1rem;
}
.install-utility-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--blue);
  font-size: 1rem;
}
.install-utility-copy { flex: 1 1 auto; min-width: 0; }
.install-utility-copy strong { display: block; font-size: .82rem; font-weight: 800; color: var(--ink); }
.install-utility-copy [data-pwa-install-status] { display: block; margin-top: .2rem; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.install-utility .btn { flex: 0 0 auto; }
@media (max-width: 560px) {
  .install-utility { flex-wrap: wrap; }
  .install-utility .btn { width: 100%; }
}
.footer-bottom { margin-top: 2.2rem; border-top: 1px solid rgba(196, 220, 247, .13); padding-block: 1.2rem 1.6rem; color: #748ba6; font-size: .75rem; }
.footer-bottom a { color: #83d9ff; font-weight: 800; }
.back-to-top {
  position: fixed;
  z-index: 70;
  right: 1rem;
  bottom: 1rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }

.btn, .control-layers article, .workflow-card, .module-card, .back-to-top { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .84fr); gap: 2rem; }
  .hero h1 { font-size: clamp(3.1rem, 5.4vw, 4.8rem); }
  .control-layers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .control-layers article { min-height: 230px; }
  .lifecycle-track { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
  .lifecycle-track li::after { display: none; }
  .lifecycle-track a, .lifecycle-track li:first-child a, .lifecycle-track li:last-child a { min-height: 215px; border: 1px solid var(--line); border-radius: 18px; }
  .module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .topbar { width: calc(100% - 22px); }
  .nav { padding-inline: .6rem; }
  .desktop-theme-switch, .search-shortcut { display: none; }
  .menu-button { display: grid; }
  .nav-links {
    position: fixed;
    z-index: 95;
    top: 0;
    right: 0;
    width: min(390px, 90vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .2rem;
    border-left: 1px solid var(--line);
    background: var(--surface);
    padding: 5.5rem 1rem 2rem;
    box-shadow: -30px 0 80px rgba(3, 16, 36, .24);
    overflow-y: auto;
    transform: translateX(104%);
    transition: transform .24s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links > a, .nav-search { display: flex !important; align-items: center; min-height: 48px; border-radius: 12px; padding: .75rem; font-size: .93rem; }
  .nav-links .nav-cta { justify-content: center; margin: .55rem 0 0; }
  .drawer-search { display: flex; gap: .6rem; }
  .drawer-product-link { color: var(--blue) !important; }
  .mobile-theme-switch { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); margin-top: .55rem; padding: .85rem .7rem .2rem; color: var(--muted); font-size: .82rem; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-block: 5rem 6rem; }
  .hero-copy { max-width: 760px; }
  .decision-preview { max-width: 680px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 1rem; }
  .operating-systems, .tour-panel, .role-layout, .assurance-grid { grid-template-columns: 1fr; }
  .tour-facts { border-left: 0; border-top: 1px solid var(--line); }
  .role-layout { gap: 2rem; }
  .featured-workflows { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .assurance-grid { gap: 3rem; }
  .footer { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .topbar { top: 7px; margin-top: 7px; }
  .brand { font-size: .92rem; }
  .brand small { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero { padding-block: 4.25rem 4.75rem; gap: 2.5rem; }
  .hero h1 { font-size: clamp(2.6rem, 12.5vw, 4rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
  .decision-preview { border-radius: 25px; padding: 1.1rem; }
  .preview-program { align-items: flex-start; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 4.7rem; }
  .section-heading.centered { text-align: left; margin-bottom: 2rem; }
  .section-heading h2, .assurance-copy > h2 { font-size: clamp(2.05rem, 10.5vw, 3.1rem); }
  .control-layers, .lifecycle-track, .operating-systems, .featured-workflows, .module-grid { grid-template-columns: 1fr; }
  .control-layers article { min-height: 205px; }
  .lifecycle-track a, .lifecycle-track li:first-child a, .lifecycle-track li:last-child a { min-height: 195px; }
  .operating-systems article { grid-template-columns: auto 1fr; }
  .tour-tabs, .role-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .tour-tabs::-webkit-scrollbar, .role-tabs::-webkit-scrollbar { display: none; }
  .tour-tabs button, .role-tabs button { flex: 0 0 auto; min-width: 145px; scroll-snap-align: start; }
  .tour-panel, .role-panel { min-height: 0; }
  .role-panel { grid-template-columns: 1fr; }
  .workflow-card { min-height: 240px; }
  .module-directory > summary { min-height: 90px; padding: 1rem; }
  .summary-action { font-size: 0; }
  .summary-action i { font-size: .9rem; }
  .directory-body { padding: 1rem; }
  .directory-head { align-items: stretch; flex-direction: column; }
  #moduleMeta { padding-left: .2rem; }
  #pilotForm { grid-template-columns: 1fr; }
  .field.full, .form-status, .form-foot { grid-column: auto; }
  .form-foot { align-items: stretch; flex-direction: column; }
  .form-foot .btn { width: 100%; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 80;
    inset: auto 10px max(9px, env(safe-area-inset-bottom)) 10px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 91%, transparent);
    box-shadow: 0 18px 48px rgba(2, 17, 38, .24);
    backdrop-filter: blur(18px);
    padding: .38rem;
  }
  .mobile-bottom-nav a { min-height: 52px; display: grid; place-items: center; align-content: center; gap: .15rem; border-radius: 13px; color: var(--muted); font-size: .62rem; font-weight: 800; text-align: center; }
  .mobile-bottom-nav i { color: var(--blue); font-size: .9rem; }
  .mobile-bottom-nav a:active { background: var(--surface-soft); }
  footer { padding-bottom: 76px; }
  .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-of-type { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .back-to-top { bottom: 82px; }
}

@media (max-width: 430px) {
  .shell { width: calc(100% - 24px); }
  .brand img { width: 38px; height: 38px; flex-basis: 38px; }
  .brand small { max-width: 155px; font-size: .54rem; }
  .nav { min-height: 62px; }
  .icon-button { width: 40px; height: 40px; }
  .hero { padding-top: 3.7rem; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-program { display: grid; }
  .state-pill { width: fit-content; }
  .operating-systems article { grid-template-columns: 1fr; }
  .operating-systems a { grid-column: 1; }
  .footer { grid-template-columns: 1fr; }
  .footer-links, .footer-links:last-of-type { grid-column: 1; }
}

/* 2026 conversion and accessibility refinement */
html { scroll-behavior: auto; }
[hidden] { display: none !important; }
.hero {
  min-height: 0;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3.5rem, 6vw, 5.75rem);
}
.hero h1 { max-width: 690px; font-size: clamp(3rem, 4.5vw, 4.7rem); line-height: 1.01; }
.hero-copy > p { max-width: 640px; }
.section { padding-block: clamp(4rem, 6vw, 6.5rem); }
.section-heading h2, .assurance-copy > h2, .pilot-card > h2 { font-size: clamp(2.15rem, 3.4vw, 3.45rem); }
.control-layers article { min-height: 235px; }
.icon-button, .theme-switch button { min-width: 44px; min-height: 44px; }
.assurance-artifacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: auto;
  padding-top: 1.4rem;
}
.assurance-artifacts a {
  display: block;
  min-height: 116px;
  border: 1px solid rgba(191, 220, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  padding: .9rem;
  color: #eef7ff;
}
.assurance-artifacts a:hover { border-color: #77d7ff; background: rgba(255, 255, 255, .075); }
.assurance-artifacts strong, .assurance-artifacts span { display: block; }
.assurance-artifacts strong { font-size: .82rem; }
.assurance-artifacts span { margin-top: .35rem; color: #aabed7; font-size: .72rem; line-height: 1.45; }
[data-theme="dark"] .field input, [data-theme="dark"] .field select, [data-theme="dark"] .field textarea { background: var(--surface); color: var(--ink); }

@media (max-width: 700px) {
  .hero { padding-block: 3.4rem 4.25rem; }
  .hero h1 { font-size: clamp(2.45rem, 11vw, 3.35rem); }
  .section { padding-block: 4rem; }
  .section-heading h2, .assurance-copy > h2, .pilot-card > h2 { font-size: clamp(2rem, 9.4vw, 2.8rem); }
  .assurance-artifacts { grid-template-columns: 1fr; }
  .mobile-bottom-nav a { min-height: 56px; font-size: .75rem; }
}

@media (max-width: 430px) {
  .icon-button { width: 44px; height: 44px; }
}

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

@media print {
  .topbar, .mobile-bottom-nav, .back-to-top, .page-progress, .hero-actions, .assurance-section, footer { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  .hero, .section { min-height: 0; padding: 1.5rem 0; }
  .decision-preview, .role-section { background: #fff !important; color: #111 !important; box-shadow: none; }
}
