:root {
  --bg: #f7f4ec;
  --bg-deep: #eee9dd;
  --surface: #fffefa;
  --surface-muted: #f2eee4;
  --ink: #102a43;
  --ink-soft: #29445a;
  --muted: #4c5b66;
  --primary: #123b52;
  --primary-hover: #0b3045;
  --accent: #0b665f;
  --accent-soft: #dcece7;
  --border: #c9c4b8;
  --border-strong: #a6a093;
  --success: #205b36;
  --success-bg: #e5f1e8;
  --partial: #7a4b00;
  --partial-bg: #fff0c2;
  --error: #8c2f2b;
  --error-bg: #f8e4e1;
  --focus: #005fcc;
  --council: #7767c7;
  --shadow-sm: 0 1px 2px rgb(16 42 67 / 7%), 0 8px 24px rgb(16 42 67 / 5%);
  --shadow-lg: 0 24px 80px rgb(16 42 67 / 16%), 0 4px 16px rgb(16 42 67 / 9%);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1180px;
  --font: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  color-scheme: light;
  font-family: var(--font);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.62;
}

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

.icon {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  color: currentcolor;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[id] {
  scroll-margin-top: 6.5rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--focus);
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.65rem;
  height: 2px;
  background: currentcolor;
}

.eyebrow--light {
  color: #86c8ba;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-reveal] .eyebrow > span {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1) 120ms;
}

.js [data-reveal].is-visible .eyebrow > span {
  transform: scaleX(1);
}

.card-label {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon,
.text-link .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgb(11 102 95 / 20%);
}

.button--primary:hover {
  background: #075750;
}

.button--dark {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.button--dark:hover {
  background: var(--primary-hover);
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--primary);
}

.button--light:hover {
  background: var(--bg);
}

.button--small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.625rem;
  color: var(--primary);
  font-weight: 750;
  text-decoration-color: var(--border-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
}

.text-link:hover {
  color: var(--accent);
  text-decoration-color: currentcolor;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgb(247 244 236 / 96%);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 32px rgb(16 42 67 / 6%);
}

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

.brand {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfdfdc;
  border-radius: 0.625rem;
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--primary);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.65rem;
}

.desktop-nav a {
  padding-block: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.6rem;
  background: var(--surface);
  color: var(--primary);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.js .nav-toggle {
  display: inline-flex;
}

.nav-toggle__icon {
  display: grid;
  width: 1.15rem;
  gap: 0.2rem;
}

.nav-toggle__icon i {
  display: block;
  height: 2px;
  border-radius: 99px;
  background: currentcolor;
}

.mobile-nav {
  display: grid;
  padding-block: 0 1rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  border-top: 1px solid var(--border);
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav a:last-child {
  color: var(--accent);
}

.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgb(16 42 67 / 4%) 1px, transparent 1px);
  background-size: 100% 4.5rem;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3.25rem, 7vw, 6rem);
}

.hero-copy h1 {
  max-width: 12.5ch;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: clamp(2.55rem, 11vw, 4.25rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  line-height: 1.63;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-contact {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-contact a {
  color: var(--accent);
  font-weight: 750;
  text-underline-offset: 0.22em;
}

.hero-facts {
  display: grid;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  transition: transform 180ms ease;
}

.hero-facts strong {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--ink);
  font-size: 0.89rem;
}

.fact-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.fact-icon .icon {
  width: 1.15rem;
  height: 1.15rem;
}

.hero-flow {
  position: relative;
  display: none;
  min-width: 0;
  min-height: 26rem;
  padding: 1.6rem 1.35rem 1.35rem;
  isolation: isolate;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgb(255 255 255 / 42%), rgb(231 245 238 / 36%));
  font-family: var(--font);
}

.hero-flow::before {
  position: absolute;
  z-index: -2;
  inset: -1.5rem -1rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(11 102 95 / 8%), transparent 67%);
  content: "";
  pointer-events: none;
}

.hero-flow__heading {
  margin-left: 3rem;
}

