@charset "UTF-8";
/*
 * Font Face Declarations
 */
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../fonts/AtkinsonHyperlegibleNext-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: normal;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("../fonts/AtkinsonHyperlegibleNext-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-style: italic;
}
/*
 * Design tokens
 */
/*
 * Reset
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
}

/*
 * Color scheme (CSS Custom Properties for runtime theming)
 */
:root {
  --color-bg: #242424;
  --color-container-bg: #1a1a1a;
  --color-text: #e4e4e4;
  --color-text-muted: #888;
  --color-border: #3a3a3a;
  --color-accent: #d46262;
  --color-accent-hover: #e49e9e;
  --color-link: #d46262;
  --color-link-hover: #e49e9e;
  --color-btn-bg: #d46262;
  --color-btn-text: #fff;
  --color-btn-hover-bg: #e4e4e4;
  --color-btn-hover-text: #1a1a1a;
  --color-success: #449948;
  --color-success-border: #347637;
  --color-info: #4293d4;
  --color-info-border: #2a79b9;
  --color-warning: #dd952b;
  --color-warning-border: #b8791d;
  --color-error: #ef5350;
  --color-error-border: #eb2521;
  --color-debug: #76828c;
  --color-debug-border: #5e6871;
  --font-text: Atkinson Hyperlegible Next, system-ui, sans-serif;
  --font-logo: Atkinson Hyperlegible Next, system-ui, sans-serif, Londrina Sketch, serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --color-bg: #ccc;
    --color-container-bg: #fff;
    --color-text: #1a1a1a;
    --color-text-muted: #666;
    --color-border: #ddd;
    --color-accent: #c62828;
    --color-accent-hover: #861b1b;
    --color-link: #c62828;
    --color-link-hover: #861b1b;
    --color-btn-bg: #c62828;
    --color-btn-hover-bg: #1a1a1a;
    --color-btn-hover-text: #fff;
    --color-success: #2e7d32;
    --color-success-border: #205823;
    --color-info: #1565c0;
    --color-info-border: #104d92;
    --color-warning: #e65100;
    --color-warning-border: #b33f00;
    --color-error: #c62828;
    --color-error-border: #9c1f1f;
    --color-debug: #546e7a;
    --color-debug-border: #3f535c;
  }
}
/*
 * Base elements
 */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}
a[target=_blank]::after {
  content: " ↗";
  color: var(--color-text-muted);
  text-decoration: none;
  display: inline-block;
  font-size: small;
}
a[target=_blank]:hover::after {
  text-decoration: none;
}

ul,
ol {
  margin-left: 1rem;
}

ul {
  list-style: square;
}

br {
  user-select: none;
}

hr {
  border: 1px dotted var(--color-border);
  margin: 2rem auto;
  width: 50%;
}

/*
 * Tables
 */
table {
  border-collapse: collapse;
  width: 100%;
}

thead {
  font-size: small;
}

th,
td {
  padding: 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

th {
  font-weight: bold;
}

/*
 * Utility classes
 */
.muted, .markdownify.muted *, .markdownify h2.markdownify *,
.markdownify h3.markdownify *,
.markdownify h4.markdownify *,
.markdownify h5.markdownify *,
.markdownify h6.markdownify *, .markdownify.muted, .markdownify h2.markdownify,
.markdownify h3.markdownify,
.markdownify h4.markdownify,
.markdownify h5.markdownify,
.markdownify h6.markdownify, .markdownify h2,
.markdownify h3,
.markdownify h4,
.markdownify h5,
.markdownify h6 {
  color: var(--color-text-muted);
}

.text-success {
  color: var(--color-success);
}

.text-error {
  color: var(--color-error);
}

.text-info {
  color: var(--color-info);
}

.text-warning {
  color: var(--color-warning);
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.select-auto {
  width: auto;
}

.note-display-compact {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0.3rem 0 0 0.9rem;
}

/*
 * Components: Badge
 */
.badge {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
  border: 1px solid currentColor;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.4;
}

.badge-success {
  color: var(--color-success);
}

.badge-warning {
  color: var(--color-warning);
}

.badge-error {
  color: var(--color-error);
}

.badge-muted {
  color: var(--color-text-muted);
}

/*
 * Components: Filter bar
 */
.filter-bar-outer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.filter-clear {
  font-size: 0.8em;
  position: absolute;
  top: 0;
  right: 0;
}

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.filter-label {
  font-size: 0.75em;
  color: var(--color-text-muted);
  min-width: 4rem;
  text-align: right;
}

.filter-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.filter-check {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--color-text-muted);
  user-select: none;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.filter-check input[type=checkbox],
.filter-check input[type=radio] {
  display: none !important;
}
.filter-check:hover:not(:has(input:checked)) {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}
.filter-check:has(input:checked) {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.filter-check.chip-success:has(input:checked) {
  background-color: var(--color-success);
  border-color: var(--color-success);
}
.filter-check.chip-error:has(input:checked) {
  background-color: var(--color-error);
  border-color: var(--color-error);
}

/*
 * Components: Email chip input (invite form)
 */
#email-chip-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-container-bg);
  min-height: 44px;
  cursor: text;
  margin-bottom: 6px;
}

#email-chip-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--color-text) !important;
  padding: 4px 2px !important;
  min-width: 220px;
  width: auto !important;
  flex: 1;
  font-size: inherit;
  field-sizing: unset !important;
}

#email-chip-error {
  color: var(--color-error);
  min-height: 1.2em;
  margin: 4px 0;
  font-size: 0.875rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px 2px 10px;
  border-radius: 12px;
  background: var(--color-border);
  color: var(--color-text);
  font-size: 0.875rem;
  white-space: nowrap;
}
.chip--invalid {
  background: var(--color-error);
  color: #fff;
}
.chip button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  font-size: 1rem;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
}
.chip button:hover {
  opacity: 1;
}

/*
 * Components: Activity list (v2 deals)
 */
.act-group,
.act-children {
  list-style: none;
  padding: 0;
  margin: 0;
}
.act-group p,
.act-children p {
  display: inline;
  margin: 0;
}

.act-children {
  padding-left: 1.5rem;
  border-left: 1px solid var(--color-border);
  margin-left: 0.75rem;
  margin-top: 0.1rem;
}

.act-empty {
  padding: 0.5rem 0;
}

.arow {
  margin: 0.15rem 0;
}

