:root {
  /* Supplied ciliot Brand Pack v1.0 semantic token baseline. */
  --ciliot-navy: #072b49;
  --ciliot-navy2: #031c31;
  --ciliot-blue: #0a5a8f;
  --ciliot-teal: #00a9b7;
  --ciliot-green: #00c48c;
  --ciliot-cyan: #38c7e8;
  --ciliot-white: #ffffff;
  --ciliot-ink: #14212b;
  --ciliot-grey: #667785;
  --ciliot-light: #f3f7f9;
  --ciliot-success: #168a63;
  --ciliot-info: #1769aa;
  --ciliot-warning: #d97706;
  --ciliot-critical: #c62828;
  --ciliot-maintenance: #6d4cc4;
  --navy: var(--ciliot-navy);
  --navy2: var(--ciliot-navy2);
  --ink: var(--ciliot-ink);
  --ink-2: var(--ciliot-navy);
  --slate: var(--ciliot-grey);
  --muted: #6f8190;
  --canvas: var(--ciliot-light);
  --surface: var(--ciliot-white);
  --surface-subtle: #eaf1f4;
  --line: #c9d6dd;
  --line-strong: #aebfc9;
  --teal: var(--ciliot-teal);
  --teal-deep: #007786;
  --teal-pale: #d9f3f5;
  --green: var(--ciliot-green);
  --success: var(--ciliot-success);
  --green-pale: #ddf8ef;
  --blue: var(--ciliot-blue);
  --blue-deep: #074a75;
  --blue-pale: #e2eff7;
  --amber: var(--ciliot-warning);
  --amber-pale: #fff0d8;
  --red: var(--ciliot-critical);
  --red-pale: #fde8e8;
  --maintenance: var(--ciliot-maintenance);
  --white: var(--ciliot-white);
  --focus: var(--ciliot-blue);
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
  --radius-control: 0.5rem;
  --radius-card: 0.875rem;
  --radius-feature: 1.25rem;
  --radius-round: 999rem;
  --shadow-low: 0 0.25rem 0.75rem rgb(11 31 51 / 8%);
  --shadow-raised: 0 1.25rem 3rem -1rem rgb(11 31 51 / 18%);
  --max-width: 75rem;
  --transition-fast: 160ms ease;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizelegibility;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue-deep);
}

:focus-visible {
  outline: 0.1875rem solid var(--focus);
  outline-offset: 0.1875rem;
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-control);
  transform: translateY(-200%);
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--teal-deep);
  font-size: 0.8125rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.display {
  max-width: 13ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.55rem, 6vw, 4.5rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.display.display-wide {
  max-width: 16ch;
}

.lead {
  max-width: 41rem;
  margin: 1.5rem 0 0;
  color: var(--slate);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.body-large {
  color: var(--slate);
  font-size: 1.125rem;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-tight {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-canvas {
  background: var(--canvas);
}

.section-surface {
  background: var(--surface);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgb(0 122 112 / 36%), transparent 32rem),
    radial-gradient(circle at 82% 75%, rgb(40 88 200 / 25%), transparent 28rem),
    var(--navy2);
}

.section-dark .eyebrow {
  color: #9ee9df;
}

.section-dark .eyebrow::before {
  background: #9ee9df;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: inherit;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-heading p {
  max-width: 42rem;
  margin: 0;
  color: var(--slate);
  font-size: 1.0625rem;
}

.section-dark .section-heading p {
  color: #c8d7e7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border: 0.0625rem solid var(--navy);
  border-radius: var(--radius-control);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.button:hover {
  color: var(--white);
  background: var(--navy2);
  border-color: var(--navy2);
  transform: translateY(-0.0625rem);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.button-secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--surface-subtle);
  border-color: var(--slate);
}

.button-quiet {
  min-height: auto;
  padding: 0.5rem 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: underline;
}

.button-quiet:hover {
  color: var(--blue-deep);
  background: transparent;
  transform: none;
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--ink);
  background: #dff7f3;
  border-color: #dff7f3;
}

.button-arrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 0.0625rem solid rgb(215 224 232 / 78%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(1rem);
}

.site-header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: block;
  width: 8.75rem;
  height: 2.1875rem;
  flex: 0 0 auto;
  background: url("brand/ciliot-primary-horizontal.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}

.brand:hover {
  opacity: 0.86;
}

.brand-mark {
  display: none;
}

.brand-mark svg {
  display: none;
}

.brand-inverse {
  background-image: url("brand/ciliot-reverse-horizontal.svg");
}

.brand-inverse:hover {
  opacity: 0.86;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.625rem 0.75rem;
  color: var(--slate);
  border-radius: var(--radius-control);
  font-size: 0.9375rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--surface-subtle);
}

.site-nav .nav-cta {
  margin-left: 0.5rem;
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--ink-2);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-control);
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-width: 2;
}