.hero-flow__heading > span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-flow__heading > strong {
  display: block;
  max-width: 14rem;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-flow__steps {
  position: relative;
  display: grid;
  gap: 0.1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-flow__steps::before {
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 1.05rem;
  width: 1px;
  background: linear-gradient(#9dbfc1, #5a9c91);
  content: "";
}

.hero-flow__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-height: 4.05rem;
}

.hero-flow__steps li > span {
  z-index: 1;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid #bed2d4;
  border-radius: 50%;
  background: #fffefa;
  color: #286791;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
}

.hero-flow__steps li:last-child > span {
  border-color: #0b665f;
  background: #0b665f;
  color: #fff;
}

.hero-flow__steps div {
  min-width: 0;
}

.hero-flow__steps strong,
.hero-flow__steps small {
  display: block;
  line-height: 1.35;
}

.hero-flow__steps strong {
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 780;
}

.hero-flow__steps small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.hero-flow__note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  margin: 0.8rem 0 0 3rem;
  color: var(--muted);
  font-size: 0.61rem;
}

.hero-flow__note strong {
  color: var(--accent);
}

.hero-flow__note span::before {
  margin-right: 0.45rem;
  color: #84a69f;
  content: "→";
}

.js .hero-flow__steps::before {
  transform: scaleY(0);
  transform-origin: top;
  animation: flow-line-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 160ms forwards;
}

.js .hero-flow__steps li {
  animation: flow-step-in 430ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero-flow__steps li:nth-child(2) {
  animation-delay: 90ms;
}

.js .hero-flow__steps li:nth-child(3) {
  animation-delay: 180ms;
}

.js .hero-flow__steps li:nth-child(4) {
  animation-delay: 270ms;
}

@keyframes flow-line-in {
  to { transform: scaleY(1); }
}

@keyframes flow-step-in {
  from { opacity: 0; transform: translateX(0.5rem); }
  to { opacity: 1; transform: none; }
}

@keyframes panel-enter {
  from { opacity: 0; transform: translateY(0.55rem); }
  to { opacity: 1; transform: none; }
}

.case-window {
  position: relative;
  width: min(100%, 46rem);
  margin: 0 auto;
}

.case-window__stage {
  position: relative;
  padding: 0.8rem;
  border: 1px solid rgb(11 102 95 / 38%);
  border-radius: var(--radius-lg);
}

.case-window__meta {
  position: absolute;
  z-index: 1;
  top: -0.9rem;
  right: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.7rem;
}

.case-window__meta > span:last-child {
  padding-inline: 0.45rem;
  background: var(--bg);
}

.demo-label {
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--surface);
  color: var(--accent);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-label--dark {
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 8%);
  color: #b6e1d8;
}

.app-frame {
  display: grid;
  min-width: 0;
  min-height: 29rem;
  overflow: hidden;
  border: 1px solid #cdd4db;
  border-radius: var(--radius);
  background: #f6f8fb;
  box-shadow: var(--shadow-lg);
}

.app-sidebar {
  display: none;
  flex-direction: column;
  min-width: 0;
  padding: 1.15rem 0.65rem 0.85rem;
  border-right: 1px solid #d9e0ea;
  background: #fff;
  color: #4b5563;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.67rem;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0.35rem 1rem;
  color: #111827;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
}

.app-brand img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.25rem;
}

.app-brand small {
  display: block;
  margin-top: 0.12rem;
  color: #4b5563;
  font-size: 0.62rem;
  font-weight: 650;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.05rem;
  margin-bottom: 0.22rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.45rem;
  line-height: 1.2;
}

.app-nav-item .icon {
  width: 0.9rem;
  height: 0.9rem;
}

.app-nav-item.is-active {
  background: #2f68b1;
  color: #fff;
  font-weight: 750;
}

.app-nav-item--bottom {
  margin-top: auto;
  margin-bottom: 0;
}

.app-content {
  min-width: 0;
  padding: clamp(0.95rem, 2.4vw, 1.35rem);
}

.app-heading {
  margin-bottom: 0.9rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

.app-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: -0.02em;
}

.app-heading p {
  margin: 0.22rem 0 0;
  color: #4b5563;
  font-size: 0.76rem;
  line-height: 1.4;
}

.queue-card,
.progress-card {
  border: 1px solid #d9e0ea;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 4px 16px rgb(17 24 39 / 4%);
  font-family: "Segoe UI", Arial, sans-serif;
}

.queue-card {
  margin-bottom: 0.75rem;
  padding: 0.85rem 0.9rem 0.9rem;
}

.queue-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: #111827;
  font-size: 0.82rem;
}

