.cm-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.1rem;
}
.cm-root[hidden] {
  display: none;
}
.cm-backdrop {
  position: absolute;
  inset: 0;
  background: var(--surface-overlay, rgba(12, 10, 6, .5));
  opacity: 0;
  transition: opacity .34s ease;
  backdrop-filter: blur(2px);
}
.cm-root.cm-open .cm-backdrop {
  opacity: 1;
}
.cm-panel {
  position: relative;
  width: min(33rem, 100%);
  height: min(40rem, calc(100dvh - 2.2rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--glass-bg, var(--bg-secondary));
  backdrop-filter: var(--glass-blur, none);
  border: 1px solid var(--glass-border, var(--border-color));
  border-radius: var(--r-xl, 20px);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--gold) 6%, transparent),
    0 2px 6px -2px #0c0a0638,
    0 44px 90px -36px #0c0a069e;
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .3s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
  will-change: transform, opacity;
}
.cm-root.cm-open .cm-panel {
  opacity: 1;
  transform: none;
}
.cm-titlebar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .85rem .85rem 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}
.cm-window {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.cm-window-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold, #b8862f);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 16%, transparent);
}
.cm-close {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: transparent;
  color: var(--text-subtle);
  cursor: pointer;
  transition:
    color .2s ease,
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}
.cm-close:hover {
  color: var(--text-color);
  border-color: var(--border-color);
  background: var(--surface-1, transparent);
  transform: rotate(90deg);
}
.cm-close:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-addr {
  flex: none;
  padding: 0 1.15rem;
}
.cm-addr-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 2.65rem;
  border-bottom: 1px solid var(--border-subtle);
}
.cm-addr-row--from {
  border-bottom: none;
}
.cm-addr-key {
  flex: 0 0 1.9rem;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.cm-to {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.cm-to-dot {
  flex: none;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, var(--border-color));
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 8%, transparent));
  color: var(--gold-strong, var(--gold));
  font-family: var(--font-mono);
  font-size: .5rem;
  letter-spacing: .04em;
}
.cm-to-name {
  font-family: var(--font-serif);
  font-size: .98rem;
  color: var(--text-color);
}
.cm-subject {
  font-family: var(--font-serif);
  font-size: .92rem;
  font-style: italic;
  color: var(--text-muted);
}
.cm-avatar-wrap {
  position: relative;
  flex: none;
}
.cm-avatar {
  width: 1.95rem;
  height: 1.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--surface-1, var(--bg-color));
  font-size: 1rem;
  line-height: 1;
  font-family:
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Noto Color Emoji",
    sans-serif;
  text-align: center;
  padding: 0;
  cursor: pointer;
  transition:
    border-color .2s ease,
    transform .2s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .2s ease;
}
.cm-avatar:hover {
  border-color: color-mix(in srgb, var(--gold) 55%, var(--border-color));
  transform: scale(1.06);
}
.cm-avatar[aria-expanded=true] {
  border-color: color-mix(in srgb, var(--gold) 60%, var(--border-color));
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-avatar:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-avatar-pop {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .2rem;
  padding: .45rem;
  width: -moz-max-content;
  width: max-content;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--r-md, 10px);
  box-shadow: 0 16px 38px -16px #0c0a068c;
  transform-origin: top left;
  opacity: 0;
  transform: translateY(-4px) scale(.96);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .18s ease,
    transform .22s cubic-bezier(.16, 1, .3, 1),
    visibility .18s;
}
.cm-avatar-pop.is-open {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
}
.cm-avatar-opt {
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--r-sm, 6px);
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  font-family:
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Noto Color Emoji",
    sans-serif;
  cursor: pointer;
  transition:
    background .16s ease,
    border-color .16s ease,
    transform .16s ease;
}
.cm-avatar-opt:hover {
  background: var(--surface-2, var(--bg-secondary));
  transform: scale(1.12);
}
.cm-avatar-opt:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-avatar-opt[aria-checked=true] {
  border-color: color-mix(in srgb, var(--gold) 55%, var(--border-color));
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 12%, transparent));
}
.cm-from-email {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-color);
  background: transparent;
  border: none;
  padding: .35rem 0;
}
.cm-from-email::-moz-placeholder {
  color: var(--text-subtle);
}
.cm-from-email::placeholder {
  color: var(--text-subtle);
}
.cm-from-email:focus {
  outline: none;
}
.cm-from-email[aria-invalid=true] {
  color: #d2604d;
}
.cm-tabs {
  position: relative;
  flex: none;
  display: flex;
  gap: .1rem;
  padding: 0 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}