.announcement {
  border-bottom: 0.0625rem solid #baded9;
  color: var(--teal-deep);
  background: var(--teal-pale);
}

.announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 650;
  text-align: center;
}

.announcement a {
  color: inherit;
}

.hero {
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 86% 6%, rgb(0 122 112 / 13%), transparent 29rem),
    radial-gradient(circle at 62% 88%, rgb(40 88 200 / 10%), transparent 25rem),
    var(--surface);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(26rem, 0.96fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .button-row {
  margin-top: 2.25rem;
}

.microcopy {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.hero-visual {
  position: relative;
  min-height: 31rem;
}

.hero-orbit {
  position: absolute;
  top: 7%;
  right: -11%;
  width: 80%;
  aspect-ratio: 1;
  border: 0.0625rem solid rgb(0 122 112 / 18%);
  border-radius: 50%;
  box-shadow: 0 0 0 3.25rem rgb(0 122 112 / 4%), 0 0 0 6.5rem rgb(40 88 200 / 3%);
}

.signal-node {
  position: absolute;
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  color: var(--teal-deep);
  background: var(--white);
  border: 0.0625rem solid #bde5df;
  border-radius: 1rem;
  box-shadow: var(--shadow-raised);
}

.signal-node svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.signal-node.one {
  top: 12%;
  left: 5%;
}

.signal-node.two {
  top: 49%;
  right: 2%;
  color: var(--blue);
  border-color: #ccd8fa;
}

.signal-node.three {
  bottom: 3%;
  left: 15%;
  color: var(--amber);
  border-color: #f4d890;
}

.dashboard-preview {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 7%;
  width: min(27rem, 88%);
  overflow: hidden;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-feature);
  box-shadow: 0 1.5rem 5rem -1.75rem rgb(11 31 51 / 30%);
  transform: rotate(1.5deg);
}

.preview-topbar {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 0.0625rem solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 780;
}

.preview-brand::before {
  width: 1.15rem;
  height: 1.15rem;
  background: var(--teal);
  border-radius: 0.35rem;
  content: "";
}

.preview-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--success);
  font-size: 0.6875rem;
  font-weight: 750;
}

.preview-live::before {
  width: 0.4rem;
  height: 0.4rem;
  background: currentcolor;
  border-radius: 50%;
  content: "";
}

.preview-body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
}

.preview-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.preview-title strong {
  font-size: 0.875rem;
}

.preview-title span {
  color: var(--muted);
  font-size: 0.6875rem;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.preview-metric {
  padding: 0.625rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 0.5rem;
}

.preview-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.625rem;
}

.preview-metric strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.preview-metric.critical strong {
  color: var(--red);
}

.preview-chart {
  position: relative;
  height: 8rem;
  overflow: hidden;
  background:
    linear-gradient(to bottom, transparent 24%, #e9eff5 25%, transparent 26%, transparent 49%, #e9eff5 50%, transparent 51%, transparent 74%, #e9eff5 75%, transparent 76%),
    var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: 0.5rem;
}

.preview-chart::after {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  height: 4.3rem;
  background:
    linear-gradient(143deg, transparent 0 11%, var(--teal) 11.5% 13%, transparent 13.5% 24%, var(--teal) 24.5% 26%, transparent 26.5% 39%, var(--teal) 39.5% 41%, transparent 41.5% 58%, var(--amber) 58.5% 60%, transparent 60.5% 72%, var(--teal) 72.5% 74%, transparent 74.5%);
  content: "";
}

.preview-alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem;
  color: #822b25;
  background: var(--red-pale);
  border-radius: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 680;
}