.queue-card__heading span {
  color: #6b7280;
  font-size: 0.63rem;
  font-weight: 700;
}

.queue-list {
  display: grid;
  gap: 0.35rem;
}

.queue-item {
  display: grid;
  min-width: 0;
  min-height: 2.65rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid #e2e7ee;
  border-radius: 0.5rem;
  color: #6b7280;
}

.queue-item.is-current {
  border-color: #9fc2ee;
  background: #eef5fd;
  color: #2f68b1;
}

.queue-item.is-complete {
  color: #27865b;
}

.queue-item .icon {
  width: 1rem;
  height: 1rem;
}

.queue-item strong,
.queue-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.queue-item strong {
  color: #111827;
  font-size: 0.68rem;
}

.queue-item small {
  color: #6b7280;
  font-size: 0.58rem;
}

.queue-item em {
  padding: 0.18rem 0.4rem;
  border-radius: 99px;
  background: #eef1f5;
  color: #596474;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.queue-item.is-current em {
  background: #dceafa;
  color: #255f9f;
}

.queue-item.is-complete em {
  background: #e4f2e9;
  color: #247348;
}

.progress-card {
  padding: 0.8rem 0.9rem;
}

.progress-card__top {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
  font-size: 0.67rem;
}

.progress-card__top span {
  color: #4b5563;
  font-weight: 700;
}

.progress-card__top strong {
  color: #2f68b1;
}

.progress-track {
  height: 0.42rem;
  overflow: hidden;
  border-radius: 99px;
  background: #dde3ec;
}

.progress-track span {
  display: block;
  width: 0.65rem;
  height: 100%;
  border-radius: inherit;
  background: #2f68b1;
}