.cm-tab {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: transparent;
  border: none;
  padding: .85rem .65rem;
  cursor: pointer;
  transition: color .2s ease;
}
.cm-tab[aria-selected=true] {
  color: var(--text-color);
}
.cm-tab:hover {
  color: var(--text-muted);
}
.cm-tab:focus-visible {
  outline: none;
  color: var(--text-color);
}
.cm-tab-ink {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1.5px;
  width: 0;
  background: var(--gold, var(--text-color));
  border-radius: 2px;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), width .34s cubic-bezier(.16, 1, .3, 1);
}
.cm-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.cm-body {
  flex: 1;
  min-height: 0;
  display: flex;
}
.cm-tabpanel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 1.05rem 1.15rem .4rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cm-tabpanel[hidden] {
  display: none;
}
.cm-anim-in {
  animation: cm-fade-in .34s cubic-bezier(.16, 1, .3, 1);
}
@keyframes cm-fade-in {
  0% {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cm-textarea {
  flex: 1;
  width: 100%;
  min-height: 6.5rem;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--r-md, 10px);
  padding: .85rem .95rem;
  resize: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cm-input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-color);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--r-sm, 6px);
  padding: .72rem .85rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cm-textarea::-moz-placeholder,
.cm-input::-moz-placeholder {
  color: var(--text-subtle);
}
.cm-textarea::placeholder,
.cm-input::placeholder {
  color: var(--text-subtle);
}
.cm-textarea:focus,
.cm-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--gold) 45%, var(--border-color));
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212, 168, 67, .3)));
}
.cm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.cm-chip {
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .78rem;
  line-height: 1.2;
  color: var(--text-muted);
  background: var(--surface-1, var(--bg-color));
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: .46rem .85rem;
  cursor: pointer;
  transition:
    color .18s ease,
    border-color .18s ease,
    background .18s ease,
    transform .14s cubic-bezier(.34, 1.56, .64, 1);
}
.cm-chip:hover {
  color: var(--text-color);
  border-color: color-mix(in srgb, var(--gold) 42%, var(--border-color));
  transform: translateY(-1px);
}
.cm-chip:active {
  transform: translateY(0) scale(.97);
}
.cm-chip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-block {
  padding-left: .7rem;
}
.cm-block:before {
  content: "+";
  display: inline-block;
  width: .85em;
  margin-right: .18rem;
  font-family: var(--font-mono);
  color: var(--text-subtle);
  transition: color .18s ease;
}
.cm-block:hover:before {
  color: var(--gold-strong, var(--gold));
}
.cm-block[data-added=true] {
  color: var(--gold-strong, var(--gold));
  border-color: color-mix(in srgb, var(--gold) 55%, var(--border-color));
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 10%, transparent));
}
.cm-block[data-added=true]:before {
  content: "\2713";
  color: var(--gold-strong, var(--gold));
}
.cm-chip[aria-pressed=true] {
  color: var(--gold-strong, var(--gold));
  border-color: color-mix(in srgb, var(--gold) 55%, var(--border-color));
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 10%, transparent));
}
.cm-opts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: .5rem;
  margin-bottom: .9rem;
}
.cm-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2.85rem;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 16px;
  line-height: 1.25;
  color: var(--text-color);
  background: var(--surface-1, var(--bg-color));
  border: 1px solid var(--border-color);
  border-radius: var(--r-md, 10px);
  padding: .6rem .85rem;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    color .18s ease,
    border-color .18s ease,
    background .18s ease,
    transform .12s ease;
}
.cm-opt:hover {
  border-color: color-mix(in srgb, var(--gold) 45%, var(--border-color));
  background: var(--surface-2, var(--bg-secondary));
}
.cm-opt:active {
  transform: translateY(1px);
}
.cm-opt:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-opt[aria-checked=true] {
  color: var(--gold-strong, var(--gold));
  border-color: color-mix(in srgb, var(--gold) 60%, var(--border-color));
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 12%, transparent));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--gold) 30%, transparent);
}
.cm-or-type {
  display: block;
  font-family: var(--font-mono);
  font-size: .56rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin: .1rem 0 .5rem;
}
.cm-starters {
  flex: none;
  padding: .85rem 0 .6rem;
}
.cm-starters-key {
  display: block;
  font-family: var(--font-mono);
  font-size: .53rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: .5rem;
}
.cm-build-hint {
  font-family: var(--font-serif);
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}
.cm-palette {
  display: flex;
  flex-direction: column;
}
.cm-pal-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .85rem 0;
}
.cm-pal-group + .cm-pal-group {
  border-top: 1px solid var(--border-subtle);
}
.cm-pal-group:first-child {
  padding-top: 0;
}
.cm-pal-name {
  font-family: var(--font-mono);
  font-size: .53rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.cm-tray-bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1.15rem;
  border-top: 1px solid var(--border-subtle);
  background: color-mix(in srgb, var(--bg-color) 35%, transparent);
}
.cm-tray-bar[hidden] {
  display: none;
}
.cm-tray {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  max-height: 4.6rem;
  overflow-y: auto;
}
.cm-tray:empty:before {
  content: "Nothing added yet";
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .04em;
  color: var(--text-subtle);
}
.cm-token {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .72rem;
  color: var(--text-color);
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 10%, transparent));
  border: 1px solid color-mix(in srgb, var(--gold) 32%, var(--border-color));
  border-radius: 999px;
  padding: .24rem .3rem .24rem .65rem;
  animation: cm-pop .26s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes cm-pop {
  0% {
    opacity: 0;
    transform: scale(.8);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cm-token-x {
  width: 1.1rem;
  height: 1.1rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  transition: color .16s ease, background .16s ease;
}
.cm-token-x:hover {
  color: var(--text-color);
  background: color-mix(in srgb, var(--gold) 18%, transparent);
}
.cm-btn-solid {
  flex: none;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .02em;
  color: var(--bg-color);
  background: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: var(--r-sm, 6px);
  padding: .6rem 1.05rem;
  cursor: pointer;
  transition: opacity .2s ease, transform .16s ease;
}
.cm-btn-solid:hover {
  opacity: .88;
}
.cm-btn-solid:active {
  transform: translateY(1px);
}
.cm-btn-solid:disabled {
  opacity: .38;
  cursor: default;
}
.cm-btn-solid:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-build-step[hidden] {
  display: none;
}
.cm-step-meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .9rem;
}
.cm-step-count {
  flex: none;
  font-family: var(--font-mono);
  font-size: .54rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-strong, var(--gold));
}
.cm-step-bar {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--border-subtle);
  overflow: hidden;
}
.cm-step-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold, var(--text-color));
  border-radius: 2px;
  transition: width .34s cubic-bezier(.16, 1, .3, 1);
}
.cm-step-prompt {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 4vw, 1.35rem);
  line-height: 1.25;
  color: var(--text-color);
  margin-bottom: .95rem;
}
.cm-step-input-wrap {
  margin-bottom: 1.1rem;
}
.cm-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cm-step-back {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .4rem 0;
  transition: color .18s ease;
}
.cm-step-back:hover {
  color: var(--text-color);
}
.cm-step-back:focus-visible {
  outline: none;
  color: var(--text-color);
  text-decoration: underline;
}
.cm-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cm-footer {
  flex: none;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .4rem 1rem;
  padding: .85rem 1.15rem;
  border-top: 1px solid var(--border-subtle);
}
.cm-send {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--bg-color);
  background: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: var(--r-sm, 6px);
  padding: .65rem 1.35rem;
  cursor: pointer;
  transition: opacity .2s ease, transform .16s ease;
}
.cm-send:hover {
  opacity: .88;
}
.cm-send:hover .cm-send-ico {
  transform: translate(2px, -1px);
}
.cm-send:active {
  transform: translateY(1px);
}
.cm-send:disabled {
  opacity: .5;
  cursor: default;
}
.cm-send:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring, 0 0 0 2px var(--gold-glow, rgba(212,168,67,.3)));
}
.cm-send-ico {
  transition: transform .24s cubic-bezier(.34, 1.56, .64, 1);
}
.cm-direct {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .02em;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border-color);
  text-underline-offset: .25em;
  transition: color .18s ease, text-decoration-color .18s ease;
}
.cm-direct:hover {
  color: var(--text-color);
  text-decoration-color: var(--gold, var(--text-color));
}
.cm-status {
  grid-column: 1 / -1;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .82rem;
  line-height: 1.45;
  margin: 0;
  min-height: 0;
}
.cm-status:not(:empty) {
  margin-top: .2rem;
}
.cm-root[data-state=ok] .cm-status {
  color: var(--text-color);
}
.cm-root[data-state=error] .cm-status {
  color: #d2604d;
}
.cm-send-hint {
  justify-self: start;
  align-self: center;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .02em;
  color: var(--gold-strong, var(--gold));
}
.cm-send-hint[hidden] {
  display: none;
}
.cm-send {
  position: relative;
}
.cm-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  border: 2px solid color-mix(in srgb, var(--bg-color) 40%, transparent);
  border-top-color: var(--bg-color);
  border-radius: 50%;
  display: none;
  animation: cm-spin .7s linear infinite;
}
@keyframes cm-spin {
  to {
    transform: rotate(360deg);
  }
}
.cm-send.is-sending .cm-send-ico,
.cm-send.is-sending .cm-send-label {
  visibility: hidden;
}
.cm-send.is-sending .cm-spinner {
  display: block;
}
.cm-success {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .6rem;
  padding: 2rem 1.5rem;
  background: var(--glass-bg, var(--bg-secondary));
  backdrop-filter: var(--glass-blur, none);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity .32s ease,
    transform .4s cubic-bezier(.16, 1, .3, 1),
    visibility .32s;
}
.cm-root.cm-sent .cm-success {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.cm-success-check {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--gold) 55%, var(--border-color));
  background: var(--gold-subtle, color-mix(in srgb, var(--gold) 10%, transparent));
  margin-bottom: .4rem;
}
.cm-success-check svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--gold-strong, var(--gold));
}
.cm-success-check path {
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
}
.cm-root.cm-sent .cm-success-check path {
  animation: cm-draw .5s .15s cubic-bezier(.16, 1, .3, 1) forwards;
}
@keyframes cm-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.cm-success-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
}
.cm-success-sub {
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 .6rem;
  max-width: 24rem;
}
@media (max-width:540px) {
  .cm-root {
    padding: 0;
    place-items: stretch;
  }
  .cm-panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .cm-footer {
    grid-template-columns: 1fr;
    gap: .6rem;
  }
  .cm-send {
    justify-content: center;
  }
  .cm-direct {
    justify-self: center;
  }
}
@media (prefers-reduced-motion:reduce) {
  .cm-backdrop,
  .cm-panel,
  .cm-tab-ink,
  .cm-avatar,
  .cm-avatar-pop,
  .cm-chip,
  .cm-token,
  .cm-step-bar-fill,
  .cm-send-ico,
  .cm-close,
  .cm-anim-in,
  .cm-opt,
  .cm-success,
  .cm-success-check path {
    transition: none !important;
    animation: none !important;
  }
  .cm-panel,
  .cm-success {
    transform: none;
  }
  .cm-success-check path {
    stroke-dashoffset: 0;
  }
  .cm-send.is-sending .cm-spinner {
    animation: cm-spin .7s linear infinite !important;
  }
}
.site-header[data-astro-cid-pux6a34n] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: .875rem 1.5rem;
  padding-top: max(.875rem, env(safe-area-inset-top, .875rem));
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header[data-astro-cid-pux6a34n].scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}
.nav-container[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-left[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  min-width: 0;
}
.nav-brand[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-name[data-astro-cid-pux6a34n] {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-color);
  letter-spacing: -.01em;
  transition: color .2s ease;
}
.nav-brand[data-astro-cid-pux6a34n]:hover .brand-name[data-astro-cid-pux6a34n] {
  color: var(--text-muted);
}
.brand-divider[data-astro-cid-pux6a34n] {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--text-subtle);
  opacity: .6;
  flex-shrink: 0;
}
.section-switcher[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.section-link[data-astro-cid-pux6a34n] {
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  color: var(--text-muted);
  opacity: .55;
  transition: color .2s ease, opacity .2s ease;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
}
.section-label-short[data-astro-cid-pux6a34n] {
  display: none;
}
.section-link[data-astro-cid-pux6a34n]:hover {
  opacity: .85;
  color: var(--text-color);
}
.section-link[data-astro-cid-pux6a34n].active {
  opacity: 1;
  color: var(--text-color);
  border-bottom-color: var(--text-muted);
}
.nav-right[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.contextual-nav[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ctx-link[data-astro-cid-pux6a34n] {
  font-family: var(--font-mono);
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--text-muted);
  transition: color .2s ease;
}
.ctx-link[data-astro-cid-pux6a34n]:hover {
  color: var(--text-color);
}
.theme-toggle[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  flex-shrink: 0;
}
.theme-toggle[data-astro-cid-pux6a34n]:hover {
  border-color: var(--text-muted);
  background: var(--accent-muted);
}
.toggle-icon[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s ease;
}
.toggle-icon[data-astro-cid-pux6a34n].moon,
body.dark-mode .toggle-icon[data-astro-cid-pux6a34n].sun {
  display: none;
}
body.dark-mode .toggle-icon[data-astro-cid-pux6a34n].moon {
  display: flex;
}
.menu-toggle[data-astro-cid-pux6a34n] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.menu-toggle[data-astro-cid-pux6a34n]:hover {
  border-color: var(--text-muted);
}
.menu-bar[data-astro-cid-pux6a34n] {
  width: 14px;
  height: 1.5px;
  background: var(--text-muted);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle[data-astro-cid-pux6a34n][aria-expanded=true] .menu-bar[data-astro-cid-pux6a34n]:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.menu-toggle[data-astro-cid-pux6a34n][aria-expanded=true] .menu-bar[data-astro-cid-pux6a34n]:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}
.mobile-menu[data-astro-cid-pux6a34n] {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--bg-color);
  padding: 6rem 1.5rem 2rem;
  padding-top: calc(6rem + env(safe-area-inset-top, 0px));
  padding-bottom: env(safe-area-inset-bottom, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  isolation: isolate;
}
.mobile-menu[data-astro-cid-pux6a34n].open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close[data-astro-cid-pux6a34n] {
  position: absolute;
  top: 1.25rem;
  top: max(1.25rem, env(safe-area-inset-top, 1.25rem));
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-muted);
  transition: border-color .2s ease, color .2s ease;
  z-index: 201;
}
.mobile-menu-close[data-astro-cid-pux6a34n]:hover {
  border-color: var(--text-muted);
  color: var(--text-color);
}
.mobile-menu-nav[data-astro-cid-pux6a34n] {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-link[data-astro-cid-pux6a34n] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: color .2s ease, padding-left .2s ease;
}
.mobile-nav-link[data-astro-cid-pux6a34n]:first-child {
  border-top: 1px solid var(--border-subtle);
}
.mobile-nav-link[data-astro-cid-pux6a34n]:hover {
  color: var(--text-muted);
  padding-left: .5rem;
}
.desktop-only[data-astro-cid-pux6a34n] {
  display: none;
}
@media (min-width:768px) {
  .desktop-only[data-astro-cid-pux6a34n] {
    display: flex;
  }
  .mobile-only[data-astro-cid-pux6a34n] {
    display: none !important;
  }
}
.reading-progress[data-astro-cid-pux6a34n] {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--text-color);
  width: 0%;
  transition: width .05s ease-out;
  opacity: 0;
}
.site-header[data-astro-cid-pux6a34n].scrolled .reading-progress[data-astro-cid-pux6a34n] {
  opacity: .5;
}
@media (max-width:480px) {
  .site-header[data-astro-cid-pux6a34n] {
    padding: .75rem 1rem;
  }
  .nav-left[data-astro-cid-pux6a34n] {
    gap: .35rem;
  }
  .brand-name[data-astro-cid-pux6a34n] {
    font-size: .8rem;
  }
  .brand-divider[data-astro-cid-pux6a34n] {
    font-size: .65rem;
  }
  .section-switcher[data-astro-cid-pux6a34n] {
    gap: .5rem;
  }
  .section-label-text[data-astro-cid-pux6a34n] {
    display: none;
  }
  .section-label-short[data-astro-cid-pux6a34n] {
    display: inline;
  }
  .section-link[data-astro-cid-pux6a34n] {
    font-size: .5rem;
    letter-spacing: .06em;
    padding-bottom: 3px;
  }
  .nav-right[data-astro-cid-pux6a34n] {
    gap: .625rem;
  }
}
@media (max-width:380px) {
  .brand-name[data-astro-cid-pux6a34n] {
    font-size: .72rem;
  }
  .section-switcher[data-astro-cid-pux6a34n] {
    gap: .4rem;
  }
}
.newsletter[data-astro-cid-motrwrji] {
  max-width: 72ch;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
}
.newsletter-inner[data-astro-cid-motrwrji] {
  background: var(--glass-bg, var(--bg-secondary));
  backdrop-filter: var(--glass-blur, none);
  border: 1px solid var(--glass-border);
  border-radius: var(--panel-radius);
  padding: 2.5rem 2rem;
}
.newsletter-eyebrow[data-astro-cid-motrwrji] {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: .9rem;
}
.newsletter-heading[data-astro-cid-motrwrji] {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--text-color);
  margin: 0 0 .75rem;
}
.newsletter-sub[data-astro-cid-motrwrji] {
  font-family: var(--font-sans);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 52ch;
}
.newsletter-form[data-astro-cid-motrwrji] {
  margin: 0;
}
.newsletter-row[data-astro-cid-motrwrji] {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.newsletter-label[data-astro-cid-motrwrji] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.newsletter-input[data-astro-cid-motrwrji] {
  flex: 1 1 240px;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: .9rem;
  color: var(--text-color);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: .75rem .9rem;
  transition: border-color .2s ease;
}
.newsletter-input[data-astro-cid-motrwrji]::-moz-placeholder {
  color: var(--text-subtle);
}
.newsletter-input[data-astro-cid-motrwrji]::placeholder {
  color: var(--text-subtle);
}
.newsletter-input[data-astro-cid-motrwrji]:focus {
  outline: none;
  border-color: var(--text-muted);
}
.newsletter-button[data-astro-cid-motrwrji] {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--bg-color);
  background: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 6px;
  padding: .75rem 1.4rem;
  cursor: pointer;
  transition: opacity .2s ease;
}
.newsletter-button[data-astro-cid-motrwrji]:hover {
  opacity: .85;
}
.newsletter-button[data-astro-cid-motrwrji]:disabled {
  opacity: .5;
  cursor: default;
}
.newsletter-hp[data-astro-cid-motrwrji] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.newsletter-fineprint[data-astro-cid-motrwrji] {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--text-subtle);
  margin: .9rem 0 0;
}
.newsletter-fineprint[data-astro-cid-motrwrji] a[data-astro-cid-motrwrji] {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.newsletter-fineprint[data-astro-cid-motrwrji] a[data-astro-cid-motrwrji]:hover {
  color: var(--text-color);
}
.newsletter-status[data-astro-cid-motrwrji] {
  font-family: var(--font-sans);
  font-size: .85rem;
  line-height: 1.5;
  margin: .75rem 0 0;
  min-height: 1.2em;
}
.newsletter[data-astro-cid-motrwrji][data-state=ok] .newsletter-status[data-astro-cid-motrwrji] {
  color: var(--text-color);
}
.newsletter[data-astro-cid-motrwrji][data-state=error] .newsletter-status[data-astro-cid-motrwrji] {
  color: #d2604d;
}
@media (max-width:520px) {
  .newsletter-inner[data-astro-cid-motrwrji] {
    padding: 2rem 1.5rem;
  }
  .newsletter-button[data-astro-cid-motrwrji] {
    flex: 1 1 100%;
  }
}
.site-footer[data-astro-cid-sz7xmlte] {
  position: relative;
  margin-top: auto;
  padding: 4rem 1.5rem 2rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-color);
}
.footer-container[data-astro-cid-sz7xmlte] {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-main[data-astro-cid-sz7xmlte] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
@media (min-width:768px) {
  .footer-main[data-astro-cid-sz7xmlte] {
    grid-template-columns: 1fr 2fr;
  }
}
.footer-brand[data-astro-cid-sz7xmlte] {
  max-width: 280px;
}
.footer-logo[data-astro-cid-sz7xmlte] {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  text-decoration: none;
  margin-bottom: .875rem;
}
.logo-name[data-astro-cid-sz7xmlte] {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-color);
}
.logo-divider[data-astro-cid-sz7xmlte] {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-subtle);
}
.logo-section[data-astro-cid-sz7xmlte] {
  font-family: var(--font-mono);
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.footer-tagline[data-astro-cid-sz7xmlte] {
  font-family: var(--font-sans);
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.footer-nav[data-astro-cid-sz7xmlte] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width:480px) {
  .footer-nav[data-astro-cid-sz7xmlte] {
    grid-template-columns: 1fr 1fr;
  }
}
.footer-heading[data-astro-cid-sz7xmlte] {
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin: 0 0 .875rem;
}
.footer-col[data-astro-cid-sz7xmlte] ul[data-astro-cid-sz7xmlte] {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col[data-astro-cid-sz7xmlte] li[data-astro-cid-sz7xmlte] {
  margin-bottom: .4rem;
}
.footer-col[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-col[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
  color: var(--text-color);
}
.footer-bottom[data-astro-cid-sz7xmlte] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright[data-astro-cid-sz7xmlte] {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--text-subtle);
  margin: 0;
  line-height: 1.7;
}
.footer-rights[data-astro-cid-sz7xmlte] {
  opacity: .75;
}
.footer-privacy[data-astro-cid-sz7xmlte] {
  display: inline-block;
  margin-top: .4rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-privacy[data-astro-cid-sz7xmlte]:hover {
  color: var(--text-color);
}
.footer-social[data-astro-cid-sz7xmlte] {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-social[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-social[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte]:hover {
  color: var(--text-color);
}
.footer-agents[data-astro-cid-sz7xmlte] {
  margin: 1.5rem 0 0;
  font-family: var(--font-mono);
  font-size: .6rem;
  line-height: 1.6;
  color: var(--text-subtle);
  opacity: .3;
  transition: opacity .3s ease;
}
.footer-agents[data-astro-cid-sz7xmlte]:hover,
.footer-agents[data-astro-cid-sz7xmlte]:focus-within {
  opacity: .85;
}
.footer-agents[data-astro-cid-sz7xmlte] a[data-astro-cid-sz7xmlte] {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .2em;
}