.preview-alert::before {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.stat-strip {
  border-block: 0.0625rem solid var(--line);
  background: var(--surface);
}

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

.stat-strip-item {
  min-height: 8.5rem;
  padding: 1.75rem 2rem;
  border-right: 0.0625rem solid var(--line);
}

.stat-strip-item:first-child {
  border-left: 0.0625rem solid var(--line);
}

.stat-strip-item strong {
  display: block;
  font-size: 1.375rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.stat-strip-item span {
  display: block;
  margin-top: 0.5rem;
  color: var(--slate);
  font-size: 0.875rem;
  line-height: 1.45;
}

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

.card {
  padding: 1.75rem;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-low);
}

.card:hover {
  border-color: var(--line-strong);
}

.feature-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.feature-card h3,
.resource-card h3 {
  margin: 1.25rem 0 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.feature-card p,
.resource-card p {
  margin: 0.875rem 0 0;
  color: var(--slate);
}

.feature-card a,
.resource-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-weight: 720;
  text-decoration: none;
}

.icon-tile {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--teal-deep);
  background: var(--teal-pale);
  border-radius: 0.75rem;
}

.icon-tile.blue {
  color: var(--blue);
  background: var(--blue-pale);
}

.icon-tile.amber {
  color: var(--amber);
  background: var(--amber-pale);
}

.icon-tile.red {
  color: var(--red);
  background: var(--red-pale);
}

.icon-tile svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-panel.reverse {
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1fr);
}

.split-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.split-panel p {
  max-width: 38rem;
  color: var(--slate);
}

.evidence-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  color: var(--white);
  background:
    linear-gradient(146deg, rgb(0 122 112 / 24%), transparent 55%),
    var(--ink);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-raised);
}

.evidence-panel::after {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border: 1.5rem solid rgb(158 233 223 / 14%);
  border-radius: 50%;
  content: "";
}

.evidence-panel > * {
  position: relative;
  z-index: 1;
}

.evidence-panel h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}

.evidence-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  display: grid;
  grid-template-columns: 1.65rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #d7e5f1;
  font-size: 0.9rem;
}

.evidence-list svg {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.25rem;
  color: var(--teal-deep);
  background: #a8efe6;
  border-radius: 50%;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.numbered-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.numbered-steps li {
  position: relative;
  min-height: 13rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-card);
  counter-increment: steps;
}

.numbered-steps li::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--teal-deep);
  background: var(--teal-pale);
  border-radius: 50%;
  content: "0" counter(steps);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 750;
}

.numbered-steps h3 {
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
}

.numbered-steps p {
  margin: 0.625rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.quote {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--teal-pale);
  border-radius: var(--radius-feature);
}

.quote p {
  max-width: 39rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.22;
}

.quote footer {
  margin-top: 1.25rem;
  color: var(--slate);
  font-size: 0.9375rem;
}

.quote footer strong {
  color: var(--ink);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.75rem;
  color: var(--ink-2);
  background: var(--surface-subtle);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-round);
  font-size: 0.8125rem;
  font-weight: 650;
}

.comparison-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 0.0625rem solid var(--line);
  list-style: none;
}

.comparison-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 0.0625rem solid var(--line);
  color: var(--slate);
}

.comparison-list svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  color: var(--teal);
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.comparison-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.9375rem;
}

.comparison-list span {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.875rem;
}

.comparison-list.compact {
  margin-top: 0;
}

.mt-6 {
  margin-top: 2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 16%);
  border: 0.0625rem solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-feature);
}

