:root {
  --canvas: #eef0f4;
  --paper: #fbfcfe;
  --paper-strong: #ffffff;
  --ink: #12141a;
  --muted: #5d6470;
  --muted-strong: #3f4651;
  --line: #ccd1da;
  --line-strong: #aeb5c0;
  --focus: #2f5bff;
  --danger: #b42318;
  --success: #137a55;
  --warning: #9a5b00;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-width: 1680px;
  --page-pad: clamp(18px, 3vw, 52px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  width: min(100%, var(--max-width));
  min-height: 92px;
  margin: 0 auto;
  padding: 22px var(--page-pad) 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 12px;
  background: var(--focus);
  color: #fff;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.top-actions,
.action-row,
.dialog-footer,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-button,
.danger-button,
.quiet-button,
.icon-button,
.text-button,
.tab-button {
  min-height: 44px;
  border: 0;
  cursor: pointer;
  transition:
    transform 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.primary-button,
.danger-button,
.quiet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 650;
}

.primary-button {
  background: var(--ink);
  color: white;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #2c3038;
}

.danger-button {
  background: var(--danger);
  color: white;
}

.danger-button:hover {
  transform: translateY(-2px);
  filter: brightness(0.86);
}

.primary-button:disabled,
.danger-button:disabled,
.quiet-button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.primary-button[aria-busy="true"],
.danger-button[aria-busy="true"],
.quiet-button[aria-busy="true"],
.icon-button[aria-busy="true"] {
  cursor: wait;
}

.quiet-button {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.quiet-button:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.icon-button {
  width: 44px;
  min-width: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: transparent;
  font-size: 25px;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.75);
}

.icon-button svg,
.search-field svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(19, 122, 85, 0.12);
}

.account-summary {
  max-width: 150px;
  overflow: hidden;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

button.account-summary {
  min-height: 44px;
  padding-inline: 14px;
}

main {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 28px var(--page-pad) 72px;
}

.loading-view,
.empty-view,
.error-view {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.loading-view p,
.empty-view p,
.error-view p {
  color: var(--muted);
}

.auth-stage {
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: clamp(40px, 8vw, 140px);
}

.auth-intro {
  max-width: 780px;
}

.auth-intro h1 {
  max-width: 10ch;
  margin: 10px 0 24px;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 620;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.auth-intro > p:last-child {
  max-width: 56ch;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.65;
}

.auth-form {
  padding: clamp(24px, 4vw, 46px);
  display: grid;
  gap: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.auth-form .primary-button {
  width: 100%;
  margin-top: 4px;
}

.auth-callout h2,
.security-dialog h2 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.auth-callout > p:last-child,
.security-note {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.text-button {
  width: fit-content;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--focus);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.text-button:hover {
  color: var(--ink);
}

.auth-help,
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-message.is-error {
  color: var(--danger);
  font-weight: 650;
}

body.is-project-detail main {
  width: min(100%, 1400px);
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--danger) 46%, var(--line));
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--danger) 10%, var(--paper-strong));
  color: var(--danger);
  font-weight: 650;
  line-height: 1.45;
}

.form-error[hidden] {
  display: none;
}

.form-message.is-success {
  color: var(--success);
  font-weight: 650;
}

.gallery-head {
  margin: 26px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.gallery-title-wrap {
  max-width: 880px;
}

.gallery-head h1,
.project-hero h1 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 620;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.gallery-lede {
  max-width: 66ch;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.gallery-count {
  min-width: 152px;
  padding: 16px 0 7px;
  border-bottom: 1px solid var(--line-strong);
  text-align: right;
}

.gallery-count strong {
  display: block;
  font-family: Bahnschrift, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.gallery-count span {
  color: var(--muted);
  font-size: 13px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  perspective: 1400px;
}

.project-cover {
  --cover-bg: #17191f;
  --cover-fg: #f4f5f7;
  --cover-accent: #a4adff;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  isolation: isolate;
  min-width: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.4vw, 38px);
  border-radius: var(--radius-lg);
  background: var(--cover-bg);
  color: var(--cover-fg);
  text-decoration: none;
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition:
    transform 520ms var(--ease-out),
    background-color 420ms var(--ease-out),
    color 420ms var(--ease-out),
    box-shadow 520ms var(--ease-out);
  will-change: transform;
}

.project-cover.tilt-nw { --rx: 4deg; --ry: -4deg; --mx: 18%; --my: 18%; }
.project-cover.tilt-n { --rx: 5deg; --ry: 0deg; --mx: 50%; --my: 16%; }
.project-cover.tilt-ne { --rx: 4deg; --ry: 4deg; --mx: 82%; --my: 18%; }
.project-cover.tilt-w { --rx: 0deg; --ry: -5deg; --mx: 16%; --my: 50%; }
.project-cover.tilt-e { --rx: 0deg; --ry: 5deg; --mx: 84%; --my: 50%; }
.project-cover.tilt-sw { --rx: -4deg; --ry: -4deg; --mx: 18%; --my: 82%; }
.project-cover.tilt-s { --rx: -5deg; --ry: 0deg; --mx: 50%; --my: 84%; }
.project-cover.tilt-se { --rx: -4deg; --ry: 4deg; --mx: 82%; --my: 82%; }

.project-cover::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--cover-fg);
  clip-path: circle(0% at var(--mx, 78%) var(--my, 18%));
  opacity: 0;
  transition:
    clip-path 620ms var(--ease-out),
    opacity 180ms ease-out;
}

.project-cover > *:not(.cover-motif) {
  position: relative;
  z-index: 2;
  transform: translateZ(26px);
}

.cover-top,
.cover-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cover-top {
  align-items: flex-start;
}

.cover-identity {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.cover-logo {
  width: clamp(46px, 4.2vw, 58px);
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 17, 34, 0.12);
}

.cover-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cover-index,
.cover-status,
.cover-foot span,
.cover-foot strong {
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: clamp(10px, 0.85vw, 12px);
  line-height: 1.3;
}

.cover-index {
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.68;
}

.cover-status {
  max-width: 55%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.cover-main {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
}

.cover-main h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.75rem, 2.55vw, 3.25rem);
  font-weight: 650;
  line-height: 0.93;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.cover-main.is-long-title h2 {
  font-size: clamp(1.55rem, 2.15vw, 2.65rem);
}

.cover-main p {
  max-width: 40ch;
  margin: 20px 0 0;
  color: currentColor;
  font-size: clamp(0.86rem, 1vw, 1rem);
  line-height: 1.48;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cover-foot {
  align-items: flex-end;
}

.cover-foot strong {
  display: block;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
}

.cover-foot span {
  display: block;
  margin-top: 5px;
  opacity: 0.72;
}

.cover-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 22px;
  transition: transform 320ms var(--ease-out);
}

.cover-motif {
  position: absolute;
  z-index: 0;
  top: 12%;
  right: 8%;
  width: 42%;
  aspect-ratio: 1;
  color: var(--cover-accent);
  opacity: 0.78;
  transform: translateZ(8px) rotate(-8deg);
  transition:
    transform 650ms var(--ease-out),
    opacity 400ms ease-out;
}

.cover-motif::before,
.cover-motif::after {
  content: "";
  position: absolute;
}

.theme-acid { --cover-bg: #11130f; --cover-fg: #eaff58; --cover-accent: #f7f8e8; }
.theme-sky { --cover-bg: #bdefff; --cover-fg: #10263d; --cover-accent: #ffffff; }
.theme-coral { --cover-bg: #401b3b; --cover-fg: #ff816f; --cover-accent: #ffd9cf; }
.theme-cobalt { --cover-bg: #3155ff; --cover-fg: #fff5e9; --cover-accent: #ff9a48; }
.theme-mint { --cover-bg: #a8ffd4; --cover-fg: #123e30; --cover-accent: #ffffff; }
.theme-ink { --cover-bg: #17191f; --cover-fg: #f4f5f7; --cover-accent: #a4adff; }
.theme-violet { --cover-bg: #d9c8ff; --cover-fg: #261744; --cover-accent: #ffffff; }
.theme-amber { --cover-bg: #ffcb61; --cover-fg: #3c2610; --cover-accent: #fff1ce; }

.project-hero[class*="theme-"] {
  --project-bg: var(--cover-bg);
  --project-fg: var(--cover-fg);
}

.theme-acid .cover-motif {
  background-image:
    linear-gradient(currentColor 1px, transparent 1px),
    linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 26px 26px;
}

.theme-acid .cover-motif::after {
  inset: 24%;
  border: 8px solid currentColor;
}

.theme-sky .cover-motif {
  border: 8px solid currentColor;
}

.theme-sky .cover-motif::before {
  inset: 0 47%;
  background: currentColor;
}

.theme-sky .cover-motif::after {
  inset: 47% 0;
  background: currentColor;
}

.theme-coral .cover-motif,
.theme-mint .cover-motif {
  border: 8px solid currentColor;
  border-radius: 50%;
}

.theme-coral .cover-motif::before,
.theme-mint .cover-motif::before {
  inset: 20%;
  border: 7px solid currentColor;
  border-radius: 50%;
}

.theme-coral .cover-motif::after,
.theme-mint .cover-motif::after {
  inset: 42%;
  border-radius: 50%;
  background: currentColor;
}

.theme-mint .cover-motif::after {
  inset: 0 48%;
  border-radius: 0;
  background: currentColor;
  transform: rotate(42deg);
  transform-origin: center;
}

.theme-cobalt .cover-motif::before {
  width: 100%;
  height: 28%;
  top: 8%;
  left: 0;
  background: currentColor;
  box-shadow: -22px 46px 0 currentColor, -44px 92px 0 currentColor;
}

.theme-ink .cover-motif {
  border: 7px solid currentColor;
  border-radius: 8px;
}

.theme-ink .cover-motif::before {
  width: 54%;
  height: 20%;
  top: -7px;
  left: -7px;
  border: 7px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.theme-ink .cover-motif::after {
  inset: 24% 16%;
  border-top: 5px solid currentColor;
  border-bottom: 5px solid currentColor;
}

.theme-violet .cover-motif::before {
  width: 22px;
  height: 22px;
  top: 8%;
  left: 10%;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    80px 34px 0 currentColor,
    24px 98px 0 currentColor,
    112px 116px 0 currentColor;
}

.theme-violet .cover-motif::after {
  width: 132%;
  height: 6px;
  top: 51%;
  left: -16%;
  background: currentColor;
  transform: rotate(34deg);
}

.theme-amber .cover-motif {
  clip-path: polygon(0 72%, 28% 72%, 28% 48%, 56% 48%, 56% 24%, 84% 24%, 84% 0, 100% 0, 100% 100%, 0 100%);
  background: currentColor;
}

@media (hover: hover) and (pointer: fine) {
  .project-cover:hover {
    background: var(--cover-fg);
    color: var(--cover-bg);
    box-shadow: 18px 26px 52px rgba(20, 22, 30, 0.22);
  }

  .project-cover:hover::after {
    clip-path: circle(118% at var(--mx, 78%) var(--my, 18%));
    opacity: 1;
  }

  .project-cover:hover .cover-motif {
    color: var(--cover-accent);
    opacity: 0.95;
    transform: translateZ(42px) rotate(8deg) scale(1.08);
  }

  .project-cover:hover .cover-arrow {
    transform: translate(4px, -4px) rotate(-8deg);
  }
}

.section-bar {
  margin: 34px 0 18px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.section-bar p {
  margin: 0;
  color: var(--muted);
}

.text-button {
  padding: 0;
  background: transparent;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.breadcrumb {
  margin: 12px 0 26px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-weight: 600;
  text-decoration: none;
}

.back-link:hover {
  color: var(--ink);
}

.project-hero {
  --project-bg: #17191f;
  --project-fg: #f4f5f7;
  position: relative;
  isolation: isolate;
  min-height: clamp(330px, 39vw, 600px);
  overflow: hidden;
  padding: clamp(26px, 4.6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 34px;
  border-radius: var(--radius-lg);
  background: var(--project-bg);
  color: var(--project-fg);
}

.project-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(46vw, 660px);
  aspect-ratio: 1;
  top: -30%;
  right: -6%;
  border: clamp(18px, 3vw, 44px) solid currentColor;
  border-radius: 50%;
  opacity: 0.15;
}

.project-hero h1 {
  max-width: 12ch;
  overflow-wrap: anywhere;
}

.project-hero-copy,
.project-hero-meta {
  min-width: 0;
}

.project-hero-logo {
  width: 72px;
  aspect-ratio: 1;
  margin: 0 0 22px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 42%, transparent);
  border-radius: 16px;
  background: color-mix(in srgb, white 88%, transparent);
}

.project-hero-logo img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
}

.project-hero-copy p {
  max-width: 58ch;
  margin: 24px 0 0;
  color: color-mix(in srgb, currentColor 74%, transparent);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.55;
}

.project-hero-meta {
  display: grid;
  align-content: end;
  gap: 12px;
}

.hero-meta-row {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  font-size: 16px;
}

.hero-meta-row span:first-child {
  opacity: 0.68;
}

.hero-meta-row strong {
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.project-actions {
  margin: 16px 0 34px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.project-links {
  display: flex;
  gap: 12px;
}

.project-links a {
  color: var(--muted-strong);
  font-size: 14px;
  text-underline-offset: 4px;
}

.tabs {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  min-width: max-content;
  padding: 0 18px;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
}

.tab-button[aria-selected="true"] {
  border-color: var(--ink);
  color: var(--ink);
}

.tab-panel {
  padding: 38px 0 12px;
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 84px);
}

.overview-copy h2,
.technical-panel h2,
.documents-head h2,
.architecture-head h2,
.runs-head h2 {
  margin: 0 0 22px;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.03em;
}

.overview-copy > p {
  max-width: 70ch;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.7;
}

.fact-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-list li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.fact-list span {
  color: var(--muted);
}

.fact-list code,
.path-line,
.tree-path {
  overflow-wrap: anywhere;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
}

.technical-panel {
  padding-top: 6px;
}

.stack-group {
  padding: 16px 0 18px;
  border-bottom: 1px solid var(--line);
}

.stack-heading {
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stack-group h3 {
  margin: 0;
  font-size: 15px;
}

.stack-group p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.source-badge,
.role-label,
.state-label {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: #e0e4ea;
  font-size: 12px;
  color: var(--muted-strong);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.source-badge.is-verified {
  background: #d9f2e7;
  color: #0c6042;
}

.source-badge.is-absent,
.source-badge.is-not-ready {
  background: #fff0c2;
  color: #6e4200;
}

.source-badge.is-source-unavailable {
  background: #ffd9d5;
  color: #8d2018;
}

.documents-head,
.architecture-head,
.runs-head {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.documents-head p,
.architecture-head p,
.runs-head p {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.docs-workspace {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}

.document-folders {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #e4e7ed;
}

.folder-caption {
  margin: 0 0 16px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.folder-list {
  display: grid;
  gap: 8px;
}

.folder-button {
  position: relative;
  width: 100%;
  min-height: 70px;
  padding: 17px 14px 13px 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.folder-button::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 25px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.folder-button::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 12px;
  height: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
}

.folder-button:hover,
.folder-button[aria-current="true"] {
  border-color: var(--line-strong);
  background: var(--paper-strong);
}

.folder-button strong,
.folder-button small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.folder-button strong {
  font-size: 13px;
}

.folder-button small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.folder-button.is-missing {
  opacity: 0.56;
}

.document-pane {
  min-width: 0;
  padding: clamp(22px, 3vw, 48px);
}

.document-empty {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.document-empty h3 {
  margin: 0;
  font-family: Bahnschrift, sans-serif;
  font-size: 28px;
}

.document-empty p {
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.6;
}

.doc-toolbar {
  margin-bottom: 28px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.doc-toolbar h3 {
  margin: 0;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 14px;
}

.markdown-view {
  max-width: 76ch;
  font-size: 16px;
  line-height: 1.75;
}

.markdown-view h1,
.markdown-view h2,
.markdown-view h3 {
  margin: 1.7em 0 0.58em;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.markdown-view h1:first-child,
.markdown-view h2:first-child {
  margin-top: 0;
}

.markdown-view h1 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
.markdown-view h2 { font-size: clamp(1.55rem, 3vw, 2.4rem); }
.markdown-view h3 { font-size: 1.32rem; }

.markdown-view p,
.markdown-view ul,
.markdown-view ol,
.markdown-view pre,
.markdown-view blockquote {
  margin: 0 0 1.2em;
}

.markdown-view code {
  padding: 0.14em 0.34em;
  border-radius: 4px;
  background: #e8eaf0;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.88em;
}

.markdown-view pre {
  overflow-x: auto;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: #181b22;
  color: #eef0f4;
}

.markdown-view pre code {
  padding: 0;
  background: transparent;
}

.markdown-view blockquote {
  padding: 12px 16px;
  border-left: 1px solid var(--line-strong);
  background: #f1f2f6;
  color: var(--muted-strong);
}

.doc-editor {
  width: 100%;
  min-height: 520px;
  resize: vertical;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #16191f;
  color: #f3f5f7;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 14px;
  line-height: 1.62;
  tab-size: 2;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(30px, 5vw, 80px);
}

.tree-shell {
  min-width: 0;
  min-height: 450px;
  padding: clamp(20px, 3vw, 36px);
  border-radius: var(--radius-lg);
  background: #171a20;
  color: #f1f3f5;
}

.tree-shell > h3 {
  margin: 0 0 24px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  color: #aeb5c0;
  overflow-wrap: anywhere;
}

.tree-list,
.tree-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tree-list ul {
  margin-left: 13px;
  padding-left: 17px;
  border-left: 1px solid #3d424c;
}

.tree-node {
  position: relative;
  padding: 6px 0;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
}

.tree-node.is-folder > span {
  color: #a4adff;
}

.tree-node.is-file > span {
  color: #d2d6dd;
}

.tree-node span::before {
  display: inline-block;
  width: 21px;
  color: #777f8c;
}

.tree-node span {
  overflow-wrap: anywhere;
}

.architecture-notes {
  min-width: 0;
}

.tree-node.is-folder > span::before { content: "▸"; }
.tree-node.is-file > span::before { content: "·"; }

.architecture-notes h3 {
  margin: 0 0 16px;
  font-family: Bahnschrift, sans-serif;
  font-size: 22px;
}

.architecture-notes p {
  color: var(--muted);
  line-height: 1.6;
}

.architecture-notes .quiet-button {
  margin-top: 14px;
}

.developer-map-shell {
  margin-top: clamp(54px, 8vw, 112px);
  padding-top: clamp(34px, 5vw, 68px);
  border-top: 1px solid var(--line-strong);
}

.developer-map-head {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.developer-map-head h2,
.developer-map-loading h2 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.03em;
}

.developer-map-head > p,
.developer-map-loading > p:last-of-type {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.developer-map-loading {
  min-height: 230px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 17px;
}

.code-map-metrics {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.code-map-metrics article {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.code-map-metrics article:last-child {
  border-right: 0;
}

.code-map-metrics strong,
.code-map-metrics span {
  display: block;
}

.code-map-metrics strong {
  font-family: Bahnschrift, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.code-map-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.code-map-warnings {
  margin: 0 0 24px;
  padding: 17px 20px;
  border: 1px solid #d2a83f;
  background: #fff0c2;
  color: #6e4200;
}

.code-map-warnings ul {
  margin: 7px 0 0;
  padding-left: 20px;
  line-height: 1.55;
}

.code-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.code-map-group {
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
}

.code-map-group-wide {
  grid-column: 1 / -1;
}

.code-map-group summary {
  min-height: 62px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.code-map-group summary::-webkit-details-marker {
  display: none;
}

.code-map-group summary::before {
  content: "+";
  width: 20px;
  flex: 0 0 20px;
  color: var(--muted);
  font-family: "Cascadia Code", Consolas, monospace;
}

.code-map-group[open] summary::before {
  content: "−";
}

.code-map-group summary span {
  flex: 1;
}

.code-map-group summary b {
  min-width: 32px;
  color: var(--muted-strong);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 12px;
  text-align: right;
}

.code-map-list {
  max-height: 620px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
  border-top: 1px solid var(--line);
}

.code-map-list li {
  min-width: 0;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.code-map-list li:last-child {
  border-bottom: 0;
}

.code-map-list li > div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.code-map-list code,
.documented-modules code {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 12px;
}

.code-map-list small {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: var(--muted);
  line-height: 1.45;
}

.http-method,
.symbol-kind {
  min-width: 48px;
  flex: 0 0 auto;
  color: #2f5bff;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.symbol-kind {
  color: #8d2018;
}

.connection-row p {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
}

.connection-row p span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.connection-row p i {
  color: var(--muted);
  font-style: normal;
}

.module-row > div {
  justify-content: space-between;
}

.module-row > div > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
}

.code-map-empty {
  margin: 0;
  padding: 20px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.documented-modules {
  padding: 18px;
  display: grid;
  gap: 9px;
  border-top: 1px solid var(--line);
  background: #f0f2f6;
}

.documented-modules > span {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.documented-modules small {
  color: var(--muted);
}

.code-map-foot {
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
}

.runs-list {
  border-top: 1px solid var(--line-strong);
}

.run-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.run-time strong,
.run-time span {
  display: block;
}

.run-time strong {
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
}

.run-time span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.run-summary p {
  margin: 0 0 8px;
  font-weight: 650;
}

.run-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.severity-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
}

.severity-low { background: #e4e7ec; color: #414853; }
.severity-medium { background: #fff0c2; color: #6e4200; }
.severity-high { background: #ffd9d5; color: #8d2018; }
.severity-failed { background: #ffd9d5; color: #8d2018; }

.run-link {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-weight: 650;
}

.run-link:hover {
  border-color: var(--ink);
}

.section-intro {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-intro h2 {
  max-width: 12ch;
  margin: 5px 0 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-intro > p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.activation-callout {
  max-width: 920px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.activation-callout > strong {
  display: block;
  font-size: 22px;
}

.activation-callout p {
  max-width: 72ch;
  color: var(--muted-strong);
  line-height: 1.6;
}

.activation-callout code,
.invite-result code {
  display: block;
  padding: 14px 16px;
  overflow-wrap: anywhere;
  border-radius: var(--radius-sm);
  background: #171a20;
  color: #f1f3f5;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 12px;
  line-height: 1.55;
}

.access-columns {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.access-form,
.backup-policy {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.access-form {
  display: grid;
  align-content: start;
  gap: 18px;
}

.access-form h3,
.access-list h3,
.audit-shell h3,
.backup-policy h3,
.backup-catalog h3 {
  margin: 0;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: 22px;
}

.compact-grid {
  gap: 12px;
}

.invite-result {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.invite-result .quiet-button {
  justify-self: start;
}

.access-list {
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.access-columns .access-list {
  margin-top: 0;
}

.access-list > h3 {
  padding: 20px 0 14px;
}

.access-row {
  min-height: 76px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.55fr) auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.access-row > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.access-row strong,
.access-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.access-row small {
  color: var(--muted);
  font-size: 12px;
}

.role-control select {
  min-height: 40px;
  max-width: 190px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  padding: 0 10px;
}

.access-row > div > span:not(.role-label),
.compact-empty {
  color: var(--muted);
  font-size: 13px;
}

.role-label,
.state-label {
  width: max-content;
}

.audit-shell {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.audit-shell ol {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.audit-shell li {
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(140px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.audit-shell time,
.audit-shell li > span {
  color: var(--muted);
}

.backup-layout {
  max-width: 1240px;
}

.backup-runtime {
  margin: 8px 0 32px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.backup-runtime > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.backup-runtime > div > span:first-child {
  color: var(--muted);
  font-size: 12px;
}

.backup-runtime strong {
  overflow-wrap: anywhere;
}

.backup-state {
  width: fit-content;
  min-height: 26px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: var(--canvas);
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.backup-state.success {
  background: #daf3e8;
  color: var(--success);
}

.backup-state.danger {
  background: #ffe3df;
  color: var(--danger);
}

.backup-state.pending {
  background: #fff0c2;
  color: var(--warning);
}

.backup-policy {
  display: grid;
  gap: 24px;
}

.policy-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.execution-state,
.read-only-note {
  margin: 7px 0 0;
  color: var(--warning);
  font-size: 13px;
  line-height: 1.5;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fixed-policy {
  align-content: center;
  min-height: 78px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--canvas);
}

.fixed-policy strong {
  font-size: 1rem;
  line-height: 1.3;
}

.backup-contents {
  margin: 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  border-top: 1px solid var(--line);
}

.backup-contents legend {
  padding: 0 14px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.backup-component {
  min-width: 0;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
  font-size: 14px;
}

.backup-component span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.backup-component small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.backup-component.is-unavailable {
  background: transparent;
  color: var(--muted);
}

.backup-component input {
  flex: 0 0 auto;
}

.offsite-policy {
  border-color: rgba(44, 91, 205, 0.28);
  background: #eef3ff;
}

.offsite-policy.is-unavailable {
  border-color: var(--line);
  background: var(--canvas);
}

.backup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.backup-runs {
  margin-top: 34px;
}

.backup-runs h3 {
  margin-bottom: 10px;
}

.backup-run-row {
  min-height: 64px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: minmax(94px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.backup-run-row > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.backup-run-row span:not(.backup-state) {
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.adapter-limits {
  margin-top: 30px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: #e7eaf0;
}

.adapter-limits ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.55;
}

.backup-catalog {
  margin-top: 38px;
}

.backup-catalog > div:first-child {
  padding: 0 0 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-strong);
}

.backup-catalog > div:first-child span {
  color: var(--muted);
  font-size: 13px;
}

.backup-empty {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.backup-empty p {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.6;
}

.backup-row {
  min-height: 82px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(110px, 0.25fr) minmax(230px, auto);
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.backup-row > div {
  display: grid;
  gap: 5px;
}

.artifact-chips {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px !important;
}

.artifact-chips span {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-strong);
  color: var(--muted-strong);
}

.backup-row span {
  color: var(--muted);
  font-size: 13px;
}

.backup-point-actions {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px !important;
}

.backup-point-actions .quiet-button {
  padding-inline: 14px;
}

.backup-point-actions .restore-button:not(:disabled) {
  border-color: var(--danger);
  color: var(--danger);
}

.restore-proof {
  width: fit-content;
  padding-left: 18px;
  position: relative;
  color: var(--muted-strong) !important;
}

.restore-proof::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0.4em;
  border-radius: 50%;
  background: var(--muted);
}

.restore-proof.success::before {
  background: var(--success);
}

.restore-proof.pending::before {
  background: var(--warning);
}

.restore-proof.danger::before {
  background: var(--danger);
}

.backup-no-restore {
  justify-self: end;
}

.recovery-gate {
  padding: clamp(20px, 3vw, 30px) 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.recovery-gate strong {
  display: block;
  max-width: 34ch;
  font-family: Bahnschrift, "Arial Narrow", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
}

.recovery-gate p:last-child {
  margin: 0;
  max-width: 68ch;
  color: var(--muted-strong);
  line-height: 1.6;
}

.recovery-gate.needs-auth {
  border-top-color: var(--warning);
}

.recovery-history {
  margin-top: 34px;
}

.restore-dialog {
  width: min(680px, calc(100vw - 28px));
}

.restore-warning {
  padding: 18px 20px;
  border: 1px solid var(--danger);
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
}

.restore-warning strong {
  display: block;
  font-size: 18px;
}

.restore-warning p {
  margin: 8px 0 0;
  color: var(--muted-strong);
  line-height: 1.55;
}

.restore-summary {
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.restore-summary > div {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.restore-summary dt {
  color: var(--muted);
}

.restore-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}

.dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: min(860px, calc(100vh - 28px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 18px 32px 80px rgba(15, 17, 24, 0.3);
}

.dialog::backdrop {
  background: rgba(20, 22, 28, 0.62);
  backdrop-filter: blur(7px);
}

.dialog-shell {
  padding: clamp(22px, 4vw, 42px);
}

#settings-dialog {
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

#settings-dialog::backdrop {
  background: var(--paper);
  backdrop-filter: none;
}

#settings-dialog .dialog-shell {
  width: min(100%, 820px);
  margin-inline: auto;
}

#offsite-dialog {
  width: min(940px, calc(100vw - 28px));
  max-height: calc(100dvh - 24px);
}

#offsite-dialog .dialog-shell {
  padding: 24px 34px 22px;
}

#offsite-dialog .dialog-header {
  margin-bottom: 12px;
}

#offsite-dialog .dialog-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
}

#offsite-dialog .security-note {
  margin-bottom: 12px;
}

#offsite-dialog .form-grid {
  align-items: start;
  gap: 14px 18px;
}

#offsite-dialog .field {
  align-content: start;
}

#offsite-dialog .dialog-footer {
  margin-top: 16px;
}

.generated-bucket-note {
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 18px;
  border-block: 1px solid var(--line);
}

.generated-bucket-note strong {
  font-size: 13px;
}

.generated-bucket-note span {
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.5;
}

.cancel-recovery-panel {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cancel-recovery-panel summary {
  width: fit-content;
  cursor: pointer;
  color: var(--muted-strong);
  font-weight: 700;
  line-height: 1.45;
}

.cancel-recovery-panel[open] summary {
  color: var(--ink);
}

.cancel-recovery-panel > p {
  max-width: 68ch;
  margin: 12px 0 0;
  color: var(--muted-strong);
  line-height: 1.55;
}

.cancel-recovery-panel .field {
  max-width: 520px;
  margin-top: 16px;
}

.cancel-recovery-panel .danger-button {
  margin-top: 14px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.offsite-form-step {
  display: grid;
  gap: 10px;
  padding-block: 12px 2px;
  border-top: 1px solid var(--line);
}

.offsite-step-heading {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.offsite-step-number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
}

.offsite-step-heading h3,
.offsite-step-heading p {
  margin: 0;
}

.offsite-step-heading h3 {
  font-size: 17px;
  line-height: 1.3;
}

.offsite-step-heading p {
  margin-top: 3px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.offsite-form-step > .field {
  width: min(100%, 430px);
  margin-inline-start: 42px;
}

#recovery-generator-status {
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.4;
}

.recovery-code-panel {
  margin-inline-start: 42px;
}

.recovery-code-panel summary {
  width: fit-content;
  cursor: pointer;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.recovery-code-panel .field {
  width: min(100%, 430px);
  margin-top: 12px;
}

.recovery-code-panel .text-button {
  margin-top: 8px;
}

.consent-field {
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.consent-field span,
.consent-field small {
  display: block;
}

.consent-field small { margin-top: 6px; color: var(--muted); }

.local-bootstrap-stage {
  width: min(1120px, 100%);
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding: clamp(40px, 8vw, 96px) 0;
}

.local-bootstrap-intro h1 {
  max-width: 9ch;
  margin: 12px 0 24px;
  font-family: Bahnschrift, sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.045em;
}

.local-bootstrap-intro > p:not(.kicker) {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.local-bootstrap-form { box-shadow: 18px 32px 80px rgba(15, 17, 24, .12); }
.local-safety-badge { display: grid; gap: 2px; padding: 14px 16px; border: 1px solid rgba(0, 126, 87, .22); border-radius: var(--radius-sm); background: #e9f7f1; }
.local-safety-badge span { color: var(--muted); font-size: 14px; }
.bootstrap-steps { margin: 32px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; counter-reset: steps; }
.bootstrap-steps li { counter-increment: steps; display: flex; align-items: center; gap: 12px; color: var(--muted); }
.bootstrap-steps li::before { content: counter(steps); width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font: 700 12px/1 Consolas, monospace; }
.bootstrap-steps .is-done::before { content: "✓"; background: var(--success); border-color: var(--success); color: white; }
.bootstrap-steps .is-current { color: var(--ink); font-weight: 700; }
.bootstrap-steps .is-current::before { border-color: var(--focus); color: var(--focus); }

@media (max-width: 820px) {
  .local-bootstrap-stage { grid-template-columns: 1fr; min-height: auto; gap: 32px; padding: 32px 0 56px; }
  .local-bootstrap-intro h1 { max-width: 12ch; font-size: clamp(2.8rem, 13vw, 4.2rem); }
}

.dialog-header {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dialog-header h2 {
  margin: 4px 0 0;
  font-family: Bahnschrift, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.kicker {
  margin: 0;
  color: var(--muted);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
}

.search-field {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: white;
}

.search-field:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.15);
}

.search-field input {
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-results {
  margin-top: 14px;
  display: grid;
}

.search-result {
  padding: 17px 4px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-result > i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--result-color, var(--ink));
}

.search-result[class*="theme-"] > i {
  background: var(--cover-bg);
}

.empty-search {
  margin: 18px 4px 0;
  color: var(--muted);
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result small {
  margin-top: 3px;
  color: var(--muted);
}

.search-result > span:last-child {
  color: var(--muted);
}

.form-grid,
.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span,
.field > label {
  font-size: 13px;
  font-weight: 700;
}

.password-control {
  position: relative;
}

.password-control input {
  padding-right: 58px;
}

.password-toggle {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: calc(var(--radius-sm) - 2px);
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
}

.password-toggle:hover {
  background: var(--canvas);
  color: var(--ink);
}

.password-toggle:focus-visible,
.text-button:focus-visible {
  outline: 3px solid rgba(47, 91, 255, 0.22);
  outline-offset: 2px;
}

.password-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.password-control [data-eye-closed] {
  display: none;
}

.password-control.is-visible [data-eye-open] {
  display: none;
}

.password-control.is-visible [data-eye-closed] {
  display: initial;
}

.security-dialog .form-shell {
  width: min(100%, 620px);
}

.security-dialog .field {
  margin-top: 18px;
}

.security-shell {
  width: min(100%, 720px);
  max-height: min(88vh, 900px);
  overflow: auto;
}

.security-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.security-section h3,
.security-section p {
  margin-top: 0;
}

.security-section p {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.55;
}

.security-section > button,
.security-section > form > button {
  margin-top: 18px;
}

.session-list {
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.session-list li {
  min-width: 0;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.session-list span,
.session-list strong,
.session-list small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.session-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 13px;
}

.field textarea {
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--focus);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.14);
}

.field input:disabled,
.field textarea:disabled,
.field select:disabled {
  background: #e7e9ee;
  color: var(--muted-strong);
}

.field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.dialog-footer {
  margin-top: 34px;
  justify-content: flex-end;
}

.settings-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.setting-heading,
.memory-setting {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.setting-heading {
  margin-bottom: 22px;
}

.settings-section h3 {
  margin: 0;
  font-size: 18px;
}

.settings-section p {
  max-width: 56ch;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.switch {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch > span {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background 220ms var(--ease-out);
}

.switch > span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: white;
  transition: transform 220ms var(--ease-out);
}

.switch input:checked + span {
  background: var(--ink);
}

.switch input:checked + span::after {
  transform: translateX(20px);
}

.switch input:focus-visible + span {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.switch b {
  font-size: 13px;
}

.toast-region {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100vw - 36px));
  display: grid;
  gap: 10px;
}

.toast {
  padding: 15px 17px;
  border-radius: var(--radius-md);
  background: #171a20;
  color: white;
  box-shadow: 10px 18px 44px rgba(12, 14, 18, 0.25);
  animation: toast-in 320ms var(--ease-out) both;
}

.toast.is-error {
  background: #8d2018;
}

@keyframes toast-in {
  from { transform: translateY(12px); opacity: 0; filter: blur(3px); }
  to { transform: translateY(0); opacity: 1; filter: blur(0); }
}

.report-dialog-content {
  padding-top: 4px;
}

@media (max-width: 1180px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cover-main h2 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
  }

  .overview-layout,
  .architecture-layout,
  .access-columns {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: 42px;
  }

  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    min-height: 78px;
    padding-top: 16px;
  }

  .brand-copy small,
  .topbar-settings span:last-child {
    display: none;
  }

  .topbar-settings {
    width: 44px;
    padding: 0;
  }

  main {
    padding-top: 10px;
  }

  .gallery-head {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .gallery-count {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-align: left;
  }

  .project-hero {
    grid-template-columns: 1fr;
  }

  .overview-layout,
  .architecture-layout,
  .access-columns,
  .auth-stage {
    grid-template-columns: 1fr;
  }

  .developer-map-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .code-map-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .code-map-metrics article:nth-child(3) {
    border-right: 0;
  }

  .code-map-metrics article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .auth-stage {
    align-content: start;
    padding-top: 42px;
  }

  .section-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .docs-workspace {
    grid-template-columns: 1fr;
  }

  .document-folders {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .folder-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .run-item {
    grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  }

  .run-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 16px;
  }

  .topbar {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .top-actions {
    gap: 5px;
  }

  .top-actions .primary-button {
    width: 44px;
    padding: 0;
  }

  .top-actions .primary-button span:last-child {
    display: none;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-cover {
    width: 100%;
    min-height: 0;
    padding: 24px;
  }

  .cover-logo {
    width: 46px;
    border-radius: 12px;
  }

  .cover-main h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem);
  }

  .cover-main.is-long-title h2 {
    font-size: clamp(1.55rem, 7.4vw, 2.25rem);
  }

  .cover-main p {
    display: none;
  }

  .project-hero {
    min-height: 520px;
    padding: 26px 22px;
  }

  .project-hero h1 {
    font-size: clamp(2rem, 8.4vw, 3.1rem);
  }

  .project-actions,
  .documents-head,
  .architecture-head,
  .runs-head,
  .section-intro,
  .policy-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .action-row,
  .project-links {
    flex-wrap: wrap;
  }

  .action-row .primary-button,
  .action-row .quiet-button {
    flex: 1 1 150px;
  }

  .tab-panel {
    padding-top: 28px;
  }

  .fact-list li {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .folder-list {
    grid-template-columns: 1fr;
  }

  .document-folders,
  .document-pane {
    padding: 18px;
  }

  .doc-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .doc-toolbar .inline-actions {
    width: 100%;
  }

  .doc-toolbar .inline-actions button {
    flex: 1;
  }

  .run-item {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .run-link {
    grid-column: 1;
  }

  .form-grid,
  .time-grid,
  .policy-grid,
  .backup-runtime,
  .backup-contents {
    grid-template-columns: 1fr;
  }

  .backup-runtime {
    gap: 14px;
  }

  .backup-actions {
    display: grid;
  }

  .backup-actions button {
    width: 100%;
  }

  .field-wide {
    grid-column: auto;
  }

  #offsite-dialog {
    height: min(760px, calc(100dvh - 20px));
    max-height: calc(100dvh - 20px);
  }

  #offsite-dialog .dialog-shell {
    padding: 20px 16px 18px;
  }

  #offsite-dialog .dialog-header {
    margin-bottom: 18px;
  }

  #offsite-dialog .dialog-header h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  #offsite-dialog .security-note {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  #offsite-dialog .form-grid {
    gap: 14px;
  }

  #offsite-dialog .generated-bucket-note {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  #offsite-dialog .offsite-form-step > .field,
  #offsite-dialog .recovery-code-panel {
    width: 100%;
    margin-inline-start: 0;
  }

  #settings-dialog .dialog-shell {
    padding-inline: 18px;
  }

  #offsite-dialog .consent-field {
    grid-template-columns: 24px minmax(0, 1fr);
    padding: 14px;
  }

  #offsite-dialog .dialog-footer {
    position: sticky;
    bottom: -18px;
    z-index: 2;
    margin: 4px -16px -18px;
    padding: 14px 16px 18px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  #offsite-dialog .dialog-footer .quiet-button {
    flex: 0 0 auto;
  }

  #offsite-dialog .dialog-footer .primary-button {
    flex: 1 1 210px;
  }

  .cancel-recovery-panel .danger-button {
    width: 100%;
  }

  .setting-heading,
  .memory-setting {
    flex-direction: column;
  }

  .dialog-footer {
    align-items: stretch;
  }

  .dialog-footer button {
    flex: 1;
  }

  .account-summary {
    min-width: 44px;
    width: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: transparent;
  }

  .account-summary::before {
    content: "◉";
    color: var(--ink);
    font-size: 21px;
    line-height: 1;
  }

  .top-actions > .quiet-button[data-action="logout"] {
    min-width: 44px;
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .top-actions > .quiet-button[data-action="logout"]::before {
    content: "↪";
    color: var(--ink);
    font-size: 20px;
  }

  .access-row,
  .backup-row,
  .backup-run-row,
  .audit-shell li {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .access-row .text-button,
  .backup-row .quiet-button {
    justify-self: start;
  }

  .role-control select {
    width: 100%;
    max-width: none;
  }

  .session-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .recovery-gate {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .backup-point-actions {
    width: 100%;
    justify-content: stretch;
  }

  .backup-point-actions .quiet-button {
    flex: 1 1 190px;
  }

  .backup-no-restore {
    justify-self: start;
  }

  .backup-catalog > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .code-map-grid,
  .code-map-metrics {
    grid-template-columns: 1fr;
  }

  .code-map-group-wide {
    grid-column: auto;
  }

  .code-map-metrics article,
  .code-map-metrics article:nth-child(3) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .code-map-metrics article:first-child {
    border-top: 0;
  }

  .connection-row p {
    grid-template-columns: 1fr;
  }

  .connection-row p i {
    transform: rotate(90deg);
  }

  .documented-modules > span,
  .module-row > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .brand-copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .project-cover {
    transform: none !important;
  }
}