.arow-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.drag-handle {
  cursor: grab;
  color: var(--color-text-muted);
  padding: 0 0.2rem;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}
.drag-handle:active {
  cursor: grabbing;
}

.afield {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.2rem 0.25rem;
  font: inherit;
  color: var(--color-text);
  box-sizing: border-box;
  transition: border-color 0.1s, background 0.1s;
}
.afield:focus {
  outline: none;
  border-bottom-color: var(--color-border);
  background: var(--color-container-bg);
  color: var(--color-text);
}
.afield[readonly] {
  cursor: default;
}
.afield.saving {
  opacity: 0.5;
}

.atitle {
  flex: 2;
  min-width: 0;
}

.aact {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.1rem 0.35rem;
  font-size: 0.85em;
  flex-shrink: 0;
  line-height: 1;
}
.aact:hover, .aact:focus {
  color: var(--color-text);
  outline: none;
}

.adel:hover, .adel:focus {
  color: var(--color-error);
}

.act-new-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.act-new-row input {
  flex: 1;
  min-width: 0;
}

.act-parent-row {
  margin-top: 0.2rem;
}

.sortable-ghost {
  opacity: 0.3;
}

.sortable-chosen {
  background: var(--color-container-bg);
  border-radius: 2px;
}

.sortable-drag {
  opacity: 0.9;
}

.astate-btn, .act-state-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.2rem;
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}
.astate-btn:hover, .astate-btn:focus, .act-state-btn:hover, .act-state-btn:focus {
  background: none;
  color: inherit;
  outline: none;
}
.astate-btn.astate-todo, .astate-btn.act-state-todo, .act-state-btn.astate-todo, .act-state-btn.act-state-todo {
  color: var(--color-text-muted);
}
.astate-btn.astate-done, .astate-btn.act-state-done, .act-state-btn.astate-done, .act-state-btn.act-state-done {
  color: var(--color-success);
}
.astate-btn.astate-skipped, .astate-btn.act-state-skipped, .act-state-btn.astate-skipped, .act-state-btn.act-state-skipped {
  color: var(--color-text-muted);
}
.astate-btn.astate-blocked, .astate-btn.act-state-blocked, .act-state-btn.astate-blocked, .act-state-btn.act-state-blocked {
  color: var(--color-error);
  font-weight: 700;
}

.atitle-skipped {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.atitle-blocked {
  font-weight: 700;
  color: var(--color-error);
}

.astate-rollup {
  font-size: 0.75em;
  color: var(--color-text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.astate-rollup.astate-rollup-blocked {
  color: var(--color-error);
  font-weight: 700;
}

/*
 * Layout: Container
 */
#container {
  width: 100%;
  max-width: 75vw;
  margin: 2rem auto;
  padding: 1rem;
  background-color: var(--color-container-bg);
  border-radius: 2px;
  display: grid;
  gap: 1rem;
}

/*
 * Layout: Main
 */
main {
  display: grid;
  gap: 1rem;
}

/*
 * Layout: Grids
 */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20ch, 1fr));
  gap: 1rem;
}

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

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

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

/*
 * Layout: Definition Lists
 */
dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
}

dt {
  font-weight: bold;
  text-align: left;
}

dd {
  margin: 0;
}

/*
 * Components: Messages
 */
.messages {
  list-style: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
  width: 100%;
  user-select: none;
}
.messages .message {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
}
.messages .message-icon {
  flex-shrink: 0;
}
.messages .message-text {
  flex-grow: 1;
}
.messages .close-btn {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.6;
  color: inherit;
  padding: 0;
  line-height: 1;
}
.messages .close-btn:hover {
  opacity: 1;
}
.messages .success {
  background-color: var(--color-success);
  border-left-color: var(--color-success-border);
}
.messages .info {
  background-color: var(--color-info);
  border-left-color: var(--color-info-border);
}
.messages .warning {
  background-color: var(--color-warning);
  border-left-color: var(--color-warning-border);
  user-select: text;
}
.messages .error {
  background-color: var(--color-error);
  border-left-color: var(--color-error-border);
  user-select: text;
}
.messages .debug {
  background-color: var(--color-debug);
  border-left-color: var(--color-debug-border);
  user-select: text;
}

/*
 * Components: Buttons
 */
[role=button],
button,
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-text);
  user-select: none;
}
[role=button]:hover,
button:hover,
.btn:hover {
  background-color: var(--color-btn-hover-bg);
  color: var(--color-btn-hover-text);
  text-decoration: none;
}
[role=button]:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 2px;
}
[role=button]:disabled,
button:disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
[role=button]:disabled:hover,
button:disabled:hover,
.btn:disabled:hover {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
}

/*
 * Components: Button variants
 */
.btn-danger {
  background-color: var(--color-error);
  color: #fff;
}
.btn-danger:hover {
  background-color: var(--color-error-border);
  color: #fff;
}

.btn-success {
  background-color: var(--color-success);
  color: #fff;
}
.btn-success:hover {
  background-color: var(--color-success-border);
  color: #fff;
}

.btn-muted {
  background-color: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.btn-muted:hover {
  background-color: var(--color-border);
  color: var(--color-text);
}

/*
 * Components: Action row (inline horizontal button group)
 */
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.action-row form {
  display: contents;
}

/*
 * Components: Breadcrumbs
 */
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: baseline;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  user-select: none;
  font-size: small;
  gap: 1px;
}
.breadcrumbs li {
  color: var(--color-text-muted);
}
.breadcrumbs li span {
  border-right: none;
  background: var(--color-container-bg);
  padding: 0.25rem 0.5rem 0.155rem 0.5rem;
}
.breadcrumbs a {
  display: block;
  padding: 0.25rem 0.5rem 0.155rem 0.5rem;
  border-radius: 0.5rem;
  background: var(--color-border);
  color: var(--color-text);
}
.breadcrumbs a:hover {
  color: var(--color-text);
  text-decoration: none;
}

/*
 * Component: Details
 */
details {
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1rem;
  interpolate-size: allow-keywords;
}
details::details-content {
  transition: content-visibility 0.5s allow-discrete, height 0.5s ease-out;
  height: 0;
  overflow: hidden;
  content-visibility: hidden;
}
details[open]::details-content {
  height: auto;
  content-visibility: visible;
}
details summary {
  list-style: none;
  cursor: pointer;
  padding: 0 0.5rem;
  /* text-align: center; */
  color: var(--color-text-muted);
  font-size: inherit;
  user-select: none;
}