.progress-track .progress-track__value {
  width: 58%;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.status-grid > div {
  min-width: 0;
  padding: 0.48rem 0.55rem;
  border: 1px solid #d9e0ea;
  border-radius: 0.45rem;
  background: #fbfcfe;
}

.status-grid span,
.status-grid strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-grid span {
  margin-bottom: 0.14rem;
  color: #4b5563;
  font-size: 0.58rem;
  font-weight: 700;
}

.status-grid strong {
  color: #111827;
  font-size: 0.66rem;
}

.app-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

.app-action {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  background: #2f68b1;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 750;
  white-space: nowrap;
}

.app-action .icon {
  width: 0.86rem;
  height: 0.86rem;
}

.app-action--folder {
  background: #27865b;
}

.app-action.is-disabled {
  background: #dbe2ec;
  color: #8c99aa;
}

.app-action.is-processing {
  background: #dceafa;
  color: #255f9f;
}

.case-window figcaption {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.registry-strip {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.registry-strip__inner {
  display: grid;
  gap: 1rem;
  padding-block: 1.25rem;
}

.registry-strip__label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.registry-list {
  display: grid;
  gap: 0.65rem;
}

.registry-list span {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-left: 2px solid #b9d8d1;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.3;
}

.js .registry-strip__inner .registry-list span {
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 360ms ease, transform 360ms ease;
}

.js .registry-strip__inner.is-visible .registry-list span {
  opacity: 1;
  transform: none;
}

.js .registry-strip__inner.is-visible .registry-list span:nth-child(2) { transition-delay: 60ms; }
.js .registry-strip__inner.is-visible .registry-list span:nth-child(3) { transition-delay: 120ms; }
.js .registry-strip__inner.is-visible .registry-list span:nth-child(4) { transition-delay: 180ms; }

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.faq-intro h2,
.context-layout h2 {
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: clamp(2.15rem, 6vw, 3.65rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p,
.faq-intro > p:not(.eyebrow),
.context-layout > div > p:not(.eyebrow, .context-note) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-heading--split {
  display: grid;
  max-width: none;
  gap: 1.5rem;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 34rem;
  margin-bottom: 0;
}

.role-boundary {
  background: var(--surface);
}

.boundary-board {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.boundary-side {
  position: relative;
  padding: clamp(1.75rem, 5vw, 3rem);
}

.boundary-side--app {
  background: #f0f6f3;
}

.boundary-side--human {
  background: var(--surface);
}

.boundary-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgb(16 42 67 / 12%);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
}

.boundary-side h3 {
  position: relative;
  max-width: 12ch;
  margin-bottom: 1.75rem;
  color: var(--primary);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.check-list .icon {
  color: var(--accent);
}

.boundary-trace {
  position: relative;
  display: grid;
  min-height: 4.5rem;
  place-items: center;
  background: var(--surface-muted);
}

.boundary-trace::before {
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--border-strong);
  content: "";
}

.boundary-trace i {
  z-index: 1;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--surface);
}

.boundary-trace i .icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.boundary-note {
  display: flex;
  max-width: 44rem;
  align-items: center;
  gap: 0.65rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.boundary-note::before,
.boundary-note::after {
  width: 2rem;
  height: 1px;
  flex: 1 1 auto;
  background: var(--border);
  content: "";
}

.boundary-note strong {
  color: var(--accent);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
}

.process::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgb(134 200 186 / 24%);
  border-radius: 50%;
  content: "";
}

.process .section-heading h2 {
  color: #fff;
}

.process .section-heading > p:not(.eyebrow) {
  color: #cad5dc;
}

.process-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4rem;
  width: 1px;
  background: rgb(255 255 255 / 24%);
  content: "";
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 2.25rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 2.5rem;
}

.js .process-step:nth-child(2) { transition-delay: 70ms; }
.js .process-step:nth-child(3) { transition-delay: 140ms; }
.js .process-step:nth-child(4) { transition-delay: 210ms; }

.process-index {
  color: #86c8ba;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.process-node {
  z-index: 1;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid #86c8ba;
  border-radius: 50%;
  background: var(--primary);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.process-node .icon {
  width: 1rem;
  height: 1rem;
  color: #86c8ba;
  transition: color 180ms ease, transform 180ms ease;
}

.process-step .card-label {
  color: #86c8ba;
  transition: color 180ms ease;
}

.process-step h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  transition: transform 180ms ease;
}

.process-step p:last-child {
  max-width: 31rem;
  margin-bottom: 0;
  color: #cad5dc;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.workbench {
  background: var(--bg);
}

.product-tabs {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.product-tab-list {
  display: none;
  border-bottom: 1px solid var(--border);
}

.js .product-tab-list {
  display: grid;
}

.product-tab-list button {
  display: flex;
  min-height: 3.75rem;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.15rem;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-muted);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 720;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.product-tab-list button:last-child {
  border-bottom: 0;
}

.product-tab-list button span {
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
}

.product-tab-list button[aria-selected="true"] {
  background: var(--surface);
  box-shadow: inset 3px 0 0 var(--accent);
  color: var(--primary);
}

.product-tab-list button[aria-selected="true"] span {
  color: var(--accent);
}

.product-panel {
  display: grid;
  min-width: 0;
  gap: 2.5rem;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.js .product-panel.is-entering > * {
  animation: panel-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .product-panel.is-entering > *:nth-child(2) {
  animation-delay: 70ms;
}

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

.product-panel__copy h3 {
  max-width: 16ch;
  margin-bottom: 1.1rem;
  color: var(--primary);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.product-panel__copy > p:not(.card-label) {
  max-width: 35rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.feature-points {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease, transform 180ms ease;
}

.feature-points li::before {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

.panel-demo {
  align-self: center;
  min-width: 0;
  border: 1px solid #d8d3c9;
  border-radius: var(--radius);
  background: #f8f7f2;
  box-shadow: 0 18px 50px rgb(16 42 67 / 9%);
}

.panel-demo--sources {
  padding: 0.75rem;
}

.source-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.75rem;
  border-bottom: 1px solid #ddd9d0;
}

.source-row:last-child {
  border-bottom: 0;
}

.source-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid currentcolor;
  border-radius: 50%;
}

.source-row strong,
.source-row small {
  display: block;
}

.source-row strong {
  color: var(--primary);
  font-size: 0.9rem;
}

.source-row small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.source-row em {
  padding: 0.28rem 0.5rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.source-row.is-complete {
  color: var(--success);
}

.source-row.is-complete em {
  background: var(--success-bg);
  color: var(--success);
}

.source-row.is-partial {
  color: var(--partial);
}

.source-row.is-partial em {
  background: var(--partial-bg);
  color: var(--partial);
}

.source-row.is-waiting {
  color: var(--muted);
}

.source-row.is-waiting em {
  background: #e8e5de;
  color: var(--muted);
}

.output-tree {
  padding: 1.25rem;
  color: var(--ink-soft);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
}

.tree-root,
.tree-level > div:not(.tree-files) {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.4rem;
  font-weight: 750;
}

.tree-root {
  background: #e4eee9;
  color: var(--accent);
}

.tree-level {
  margin-left: 0.8rem;
  padding: 0.65rem 0 0.3rem 0.9rem;
  border-left: 1px solid var(--border);
}

.tree-files {
  display: grid;
  gap: 0.35rem;
  margin: 0.2rem 0 0.8rem 0.75rem;
  color: var(--muted);
}

.tree-files span,
.tree-export span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.output-tree i {
  min-width: 2.75rem;
  color: var(--accent);
}

.tree-export {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.65rem;
  padding: 0.85rem;
  border-top: 1px solid var(--border);
  color: var(--primary);
  font-weight: 750;
}

.council-table {
  overflow: hidden;
  font-size: 0.78rem;
}

.council-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.5rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid #ddd9d0;
}

.council-table > div:last-child {
  border-bottom: 0;
}

.council-table__head {
  background: #e9e7f8;
  color: #493d8c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.council-table em {
  padding: 0.25rem 0.45rem;
  border-radius: 99px;
  background: var(--success-bg);
  color: var(--success);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
}

.council-table em.is-attention {
  background: var(--partial-bg);
  color: var(--partial);
}

.council {
  position: relative;
  overflow: hidden;
  background: #102a43;
  color: #fff;
}

.council-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
}

.council-layout {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.council-copy h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.council-copy > p:not(.eyebrow) {
  max-width: 37rem;
  color: #cad5dc;
  font-size: 1.04rem;
}

.council-features {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  list-style: none;
}

.council-features li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.7rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: #e3eaee;
  font-size: 0.9rem;
}

.council-features span {
  color: #86c8ba;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.signal-card {
  min-width: 0;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgb(255 255 255 / 17%);
  border-radius: var(--radius-lg);
  background: #183752;
  box-shadow: 0 24px 80px rgb(0 0 0 / 22%);
}

.signal-card__top {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.signal-card__top h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  letter-spacing: -0.025em;
}

.signal-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid #c89a44;
  border-radius: 99px;
  background: #5a4725;
  color: #ffe1a6;
  font-size: 0.75rem;
  font-weight: 800;
}

.signal-badge i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #f4c66f;
}

.relation-map {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.relation-person {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-sm);
  background: #102a43;
}

.relation-person span,
.relation-person strong,
.relation-person small {
  display: block;
}

.relation-person span {
  margin-bottom: 0.3rem;
  color: #9eb1bf;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.relation-person strong {
  margin-bottom: 0.2rem;
  font-size: 0.94rem;
}

.relation-person small {
  color: #9eb1bf;
  font-size: 0.75rem;
}

.relation-link {
  position: relative;
  display: grid;
  min-height: 2.5rem;
  place-items: center;
}

.relation-link::before {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #86c8ba;
  content: "";
}

.relation-link span {
  z-index: 1;
  padding: 0.28rem 0.5rem;
  border: 1px solid #86c8ba;
  border-radius: 99px;
  background: #183752;
  color: #b6e1d8;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.signal-detail {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.signal-detail span {
  color: #9eb1bf;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-detail strong {
  font-size: 0.83rem;
  font-weight: 650;
}

.signal-detail--action strong {
  color: #b6e1d8;
}

.signal-disclaimer {
  margin: 0.5rem 0 0;
  padding: 0.85rem;
  border-left: 3px solid #c89a44;
  background: rgb(255 225 166 / 8%);
  color: #dbe4e9;
  font-size: 0.75rem;
  line-height: 1.5;
}

.context-section {
  border-block: 1px solid var(--border);
  background: var(--bg-deep);
}

.context-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.context-mark {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}

.context-layout h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 3.15rem);
}

.context-note {
  max-width: 45rem;
  margin: 1.4rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.source-links {
  display: grid;
  border-top: 1px solid var(--border);
}

.source-links a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.source-links a:hover {
  color: var(--accent);
}

.source-links .icon {
  width: 1rem;
  height: 1rem;
}

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

.faq-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.faq-intro {
  max-width: 31rem;
}

.faq-intro h2 {
  font-size: clamp(2.15rem, 6vw, 3.35rem);
}

.faq-intro .text-link {
  margin-top: 0.75rem;
}

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

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  color: var(--primary);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 730;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 45rem;
  margin: -0.35rem 3rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: var(--accent);
  color: #fff;
}

.final-cta::before {
  position: absolute;
  top: -16rem;
  left: -10rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  content: "";
}

.contact-layout {
  position: relative;
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.final-cta .eyebrow {
  color: #c1e5dd;
}

.final-cta h2 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 7vw, 4.25rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  color: #d7eee9;
  font-size: 1.08rem;
}

.contact-copy small {
  display: block;
  margin-top: 1.5rem;
  color: #c1e5dd;
  font-size: 0.82rem;
}

.contact-copy small a {
  color: #fff;
  font-weight: 750;
  text-underline-offset: 0.22em;
}

.contact-promises {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-promises li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
}

.contact-promises li::before {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 14%);
  color: #fff;
  content: "✓";
  font-size: 0.72rem;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 5vw, 2rem);
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 60px rgb(3 34 31 / 28%);
}