.trust-grid-item {
  min-height: 13.5rem;
  padding: 2rem;
  background: rgb(255 255 255 / 6%);
}

.trust-grid-item h3 {
  margin: 1.25rem 0 0;
  font-size: 1.125rem;
}

.trust-grid-item p {
  margin: 0.625rem 0 0;
  color: #c8d7e7;
  font-size: 0.9rem;
}

.trust-grid .icon-tile {
  color: #9ee9df;
  background: rgb(158 233 223 / 13%);
}

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

.resource-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-card);
}

.resource-kicker {
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-art {
  display: grid;
  min-height: 7.5rem;
  place-items: center;
  margin: 1.5rem 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 27%, rgb(0 122 112 / 22%), transparent 2.7rem),
    linear-gradient(140deg, var(--ink), var(--ink-2));
  border-radius: 0.75rem;
}

.resource-art svg {
  width: 4rem;
  height: 4rem;
  fill: none;
  stroke: #9ee9df;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgb(40 88 200 / 42%), transparent 15rem),
    var(--ink);
  border-radius: var(--radius-feature);
}

.cta-panel h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.cta-panel p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: #c8d7e7;
}

.page-hero {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 4rem;
  background:
    radial-gradient(circle at 82% 22%, rgb(0 122 112 / 14%), transparent 23rem),
    var(--surface);
}

.page-hero .lead {
  max-width: 45rem;
}

.module-lockup {
  display: block;
  width: min(22rem, 100%);
  height: auto;
  margin-bottom: 1.5rem;
}

.page-hero-visual {
  margin-top: 3.5rem;
}

.signal-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-low);
}

.signal-path-item {
  position: relative;
  display: grid;
  min-height: 8.5rem;
  align-content: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--canvas);
  border-radius: var(--radius-card);
}

.signal-path-item:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -0.88rem;
  width: 1rem;
  border-top: 0.125rem dashed var(--teal);
  content: "";
}

.signal-path-item strong {
  font-size: 0.9375rem;
}

.signal-path-item span {
  color: var(--slate);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  color: #c8d7e7;
  background: var(--navy2);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer-copy {
  max-width: 22rem;
  margin: 1rem 0 0;
  color: #abc0d4;
  font-size: 0.875rem;
}

.footer-heading {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c8d7e7;
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgb(255 255 255 / 16%);
  color: #abc0d4;
  font-size: 0.75rem;
}

.footer-bottom a {
  color: inherit;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

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

.contact-points li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.75rem;
  align-items: center;
}

.contact-points .icon-tile {
  width: 2.6rem;
  height: 2.6rem;
}

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

.contact-points span {
  color: var(--slate);
  font-size: 0.9rem;
}

.form-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-raised);
}

.form-card h2 {
  margin: 0;
  font-size: 1.75rem;
  letter-spacing: -0.045em;
}

.form-card > p {
  margin: 0.75rem 0 0;
  color: var(--slate);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

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

.form-field label {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.field-hint {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.75rem;
  color: var(--ink);
  background: var(--white);
  border: 0.0625rem solid var(--line-strong);
  border-radius: var(--radius-control);
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--slate);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 0.1875rem rgb(180 35 24 / 12%);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.625rem;
  align-items: start;
  margin-top: 1.25rem;
  color: var(--slate);
  font-size: 0.8125rem;
}

.checkbox-field input {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.2rem 0 0;
  accent-color: var(--teal);
}

.form-status {
  display: none;
  margin: 1rem 0 0;
  padding: 0.75rem;
  color: var(--green);
  background: var(--green-pale);
  border-radius: var(--radius-control);
  font-size: 0.875rem;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.callout {
  padding: 1.25rem 1.5rem;
  color: var(--ink-2);
  background: var(--blue-pale);
  border-left: 0.25rem solid var(--blue);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
}

.callout strong {
  color: var(--ink);
}

.accordion {
  border-top: 0.0625rem solid var(--line);
}

.accordion details {
  border-bottom: 0.0625rem solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.accordion summary::after {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  color: var(--teal-deep);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  max-width: 50rem;
  margin: 0 0 1.25rem;
  color: var(--slate);
}

/* Application shells */

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 12%, rgb(0 122 112 / 18%), transparent 28rem),
    radial-gradient(circle at 8% 92%, rgb(40 88 200 / 12%), transparent 26rem),
    var(--canvas);
}

.auth-header {
  padding: 1.5rem 0;
}

.auth-shell {
  display: grid;
  width: min(calc(100% - 2.5rem), 73rem);
  min-height: calc(100vh - 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.86fr);
  margin-inline: auto;
  overflow: hidden;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-raised);
}