details .track-content {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track-card {
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-text-muted);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.track-card.track-state-complete {
  border-left-color: var(--color-success);
}
.track-card.track-state-in_progress {
  border-left-color: var(--color-warning);
}
.track-card.track-state-at_risk {
  border-left-color: #e07b39;
}
.track-card.track-state-blocked {
  border-left-color: var(--color-error);
}
.track-card form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.track-card form select {
  width: auto;
  font-size: 0.85rem;
}

.track-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.track-card-header .track-activities-link {
  margin-left: auto;
  font-size: small;
  white-space: nowrap;
}

tr.row-blocked-major {
  background: rgba(220, 53, 69, 0.08);
}

tr.row-blocked-minor {
  background: rgba(220, 53, 69, 0.03);
}

tr.row-at-risk {
  background: rgba(224, 123, 57, 0.07);
}

tr.row-disqualified td {
  text-decoration: line-through;
  opacity: 0.5;
}

.deals-table {
  width: 100%;
}
.deals-table th:nth-child(1), .deals-table td:nth-child(1) {
  width: 1px;
}
.deals-table th:nth-child(2) {
  width: 100%;
}
.deals-table th:not(:nth-child(1)):not(:nth-child(2)), .deals-table td:not(:nth-child(1)):not(:nth-child(2)) {
  white-space: nowrap;
  text-align: center;
}
.deals-table td:not(:nth-child(2)) {
  overflow: hidden;
}
.deals-table th:nth-child(3) {
  min-width: 10em;
}
.deals-table th:nth-child(6) {
  max-width: 10em;
  white-space: wrap;
}
.deals-table th:nth-child(7) {
  min-width: 10em;
}
.deals-table td {
  border-right: 1px solid var(--color-border);
}
.deals-table td:last-child {
  border-right: none;
}

.track-strip {
  display: flex;
  gap: 3px;
  font-size: 0.85em;
}

/*
 * Components: Fieldset
 */
fieldset {
  border: 1px solid var(--color-border);
  border-radius: 2px;
  padding: 1rem;
}
fieldset legend {
  padding: 0 0.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: x-large;
  font-weight: 900;
  user-select: none;
}
fieldset .actions {
  text-align: center;
}
fieldset details {
  font-size: inherit;
}
fieldset details summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

/*
 * Components: Header
 */
header {
  text-align: center;
  user-select: none;
}
header #logo a {
  font-size: 3rem;
  font-family: var(--font-logo);
  font-weight: 900;
}
header #logo a:hover {
  text-decoration: none;
}
header #logo #one {
  color: var(--color-text);
}
header #logo #two {
  color: var(--color-accent);
}
header #logo #three {
  color: var(--color-text-muted);
  font-size: small;
  /* font-weight: 100; */
}

/*
 * Components: Footer
 */
footer {
  text-align: center;
  color: var(--color-text-muted);
  font-size: smaller;
  user-select: none;
}
footer ul {
  list-style: none;
  margin-left: 0;
}

/*
 * Components: Markdownify
 */
.markdownify {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.markdownify h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.markdownify h2,
.markdownify h3,
.markdownify h4,
.markdownify h5,
.markdownify h6 {
  margin-top: 1.75rem;
  margin-bottom: 0.25rem;
}
.markdownify h2:first-child,
.markdownify h3:first-child,
.markdownify h4:first-child,
.markdownify h5:first-child,
.markdownify h6:first-child {
  margin-top: 0;
}
.markdownify hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid var(--color-border);
}
.markdownify p {
  margin-top: 0.75rem;
  line-height: 1.6;
}
.markdownify p:first-child {
  margin-top: 0;
}
.markdownify ul,
.markdownify ol {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}
.markdownify ul li,
.markdownify ol li {
  margin-top: 0.35rem;
  line-height: 1.5;
}

/*
 * Components: Guest hero
 */