.contact-form__heading {
  margin-bottom: 0.25rem;
}

.contact-form__heading > span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form__heading h3 {
  margin: 0.3rem 0 0.35rem;
  color: var(--primary);
  font-size: clamp(1.55rem, 5vw, 2rem);
  letter-spacing: -0.035em;
}

.contact-form__heading p,
.contact-privacy {
  margin: 0;
  color: var(--muted);
}

.contact-form__heading p {
  font-size: 0.88rem;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-field > span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.65rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

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

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
}

.contact-field__error {
  display: block;
  color: #8c2f2b;
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-field [aria-invalid="true"] {
  border-color: #b83932;
  box-shadow: 0 0 0 2px rgb(184 57 50 / 18%);
}

.contact-message {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.contact-message summary {
  color: var(--accent);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-message summary span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
}

.contact-message .contact-field {
  margin-top: 0.85rem;
}

.button--contact {
  width: 100%;
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.contact-privacy {
  font-size: 0.72rem;
  line-height: 1.5;
}

.contact-privacy a {
  color: var(--accent);
  font-weight: 700;
}

.contact-notice {
  padding: 0.75rem 0.85rem;
  border: 1px solid;
  border-radius: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-notice--success {
  border-color: #9bcfb2;
  background: #e8f5ed;
  color: #1d7049;
}

.contact-notice--error {
  border-color: #ddb0ad;
  background: #faeae8;
  color: #8c2f2b;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-footer {
  padding-block: 4rem 1.5rem;
  background: #0b2234;
  color: #d5e0e6;
}

.privacy-page {
  min-height: 100vh;
  background: var(--bg);
}

.privacy-shell {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
  padding-block: clamp(2rem, 8vw, 6rem);
}

.privacy-back {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.privacy-shell h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.privacy-lead {
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.privacy-shell section {
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
}

.privacy-shell section h2 {
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.privacy-shell section p {
  margin: 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.brand--footer .brand-copy strong {
  color: #fff;
}

.brand--footer .brand-copy span {
  color: #aebdc6;
}

.footer-grid > div:first-child > p {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: #aebdc6;
  font-size: 0.82rem;
}

.footer-grid nav {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-grid nav a {
  width: fit-content;
  color: #d5e0e6;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: #86c8ba;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-contact span,
.footer-contact small {
  color: #aebdc6;
  font-size: 0.75rem;
}

.footer-contact a {
  width: fit-content;
  color: #fff;
  font-size: 1rem;
  font-weight: 720;
  text-underline-offset: 0.25em;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: #8fa2ae;
  font-size: 0.75rem;
}

@media (min-width: 22.5rem) {
  .registry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 40rem) {
  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .app-sidebar {
    display: flex;
  }

  .product-tab-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-tab-list button {
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .product-tab-list button:last-child {
    border-right: 0;
  }

  .product-tab-list button[aria-selected="true"] {
    box-shadow: inset 0 3px 0 var(--accent);
  }

  .signal-card__top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .relation-map {
    grid-template-columns: minmax(0, 1fr) 4.5rem minmax(0, 1fr);
    align-items: center;
  }

  .relation-link::before {
    width: 100%;
    height: 1px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) 0.8fr 0.9fr;
  }
}

@media (min-width: 52rem) and (max-width: 67.999rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.46fr);
    align-items: center;
    column-gap: clamp(2rem, 4vw, 3rem);
    row-gap: clamp(3.25rem, 7vw, 5rem);
  }

  .hero-copy {
    grid-row: 1;
    grid-column: 1;
  }

  .hero-flow {
    display: block;
    grid-row: 1;
    grid-column: 2;
    align-self: start;
    margin-top: 0.5rem;
  }

  .case-window {
    grid-row: 2;
    grid-column: 1 / -1;
  }
}

@media (min-width: 52rem) {
  .section-heading--split {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: end;
    gap: 4rem;
  }

  .boundary-board {
    grid-template-columns: minmax(0, 1fr) 5rem minmax(0, 1fr);
  }

  .boundary-trace {
    min-height: 100%;
  }

  .boundary-trace::before {
    top: 50%;
    width: 100%;
    height: 2px;
  }

  .product-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    align-items: center;
  }

  .context-layout {
    grid-template-columns: 4rem minmax(0, 1.35fr) minmax(16rem, 0.65fr);
    gap: 2rem 3rem;
  }

  .faq-layout {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .faq-intro {
    position: sticky;
    top: 7rem;
  }
}

@media (min-width: 60rem) {
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .process-list::before {
    top: 1rem;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .process-step {
    grid-template-columns: 1fr;
    grid-template-rows: 2rem 1rem auto;
    gap: 0.7rem;
    align-items: start;
    padding: 0 2.25rem 0 0;
  }

  .process-index {
    grid-row: 2;
    align-self: start;
    margin: 0;
  }

  .process-node {
    grid-row: 1;
  }

  .process-step > div:last-child {
    grid-row: 3;
    min-width: 0;
  }
}

@media (min-width: 56rem) {
  .contact-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 0.72fr);
  }
}

@media (min-width: 64rem) {
  .registry-strip__inner {
    grid-template-columns: 12rem minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

  .registry-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .desktop-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .js .nav-toggle,
  .mobile-nav {
    display: none;
  }
}

@media (min-width: 68rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(36rem, 1.12fr);
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 4.5vw, 4.1rem);
  }

  .council-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(32rem, 1.08fr);
  }
}

@media (max-width: 25rem) {
  .brand-copy span {
    display: none;
  }

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

  .queue-placeholder small {
    display: none;
  }

  .queue-placeholder {
    min-height: 6.75rem;
  }

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

  .status-grid > div:last-child {
    display: none;
  }

  .app-actions {
    grid-template-columns: 1fr 1fr;
  }

  .app-action:first-child {
    grid-column: 1 / -1;
  }

  .boundary-note {
    display: block;
  }

  .boundary-note::before,
  .boundary-note::after {
    display: none;
  }

  .source-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .source-row em {
    grid-column: 2;
    width: fit-content;
  }

  .council-table > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .council-table > div > span:nth-child(2) {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-facts li:hover {
    transform: translateY(-0.15rem);
  }

  .hero-facts li:hover .fact-icon {
    border-color: #86c8ba;
    background: #edf7f4;
    transform: scale(1.04);
  }

  .process-step:hover .process-index {
    color: #fff;
  }

  .process-step:hover .process-node {
    border-color: #b7eadf;
    background: #86c8ba;
    box-shadow: 0 0 0 0.4rem rgb(134 200 186 / 12%);
    transform: scale(1.07);
  }

  .process-step:hover .process-node .icon {
    color: var(--primary);
    transform: translateX(0.08rem);
  }

  .process-step:hover .card-label {
    color: #b7eadf;
  }

  .process-step:hover h3 {
    transform: translateX(0.25rem);
  }

  .process-step:hover p:last-child {
    color: #eef6f7;
  }

  .product-tab-list button:not([aria-selected="true"]):hover {
    background: #eeece5;
    color: var(--primary);
  }

  .feature-points li:hover {
    color: var(--primary);
    transform: translateX(0.2rem);
  }

  .feature-points li:hover::before {
    transform: scale(1.45);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}

@media (prefers-contrast: more) {
  :root {
    --border: #7e796f;
    --muted: #344650;
  }

  .button,
  .panel-demo,
  .boundary-board,
  .product-tabs {
    border-width: 2px;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .final-cta,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .hero {
    padding-block: 2rem;
  }

  .process,
  .council {
    background: #fff;
    color: #000;
  }

  .process .section-heading h2,
  .council-copy h2 {
    color: #000;
  }
}