.auth-story {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgb(0 122 112 / 42%), transparent 19rem),
    radial-gradient(circle at 26% 84%, rgb(40 88 200 / 26%), transparent 21rem),
    var(--ink);
}

.auth-story .eyebrow {
  color: #9ee9df;
}

.auth-story .eyebrow::before {
  background: #9ee9df;
}

.auth-story h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.auth-story p {
  max-width: 29rem;
  color: #c8d7e7;
  font-size: 1.0625rem;
}

.auth-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.auth-proof-item {
  padding: 1rem;
  background: rgb(255 255 255 / 9%);
  border: 0.0625rem solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-card);
}

.auth-proof-item strong {
  display: block;
  color: #9ee9df;
  font-size: 0.8rem;
}

.auth-proof-item span {
  display: block;
  margin-top: 0.35rem;
  color: #c8d7e7;
  font-size: 0.75rem;
  line-height: 1.45;
}

.auth-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.auth-card-heading h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.auth-card-heading p {
  margin: 0.75rem 0 0;
  color: var(--slate);
}

.session-notice {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding: 0.75rem;
  color: var(--ink-2);
  background: var(--surface-subtle);
  border-radius: var(--radius-control);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.session-notice svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.05rem;
  color: var(--blue);
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.auth-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin: 1.25rem 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  height: 0.0625rem;
  background: var(--line);
  content: "";
}

.sso-button {
  width: 100%;
  color: var(--ink);
  background: var(--surface);
  border: 0.0625rem solid var(--line-strong);
}

.sso-button:hover {
  color: var(--ink);
  background: var(--surface-subtle);
  border-color: var(--slate);
}

.sso-button .sso-mark {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 800;
}

.auth-footer-copy {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.auth-step {
  display: none;
}

.auth-step.is-active {
  display: block;
}

.stepper {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.stepper li {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: var(--muted);
  background: var(--surface-subtle);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 750;
}

.stepper li.is-active {
  color: var(--navy2);
  background: var(--teal);
}

.verification-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.verification-inputs input {
  min-width: 0;
  min-height: 3.25rem;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 750;
  text-align: center;
}

.app-page {
  min-height: 100vh;
  background: var(--canvas);
}

.app-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 17.5rem minmax(0, 1fr);
}

.app-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 1.5rem 1rem;
  color: #d7e5f1;
  background: var(--navy2);
}

.app-sidebar .brand {
  padding: 0 0.5rem;
  background-image: url("brand/ciliot-reverse-horizontal.svg");
}

.workspace-chip {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin: 2rem 0 1.5rem;
  padding: 0.75rem;
  color: #d7e5f1;
  background: rgb(255 255 255 / 8%);
  border: 0.0625rem solid rgb(255 255 255 / 11%);
  border-radius: var(--radius-control);
  font-size: 0.75rem;
}

.workspace-chip strong {
  display: block;
  color: var(--white);
  font-size: 0.8125rem;
}

.workspace-chip span {
  display: block;
  margin-top: 0.08rem;
  color: #a8c0d5;
}