.guest-hero {
  text-align: center;
  max-width: 42rem;
  margin: 3rem auto;
}
.guest-hero h2 {
  margin-bottom: 1rem;
}
.guest-hero p,
.guest-hero h3 {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/*
 * Forms
 */
fieldset form,
.form-styled {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
fieldset form div,
.form-styled div {
  display: flex;
  flex-direction: column;
}
fieldset form label.required::after,
.form-styled label.required::after {
  content: " *";
  color: var(--color-error);
}
fieldset form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
fieldset form select,
fieldset form textarea,
.form-styled input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.form-styled select,
.form-styled textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-container-bg);
  color: var(--color-text);
  field-sizing: content;
}
fieldset form input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
fieldset form select:focus,
fieldset form textarea:focus,
.form-styled input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.form-styled select:focus,
.form-styled textarea:focus {
  outline: none;
  border-color: var(--color-link);
  box-shadow: 0 0 0 2px rgba(212, 98, 98, 0.25);
}
fieldset form input:not([type=checkbox]):not([type=radio]):not([type=submit]):disabled, fieldset form input:not([type=checkbox]):not([type=radio]):not([type=submit]):read-only,
fieldset form select:disabled,
fieldset form select:read-only,
fieldset form textarea:disabled,
fieldset form textarea:read-only,
.form-styled input:not([type=checkbox]):not([type=radio]):not([type=submit]):disabled,
.form-styled input:not([type=checkbox]):not([type=radio]):not([type=submit]):read-only,
.form-styled select:disabled,
.form-styled select:read-only,
.form-styled textarea:disabled,
.form-styled textarea:read-only {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: var(--color-bg);
}
fieldset form textarea,
.form-styled textarea {
  resize: vertical;
}
fieldset form select,
.form-styled select {
  cursor: pointer;
}
fieldset form select[multiple],
.form-styled select[multiple] {
  min-height: 6rem;
}
fieldset form input[type=color],
.form-styled input[type=color] {
  appearance: none;
  -webkit-appearance: none;
  width: 3rem;
  height: 2.5rem;
  padding: 0.25rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-bg);
  cursor: pointer;
}
fieldset form input[type=color]::-webkit-color-swatch-wrapper,
.form-styled input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
fieldset form input[type=color]::-webkit-color-swatch,
.form-styled input[type=color]::-webkit-color-swatch {
  border: none;
  border-radius: 2px;
}
fieldset form input[type=color]::-moz-color-swatch,
.form-styled input[type=color]::-moz-color-swatch {
  border: none;
  border-radius: 2px;
}
fieldset form input[type=color]:focus-visible,
.form-styled input[type=color]:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 2px;
}
fieldset form,
.form-styled {
  /* Checkbox as toggle switch */
}
fieldset form input[type=checkbox],
.form-styled input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 2.5rem;
  height: 1.4rem;
  min-width: 2.5rem;
  min-height: 1.4rem;
  background-color: var(--color-border);
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-right: 0.5rem;
}
fieldset form input[type=checkbox]::before,
.form-styled input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--color-container-bg);
  border-radius: 50%;
  transition: transform 0.2s ease;
}
fieldset form input[type=checkbox]:checked,
.form-styled input[type=checkbox]:checked {
  background-color: var(--color-success);
}
fieldset form input[type=checkbox]:checked::before,
.form-styled input[type=checkbox]:checked::before {
  transform: translateX(1.1rem);
}
fieldset form input[type=checkbox]:focus-visible,
.form-styled input[type=checkbox]:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 2px;
}
fieldset form,
.form-styled {
  /* Radio buttons */
}
fieldset form input[type=radio],
.form-styled input[type=radio] {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
}
fieldset form div:has(input[type=checkbox]),
fieldset form div:has(input[type=radio]),
.form-styled div:has(input[type=checkbox]),
.form-styled div:has(input[type=radio]) {
  flex-direction: row;
  align-items: center;
}
fieldset form div:has(input[type=checkbox]) label,
fieldset form div:has(input[type=radio]) label,
.form-styled div:has(input[type=checkbox]) label,
.form-styled div:has(input[type=radio]) label {
  order: 1;
  cursor: pointer;
}
fieldset form,
.form-styled {
  /* Validation errors */
}
fieldset form .errorlist,
.form-styled .errorlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
fieldset form .errorlist li,
.form-styled .errorlist li {
  background-color: var(--color-error);
  color: #fff;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
}
fieldset form > .errorlist,
.form-styled > .errorlist {
  background-color: var(--color-error);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
fieldset form,
.form-styled {
  /* Error span (alternative error format) */
}
fieldset form span.error,
fieldset form .error,
.form-styled span.error,
.form-styled .error {
  background-color: var(--color-error);
  color: #fff;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  display: block;
}
fieldset form,
.form-styled {
  /* Help text */
}
fieldset form .helptext,
.form-styled .helptext {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
fieldset form,
.form-styled {
  /* Fieldsets inside forms used for multi-select fields */
}
fieldset form div fieldset,
.form-styled div fieldset {
  width: 100%;
}
fieldset form div fieldset > div:last-of-type,
.form-styled div fieldset > div:last-of-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/*
 * Components: Star Rating
 */
.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  user-select: none;
}
.star-rating .star {
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 1.25rem;
}
.star-rating .star:hover {
  color: var(--color-accent);
}
.star-rating .star:hover ~ .star {
  color: var(--color-accent);
}
.star-rating .star.filled {
  color: var(--color-accent);
}

.star-rating.readonly .star {
  cursor: default;
  pointer-events: none;
}
.star-rating.readonly .star.filled {
  color: var(--color-accent);
}

/*
 * Components: Progress Bar
 */
.progress {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--color-accent);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.progress-bar[data-complete=true] {
  background: var(--color-success);
}

/*
 * Shared style-cleanup utilities
 */
.text-xs {
  font-size: 0.8rem;
}

.text-xxs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.85rem;
}

.text-md {
  font-size: 0.9rem;
}