.workspace-avatar {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  color: #9ee9df;
  background: rgb(0 122 112 / 32%);
  border-radius: 0.625rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.app-nav {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-nav-label {
  margin: 1.5rem 0 0.625rem;
  padding: 0 0.75rem;
  color: #86a0b8;
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-nav a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  color: #c8d7e7;
  border-radius: var(--radius-control);
  font-size: 0.875rem;
  font-weight: 620;
  text-decoration: none;
}

.app-nav a:hover {
  color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.app-nav a[aria-current="page"] {
  color: var(--navy2);
  background: var(--teal);
}

.app-nav svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgb(255 255 255 / 12%);
}

.sidebar-bottom a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  color: #c8d7e7;
  border-radius: var(--radius-control);
  font-size: 0.8125rem;
  text-decoration: none;
}

.sidebar-bottom a:hover {
  color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.sidebar-bottom svg {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.app-content {
  min-width: 0;
}

.app-topbar {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  border-bottom: 0.0625rem solid var(--line);
  background: rgb(255 255 255 / 92%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

.breadcrumb strong {
  color: var(--ink);
}

.breadcrumb span {
  color: var(--line-strong);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--slate);
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-control);
}

.icon-button:hover {
  color: var(--ink);
  background: var(--surface-subtle);
}

.icon-button svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  padding: 0.35rem 0.5rem 0.35rem 0.35rem;
  color: var(--ink);
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-round);
  font-size: 0.8125rem;
  font-weight: 680;
}

.user-avatar {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.app-main {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.page-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.page-title-row h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.page-title-row p {
  margin: 0.5rem 0 0;
  color: var(--slate);
}

.environment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.8rem;
  padding: 0.2rem 0.625rem;
  color: var(--blue-deep);
  background: var(--blue-pale);
  border-radius: var(--radius-round);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.environment-badge::before {
  width: 0.35rem;
  height: 0.35rem;
  background: currentcolor;
  border-radius: 50%;
  content: "";
}

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

.metric-card {
  min-height: 9rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-low);
}

.metric-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--slate);
  font-size: 0.8125rem;
  font-weight: 650;
}

.metric-card-value {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1;
}

.metric-card-value.critical {
  color: var(--red);
}

.metric-card-foot {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.trend-up {
  color: var(--success);
}

.trend-down {
  color: var(--red);
}

.dashboard-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  margin-top: 1rem;
}

.panel {
  overflow: hidden;
  background: var(--surface);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-low);
}

.panel-header {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid var(--line);
}

.panel-header h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.panel-header p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.panel-header a {
  flex: 0 0 auto;
  font-size: 0.8125rem;
  font-weight: 700;
}

.chart-wrap {
  padding: 1.25rem;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--slate);
  font-size: 0.75rem;
}

.legend-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.legend-dot.amber {
  background: var(--amber);
}

.line-chart {
  position: relative;
  height: 15rem;
  margin-top: 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(to bottom, transparent 19%, #e9eff5 20%, transparent 20.7%, transparent 39%, #e9eff5 40%, transparent 40.7%, transparent 59%, #e9eff5 60%, transparent 60.7%, transparent 79%, #e9eff5 80%, transparent 80.7%);
}

.line-chart::before {
  position: absolute;
  top: 0.75rem;
  right: 0;
  bottom: 1.75rem;
  left: 0;
  background:
    linear-gradient(169deg, transparent 0 8%, var(--teal) 8.4% 9.3%, transparent 9.7% 17%, var(--teal) 17.4% 18.3%, transparent 18.7% 27%, var(--teal) 27.4% 28.3%, transparent 28.7% 36%, var(--amber) 36.4% 37.3%, transparent 37.7% 45%, var(--amber) 45.4% 46.3%, transparent 46.7% 56%, var(--teal) 56.4% 57.3%, transparent 57.7% 67%, var(--teal) 67.4% 68.3%, transparent 68.7% 78%, var(--teal) 78.4% 79.3%, transparent 79.7% 89%, var(--teal) 89.4% 90.3%, transparent 90.7%);
  content: "";
}

.line-chart::after {
  position: absolute;
  top: 3rem;
  right: 19%;
  bottom: 1.75rem;
  width: 15%;
  background: rgb(245 177 35 / 16%);
  border-inline: 0.0625rem dashed rgb(154 103 0 / 55%);
  content: "";
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.25rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
}

.alert-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.alert-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid var(--line);
}

.alert-list li:last-child {
  border-bottom: 0;
}

.alert-indicator {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--amber);
  border-radius: 50%;
}

.alert-indicator.critical {
  background: var(--red);
}

.alert-indicator.healthy {
  background: var(--green);
}

.alert-list strong,
.alert-list span {
  display: block;
}

.alert-list strong {
  font-size: 0.8125rem;
  line-height: 1.35;
}

.alert-list span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.alert-time {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-align: right;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 1.65rem;
  padding: 0.2rem 0.55rem;
  color: var(--slate);
  background: var(--surface-subtle);
  border-radius: var(--radius-round);
  font-size: 0.6875rem;
  font-weight: 720;
  line-height: 1;
}

.status-chip::before {
  width: 0.35rem;
  height: 0.35rem;
  background: currentcolor;
  border-radius: 50%;
  content: "";
}

.status-chip.critical {
  color: var(--red);
  background: var(--red-pale);
}

.status-chip.attention {
  color: var(--amber);
  background: var(--amber-pale);
}

.status-chip.healthy {
  color: var(--success);
  background: var(--green-pale);
}

.status-chip.info {
  color: var(--blue);
  background: var(--blue-pale);
}

.status-chip.paused {
  color: var(--slate);
  background: var(--surface-subtle);
}

.task-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid var(--line);
}

.task-list li:last-child {
  border-bottom: 0;
}

.task-check {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border: 0.0625rem solid var(--success);
  border-radius: 50%;
}

.task-check.pending {
  background: var(--surface);
  border-color: var(--line-strong);
}

.task-check svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.task-list strong,
.task-list span {
  display: block;
}

.task-list strong {
  font-size: 0.8125rem;
}

.task-list span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 0.0625rem solid var(--line);
  vertical-align: middle;
}

.data-table th {
  color: var(--muted);
  background: #fbfcfe;
  font-size: 0.6875rem;
  font-weight: 780;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.data-table td {
  color: var(--slate);
  font-size: 0.8125rem;
}

.data-table td strong {
  color: var(--ink);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.table-link {
  font-weight: 700;
  text-decoration: none;
}

.context-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  color: var(--ink-2);
  background: var(--blue-pale);
  border-radius: var(--radius-control);
  font-size: 0.8125rem;
}

.context-bar strong {
  color: var(--ink);
}

.context-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.admin-accent {
  color: var(--maintenance);
  background: #eee8fa;
}

.admin-page .app-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--maintenance);
}

.admin-page .workspace-avatar {
  color: #e9d7fe;
  background: rgb(109 76 196 / 32%);
}

.admin-page .brand-mark {
  background: var(--maintenance);
}

.admin-page .button {
  background: var(--maintenance);
  border-color: var(--maintenance);
}

.admin-page .button:hover {
  background: #563aa0;
  border-color: #563aa0;
}

.admin-page .button-secondary,
.admin-page .sso-button {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-strong);
}

.admin-page .button-secondary:hover,
.admin-page .sso-button:hover {
  color: var(--ink);
  background: var(--surface-subtle);
  border-color: var(--slate);
}

.admin-page .button-quiet,
.admin-page .button-quiet:hover {
  color: var(--blue);
  background: transparent;
  border-color: transparent;
}

.admin-page .task-check {
  background: var(--maintenance);
  border-color: var(--maintenance);
}

.admin-page .eyebrow {
  color: var(--maintenance);
}

.admin-page .eyebrow::before {
  background: var(--maintenance);
}

.mobile-tabbar {
  display: none;
}

.demo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 2rem;
  color: var(--ink-2);
  background: var(--amber-pale);
  border-bottom: 0.0625rem solid #f1d48b;
  font-size: 0.75rem;
}

.demo-banner strong {
  color: #6e4800;
}

.demo-banner button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: underline;
}