.text-lg {
  font-size: larger;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-0 {
  margin-top: 0;
}

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

.mt-3 {
  margin-top: 1.5rem;
}

.mt-tiny {
  margin-top: 0.2rem;
}

.ml-1 {
  margin-left: 0.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

.mb-6 {
  margin-bottom: 2rem;
}

.mb-7 {
  margin-bottom: 2.5rem;
}

.mb-tiny {
  margin-bottom: 0.25rem;
}

.mb-form {
  margin-bottom: 0.6rem;
}

.mx-content {
  margin: 0 1rem;
}

.mx-content-top {
  margin: 1rem 1rem 0;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.m-0 {
  margin: 0;
}

.full-width {
  width: 100%;
}

.max-20 {
  max-width: 20rem;
}

.center-block {
  margin-left: auto;
  margin-right: auto;
}

.float-right {
  float: right;
}

.display-none {
  display: none;
}

.display-inline {
  display: inline;
}

.display-block {
  display: block;
}

.cursor-pointer {
  cursor: pointer;
}

.pre-wrap {
  white-space: pre-wrap;
}

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

.link-plain {
  color: inherit;
  text-decoration: none;
}

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

.page-narrow {
  max-width: 680px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.page-medium {
  max-width: 720px;
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.page-compact {
  max-width: 480px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.page-form {
  max-width: 28rem;
  margin: 0 auto;
}

.panel {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.panel-spaced {
  margin-bottom: 2rem;
}

.panel-compact {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

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

.section-top-spaced {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.form-row {
  margin-bottom: 0.8rem;
}

.form-label-compact {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form-control-compact {
  width: 100%;
  padding: 0.5em 0.75em;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.95rem;
}

.form-control-compact.textarea {
  resize: vertical;
}

.form-error-compact {
  color: var(--color-error, #e55);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.eyebrow-tight {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.inline-action-muted {
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0;
}

.grid-auto-center {
  text-align: center;
}

.grid-detail-2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid-detail-2-2-1 {
  grid-template-columns: 2fr 2fr 1fr;
}

.grid-summary-main {
  grid-template-columns: 3fr auto 1fr;
}

.grid-summary-simple {
  grid-template-columns: 3fr 1fr;
}

.grid-summary-actions {
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
}

.grid-indent {
  margin-left: 0.6rem;
}

.grid-task-meta {
  grid-template-columns: 1fr 1fr auto;
  margin-left: 0.6rem;
}

.grid-task-notes {
  grid-template-columns: 3fr 1fr;
  margin: 0.3rem 0 0 0.6rem;
}

.drag-cell {
  user-select: none;
  cursor: move;
}

.table-fill {
  width: 100%;
}

.table-tight-cell {
  width: 1%;
  white-space: nowrap;
}

.progress-meter {
  width: 100%;
  height: 8px;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-border);
}

.progress-meter::-webkit-progress-bar {
  background: var(--color-border);
  border-radius: 4px;
}

.progress-meter::-webkit-progress-value {
  background: var(--color-accent);
  border-radius: 4px;
}

.progress-meter::-moz-progress-bar {
  background: var(--color-accent);
  border-radius: 4px;
}

.progress-meter.progress-meter-complete::-webkit-progress-value {
  background: var(--color-success);
}

.progress-meter.progress-meter-complete::-moz-progress-bar {
  background: var(--color-success);
}

.label-chip-swatch {
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  vertical-align: -0.08em;
}

.order-active {
  font-weight: 700;
}

.favorite-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 0.25rem;
  color: var(--color-text-muted);
}

.favorite-toggle-pinned {
  color: var(--color-warning);
}

.track-copy-form {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.8rem;
}

.footer-separator {
  color: var(--color-text-muted);
  margin: 0 0.3rem;
}

.text-link-reset {
  text-decoration: none;
}

.text-right-only {
  text-align: right;
}

.centered-page-copy {
  margin: 0 1rem;
  text-align: center;
}

.centered-page-copy-spaced {
  text-align: center;
  margin: 2rem 1rem;
}

.centered-page-copy-tight {
  text-align: center;
  margin: 2rem 1rem 1rem;
}

.centered-page-copy-mid {
  text-align: center;
  margin: 2rem 1rem 1.25rem;
}

.centered-page-copy-large {
  text-align: center;
  margin: 3rem 1rem;
}

.section-title-spaced {
  font-size: 1.1rem;
  margin: 2rem 0 0.6rem;
}

.muted-subcopy {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.card-spaced {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-compact-spaced {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
}

.section-minor {
  padding: 0.9rem 0;
  border-top: 1px solid var(--color-border);
}

.section-minor-tight {
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-border);
}

.section-bottom {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.content-pad-x {
  padding: 0 1rem;
}

.content-pad-top {
  padding-top: 1rem;
}

.copy-prewrap {
  margin: 0;
  white-space: pre-wrap;
  font-size: 0.95rem;
}

.copy-prewrap-spaced {
  margin-top: 0.4rem;
  white-space: pre-wrap;
}

.copy-prewrap-spaced-lg {
  margin-top: 0.8rem;
  white-space: pre-wrap;
}

.strong-line {
  margin: 0;
  font-weight: 600;
}

.strong-line-bold {
  margin: 0;
  font-weight: 700;
}

.compact-heading {
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.action-row-loose {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.action-row-inline {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.action-row-centered {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.action-row-settings {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-direction: row;
}

.action-between {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.stack-list-sm {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stack-list-xs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}

.form-control-search {
  flex: 1;
  min-width: 140px;
  padding: 0.4em 0.75em;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.9rem;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.button-small-plain {
  font-size: small;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}

.display-none-xl {
  display: none;
  font-size: x-large;
}

.checkbox-large {
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.input-short {
  width: 6rem;
}

.hero-center-pad {
  text-align: center;
  padding: 0.75rem 0 0.5rem;
}

.hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.small-meta-muted {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: none;
}

.tiny-label-inline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-right: 0.5rem;
}

.code-font-copy {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

.metric-title {
  font-weight: 600;
  font-size: 1rem;
}

.metric-title-sm {
  font-weight: 600;
  font-size: 0.95rem;
}

.price-line {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.muted-note-spaced {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.small-bottom {
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.small-normal {
  font-size: 0.85rem;
  font-weight: 400;
}

/*
 * Mobile (max-width: 768px)
 * Desktop-first. On mobile: graceful degradation only.
 * Avoid complex layout transforms — prefer scroll over reflow.
 */
@media (max-width: 768px) {
  hr {
    width: 80%;
  }
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #container {
    max-width: 100%;
    margin: 0;
    padding: 0.75rem;
    border-radius: 0;
  }
  .grid-auto,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }
  dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  dd {
    margin-bottom: 0.75rem;
  }
  fieldset {
    padding: 0.75rem;
  }
  header #logo a {
    font-size: 2rem;
  }
  fieldset form div fieldset > div:last-of-type,
  .form-styled div fieldset > div:last-of-type {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar-outer {
    flex-direction: column;
  }
  .filter-bar-outer > div:last-child {
    align-self: flex-end;
  }
  .filter-label {
    display: none;
  }
  .filter-row {
    justify-content: flex-start;
  }
  .filter-row:has(select) {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-clear {
    position: static;
    font-size: 0.85em;
  }
}
@media (max-width: 1024px) {
  .deals-table {
    display: table;
  }
  .deals-table thead {
    display: none;
  }
  .deals-table td:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
  }
  .track-strip {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.3rem;
  }
}

/* Extracted from lambidjango/__templates/__content_community/book/chapter.html */
.book-chapter {
        max-width: 680px;
        width: 100%;
        margin: 2rem auto;
        padding: 0 1rem;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--color-text);
    }
    .book-chapter h1 {
        font-size: 1.9rem;
        line-height: 1.25;
        margin-bottom: .4rem;
        font-family: inherit;
    }
    .book-chapter h2 {
        font-size: 1.3rem;
        margin-top: 2.5rem;
        margin-bottom: .6rem;
        font-family: inherit;
    }
    .book-chapter h3 {
        font-size: 1.1rem;
        margin-top: 2rem;
        margin-bottom: .4rem;
        font-family: inherit;
    }
    .book-chapter p { margin: 0 0 1.2rem; }
    .book-chapter ul, .book-chapter ol {
        margin: 0 0 1.2rem 1.5rem;
    }
    .book-chapter li { margin-bottom: .4rem; }
    .book-chapter blockquote {
        border-left: 3px solid var(--color-border);
        margin: 1.5rem 0;
        padding: .5rem 1.25rem;
        color: var(--color-text-muted);
        font-style: italic;
    }
    .book-chapter hr {
        border: none;
        border-top: 1px solid var(--color-border);
        margin: 2.5rem 0;
    }
    .book-chapter .mermaid {
        display: flex;
        justify-content: center;
        margin: 1.5rem 0 2rem;
    }
    .book-chapter .mermaid svg {
        display: block;
        max-width: 100%;
    }
    .book-chapter pre {
        border-radius: 6px;
        overflow-x: auto;
        margin: 1.2rem 0;
        font-size: .88rem;
        line-height: 1.55;
    }
    .book-chapter pre code.hljs {
        border-radius: 6px;
        font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    }
    .book-nav {
        max-width: 680px;
        width: 100%;
        margin: 3rem auto 2rem;
        padding: 1.5rem 1rem 0;
        border-top: 1px solid var(--color-border);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: .75rem;
        align-items: stretch;
        font-size: .9rem;
    }
    .book-nav-card {
        display: block;
        padding: .9rem 1rem;
        border: 1px solid var(--color-border);
        border-radius: 6px;
        text-decoration: none;
    }
    .book-nav-card:hover, .book-nav-card:hover * { text-decoration: none; }
    .book-nav-prev .book-nav-card { text-align: left; }
    .book-nav-next .book-nav-card { text-align: right; }
    .book-nav-label {
        display: block;
        font-size: .68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--color-text-muted);
        margin-bottom: .35rem;
        font-family: system-ui, sans-serif;
    }
    .book-nav-number {
        display: block;
        font-size: .72rem;
        color: var(--color-text-muted);
        margin-bottom: .2rem;
        font-family: system-ui, sans-serif;
    }
    .book-nav-title {
        display: block;
        line-height: 1.35;
        color: var(--color-text);
        font-family: system-ui, sans-serif;
        font-size: .9rem;
    }
    .book-nav-summary {
        display: block;
        font-size: .75rem;
        color: var(--color-text-muted);
        margin-top: .3rem;
        line-height: 1.4;
        font-family: system-ui, sans-serif;
    }
    .book-nav-center {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .book-nav-contents {
        display: inline-block;
        font-size: .75rem;
        color: var(--color-text-muted);
        border: 1px solid var(--color-border);
        border-radius: 4px;
        padding: .3rem .7rem;
        text-decoration: none;
        font-family: system-ui, sans-serif;
        transition: border-color .15s;
        white-space: nowrap;
    }
    .book-toc-link {
        font-size: .85rem;
        color: var(--color-text-muted);
    }
    .highlight-tooltip {
        position: absolute;
        background: var(--color-text);
        color: var(--color-bg);
        border-radius: 4px;
        padding: .3rem .65rem;
        font-size: .8rem;
        font-family: system-ui, sans-serif;
        cursor: pointer;
        white-space: nowrap;
        z-index: 100;
        display: none;
        transform: translateX(-50%);
        user-select: none;
    }
    .highlight-tooltip.visible { display: block; }
    mark.chapter-highlight {
        background: rgba(255, 220, 80, 0.35);
        border-radius: 2px;
        padding: 0 1px;
        cursor: pointer;
    }

/* Extracted static inline styles */
.extracted-style-0491e72bc5 { font-size:.8rem;min-width:1.25rem; }
.extracted-style-04f00cb610 { font-size:.8rem;margin-bottom:.4rem; }
.extracted-style-06b9883164 { max-width:36rem;margin:2rem auto; }
.extracted-style-0792043303 { max-width:80%;padding:.6rem .9rem;border-radius:12px 12px 12px 2px;background:var(--color-bg-alt,var(--color-bg));border:1px solid var(--color-border);color:var(--color-text); }
.extracted-style-07f5747b5a { font-family:system-ui,sans-serif;font-size:.78rem;color:var(--color-text-muted);margin-bottom:1.2rem; }
.extracted-style-0b1493095c { display:flex;flex-direction:column;gap:.75rem;margin-bottom:2rem; }
.extracted-style-0b588f57da { font-size:.72rem;opacity:.7; }
.extracted-style-0bae983b9c { min-width:90px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;background:#1a1a3a;color:#99f;padding:.2rem .5rem;border-radius:3px;margin-top:.15rem; }
.extracted-style-0d14ea84ca { font-size:.75rem;text-transform:uppercase;letter-spacing:.06em;margin:0 0 .5rem; }
.extracted-style-0e96772302 { margin-top:2.5rem;border-top:1px solid var(--color-border);padding-top:2rem; }
.extracted-style-0fd562f192 { font-size:.95rem;white-space:pre-wrap;margin:0; }
.extracted-style-10d1b60256 { max-width:680px;margin:1.5rem auto 0;padding:0 1rem;text-align:center; }
.extracted-style-11e91e0938 { max-width:36rem;margin:0 auto; }
.extracted-style-121ce27df1 { font-size:1.5rem;font-weight:bold;margin:.25rem 0; }
.extracted-style-14136f4c3a { white-space:nowrap;margin-left:1rem; }
.extracted-style-15cde0427a { font-size:.95rem;line-height:1.7; }
.extracted-style-183ef298c5 { margin:.5rem 0; }
.extracted-style-19836908a3 { margin-bottom:1rem;font-size:.9rem;text-transform:uppercase;letter-spacing:.05em;color:var(--color-text-muted); }
.extracted-style-1ae968c143 { max-width:680px;width:100%;margin:1.5rem auto 0;padding:0 1rem; }
.extracted-style-1d1fa41a6a { font-size:.85rem;margin-top:.25rem;margin-bottom:1.5rem; }
.extracted-style-1d315dca4e { font-size:1rem;font-weight:700;margin-bottom:.3rem; }
.extracted-style-1e3e5e7bbb { font-weight:600;margin-bottom:.25rem; }
.extracted-style-1ff6393228 { display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem; }
.extracted-style-20106ab113 { direction:rtl;text-align:right; }
.extracted-style-20a8cdb488 { min-width:90px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;background:#3a2d00;color:#fc6;padding:.2rem .5rem;border-radius:3px;margin-top:.15rem; }
.extracted-style-22117f7697 { padding:1rem 0;border-top:1px solid var(--color-border); }
.extracted-style-224fca6103 { font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--color-text-muted);margin-bottom:1rem; }
.extracted-style-234d8fe654 { position:absolute;bottom:0;left:0;right:0;height:8rem;background:linear-gradient(to bottom,transparent,var(--color-bg)); }
.extracted-style-25951b38eb { font-size:.95rem; }
.extracted-style-261c0cd7dd { padding:1.5rem 0 1rem; }
.extracted-style-26aa360dff { display:flex;align-items:flex-start;gap:.75rem;cursor:pointer;padding:1rem;border:1px solid var(--color-border);border-radius:6px;margin-bottom:1.25rem; }
.extracted-style-2b107cfd9d { margin:.4rem 0 .6rem;font-size:.9rem;color:var(--color-text-muted); }
.extracted-style-2e9aa305ed { font-size:.85rem;color:var(--color-text-muted);margin-bottom:.25rem; }
.extracted-style-331299e105 { display:flex;flex-direction:column;align-items:center;gap:.5rem; }
.extracted-style-33c9025863 { margin:0 0 .4rem;padding:.5rem .9rem;border-left:3px solid var(--color-border);font-style:italic;font-size:.95rem;color:var(--color-text); }
.extracted-style-36a8599f8c { margin:0 0 .75rem;padding:.75rem 1.25rem;border-left:4px solid var(--color-border);font-style:italic;font-size:1.05rem;line-height:1.7;white-space:pre-wrap;color:var(--color-text); }
.extracted-style-3995822e95 { font-size:.8em; }
.extracted-style-39f52defbb { font-size:.85rem;margin-bottom:2.5rem; }
.extracted-style-3a40e60fa0 { display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1rem; }
.extracted-style-3cb7c7b903 { height:5rem;border-radius:50%; }
.extracted-style-3df761dd29 { border:1px solid var(--color-border);border-radius:6px;padding:1rem 1.2rem;margin-bottom:2rem;background:var(--color-bg-alt,var(--color-bg)); }
.extracted-style-44a50d854d { font-size:1.6rem;margin-bottom:.5rem; }
.extracted-style-470cc7faf8 { max-width:36rem;margin:2rem auto 0; }
.extracted-style-49d0879706 { padding-bottom:1rem;border-bottom:1px solid var(--color-border); }
.extracted-style-4a46dcbece { margin-top:.35rem;display:flex;gap:.5rem; }
.extracted-style-4afe1d2fbd { font-size:larger;letter-spacing:0.05em;cursor:pointer;overflow-x:auto; }
.extracted-style-4baf6d0c0a { width:100%;max-width:520px;padding:.4em .65em;border:1px solid var(--color-border);border-radius:4px;background:var(--color-bg);color:var(--color-text);font-size:.88rem;resize:vertical; }
.extracted-style-4bf35aa385 { display:flex;gap:.5rem;align-items:stretch; }
.extracted-style-4d86f3ec15 { max-width:80%;padding:.6rem .9rem;border:1px solid var(--color-border);border-radius:12px 12px 2px 12px;background:var(--color-bg);color:var(--color-text); }
.extracted-style-4de5a095b4 { flex:1;padding:.5em .75em;border:1px solid var(--color-border);border-radius:4px;background:var(--color-bg);color:var(--color-text);font-size:.95rem;resize:vertical; }
.extracted-style-4f8d54cfef { font-size:.85rem;margin-bottom:2rem; }
.extracted-style-507aae3920 { align-self:center;font-size:.9rem; }
.extracted-style-50b089e0c6 { min-width:90px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;background:#1a3a1a;color:#6f6;padding:.2rem .5rem;border-radius:3px;margin-top:.15rem; }
.extracted-style-533e36998b { font-size:1.6rem;margin-bottom:.4rem; }
.extracted-style-5440ce6c19 { margin-top:.65rem; }
.extracted-style-55900b307c { display:flex;gap:1rem;margin-bottom:2rem;flex-wrap:wrap;border-bottom:1px solid var(--color-border);padding-bottom:1rem; }
.extracted-style-569b4cf317 { font-size:.9rem;margin-bottom:1rem; }
.extracted-style-57f037655e { font-size:.85rem;color:var(--color-text-muted);margin-bottom:1.25rem; }
.extracted-style-5a6b1547bb { display:none;margin-top:.6rem;margin-left:.9rem; }
.extracted-style-5b09fd2f77 { display:flex;align-items:baseline;justify-content:space-between;padding:.6rem 0;border-bottom:1px solid var(--color-border); }
.extracted-style-6136650de5 { display:block;font-weight:700;font-size:.75rem;text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted);margin-bottom:.35rem; }
.extracted-style-62ddec5a12 { font-family:Georgia,'Times New Roman',serif;font-size:1.05rem;line-height:1.8;color:var(--color-text); }
.extracted-style-6314d78f15 { margin-top:.6rem;font-size:.9rem;border-left:3px solid var(--color-border);padding-left:.75rem;color:var(--color-text); }
.extracted-style-6461c23c7c { margin:0 0 .3rem;padding:.5rem .9rem;border-left:3px solid var(--color-accent,var(--color-border));font-style:italic;font-size:.95rem;color:var(--color-text); }
.extracted-style-6b99de8b69 { display:none; }
.extracted-style-6c6a533497 { font-size:1.1rem;font-weight:normal; }
.extracted-style-6e85ecfd94 { font-size:.85rem;margin-bottom:1rem; }
.extracted-style-6f1a233c34 { display:flex;gap:.75rem;margin-bottom:2rem;flex-wrap:wrap; }
.extracted-style-6f313c9058 { text-align:center;color:var(--color-text-muted);margin-bottom:1.5rem; }
.extracted-style-6f8d7cd501 { font-size:.8rem;margin-right:.5rem; }
.extracted-style-6fa66f0bce { padding:.4em 1em; }
.extracted-style-767e333625 { margin-bottom:1.75rem; }
.extracted-style-769e8a2a66 { width:100%;text-align:center;display:inline-block; }
.extracted-style-774f2ac61d { font-weight:600;margin-bottom:.2rem; }
.extracted-style-7f14b07b6d { margin-top:.5rem;padding:.65rem 1rem;background:var(--color-bg-alt,var(--color-bg));border-left:3px solid var(--color-accent,var(--color-border));border-radius:0 4px 4px 0; }
.extracted-style-7f1ea713d4 { font-weight:600;font-size:.95rem;color:var(--color-text-muted); }
.extracted-style-8110c36664 { list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1rem; }
.extracted-style-818643c006 { font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted);opacity:.6;margin-bottom:.5rem;margin-top:1.25rem; }
.extracted-style-8704a57d1c { border-top:1px solid var(--color-border);padding-top:1rem;margin-bottom:.75rem; }
.extracted-style-8bdef57265 { font-size:3rem;font-weight:bold;margin:.5rem 0;line-height:1; }
.extracted-style-8c7157ba6e { margin-bottom:1rem;font-size:.95rem; }
.extracted-style-8cba2d6f76 { margin:0;font-size:.9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.extracted-style-8d94ada812 { flex-direction:row;flex-wrap:wrap;align-items:center;gap:.75rem; }
.extracted-style-8e741f2518 { display:flex;align-items:baseline;gap:.75rem; }
.extracted-style-8fe5576d33 { font-size:.8rem;color:var(--color-text-muted); }
.extracted-style-94f234e6f9 { font-size:1rem;color:var(--color-text-muted);margin-bottom:2rem;line-height:1.6; }
.extracted-style-95f05a8b56 { white-space:nowrap;flex-shrink:0; }
.extracted-style-97294b207c { grid-column:1/-1; }
.extracted-style-97445a8d93 { flex:1; }
.extracted-style-974e992666 { max-width:600px;width:100%;margin:3rem auto;padding:0 1rem; }
.extracted-style-978582be5d { text-align:center;display:none; }
.extracted-style-97f9949288 { margin:.75rem 0 .75rem 1.25rem;display:flex;flex-direction:column;gap:.4rem; }
.extracted-style-98d3c964fc { display:flex;flex-direction:row;gap:.5rem;align-items:center; }
.extracted-style-98f8e32447 { display:grid;grid-template-columns:1fr 260px;gap:1.5rem;align-items:start; }
.extracted-style-997de20f56 { width: 100%; text-align: center; }
.extracted-style-9ae4e4c947 { font-size:.9rem;color:var(--color-text-muted);margin-bottom:1rem; }
.extracted-style-9e84e3d91f { margin-bottom:2rem;padding:1.25rem 1.5rem;border:1px solid var(--color-border);border-radius:6px; }
.extracted-style-a133cff822 { display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem; }
.extracted-style-a3c8736289 { display:flex;justify-content:space-between;align-items:baseline;gap:1rem; }
.extracted-style-a4e2715d2b { display:block;text-decoration:none;color:inherit;padding:.9rem 0;border-top:1px solid var(--color-border); }
.extracted-style-a661a65d96 { font-size:.88rem;margin-top:.5rem;color:var(--color-text-muted); }
.extracted-style-a71dfb2155 { margin:1.5rem 0;display:flex;flex-direction:column;gap:1rem; }
.extracted-style-a7e4c6c6c8 { font-size:.8rem;padding:.3rem .75rem; }
.extracted-style-a9a418708e { margin-bottom:1rem;font-size:.9rem; }
.extracted-style-abb96e91f3 { border:1px solid var(--color-border);border-radius:8px;padding:1.25rem 1.5rem;margin-bottom:2rem;background:var(--color-bg-alt,var(--color-bg)); }
.extracted-style-b05bbeffa0 { display:flex;flex-direction:column;gap:.9rem;padding:0;list-style:none; }
.extracted-style-b66f7e1356 { display:flex;align-items:center;gap:1rem; }
.extracted-style-ba9c917ac0 { font-size:.85rem;cursor:pointer; }
.extracted-style-bc64d2d1e3 { font-size:1.05rem;font-weight:600; }
.extracted-style-bca2775486 { margin: 0 20%; }
.extracted-style-c7e52dd090 { flex-shrink:0;display:inline-block;background:var(--color-accent,#0070f3);color:#fff;border-radius:999px;font-size:.7rem;font-weight:700;padding:.1em .5em;line-height:1.4; }
.extracted-style-c8d977debc { margin-left:.9rem; }
.extracted-style-c938346b1e { border-top:1px solid var(--color-border);padding-top:1.25rem;margin-top:1.25rem; }
.extracted-style-c98b558633 { font-size:.9rem;font-weight:normal; }
.extracted-style-cdb1d8778a { font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--color-text-muted);margin-bottom:.5rem; }
.extracted-style-d107e4f22c { display:flex;flex-direction:column;align-items:flex-end; }
.extracted-style-d2be53634f { display:flex;flex-direction:column;align-items:flex-start; }
.extracted-style-d461c96de5 { position:relative; }
.extracted-style-d88f9d7151 { color:var(--color-text-muted);margin-bottom:1.5rem; }
.extracted-style-d91f9fffbc { font-size:.85rem;margin-top:1rem; }
.extracted-style-d9e785ce12 { max-width:36rem;margin:1.5rem auto 0; }
.extracted-style-da26f43847 { margin-top:.4rem;margin-left:.9rem;display:flex;gap:1rem;align-items:center;flex-wrap:wrap; }
.extracted-style-dd6632fcf2 { position:relative;overflow:hidden;max-height:18rem;margin-bottom:2rem; }
.extracted-style-de1ae5f778 { display:block;margin-top:.4rem; }
.extracted-style-e12eeb5b17 { direction:rtl;text-align:right;padding:0 1.5rem 0 0; }
.extracted-style-e3ef2eacfe { flex-shrink:0;padding-top:.25rem;display:flex;flex-direction:column;align-items:flex-end;gap:.4rem; }
.extracted-style-e6f93f0214 { display:block;border:1px solid var(--color-border);border-radius:6px;padding:1rem 1.2rem;text-decoration:none;color:inherit; }
.extracted-style-e7409385f2 { margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--color-border); }
.extracted-style-e751f28189 { font-size:.8rem;color:var(--color-text-muted);margin-bottom:2rem;padding-left:1.25rem; }
.extracted-style-e88f96e9bf { font-size:1.9rem;line-height:1.25;margin-bottom:.4rem;font-family:Georgia,'Times New Roman',serif; }
.extracted-style-ec35f4a89f { display:flex;align-items:center;gap:.5rem;margin-top:.2rem; }
.extracted-style-edf2ee6e94 { margin:1rem 0; }
.extracted-style-ee3126719f { margin-bottom:.4rem; }
.extracted-style-f0a9d5e6d5 { border-top:1px solid var(--color-border);padding-top:1.5rem;margin-bottom:2.5rem; }
.extracted-style-f242f0c810 { max-width:680px;width:100%;margin:3rem auto;padding:0 1rem; }
.extracted-style-f38a951c89 { flex-shrink:0; }
.extracted-style-f5732bba52 { text-align:center;margin-bottom:1rem; }
.extracted-style-f7f90d4bbc { text-align:center;max-width:32rem;margin:0 auto; }
.extracted-style-fa70757e24 { margin-bottom:.6rem; }
.extracted-style-fb8b861d10 { border-left:3px solid var(--color-warning);padding:.4rem .75rem;color:var(--color-warning); }