@media (max-width: 64rem) {
  .hero-grid,
  .split-panel,
  .split-panel.reverse,
  .contact-layout,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 27rem;
    max-width: 35rem;
    margin-inline: auto;
  }

  .dashboard-preview {
    right: 10%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

  .site-footer-grid > :last-child {
    grid-column: 2 / 4;
  }

  .auth-shell {
    min-height: auto;
  }

  .auth-story {
    min-height: 28rem;
  }

  .app-shell {
    grid-template-columns: 5.25rem minmax(0, 1fr);
  }

  .app-sidebar {
    padding-inline: 0.75rem;
  }

  .app-sidebar .brand {
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .app-sidebar .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .workspace-chip {
    justify-content: center;
    padding: 0.5rem;
  }

  .workspace-chip div,
  .app-nav a span,
  .app-nav-label,
  .sidebar-bottom a span {
    display: none;
  }

  .app-nav a,
  .sidebar-bottom a {
    justify-content: center;
    padding-inline: 0.5rem;
  }

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

  .dashboard-two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 47.5rem) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .site-header-inner {
    min-height: 4.5rem;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 0.0625rem solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-raised);
  }

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

  .site-nav a {
    padding: 0.75rem;
  }

  .site-nav .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .dashboard-preview {
    top: 8%;
    right: 1%;
    width: 95%;
  }

  .signal-node {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
  }

  .signal-node.one {
    top: 1%;
    left: 0;
  }

  .signal-node.two {
    top: 52%;
    right: -0.75rem;
  }

  .signal-node.three {
    bottom: -0.25rem;
    left: 3%;
  }

  .stat-strip-grid,
  .card-grid,
  .resource-grid,
  .trust-grid,
  .signal-path {
    grid-template-columns: 1fr;
  }

  .stat-strip-item,
  .stat-strip-item:first-child {
    min-height: auto;
    padding: 1.25rem 0;
    border-inline: 0;
    border-bottom: 0.0625rem solid var(--line);
  }

  .stat-strip-item:last-child {
    border-bottom: 0;
  }

  .numbered-steps {
    grid-template-columns: 1fr;
  }

  .numbered-steps li {
    min-height: auto;
  }

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

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

  .site-footer-grid > :first-child,
  .site-footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .page-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .auth-header {
    padding-block: 1rem;
  }

  .auth-shell {
    width: min(calc(100% - 2rem), 73rem);
    border-radius: 1rem;
  }

  .auth-story {
    min-height: auto;
    padding: 2rem;
  }

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

  .auth-card {
    padding: 2rem;
  }

  .app-shell {
    display: block;
    padding-bottom: 4.75rem;
  }

  .app-sidebar {
    display: none;
  }

  .app-topbar {
    min-height: 4.25rem;
    padding: 0 1rem;
  }

  .breadcrumb {
    max-width: 12rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .topbar-actions .icon-button {
    display: none;
  }

  .user-menu {
    width: 2.5rem;
    padding: 0.25rem;
    font-size: 0;
  }

  .app-main {
    padding: 1.25rem 1rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .metric-card {
    min-height: 8.25rem;
    padding: 1rem;
  }

  .metric-card-value {
    font-size: 1.65rem;
  }

  .panel-header,
  .alert-list li,
  .task-list li,
  .data-table th,
  .data-table td {
    padding-inline: 1rem;
  }

  .mobile-tabbar {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 4.5rem;
    padding: 0.4rem 0.5rem max(0.4rem, env(safe-area-inset-bottom));
    background: rgb(255 255 255 / 96%);
    border-top: 0.0625rem solid var(--line);
    backdrop-filter: blur(1rem);
  }

  .mobile-tabbar a {
    display: grid;
    place-items: center;
    gap: 0.15rem;
    color: var(--muted);
    font-size: 0.625rem;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-tabbar a[aria-current="page"] {
    color: var(--teal-deep);
  }

  .admin-page .mobile-tabbar a[aria-current="page"] {
    color: var(--maintenance);
  }

  .mobile-tabbar svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .demo-banner {
    align-items: flex-start;
    padding: 0.625rem 1rem;
  }
}

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