/* [project]/src/styles/components/surfaces.css [app-client] (css) */
@layer components {
  .mf-page {
    gap: var(--mf-page-gap);
    max-width: var(--mf-page-max);
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    display: grid;
    container: product-page / inline-size;
  }

  .mf-page-header, .mf-panel-header {
    align-items: flex-start;
    gap: var(--mf-space-4);
    flex-wrap: wrap;
    justify-content: space-between;
    min-width: 0;
    display: flex;
  }

  .mf-page-header > :first-child, .mf-panel-header > :first-child {
    flex: min(24rem, 100%);
    min-width: 0;
  }

  .mf-page-header h2, .mf-panel-header h2 {
    color: var(--mf-color-text);
    font-size: var(--mf-text-title);
    letter-spacing: -.025em;
    font-weight: 700;
    line-height: 1.12;
  }

  .mf-page-header p, .mf-panel-header p {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    margin-top: var(--mf-space-1);
    line-height: 1.5;
  }

  .mf-page-actions {
    align-items: center;
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    flex: 0 auto;
    justify-content: flex-end;
    max-width: 100%;
    display: flex;
  }

  .mf-surface-card, .mf-panel {
    background: linear-gradient(180deg, color-mix(in srgb, var(--mf-color-highlight) 40%, transparent), transparent 34%),
      var(--mf-surface-card-background);
    border: var(--mf-surface-card-border);
    border-radius: var(--mf-surface-card-radius);
    box-shadow: var(--mf-surface-card-shadow);
    min-width: 0;
    transition: border-color .18s var(--mf-ease-out),
      box-shadow .18s var(--mf-ease-out),
      transform .18s var(--mf-ease-out);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-surface-interactive:hover {
      border-color: color-mix(in srgb, var(--mf-color-accent) 24%, var(--mf-color-border));
      box-shadow: var(--mf-shadow-panel-hover);
    }
  }

  .mf-panel-header > svg {
    color: var(--mf-color-accent);
  }

  .muted-line {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    margin-top: 3px;
    line-height: 1.45;
  }

  .positive {
    color: var(--mf-color-success) !important;
  }

  .negative {
    color: var(--mf-color-danger) !important;
  }

  .mf-panel {
    gap: var(--mf-page-gap);
    padding: var(--mf-surface-card-padding);
    flex-direction: column;
    display: flex;
  }

  .mf-panel-compact {
    min-height: 120px;
  }

  .mf-panel-standard {
    min-height: 220px;
  }

  .mf-panel-tall {
    min-height: 420px;
  }

  .mf-layout-two-up {
    gap: var(--mf-page-gap);
    grid-template-columns: repeat(auto-fit, minmax(min(26rem, 100%), 1fr));
    display: grid;
  }

  .mf-layout-stack {
    align-content: start;
    gap: var(--mf-page-gap);
    display: grid;
  }

  .mf-stat-grid {
    gap: var(--mf-space-2);
    grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
    display: grid;
  }

  .mf-stat-card {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    font-size: var(--mf-text-xs);
    gap: var(--mf-space-1);
    padding: var(--mf-space-3);
    display: grid;
  }

  .mf-stat-card > :is(span, small) {
    color: var(--mf-color-muted);
  }

  .mf-stat-card > strong {
    color: var(--mf-color-text);
    font-size: var(--mf-text-sm);
  }

  .mf-tabs {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-pill);
    align-items: center;
    gap: var(--mf-space-1);
    padding: var(--mf-space-1);
    display: flex;
    overflow-x: auto;
  }

  .mf-tabs-vertical {
    flex-direction: column;
    align-items: stretch;
  }

  .mf-secret-control {
    min-width: 0;
    position: relative;
  }

  .mf-identity, .mf-venue {
    align-items: center;
    gap: var(--mf-space-2);
    display: inline-flex;
  }

  .mf-venue i {
    background: rgb(var(--accent-rgb, 126, 207, 152), .1);
    border: 1px solid var(--mf-color-border-strong);
    color: var(--mf-color-accent);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    font-size: .58rem;
    font-style: normal;
    font-weight: 800;
    display: inline-flex;
  }

  .mf-actions {
    align-items: center;
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    max-width: 100%;
    display: flex;
  }

  .mf-detail-list {
    margin: 0;
    display: grid;
  }

  .mf-detail-list > div {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-4);
    min-height: var(--mf-row-h);
    transition: background-color .16s var(--mf-ease-out);
    justify-content: space-between;
    font-size: .72rem;
    display: flex;
  }

  .mf-detail-list > div:last-child {
    border-bottom: 0;
  }

  .mf-detail-list dt {
    color: var(--mf-color-muted);
  }

  .mf-detail-list dd {
    text-align: right;
    margin: 0;
    font-weight: 650;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-detail-list > div:hover {
      background: color-mix(in srgb, var(--mf-color-accent) 5%, transparent);
    }
  }

  @container product-page (max-width: 860px) {
    .mf-page-actions {
      justify-content: flex-start;
    }
  }

  @container product-page (max-width: 520px) {
    .mf-panel {
      padding: var(--mf-space-4);
    }
  }
}

/* [project]/src/styles/components/forms.css [app-client] (css) */
@layer components {
  .eyebrow {
    color: var(--mf-color-accent);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-size: .6rem;
    font-weight: 700;
  }

  :where(.bot-ops-layout, .dashboard-page) :where(input, select, textarea) {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-text);
    min-height: var(--mf-control-h-md);
    min-width: 0;
    padding: 0 var(--mf-space-3);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      box-shadow .16s var(--mf-ease-out);
  }

  .icon-button {
    width: var(--mf-control-h-md);
    padding: 0 !important;
  }

  .mf-checkbox-field {
    color: var(--mf-color-muted);
    align-items: start;
    gap: var(--mf-space-2);
    grid-template-columns: auto minmax(0, 1fr);
    display: grid;
  }

  .mf-checkbox-field input {
    accent-color: var(--mf-color-accent);
    margin-top: .2em;
  }

  .mf-button {
    border-radius: var(--mf-radius-pill);
    font-size: var(--mf-text-base);
    align-items: center;
    gap: var(--mf-space-2);
    max-width: 100%;
    min-height: var(--mf-control-h-md);
    padding: 0 var(--mf-space-4);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      box-shadow .16s var(--mf-ease-out),
      color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    border: 1px solid #0000;
    flex: none;
    justify-content: center;
    font-weight: 600;
    display: inline-flex;
  }

  .mf-icon-button {
    color: var(--mf-color-muted);
    cursor: pointer;
    transition: background-color .12s var(--mf-ease-out),
      border-color .12s var(--mf-ease-out),
      color .12s var(--mf-ease-out),
      transform .12s var(--mf-ease-out);
    background: none;
    flex: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: inline-flex;
  }

  .mf-icon-button-compact {
    border-radius: var(--mf-radius-compact);
    border: 1px solid #0000;
    width: 30px;
    height: 30px;
  }

  .mf-icon-button-bare {
    border: 0;
  }

  .mf-icon-button:active:not(:disabled) {
    transform: scale(.97);
  }

  .mf-icon-button.is-active {
    background: rgb(var(--accent-rgb, 126, 207, 152), .12);
    border-color: var(--mf-color-border-strong);
    color: var(--mf-color-accent);
  }

  .mf-icon-button:disabled {
    cursor: not-allowed;
    opacity: .38;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-icon-button:not(:disabled):hover {
      background: var(--mf-color-panel-raised);
      border-color: var(--mf-color-border);
      color: var(--mf-color-text);
    }
  }

  .mf-info-tile {
    background: color-mix(in srgb, var(--mf-color-panel-raised) 76%, transparent);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    align-items: center;
    gap: var(--mf-space-3);
    padding: var(--mf-space-3) var(--mf-space-4);
    grid-template-columns: auto minmax(0, 1fr);
    display: grid;
  }

  .mf-info-tile-icon {
    background: color-mix(in srgb, var(--mf-color-accent) 10%, transparent);
    border-radius: var(--mf-radius-compact);
    color: var(--mf-color-accent);
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: inline-flex;
  }

  .mf-info-tile-compact {
    background: color-mix(in srgb, var(--mf-color-panel-raised) 72%, transparent);
    min-height: 70px;
    padding: var(--mf-space-3);
  }

  .mf-info-tile-compact .mf-info-tile-icon {
    background: color-mix(in srgb, var(--mf-color-accent) 11%, transparent);
    width: 34px;
    height: 34px;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-button:hover:not(:disabled) {
      filter: brightness(1.04);
    }
  }

  .mf-button:active:not(:disabled) {
    transform: scale(.98);
  }

  .mf-button-sm {
    min-height: var(--mf-control-h-sm);
    padding-inline: var(--mf-space-3);
  }

  .mf-button-primary {
    background: var(--mf-color-accent);
    box-shadow: inset 0 1px 0 #ffffff47,
      0 8px 24px rgb(var(--accent-rgb, 126, 207, 152), .2);
    color: var(--mf-color-on-accent);
  }

  .mf-button-secondary {
    background: color-mix(in srgb, var(--mf-color-panel-raised) 88%, transparent);
    border-color: var(--mf-color-border);
    box-shadow: inset 0 1px 0 var(--mf-color-highlight);
    color: var(--mf-color-text);
  }

  .mf-button-ghost {
    color: var(--mf-color-muted);
    background: none;
  }

  .mf-button-text {
    box-shadow: none;
    color: var(--mf-color-muted);
    background: none;
    border: 0;
    min-height: auto;
    padding: 0;
  }

  .mf-button-danger {
    background: rgb(var(--mf-color-danger-rgb) / 12%);
    border-color: rgb(var(--mf-color-danger-rgb) / 28%);
    color: var(--mf-color-danger);
  }

  .mf-destructive-action {
    background: var(--mf-color-danger);
    color: var(--mf-color-on-danger);
    min-height: 68px;
    padding: var(--mf-space-3);
    text-align: left;
    border-color: #0000;
    justify-content: flex-start;
    width: 100%;
  }

  .mf-destructive-action-icon {
    background: color-mix(in srgb, var(--mf-color-on-danger) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--mf-color-on-danger) 28%, transparent);
    border-radius: var(--mf-radius-compact);
    color: var(--mf-color-on-danger);
    flex: 0 0 36px;
    justify-content: center;
    align-items: center;
    height: 36px;
    display: inline-flex;
  }

  .mf-destructive-action-copy {
    flex: 1;
    gap: 3px;
    min-width: 0;
    display: grid;
  }

  .mf-destructive-action-copy strong {
    color: var(--mf-color-on-danger);
    font-size: var(--mf-text-base);
    font-weight: 650;
    line-height: 1.2;
  }

  .mf-destructive-action-copy small {
    color: color-mix(in srgb, var(--mf-color-on-danger) 82%, transparent);
    font-size: var(--mf-text-xs);
    font-weight: 500;
    line-height: 1.35;
  }

  .mf-destructive-action-chevron {
    color: color-mix(in srgb, var(--mf-color-on-danger) 82%, transparent);
    transition: transform .16s var(--mf-ease-out);
    flex: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-destructive-action:hover:not(:disabled) .mf-destructive-action-chevron {
      transform: translateX(3px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mf-destructive-action-chevron {
      transition: none;
    }
  }

  .mf-button-marketing-primary, .mf-button-marketing-secondary, .mf-button-marketing-ghost {
    border-radius: var(--mf-radius-pill);
    gap: 7px;
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: filter .15s, transform .15s, background-color .15s;
  }

  .mf-button-marketing-primary {
    background: var(--mf-marketing-accent);
    border: 1px solid color-mix(in srgb, var(--mf-marketing-accent) 75%, white);
    color: var(--mf-marketing-on-accent);
    box-shadow: inset 0 1px #ffffff3d, 0 10px 24px #0071e32e;
  }

  .mf-button-marketing-secondary {
    border: var(--mf-marketing-border-rule);
    color: var(--mf-marketing-ink);
    background: #ffffffc7;
    box-shadow: 0 5px 18px #0000000d;
  }

  .mf-button-marketing-ghost {
    color: var(--mf-marketing-accent);
    background: none;
    border-color: #0000;
  }

  @media (hover: hover) and (pointer: fine) {
    :is(.mf-button-marketing-primary, .mf-button-marketing-secondary, .mf-button-marketing-ghost):hover:not(:disabled) {
      filter: brightness(1.06);
      transform: translateY(-1px);
    }
  }

  :is(.mf-button-marketing-primary, .mf-button-marketing-secondary, .mf-button-marketing-ghost):active:not(:disabled) {
    filter: brightness(.96);
    transform: scale(.97);
  }

  .mf-tabs button {
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: var(--mf-control-h-sm);
    min-width: var(--mf-control-h-sm);
    padding-inline: var(--mf-space-3);
    white-space: nowrap;
    transition: background-color .16s var(--mf-ease-out),
      box-shadow .16s var(--mf-ease-out),
      color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    background: none;
    border: 0;
    flex: none;
    font-weight: 600;
    display: inline-flex;
  }

  .mf-tabs button[aria-selected="true"] {
    background: var(--mf-color-panel-raised);
    box-shadow: var(--mf-shadow-control-active);
    color: var(--mf-color-accent);
  }

  .mf-tabs button:active {
    transform: scale(.97);
  }

  @media (max-width: 680px), (pointer: coarse) {
    .mf-tabs button {
      min-height: 44px;
    }
  }

  .mf-field {
    color: var(--mf-color-muted);
    gap: var(--mf-space-2);
    min-width: 0;
    font-size: .68rem;
    font-weight: 600;
    display: grid;
  }

  .mf-field :where(input, select, textarea) {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-text);
    min-height: var(--mf-control-h-md);
    min-width: 0;
    padding: 0 var(--mf-space-3);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      box-shadow .16s var(--mf-ease-out);
    width: 100%;
  }

  .mf-field .mf-field-control-elevated {
    background: var(--mf-color-bg-elevated);
  }

  .mf-prefixed-control, .mf-field-action-control {
    align-items: center;
    min-width: 0;
    display: flex;
  }

  .mf-prefixed-control > :is(input, select), .mf-field-action-control > input {
    flex: auto;
  }

  .mf-field :where(input, select, textarea):focus {
    background: var(--mf-color-panel-raised);
    border-color: var(--mf-color-accent);
    box-shadow: 0 0 0 3px rgb(var(--accent-rgb, 126, 207, 152), .12);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-field :where(input, select, textarea):hover:not(:disabled) {
      border-color: color-mix(in srgb, var(--mf-color-accent) 32%, var(--mf-color-border));
    }
  }

  .mf-field small {
    color: var(--mf-color-subtle);
    font-weight: 450;
    line-height: 1.4;
  }

  .mf-field-inline {
    grid-template-columns: minmax(8rem, auto) minmax(0, 1fr);
    align-items: center;
  }

  .mf-field-error {
    color: var(--mf-color-danger) !important;
  }

  .mf-choice-group {
    gap: var(--mf-space-2);
    border: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: grid;
  }

  .mf-choice-group legend {
    color: var(--mf-color-muted);
    font-size: .68rem;
    font-weight: 650;
  }

  .mf-choice-grid {
    gap: var(--mf-space-2);
    grid-template-columns: repeat(auto-fit, minmax(min(10rem, 100%), 1fr));
    display: grid;
  }

  .mf-choice-card {
    background: var(--mf-color-bg-elevated);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    align-items: flex-start;
    gap: var(--mf-space-2);
    padding: var(--mf-space-3);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    display: flex;
  }

  .mf-choice-card:has(input:checked) {
    background: color-mix(in srgb, var(--mf-color-accent) 8%, var(--mf-color-bg-elevated));
    border-color: var(--mf-color-border-strong);
  }

  .mf-choice-card input {
    accent-color: var(--mf-color-accent);
    margin-top: 2px;
  }

  .mf-choice-card span, .mf-choice-card small {
    gap: var(--mf-space-1);
    display: grid;
  }

  .mf-choice-card-visual {
    cursor: pointer;
  }

  .mf-choice-card-appearance {
    color: var(--mf-color-muted);
    cursor: pointer;
    font-size: var(--mf-text-xs);
    min-height: 68px;
    padding: var(--mf-space-2);
    text-align: center;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 5px;
    display: grid;
    position: relative;
  }

  .mf-choice-card-appearance strong {
    font-size: inherit;
    font-weight: inherit;
  }

  .mf-choice-card-appearance:active {
    transform: scale(.98);
  }

  .mf-choice-card-appearance:has(input:checked) {
    background: color-mix(in srgb, var(--mf-color-accent) 12%, var(--mf-color-panel));
    border-color: var(--mf-color-accent);
    box-shadow: var(--mf-shadow-progress-active);
    color: var(--mf-color-text);
  }

  .mf-choice-card-appearance:has(input:focus-visible) {
    outline: 2px solid var(--mf-color-accent);
    outline-offset: 2px;
  }

  .mf-choice-card-appearance:has(input:checked) > svg {
    color: var(--mf-color-accent);
  }

  .mf-choice-card-appearance > svg:last-child {
    position: absolute;
    top: 7px;
    right: 7px;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-choice-card-appearance:hover {
      background: var(--mf-color-panel-raised);
      color: var(--mf-color-text);
    }
  }

  .mf-choice-card-indicator {
    color: var(--mf-color-muted);
    cursor: pointer;
    align-items: center;
    gap: var(--mf-space-3);
    text-align: left;
    min-height: 66px;
    transition: border-color .12s var(--mf-ease-out),
      transform .12s var(--mf-ease-out);
    grid-template-columns: auto minmax(0, 1fr);
    display: grid;
  }

  .mf-choice-card-indicator:has(input:checked) {
    background: rgb(var(--accent-rgb, 126, 207, 152), .1);
    border-color: var(--mf-color-accent);
  }

  .mf-choice-card-indicator:active {
    transform: scale(.97);
  }

  .mf-choice-card-indicator > span {
    gap: 2px;
    display: grid;
  }

  .mf-choice-card-indicator strong {
    color: var(--mf-color-text);
    font-size: var(--mf-text-sm);
  }

  .mf-choice-card-indicator small {
    color: var(--mf-color-subtle);
    font-size: var(--mf-text-xs);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-choice-card-indicator:hover {
      border-color: var(--mf-color-border-strong);
    }
  }

  .mf-secret-control input {
    border-radius: var(--mf-radius-control) !important;
    padding-right: calc(var(--mf-control-h-md) + var(--mf-space-3)) !important;
  }

  .mf-secret-control input::-ms-clear {
    display: none;
  }

  .mf-secret-control input::-ms-reveal {
    display: none;
  }

  .mf-secret-control button {
    appearance: none;
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-muted);
    cursor: pointer;
    height: calc(var(--mf-control-h-md) - 8px);
    transition: background-color .16s var(--mf-ease-out),
      color .16s var(--mf-ease-out),
      box-shadow .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    width: calc(var(--mf-control-h-md) - 8px);
    background: none;
    border: 0;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
  }

  .mf-secret-control button:hover:not(:disabled) {
    background: color-mix(in srgb, var(--mf-color-accent) 10%, transparent);
    color: var(--mf-color-text);
  }

  .mf-secret-control button:focus-visible {
    background: color-mix(in srgb, var(--mf-color-accent) 12%, transparent);
    color: var(--mf-color-accent);
    outline: 2px solid color-mix(in srgb, var(--mf-color-accent) 72%, transparent);
    outline-offset: 2px;
  }

  .mf-secret-control button[aria-pressed="true"] {
    color: var(--mf-color-accent);
  }

  .mf-field [aria-invalid="true"] {
    border-color: var(--mf-color-danger);
  }

  .mf-switch {
    align-items: center;
    gap: var(--mf-space-2);
    display: inline-flex;
  }

  .mf-switch input {
    opacity: 0;
    width: 1px;
    height: 1px;
    position: absolute;
  }

  .mf-switch > span {
    --mf-switch-height: 22px;
    --mf-switch-width: 38px;
    --mf-switch-padding: 2px;
    --mf-switch-thumb-size: 16px;
    --mf-switch-thumb-travel: calc(var(--mf-switch-width) - var(--mf-switch-height));
    background: color-mix(in srgb, var(--mf-color-subtle) 72%, var(--mf-color-panel-raised));
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-pill);
    flex: 0 0 var(--mf-switch-width);
    height: var(--mf-switch-height);
    padding: var(--mf-switch-padding);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out);
    width: var(--mf-switch-width);
    display: inline-flex;
  }

  .mf-switch > span:after {
    content: "";
    height: var(--mf-switch-thumb-size);
    transition: transform .16s var(--mf-ease-out);
    width: var(--mf-switch-thumb-size);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px #00000047;
  }

  .mf-switch input:checked + span {
    background: var(--mf-color-accent);
    border-color: var(--mf-color-accent);
  }

  .mf-switch input:checked + span:after {
    transform: translateX(var(--mf-switch-thumb-travel));
  }

  .mf-switch input:focus-visible + span {
    box-shadow: var(--mf-focus);
  }

  .mf-switch em {
    color: var(--mf-color-muted);
    font-size: .7rem;
    font-style: normal;
  }

  .mf-form-grid {
    gap: var(--mf-space-3);
    display: grid;
  }

  .mf-form-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  }

  .mf-accent-picker {
    gap: var(--mf-space-2);
    border: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .mf-accent-picker legend {
    color: var(--mf-color-muted);
    margin-bottom: var(--mf-space-2);
    font-size: .68rem;
    font-weight: 650;
  }

  .mf-accent-picker button {
    background: var(--mf-color-bg-elevated);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-muted);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: var(--mf-control-h-sm);
    padding: 0 var(--mf-space-3);
    text-transform: capitalize;
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    font-size: .68rem;
    display: inline-flex;
  }

  .mf-accent-picker button[aria-pressed="true"] {
    background: color-mix(in srgb, var(--mf-color-accent) 9%, var(--mf-color-bg-elevated));
    border-color: var(--mf-color-border-strong);
    color: var(--mf-color-text);
  }

  .mf-accent-picker i {
    background: var(--swatch, var(--mf-color-accent));
    border-radius: 50%;
    width: 10px;
    height: 10px;
  }

  .mf-checkbox {
    color: var(--mf-color-muted);
    align-items: center;
    gap: var(--mf-space-2);
    font-size: .7rem;
    display: flex;
  }

  .mf-checkbox input {
    accent-color: var(--mf-color-accent);
  }

  @media (max-width: 680px), (pointer: coarse) {
    .mf-button:not(.mf-button-text), .mf-icon-button-compact, .mf-field :where(input, select, textarea) {
      min-height: 44px;
    }

    .mf-icon-button-compact {
      width: 44px;
    }

    .mf-secret-control button {
      width: 44px;
      height: 44px;
      right: 2px;
    }
  }
}

/* [project]/src/styles/components/tables.css [app-client] (css) */
@layer components {
  :where(.bot-ops-layout, .dashboard-page) button:not(.mf-button, .mf-table-link, .mf-tab-button, .mf-segmented-button) {
    background: var(--mf-color-accent);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-on-accent);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: var(--mf-control-h-md);
    padding: 0 var(--mf-space-3);
    border: 1px solid #0000;
    justify-content: center;
    font-size: .72rem;
    font-weight: 680;
    display: inline-flex;
  }

  .mf-panel-table, .mf-panel-chart {
    min-height: 300px;
  }

  .mf-table-scroll {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--mf-color-muted) 30%, transparent) transparent;
    min-width: 0;
    overflow-x: auto;
  }

  .mf-table {
    border-collapse: collapse;
    table-layout: auto;
    width: 100%;
    font-size: .7rem;
  }

  .mf-table th, .mf-table td {
    border-bottom: 1px solid var(--mf-color-border);
    height: var(--mf-row-h);
    padding: var(--mf-space-2) var(--mf-space-3);
    text-align: left;
    vertical-align: middle;
  }

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

  .mf-table th {
    color: var(--mf-color-subtle);
    letter-spacing: .055em;
    text-transform: uppercase;
    font-size: .62rem;
    font-weight: 750;
  }

  .mf-table tbody tr {
    transition: background-color .14s var(--mf-ease-out);
  }

  .mf-table-row-selected {
    background: rgb(var(--accent-rgb, 126, 207, 152), .08);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-table tbody tr:hover {
      background: color-mix(in srgb, var(--mf-color-accent) 7%, transparent);
    }
  }

  .mf-table-link {
    color: inherit;
    align-items: center;
    gap: var(--mf-space-2);
    text-align: left;
    transition: color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    background: none;
    border: 0;
    padding: 0;
    display: inline-flex;
  }

  .mf-table-link:active {
    transform: scale(.985);
  }

  .mf-table-link small {
    color: var(--mf-color-muted);
    margin-top: 2px;
    font-size: .62rem;
    display: block;
  }

  .mf-cell-subline {
    color: var(--mf-color-muted);
    margin-top: 3px;
    font-size: .62rem;
    display: block;
  }

  .mf-table-actions {
    align-items: center;
    gap: var(--mf-space-1);
    display: inline-flex;
  }

  .mf-table-empty {
    color: var(--mf-color-muted);
    padding-block: var(--mf-space-8) !important;
    text-align: center !important;
  }
}

/* [project]/src/styles/components/feedback.css [app-client] (css) */
@layer components {
  .mf-status-notice {
    background: rgb(var(--mf-color-info-rgb) / 7%);
    border: 1px solid rgb(var(--mf-color-info-rgb) / 22%);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-info);
    align-items: flex-start;
    gap: var(--mf-space-3);
    padding: var(--mf-space-3);
    grid-template-columns: auto minmax(0, 1fr);
    display: grid;
  }

  .mf-status-notice > svg {
    flex: none;
  }

  .mf-status-notice-success {
    background: rgb(var(--mf-color-success-rgb) / 7%);
    border-color: rgb(var(--mf-color-success-rgb) / 22%);
    color: var(--mf-color-success);
  }

  .mf-status-notice-accent {
    background: color-mix(in srgb, var(--mf-color-accent) 7%, transparent);
    border-color: color-mix(in srgb, var(--mf-color-accent) 14%, var(--mf-color-border));
    color: var(--mf-color-accent);
  }

  .mf-status-notice-warning {
    background: rgb(var(--mf-color-warning-rgb) / 7%);
    border-color: rgb(var(--mf-color-warning-rgb) / 22%);
    color: var(--mf-color-warning);
  }

  .mf-status-notice-danger {
    background: rgb(var(--mf-color-danger-rgb) / 7%);
    border-color: rgb(var(--mf-color-danger-rgb) / 22%);
    color: var(--mf-color-danger);
  }

  .mf-status-notice-spacious {
    padding: var(--mf-space-4);
  }

  .mf-status-notice-compact {
    align-items: center;
    gap: var(--mf-space-2);
    padding: var(--mf-space-2) var(--mf-space-3);
    display: flex;
  }

  .mf-status-notice-card {
    background: rgb(var(--accent-rgb, 126, 207, 152), .08);
    border-color: rgb(var(--accent-rgb, 126, 207, 152), .2);
    border-radius: var(--mf-radius-card);
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    display: flex;
  }

  .mf-status-notice-card .mf-status-notice-copy {
    gap: 5px;
  }

  .mf-status-notice-card .mf-status-notice-copy > span {
    line-height: 1.55;
  }

  .mf-status-notice-copy {
    gap: 2px;
    min-width: 0;
    display: grid;
  }

  .mf-status-notice-copy strong {
    color: var(--mf-color-text);
    font-size: var(--mf-text-sm);
  }

  .mf-status-notice-copy :is(span, small) {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
    line-height: 1.5;
  }

  .empty-state {
    color: var(--mf-color-muted);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: 130px;
    padding: var(--mf-space-5);
    text-align: center;
    flex-direction: column;
    flex: auto;
    justify-content: center;
    font-size: .72rem;
    display: flex;
  }

  .empty-state > svg {
    background: color-mix(in srgb, var(--mf-color-accent) 10%, var(--mf-color-panel-raised));
    border: 1px solid var(--mf-color-border-strong);
    box-sizing: content-box;
    color: var(--mf-color-accent);
    border-radius: 14px;
    padding: 10px;
  }

  .empty-state strong {
    color: var(--mf-color-text);
  }

  .empty-state a {
    color: var(--mf-color-accent);
    font-weight: 700;
  }

  .empty-state-compact {
    min-height: 80px;
  }

  .mf-async-state {
    align-self: stretch;
  }

  .mf-async-state-empty {
    box-shadow: none;
    align-self: stretch;
    align-items: center;
    gap: var(--mf-space-3);
    height: 100%;
    min-height: max(160px, 100%);
    padding: var(--mf-space-5);
    text-align: center;
    background: none;
    border: 0;
    border-radius: 0;
    flex-direction: column;
    flex: auto;
    justify-content: center;
    width: 100%;
    display: flex;
    transform: none;
  }

  .mf-async-state-empty.mf-panel-compact {
    min-height: max(120px, 100%);
  }

  .mf-async-state-empty:hover {
    box-shadow: none;
    border-color: #0000;
    transform: none;
  }

  .mf-async-state.mf-async-state-empty.mf-panel {
    box-shadow: none;
    gap: var(--mf-space-3);
    background: none;
    border: 0;
    border-radius: 0;
    flex-direction: column;
    grid-template-rows: none;
    min-height: max(160px, 100%);
    padding: 0;
    display: flex;
    position: relative;
    transform: none;
  }

  .mf-async-state.mf-async-state-empty.mf-panel.mf-panel-compact {
    min-height: max(120px, 100%);
  }

  .mf-async-state.mf-async-state-empty > .mf-widget-content {
    box-sizing: border-box;
    min-height: 0;
    padding: var(--mf-space-5);
    text-align: center;
    place-items: center;
    width: 100%;
    display: grid;
    position: absolute;
    inset: 0;
  }

  .mf-async-state-empty-content {
    box-sizing: border-box;
    align-items: center;
    gap: var(--mf-space-2);
    overflow-wrap: anywhere;
    text-align: center;
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    width: 100%;
    max-width: 36rem;
    max-height: 100%;
    display: flex;
  }

  .mf-async-state-empty-content h2, .mf-async-state-empty-content p {
    margin: 0;
  }

  .mf-async-state-empty-content h2 {
    color: var(--mf-color-text);
    font-size: var(--mf-text-sm);
    letter-spacing: -.012em;
    font-weight: 650;
    line-height: 1.35;
  }

  .mf-async-state-empty-content p {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
    max-width: 32rem;
    line-height: 1.45;
  }

  .mf-async-state-empty .mf-async-state-actions {
    margin-top: var(--mf-space-1);
    justify-content: center;
    width: 100%;
  }

  .mf-async-state .mf-widget-content {
    gap: var(--mf-space-3);
    display: grid;
  }

  .mf-async-state .mf-widget-content > p {
    color: var(--mf-color-muted);
    margin: 0;
  }

  .mf-async-state-actions {
    align-items: center;
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    display: flex;
  }

  .mf-badge {
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-muted);
    align-items: center;
    gap: var(--mf-space-1);
    min-height: 24px;
    padding: 0 var(--mf-space-2);
    white-space: nowrap;
    font-size: .65rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
  }

  .mf-badge-success {
    background: rgb(var(--mf-color-success-rgb) / 10%);
    border-color: rgb(var(--mf-color-success-rgb) / 24%);
    color: var(--mf-color-success);
  }

  .mf-badge-warning {
    color: var(--mf-color-warning);
    background: #e5b96f1a;
    border-color: #e5b96f3d;
  }

  .mf-badge-danger {
    background: rgb(var(--mf-color-danger-rgb) / 10%);
    border-color: rgb(var(--mf-color-danger-rgb) / 24%);
    color: var(--mf-color-danger);
  }

  .mf-badge-info {
    color: var(--mf-color-info);
    background: #7ba7e81a;
    border-color: #7ba7e83d;
  }

  .mf-badge-accent {
    background: rgb(var(--accent-rgb, 126, 207, 152), .1);
    border-color: var(--mf-color-border-strong);
    color: var(--mf-color-accent);
  }

  .mf-badge-marketing {
    border-radius: var(--mf-radius-pill);
    letter-spacing: .04em;
    text-transform: uppercase;
    min-height: 28px;
    padding-inline: 10px;
    font-size: .625rem;
  }

  .mf-badge-icon {
    border-radius: 50%;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
  }

  .mf-badge-icon svg {
    flex: none;
  }

  .mf-badge-indicator, .mf-badge-text {
    background: none;
    border: 0;
    border-radius: 0;
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
  }

  .mf-badge-indicator:before {
    content: "";
    background: currentColor;
    border-radius: 50%;
    width: 6px;
    height: 6px;
  }

  .mf-alert {
    background: var(--mf-color-panel-raised);
    font-size: var(--mf-text-sm);
    gap: var(--mf-space-1);
    padding: var(--mf-space-3) var(--mf-space-4);
    box-shadow: inset 0 1px 0 var(--mf-color-highlight);
    border: 1px solid #0000;
    border-radius: 14px;
    line-height: 1.45;
    display: grid;
  }

  .mf-alert strong {
    color: var(--mf-color-text);
    font-size: var(--mf-text-sm);
    font-weight: 650;
  }

  .mf-alert span {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
  }

  .mf-alert-success {
    background: rgb(var(--mf-color-success-rgb) / 10%);
    border-color: rgb(var(--mf-color-success-rgb) / 24%);
  }

  .mf-alert-warning {
    background: rgb(var(--mf-color-warning-rgb) / 10%);
    border-color: rgb(var(--mf-color-warning-rgb) / 24%);
  }

  .mf-alert-danger {
    background: rgb(var(--mf-color-danger-rgb) / 10%);
    border-color: rgb(var(--mf-color-danger-rgb) / 24%);
  }

  .mf-alert-info {
    background: rgb(var(--mf-color-info-rgb) / 10%);
    border-color: rgb(var(--mf-color-info-rgb) / 24%);
  }

  .mf-route-state {
    justify-content: center;
    align-items: flex-start;
    max-width: 560px;
    margin: min(12vh, 120px) auto;
  }

  .mf-route-state > p {
    color: var(--mf-color-muted);
    font-size: .78rem;
    line-height: 1.6;
  }
}

/* [project]/src/styles/components/overlays.css [app-client] (css) */
@layer components {
  .mf-dialog-backdrop {
    max-width: none;
    height: 100dvh;
    min-height: 0;
    padding: var(--mf-overlay-gutter);
    transition: opacity .18s var(--mf-ease-out);
    z-index: 100;
    background: #00000085;
    border: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    display: flex;
    position: fixed;
    inset: 0;
    overflow: auto;
  }

  html:not([data-reduce-transparency="true"]) .mf-dialog-backdrop {
    -webkit-backdrop-filter: blur(22px) saturate(.9);
    backdrop-filter: blur(22px) saturate(.9);
  }

  .mf-dialog {
    background: linear-gradient(145deg, var(--mf-glass-chrome-highlight), transparent 28%), var(--mf-glass-chrome-background-strong);
    border: 1px solid var(--mf-glass-chrome-border);
    border-radius: var(--mf-radius-shell);
    color: var(--mf-color-text);
    gap: var(--mf-space-4);
    max-width: 520px;
    max-height: min(calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter)), 860px);
    padding: clamp(14px, 3vw, var(--mf-space-5));
    transition: opacity .18s var(--mf-ease-out),
      transform .18s var(--mf-ease-out);
    width: 100%;
    box-shadow: var(--mf-shadow-popover);
    margin: 0;
    display: grid;
    position: static;
    overflow-y: auto;
    transform: translateY(0)scale(1);
  }

  .mf-dialog-backdrop-end {
    background: #00000047;
  }

  html:not([data-reduce-transparency="true"]) .mf-dialog-backdrop-end {
    -webkit-backdrop-filter: blur(6px) saturate(.9);
    backdrop-filter: blur(6px) saturate(.9);
  }

  .mf-dialog-placement-end {
    border-radius: var(--mf-radius-shell);
    height: min(720px, calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter)));
    max-height: calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter));
    max-width: min(440px, calc(100vw - var(--mf-overlay-gutter) - var(--mf-overlay-gutter)));
    overflow: hidden;
  }

  .mf-dialog-sm {
    max-width: 420px;
  }

  .mf-dialog-lg {
    max-height: min(calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter)), 860px);
    max-width: 680px;
    overflow-y: auto;
  }

  .mf-dialog-danger {
    border-color: rgb(var(--mf-color-danger-rgb) / 40%);
  }

  .mf-dialog-marketing {
    background: var(--mf-marketing-surface);
    border: var(--mf-marketing-card-border);
    border-radius: var(--mf-marketing-card-radius);
    box-shadow: var(--mf-marketing-dialog-shadow);
    color: var(--mf-marketing-ink);
  }

  .mf-dialog-body {
    min-width: 0;
  }

  .mf-dialog-close {
    color: var(--mf-color-muted);
    min-height: var(--mf-control-h-sm);
    min-width: var(--mf-control-h-sm);
    transition: background-color .16s var(--mf-ease-out),
      color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    background: none;
    border: 0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .mf-dialog-close:active:not(:disabled) {
    transform: scale(.95);
  }

  .mf-popover-anchor {
    position: relative;
  }

  .mf-popover {
    background: linear-gradient(145deg, var(--mf-glass-chrome-highlight), transparent 28%), var(--mf-glass-chrome-background-strong);
    border: 1px solid var(--mf-glass-chrome-border);
    border-radius: var(--mf-radius-card);
    box-shadow: var(--mf-shadow-popover);
    color: var(--mf-color-text);
    max-height: calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter));
    max-width: calc(100vw - var(--mf-overlay-gutter) - var(--mf-overlay-gutter));
    right: 0;
    top: calc(100% + var(--mf-space-2));
    transform-origin: 100% 0;
    transition: opacity .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    z-index: 90;
    position: absolute;
    overflow: auto;
    transform: translateY(0)scale(1);
  }

  html:not([data-reduce-transparency="true"]) :where(.mf-dialog, .mf-popover) {
    -webkit-backdrop-filter: blur(30px) saturate(1.24);
    backdrop-filter: blur(30px) saturate(1.24);
  }

  .mf-popover[data-placement="top"] {
    transform-origin: 100% 100%;
  }

  .mf-popover-compact {
    background: var(--mf-color-panel-raised);
    border-radius: var(--mf-radius-control);
    min-width: min(176px, calc(100vw - var(--mf-overlay-gutter) - var(--mf-overlay-gutter)));
    z-index: 30;
    gap: 2px;
    padding: 5px;
    display: grid;
    top: calc(100% + 7px);
  }

  .mf-popover-compact > button {
    border-radius: var(--mf-radius-compact);
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: max(34px, var(--mf-control-h-sm));
    min-width: 0;
    padding: 0 var(--mf-space-2);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: none;
    border: 0;
    display: flex;
    overflow: hidden;
  }

  .mf-popover-compact > button[aria-checked="true"] {
    background: rgb(var(--accent-rgb, 126, 207, 152), .1);
    color: var(--mf-color-accent);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-popover-compact > button:hover {
      background: var(--mf-color-panel-raised);
      color: var(--mf-color-text);
    }
  }

  .mf-dialog.connection-dialog {
    max-height: min(calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter)), 860px);
    max-width: 680px;
    overflow-y: auto;
  }

  .mf-dialog > header {
    align-items: flex-start;
    gap: var(--mf-space-4);
    justify-content: space-between;
    display: flex;
  }

  .mf-dialog h2 {
    font-size: .95rem;
  }

  .mf-dialog p {
    color: var(--mf-color-muted);
    margin-top: var(--mf-space-1);
    font-size: .7rem;
  }

  .mf-dialog-actions {
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    justify-content: flex-end;
    display: flex;
  }

  .mf-dialog-actions > .mf-button {
    flex: none;
    max-width: 100%;
  }

  @starting-style {
    .mf-dialog-backdrop {
      opacity: 0;
    }

    .mf-dialog {
      opacity: 0;
      transform: translateY(8px)scale(.985);
    }

    .mf-popover {
      opacity: 0;
      transform: translateY(-4px)scale(.97);
    }
  }

  .mf-dialog-backdrop-modeless {
    align-items: initial;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    pointer-events: none;
    background: none;
    padding: 0;
    overflow: visible;
  }

  .mf-dialog-backdrop-modeless .mf-dialog {
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-shell);
    max-height: calc(100dvh - var(--mf-overlay-gutter) - var(--mf-overlay-gutter));
    max-width: calc(100vw - var(--mf-overlay-gutter) - var(--mf-overlay-gutter));
    pointer-events: auto;
  }
}

/* [project]/src/styles/components/exchanges.css [app-client] (css) */
@layer components {
  .exchange-brand-mark {
    color: var(--mf-color-muted);
    place-items: center;
    display: inline-grid;
  }

  .exchange-brand-mark svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
  }

  .exchange-brand-avatar {
    background: color-mix(in srgb, var(--exchange-brand, var(--mf-color-text)) 10%, var(--mf-color-panel));
    border: 1px solid color-mix(in srgb, var(--exchange-brand, var(--mf-color-text)) 30%, var(--mf-color-border));
    color: var(--exchange-brand, var(--mf-color-text));
    border-radius: 50%;
    flex: 0 0 48px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: inline-flex;
  }

  .exchange-brand-avatar > .exchange-brand-mark {
    place-items: center;
    width: 25px;
    height: 25px;
    display: inline-grid;
  }

  .exchange-brand-avatar > .exchange-brand-mark svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .exchange-brand-mark.exchange-brand-binance {
    color: var(--mf-color-exchange-binance);
  }

  .exchange-brand-mark.exchange-brand-okx, .exchange-brand-mark.exchange-brand-bybit {
    color: var(--mf-color-text);
  }

  .exchange-brand-mark.exchange-brand-kraken {
    color: var(--mf-color-exchange-kraken);
  }

  .exchange-brand-mark.exchange-brand-coinbase {
    color: var(--mf-color-exchange-coinbase);
  }

  .exchange-brand-mark.exchange-brand-bitget {
    color: var(--mf-color-exchange-bitget);
  }
}

/* [project]/src/styles/components/dashboard-preview.css [app-client] (css) */
@layer components {
  .mf-dashboard-preview-viewport {
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }

  .mf-dashboard-preview-canvas {
    --mf-kpi-h: 96px;
    --mf-page-gap: 14px;
    --mf-panel-pad: 16px;
    --mf-row-h: 44px;
    --mf-surface-card-padding: 16px;
    --mf-text-base: 12px;
    --mf-text-metric: 22px;
    --mf-text-page-title: 24px;
    --mf-text-sm: 11px;
    --mf-text-title: 17px;
    --mf-text-xs: 10px;
    transform-origin: 0 0;
    min-width: 0;
  }

  .mf-dashboard-preview-content.dashboard-page {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .mf-dashboard-preview-content .dashboard-page-layout {
    min-height: 0;
  }

  .mf-dashboard-preview-content .dashboard-page-layout > .dashboard-primary-grid > *, .mf-dashboard-preview-content .dashboard-page-layout > .dashboard-secondary-grid > * {
    height: 100%;
    min-height: 0;
  }

  .mf-dashboard-preview-content .dashboard-primary-grid, .mf-dashboard-preview-content .dashboard-secondary-grid {
    min-height: 0;
  }
}

/* [project]/src/components/widgets/widgets.css [app-client] (css) */
@layer components {
  .mf-widget {
    background: linear-gradient(180deg, color-mix(in srgb, var(--mf-color-highlight) 42%, transparent), transparent 34%),
      var(--mf-surface-card-background);
    border: var(--mf-surface-card-border);
    border-radius: var(--mf-surface-card-radius);
    box-shadow: var(--mf-surface-card-shadow);
    gap: var(--mf-page-gap);
    min-width: 0;
    padding: var(--mf-surface-card-padding);
    transition: border-color .18s var(--mf-ease-out),
      box-shadow .18s var(--mf-ease-out),
      transform .18s var(--mf-ease-out);
    position: relative;
    container: widget / inline-size;
  }

  .mf-widget-inset {
    background: color-mix(in srgb, var(--mf-color-bg) 86%, var(--mf-color-panel));
  }

  .mf-widget-accented {
    background: linear-gradient(135deg, color-mix(in srgb, var(--mf-color-accent) 7%, transparent), transparent 42%), var(--mf-color-panel);
  }

  .mf-widget-borderless {
    border: 0;
  }

  .mf-widget-bot {
    background: var(--mf-color-panel);
  }

  .mf-widget-brand {
    background: radial-gradient(circle at 0 0, rgb(var(--exchange-brand-rgb, 91, 96, 109), .12), transparent 34%), var(--mf-color-panel);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-widget-bot:hover {
      box-shadow: var(--mf-shadow-panel-hover);
      transform: translateY(-1px);
    }
  }

  .mf-widget-danger {
    background: var(--mf-surface-card-background);
  }

  .mf-widget-asset, .mf-widget-exchange {
    background: var(--mf-color-panel);
    border: var(--mf-widget-border);
    border-radius: var(--mf-radius-exchange-card);
    box-shadow: var(--mf-shadow-exchange-card);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-widget-asset:hover, .mf-widget-exchange:hover {
      box-shadow: var(--mf-shadow-exchange-card-hover);
      transform: translateY(-2px);
    }
  }

  .mf-widget-plan {
    background: var(--mf-surface-card-background);
    border: var(--mf-widget-border);
    border-radius: var(--mf-radius-card);
    box-shadow: var(--mf-shadow-card);
    padding: clamp(16px, 1.8vw, 28px);
  }

  .mf-widget-preview {
    background: var(--mf-color-panel);
    border: var(--mf-widget-border);
    border-radius: var(--mf-radius-card);
    box-shadow: var(--mf-shadow-card);
    padding: var(--mf-panel-pad);
  }

  .mf-widget-plan.is-featured {
    box-shadow: var(--mf-shadow-card-accent);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-widget-plan:hover {
      box-shadow: var(--mf-shadow-card-hover);
      transform: translateY(-2px);
    }
  }

  .mf-widget-resource {
    background: color-mix(in srgb, var(--mf-color-panel-raised) 72%, transparent);
    border: var(--mf-widget-border);
    border-radius: var(--mf-radius-card);
    box-shadow: none;
    padding: var(--mf-space-4);
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-widget-resource:hover {
      background: color-mix(in srgb, var(--mf-color-accent) 9%, var(--mf-color-panel-raised));
      box-shadow: var(--mf-shadow-resource-hover);
      transform: translateY(-1px);
    }
  }

  .mf-widget-resource:active {
    transform: scale(.98);
  }

  .mf-widget-resource:focus-visible {
    box-shadow: none;
    outline: 2px solid var(--mf-color-accent);
    outline-offset: 3px;
  }

  .mf-widget-summary {
    padding: clamp(18px, 2.6vw, 30px);
  }

  .mf-widget-workspace {
    background: var(--mf-color-panel);
    border: var(--mf-widget-border);
    border-radius: var(--mf-radius-card);
    box-shadow: var(--mf-shadow-panel);
    gap: 0;
    padding: 0;
  }

  .mf-widget-workspace:fullscreen {
    border: 0;
    border-radius: 0;
  }

  .mf-widget-padding-hero {
    padding: clamp(var(--mf-space-6), 2.4vw, var(--mf-space-8));
  }

  .mf-widget-padding-none {
    padding: 0;
  }

  .mf-widget-padding-spacious {
    padding: clamp(var(--mf-space-5), 2vw, var(--mf-space-8));
  }

  .mf-widget-click-target {
    color: inherit;
    cursor: pointer;
    font: inherit;
    height: 100%;
    min-height: inherit;
    text-align: left;
    z-index: 1;
    background: none;
    border: 0;
    flex-direction: column;
    width: 100%;
    padding: 0;
    text-decoration: none;
    display: flex;
    position: relative;
  }

  .mf-widget-click-target:focus-visible {
    border-radius: var(--mf-radius-control);
    box-shadow: var(--mf-focus);
    outline: none;
  }

  .mf-widget-marketing, .mf-widget-marketing-dark {
    background: var(--mf-marketing-card-background);
    border: var(--mf-marketing-border-rule);
    box-shadow: var(--mf-marketing-card-shadow);
    color: var(--mf-marketing-ink);
    min-height: 0;
    padding: var(--mf-marketing-card-padding);
    border-radius: 28px;
  }

  .mf-widget-marketing-dark {
    background: var(--mf-marketing-dark-surface);
    border-color: var(--mf-marketing-dark-line);
    box-shadow: var(--mf-marketing-card-shadow);
    color: var(--mf-marketing-dark-ink);
  }

  :is(.mf-widget-marketing, .mf-widget-marketing-dark).mf-widget-padding-none {
    padding: 0;
  }

  :is(.mf-widget-marketing, .mf-widget-marketing-dark).mf-panel-compact {
    padding: var(--mf-marketing-card-padding-compact);
  }

  :is(.mf-widget-marketing, .mf-widget-marketing-dark).mf-panel-tall {
    padding: var(--mf-marketing-card-padding-hero);
  }

  :is(.mf-widget-marketing, .mf-widget-marketing-dark):focus-visible {
    box-shadow: var(--mf-marketing-focus), var(--mf-marketing-card-shadow);
  }

  :is(.mf-widget-marketing, .mf-widget-marketing-dark) > .mf-widget-content {
    min-height: 0;
  }

  .mf-widget.market-card {
    background: radial-gradient(circle at 72% 16%, #0071e333, #0000 34%), linear-gradient(145deg, #fff, #edf5ff);
    border-radius: 30px;
    padding: clamp(26px, 3vw, 38px);
  }

  .mf-widget.market-card:nth-child(2) {
    background: radial-gradient(circle at 72% 16%, #bf5af233, #0000 34%), linear-gradient(145deg, #fff, #f5efff);
  }

  .mf-widget.market-card:nth-child(3) {
    background: radial-gradient(circle at 72% 16%, #ff9f0a2e, #0000 34%), linear-gradient(145deg, #fff, #fff7e9);
  }

  .mf-widget.platform-card {
    background: radial-gradient(circle at 72% 16%, #0071e33d, #0000 42%), linear-gradient(145deg, #1d2b3b, #1c1c1e 68%);
    border-radius: 30px;
    padding: clamp(26px, 3vw, 38px);
  }

  .platform-card-link:nth-child(2) > .mf-widget.platform-card {
    background: radial-gradient(circle at 72% 16%, #5e5ce63d, #0000 42%), linear-gradient(145deg, #2a2235, #1c1c1e 68%);
  }

  .platform-card-link:nth-child(3) > .mf-widget.platform-card {
    background: radial-gradient(circle at 72% 16%, #ff9f0a33, #0000 42%), linear-gradient(145deg, #332b1d, #1c1c1e 68%);
  }

  .mf-widget.prediction-section {
    background: radial-gradient(circle at 88% 15%, #bf5af233, #0000 34%), linear-gradient(145deg, #fff, #f4f0ff);
    padding: clamp(42px, 7vw, 80px);
  }

  .mf-widget.detail-card, .mf-widget.pricing-card {
    padding: clamp(26px, 3vw, 38px);
  }

  .mf-widget.detail-card {
    background: radial-gradient(circle at 78% 12%, #0071e338, #0000 38%), linear-gradient(145deg, #1d2b3b, #1c1c1e 68%);
  }

  .mf-widget.detail-card:nth-child(2) {
    background: radial-gradient(circle at 78% 12%, #5e5ce63d, #0000 38%), linear-gradient(145deg, #2a2235, #1c1c1e 68%);
  }

  .mf-widget.detail-card:nth-child(3) {
    background: radial-gradient(circle at 78% 12%, #34c75933, #0000 38%), linear-gradient(145deg, #1d3025, #1c1c1e 68%);
  }

  .mf-widget.detail-card:nth-child(4) {
    background: radial-gradient(circle at 78% 12%, #ff9f0a33, #0000 38%), linear-gradient(145deg, #332b1d, #1c1c1e 68%);
  }

  .mf-widget.pricing-faq-list {
    background: radial-gradient(circle at 100% 0, #0071e329, #0000 42%), linear-gradient(145deg, #111820, #1c1c1e 72%);
  }

  .mf-widget.pricing-card-featured {
    border-color: var(--mf-marketing-line);
    background: radial-gradient(circle at 100% 0, #0071e32b, #0000 38%), #fff;
    box-shadow: 0 24px 70px #0050b41c;
  }

  .mf-widget.resource-action {
    border-color: var(--mf-marketing-line);
    background: #eef6ff;
    padding: 24px;
  }

  .mf-widget.resource-document {
    padding: clamp(30px, 5vw, 58px);
  }

  .mf-widget.shared-profile-hero, .mf-widget.shared-profile-status {
    background: radial-gradient(circle at 50% 0, #0071e329, #0000 42%), linear-gradient(145deg, #fff, #f4f8ff);
  }

  @media (max-width: 680px) {
    .mf-widget:is(.market-card, .platform-card, .detail-card) {
      border-radius: 24px;
      padding: 24px;
    }

    .mf-widget.prediction-section {
      border-radius: 24px;
      padding: 30px 22px;
    }

    .mf-widget.resource-document {
      border-radius: 24px;
      padding: 28px 20px;
    }
  }

  .mf-widget:focus-visible {
    box-shadow: var(--mf-focus);
    outline: none;
  }

  .mf-widget-auth {
    background: var(--auth-surface, var(--mf-auth-surface));
    border: var(--mf-widget-border-light);
    border-radius: var(--mf-surface-card-radius);
    box-shadow: var(--mf-auth-card-shadow);
    gap: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
  }

  .mf-widget-auth:before {
    content: none;
  }

  .mf-widget-auth .auth-page-heading {
    padding: var(--mf-space-8);
    text-align: center;
    background: radial-gradient(circle at 50% -15%, #2997ff57, transparent 14rem),
      linear-gradient(145deg, var(--mf-auth-header-surface), var(--mf-auth-header-surface-deep));
    gap: 0;
    display: grid;
    position: relative;
    overflow: hidden;
  }

  .mf-widget-auth .auth-page-heading:before, .mf-widget-auth .auth-page-heading:after {
    aspect-ratio: 1;
    content: "";
    border: 1px solid #ffffff14;
    border-radius: 50%;
    width: 8rem;
    position: absolute;
  }

  .mf-widget-auth .auth-page-heading:before {
    top: -4.5rem;
    left: -2rem;
  }

  .mf-widget-auth .auth-page-heading:after {
    bottom: -4.5rem;
    right: -2rem;
  }

  .mf-widget-auth .auth-page-heading > * {
    margin: 0;
  }

  .mf-widget-auth .auth-page-heading .eyebrow {
    color: var(--mf-auth-header-accent);
    letter-spacing: .04em;
    text-transform: none;
    margin-bottom: .8rem;
    font-size: .6875rem;
    font-weight: 650;
  }

  .mf-widget-auth .auth-page-heading h1 {
    color: var(--mf-auth-header-ink);
    letter-spacing: -.06em;
    text-wrap: balance;
    font-size: clamp(2.55rem, 5vw, 3.55rem);
    font-weight: 690;
    line-height: .94;
  }

  .mf-widget-auth .auth-page-heading > p:last-child {
    max-width: 23rem;
    color: var(--mf-auth-header-muted);
    text-wrap: pretty;
    margin: 1rem auto 0;
    font-size: .875rem;
    line-height: 1.5;
  }

  .mf-widget-auth > .mf-widget-content {
    gap: 0;
    padding: 0;
    display: grid;
  }

  .mf-widget-auth .mf-form-grid {
    gap: var(--mf-space-4);
    display: grid;
  }

  .mf-widget-auth > .mf-widget-content > .auth-form {
    padding: var(--mf-space-8);
  }

  .mf-widget-auth .mf-field {
    color: #3a3a3c;
    gap: .4375rem;
    font-size: .75rem;
    font-weight: 610;
  }

  .mf-widget-auth .mf-field :is(input, select, textarea), .mf-widget-auth .mf-secret-control {
    border-radius: var(--mf-radius-control);
    color: var(--auth-ink, var(--mf-color-text));
    background: #76768012;
    border: 1px solid #3c3c4321;
    min-height: 3.125rem;
    box-shadow: inset 0 1px 2px #00000008;
  }

  .mf-widget-auth .mf-field :is(input, select, textarea) {
    padding-inline: .9375rem;
    font-size: 1rem;
  }

  .mf-widget-auth .mf-field :is(input, select, textarea)::placeholder {
    color: #98989d;
  }

  .mf-widget-auth .mf-field :is(input, select, textarea):hover, .mf-widget-auth .mf-secret-control:hover {
    border-color: #0071e342;
  }

  .mf-widget-auth .mf-field :is(input, select, textarea):focus, .mf-widget-auth .mf-secret-control:focus-within {
    border-color: var(--auth-accent, var(--mf-auth-accent));
    background: #fff;
    outline: 0;
    box-shadow: 0 0 0 4px #0071e31c;
  }

  .mf-widget-auth .mf-secret-control input {
    min-height: 3rem;
    box-shadow: none;
    background: none;
    border: 0;
    padding-right: 3.25rem;
  }

  .mf-widget-auth .mf-secret-control button {
    color: var(--auth-muted, var(--mf-color-muted));
    background: none;
    border: 0;
    border-radius: 50%;
    width: 2.625rem;
    height: 2.625rem;
    right: .1875rem;
  }

  .mf-widget-auth .mf-secret-control button:hover:not(:disabled) {
    background: var(--auth-accent-soft, #0071e31a);
    color: var(--auth-accent, var(--mf-color-accent));
  }

  .mf-widget-auth .mf-button {
    border-radius: var(--mf-radius-pill);
    min-height: 3rem;
    font-size: .875rem;
    font-weight: 620;
  }

  .mf-widget-auth .mf-button-primary {
    background: var(--auth-accent, var(--mf-auth-accent));
    border: 1px solid var(--auth-accent, var(--mf-auth-accent));
    border-radius: var(--mf-radius-pill);
    color: #fff;
    width: 100%;
    box-shadow: inset 0 1px #ffffff40, 0 10px 24px #0071e338;
  }

  .mf-widget-auth .mf-button-secondary {
    width: 100%;
    color: var(--auth-ink, var(--mf-auth-ink));
    border: 1px solid var(--auth-border, var(--mf-color-border));
    background: #ffffffc2;
    box-shadow: inset 0 1px #fffc;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-widget-auth .mf-button-primary:hover:not(:disabled) {
      background: #0077ed;
      transform: translateY(-1px);
      box-shadow: inset 0 1px #ffffff40, 0 13px 30px #0071e340;
    }

    .mf-widget-auth .mf-button-secondary:hover:not(:disabled) {
      background: #fff;
      border-color: #00000024;
    }

    .mf-widget-auth .mf-button-ghost:hover:not(:disabled) {
      background: var(--auth-accent-soft, #0071e31a);
    }
  }

  .mf-widget-auth .mf-button-ghost {
    width: 100%;
    min-height: 2.375rem;
    color: var(--auth-accent, var(--mf-auth-accent));
    background: none;
    border: 0;
    justify-self: stretch;
    padding-inline: .5rem;
    font-size: .75rem;
  }

  .mf-widget-auth :is(input, button, a):focus-visible {
    box-shadow: none;
    outline-offset: 3px;
    outline: 3px solid #0071e36b;
  }

  @media (max-width: 560px) {
    .mf-widget-auth .auth-page-heading {
      padding: var(--mf-space-6);
    }

    .mf-widget-auth .auth-page-heading h1 {
      font-size: clamp(2.4rem, 12vw, 3rem);
    }

    .mf-widget-auth .mf-button-ghost {
      min-height: 2.75rem;
    }

    .mf-widget-auth > .mf-widget-content > .auth-form {
      padding: var(--mf-space-6);
    }
  }

  @media (prefers-reduced-transparency: reduce) {
    .mf-widget-auth {
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      background: #fff;
    }
  }

  @media (prefers-contrast: more) {
    .mf-widget-auth, .mf-widget-auth .mf-field :is(input, select, textarea), .mf-widget-auth .mf-secret-control {
      border-color: #00000052;
    }
  }

  .mf-widget-header, .mf-widget-heading, .mf-widget-actions, .mf-widget-toolbar {
    align-items: center;
    display: flex;
  }

  .mf-widget-header {
    gap: var(--mf-space-4);
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
    place-self: stretch stretch;
    width: 100%;
  }

  .mf-widget-heading {
    gap: var(--mf-space-3);
    text-align: left;
    flex: min(20rem, 100%);
    justify-content: flex-start;
    min-width: 0;
    margin: 0;
  }

  .mf-widget-heading > div {
    text-align: left;
    min-width: 0;
  }

  .mf-widget-heading > svg {
    color: var(--mf-color-accent);
    filter: none;
    flex: none;
  }

  .mf-widget-actions {
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    flex: none;
    justify-content: flex-end;
    max-width: 100%;
  }

  .mf-widget-toolbar {
    gap: var(--mf-space-2);
    flex-wrap: wrap;
  }

  .mf-widget-content {
    gap: var(--mf-page-gap);
    min-width: 0;
    min-height: 0;
    display: grid;
  }

  .mf-widget-content-contents {
    display: contents;
  }

  .mf-widget-footer {
    border-top: 1px solid var(--mf-color-border);
    padding-top: var(--mf-space-3);
  }

  .mf-table-widget > .mf-widget-content, .mf-table-widget .mf-table-scroll {
    min-height: 0;
  }

  .mf-table-widget {
    container: widget table-widget / inline-size;
  }

  .mf-table-widget > .mf-widget-content {
    flex-direction: column;
    flex: auto;
    display: flex;
  }

  .mf-table-widget .mf-table-scroll {
    flex: auto;
  }

  .mf-table-toolbar, .mf-table-toolbar-actions, .mf-table-toolbar-filters {
    align-items: center;
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    display: flex;
  }

  .mf-table-toolbar {
    width: 100%;
  }

  .mf-table-toolbar > * {
    min-width: 0;
  }

  .mf-table-toolbar-filters {
    max-width: 100%;
  }

  .mf-table-toolbar-actions {
    margin-left: auto;
  }

  .mf-search-field {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    min-width: min(100%, 220px);
    padding-left: var(--mf-space-3);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      box-shadow .16s var(--mf-ease-out);
    align-items: center;
    display: flex;
  }

  .mf-search-field:focus-within {
    border-color: var(--mf-color-accent);
    box-shadow: var(--mf-focus);
  }

  .mf-search-field > svg {
    color: var(--mf-color-muted);
    flex: none;
  }

  .mf-search-field .mf-field {
    flex: auto;
    gap: 0;
  }

  .mf-search-label-hidden .mf-field > span:first-child {
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
  }

  .mf-search-field .mf-field input {
    box-shadow: none;
    background: none;
    border: 0;
    outline: 0;
    width: 100%;
    min-width: 0;
  }

  .mf-search-field .mf-field input[type="search"]::-webkit-search-cancel-button {
    appearance: none;
  }

  .mf-search-field .mf-field input[type="search"]::-ms-clear {
    display: none;
  }

  .mf-search-clear {
    min-width: var(--mf-control-h-sm);
    padding-inline: var(--mf-space-2);
  }

  .mf-segmented-control {
    border: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .mf-segmented-control > div {
    background: var(--mf-color-panel);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-pill);
    scrollbar-width: none;
    min-width: 0;
    max-width: 100%;
    box-shadow: none;
    gap: 3px;
    padding: 3px;
    display: inline-flex;
    overflow-x: auto;
  }

  .mf-segmented-control > div::-webkit-scrollbar {
    display: none;
  }

  .mf-segmented-control button {
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-muted);
    cursor: pointer;
    min-height: var(--mf-control-h-sm);
    min-width: var(--mf-control-h-sm);
    padding: 0 var(--mf-space-3);
    white-space: nowrap;
    transition: background-color .16s var(--mf-ease-out),
      color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    background: none;
    border: 0;
    flex: none;
  }

  .mf-segmented-control button:focus-visible {
    background: var(--mf-color-panel);
    box-shadow: var(--mf-focus);
    color: var(--mf-color-text);
    outline: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-segmented-control button:hover {
      background: var(--mf-color-panel-raised);
      color: var(--mf-color-text);
      outline: none;
    }
  }

  .mf-segmented-control button:active {
    transform: scale(.97);
  }

  .mf-segmented-control button.is-selected {
    background: var(--mf-color-panel-raised);
    box-shadow: var(--mf-shadow-control-active);
    color: var(--mf-color-text);
    outline: none;
  }

  @media (max-width: 520px) {
    .mf-widget-workspace {
      border-radius: var(--mf-radius-control);
    }
  }

  .mf-entity-cell {
    color: inherit;
    align-items: center;
    gap: var(--mf-space-3);
    min-width: 0;
    text-decoration: none;
    display: inline-flex;
  }

  .mf-entity-avatar {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    display: inline-flex;
  }

  .mf-entity-copy {
    flex-direction: column;
    min-width: 0;
    display: flex;
  }

  .mf-entity-name {
    font-weight: 700;
  }

  .mf-entity-copy small {
    color: var(--mf-color-muted);
  }

  .mf-entity-link:focus-visible {
    border-radius: var(--mf-radius-control);
    box-shadow: var(--mf-focus);
    outline: none;
  }

  .mf-pagination, .mf-pagination-pages {
    align-items: center;
    gap: var(--mf-space-1);
    display: flex;
  }

  .mf-pagination {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .mf-pagination .mf-button {
    min-width: var(--mf-control-h-sm);
  }

  .mf-pagination-pages {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mf-pagination-ellipsis {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    min-height: var(--mf-control-h-sm);
    min-width: var(--mf-control-h-sm);
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .mf-pagination-summary {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    display: none;
  }

  .mf-pagination .is-current {
    background: var(--mf-color-accent);
    color: var(--mf-color-on-accent);
  }

  .mf-table-state {
    justify-content: center;
    align-items: center;
    min-height: 8rem;
    display: flex;
  }

  .mf-detail-page {
    gap: var(--mf-page-gap);
    max-width: var(--mf-page-max);
    min-width: 0;
    padding-bottom: var(--mf-space-6);
    width: 100%;
    margin: 0 auto;
    display: grid;
    overflow-x: clip;
    container: detail-page / inline-size;
  }

  .mf-detail-page-actions, .mf-detail-page-summary, .mf-detail-sections, .mf-detail-main, .mf-detail-rail {
    gap: var(--mf-page-gap);
    min-width: 0;
    display: grid;
  }

  .mf-detail-grid {
    align-items: stretch;
    gap: var(--mf-page-gap);
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    display: grid;
  }

  .mf-detail-grid[data-has-rail="true"] {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  }

  .mf-breadcrumbs {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    min-height: 30px;
  }

  .mf-breadcrumbs ol, .mf-breadcrumbs li {
    align-items: center;
    display: flex;
  }

  .mf-breadcrumbs ol {
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mf-breadcrumbs li {
    gap: var(--mf-space-2);
    min-width: 0;
  }

  .mf-breadcrumbs a {
    color: var(--mf-color-accent);
    font-weight: 700;
  }

  .mf-breadcrumbs [aria-current="page"] {
    color: var(--mf-color-text);
    font-weight: 700;
  }

  .mf-breadcrumb-separator {
    color: var(--mf-color-subtle);
    flex: none;
  }

  .mf-entity-hero > .mf-widget-content {
    align-items: center;
    gap: var(--mf-space-4);
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
  }

  .mf-entity-hero {
    min-height: 0;
  }

  .mf-entity-hero-identity, .mf-entity-hero-title, .mf-entity-hero-actions, .mf-entity-hero-badges, .mf-entity-hero-metadata {
    align-items: center;
    display: flex;
  }

  .mf-entity-hero-identity {
    gap: var(--mf-space-3);
    flex: min(22rem, 100%);
    min-width: 0;
  }

  .mf-entity-hero-avatar {
    background: rgb(var(--accent-rgb, 126, 207, 152), .12);
    border: 1px solid var(--mf-color-border-strong);
    color: var(--mf-color-accent);
    width: 52px;
    height: 52px;
    box-shadow: inset 0 1px 0 #ffffff1a,
      0 10px 24px rgb(var(--accent-rgb, 126, 207, 152), .1);
    border-radius: 16px;
    flex: none;
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .mf-entity-hero-copy {
    flex-direction: column;
    min-width: 0;
    display: flex;
  }

  .mf-entity-hero-title {
    gap: var(--mf-space-2);
    flex-wrap: wrap;
  }

  .mf-entity-hero-title h1 {
    letter-spacing: -.03em;
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  }

  .mf-entity-hero-actions, .mf-entity-hero-badges, .mf-entity-hero-metadata {
    gap: var(--mf-space-2);
    flex-wrap: wrap;
  }

  .mf-entity-hero-actions {
    flex: 0 auto;
    justify-content: flex-end;
  }

  .mf-entity-hero-metadata, .mf-entity-hero-badges {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    margin-top: var(--mf-space-1);
  }

  .mf-description-list {
    gap: var(--mf-space-2);
    grid-template-columns: repeat(var(--mf-description-columns, 3), minmax(0, 1fr));
    margin: 0;
    display: grid;
  }

  .mf-description-list[data-columns="1"] {
    --mf-description-columns: 1;
  }

  .mf-description-list[data-columns="2"] {
    --mf-description-columns: 2;
  }

  .mf-description-list[data-columns="3"] {
    --mf-description-columns: 3;
  }

  .mf-description-list[data-columns="4"] {
    --mf-description-columns: 4;
  }

  .mf-description-item {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    min-width: 0;
    padding: var(--mf-space-3);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out);
    gap: 3px;
    display: grid;
  }

  @media (hover: hover) and (pointer: fine) {
    .mf-description-item:hover {
      background: var(--mf-color-panel-raised);
    }
  }

  .mf-description-item dt, .mf-description-item small {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
  }

  .mf-description-item dd {
    align-items: center;
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    justify-content: space-between;
    min-width: 0;
    margin: 0;
    display: flex;
  }

  .mf-description-item dd small {
    flex-basis: 100%;
  }

  .mf-description-value {
    font-size: var(--mf-text-sm);
    overflow-wrap: anywhere;
    min-width: 0;
    font-weight: 700;
  }

  .mf-description-action {
    flex: none;
  }

  .mf-table-notice {
    margin-bottom: var(--mf-space-3);
  }

  .mf-table-error {
    color: var(--mf-color-danger);
  }

  .mf-metric-grid {
    min-width: 0;
    container: metric-grid / inline-size;
  }

  .mf-metric-grid-layout {
    gap: var(--mf-page-gap);
    grid-template-columns: repeat(var(--mf-metric-columns, 4), minmax(0, 1fr));
    min-width: 0;
    display: grid;
  }

  .mf-metric-grid[data-metric-columns="2"] {
    --mf-metric-columns: 2;
  }

  .mf-metric-grid[data-metric-columns="3"] {
    --mf-metric-columns: 3;
  }

  .mf-metric-grid[data-metric-columns="4"] {
    --mf-metric-columns: 4;
  }

  .mf-metric-grid[data-metric-columns="6"] {
    --mf-metric-columns: 6;
  }

  .mf-metric {
    height: auto;
    min-height: var(--mf-kpi-h);
    display: block;
    position: relative;
    overflow: hidden;
    container: widget metric-widget / inline-size;
  }

  .mf-metric:before {
    content: "";
    pointer-events: none;
    background: none;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -82px;
    right: -58px;
  }

  .mf-metric > .mf-widget-content, .mf-metric-link {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px 14px;
    min-width: 0;
    height: 100%;
    display: grid;
  }

  .mf-metric > .mf-widget-content:has( > .mf-metric-link) {
    display: block;
  }

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

  .mf-metric-link:focus-visible {
    border-radius: calc(var(--mf-surface-card-radius) - var(--mf-surface-card-padding));
    outline: var(--mf-focus);
  }

  .mf-metric-trend > .mf-widget-content, .mf-metric-trend .mf-metric-link, .mf-metric-radial > .mf-widget-content, .mf-metric-radial .mf-metric-link {
    grid-template-columns: minmax(0, 1fr) clamp(52px, 24cqi, 86px);
  }

  .mf-metric-trend > .mf-widget-content, .mf-metric-trend .mf-metric-link {
    grid-template-columns: minmax(0, 1fr) clamp(76px, 38cqi, 132px);
  }

  .mf-metric-summary > .mf-widget-content, .mf-metric-summary .mf-metric-link {
    grid-template-columns: minmax(0, 1fr) clamp(66px, 24cqi, 86px);
  }

  .mf-metric-accent {
    border-color: var(--mf-color-border);
  }

  .mf-metric-positive .mf-metric-copy > strong {
    color: var(--mf-color-success);
  }

  .mf-metric-negative .mf-metric-copy > strong {
    color: var(--mf-color-danger);
  }

  .mf-metric-warning .mf-metric-copy > strong {
    color: var(--mf-color-warning);
  }

  .mf-metric-copy {
    z-index: 1;
    flex-direction: column;
    min-width: 0;
    display: flex;
  }

  .mf-metric-copy > span {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
    font-weight: 650;
  }

  .mf-metric-copy > strong {
    font-size: var(--mf-text-metric);
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
    min-width: 0;
    margin-top: 5px;
    font-weight: 720;
    line-height: .98;
  }

  .mf-metric-detail {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    gap: 2px;
    margin-top: 7px;
    display: grid;
  }

  .mf-metric-trailing, .mf-metric-action {
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .mf-metric-action {
    grid-column: 1 / -1;
  }

  .mf-metric-summary-icon {
    --mf-summary-icon-underline-offset: 3px;
    color: var(--mf-color-accent);
    justify-content: center;
    align-self: stretch;
    align-items: center;
    width: 100%;
    min-height: 0;
    display: inline-flex;
    position: relative;
    overflow: hidden;
  }

  .mf-metric-summary-icon:before {
    border: 1px solid rgb(var(--accent-rgb, 126, 207, 152), .25);
    content: "";
    border-radius: 50%;
    width: clamp(30px, 16cqi, 42px);
    height: clamp(30px, 16cqi, 42px);
    position: absolute;
  }

  .mf-metric-summary-icon:after {
    background: var(--mf-color-accent);
    bottom: var(--mf-summary-icon-underline-offset, 9px);
    content: "";
    opacity: .78;
    width: clamp(22px, 12cqi, 34px);
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mf-metric-summary-icon svg {
    filter: none;
    z-index: 1;
    position: relative;
  }

  .mf-metric-summary .mf-metric-copy {
    justify-content: center;
  }

  .mf-metric > .mf-widget-content > svg, .mf-metric-link > svg {
    color: var(--mf-color-muted);
  }

  .mf-metric-default > .mf-widget-content > svg, .mf-metric-default .mf-metric-link > svg {
    right: var(--mf-panel-pad);
    top: var(--mf-panel-pad);
    position: absolute;
  }

  .mf-metric-trend > .mf-widget-content > svg, .mf-metric-trend .mf-metric-link > svg, .mf-metric-radial > .mf-widget-content > svg, .mf-metric-radial .mf-metric-link > svg {
    display: none;
  }

  .mf-metric-visual {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 100%;
    min-width: 0;
    height: clamp(46px, 18cqi, 72px);
    display: flex;
  }

  .mf-metric-trend .mf-metric-visual {
    background: var(--mf-color-input);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-card);
    box-shadow: inset 0 1px 0 var(--mf-color-highlight),
      inset 0 0 18px rgb(var(--accent-rgb, 126, 207, 152), .035);
    padding: 5px;
    position: relative;
    overflow: hidden;
  }

  .mf-metric-trend .mf-metric-visual:before {
    content: "";
    background: #ffffff14;
    height: 1px;
    position: absolute;
    bottom: 11px;
    left: 2px;
    right: 2px;
  }

  .mf-metric-radial .mf-metric-visual {
    aspect-ratio: 1;
    height: auto;
    max-height: calc(var(--mf-kpi-h) - var(--mf-surface-card-padding) * 2 - 2px);
    max-width: calc(var(--mf-kpi-h) - var(--mf-surface-card-padding) * 2 - 2px);
    justify-self: center;
  }

  .mf-radial-progress {
    height: var(--mf-radial-size, 100%);
    min-width: 42px;
    max-width: 100%;
    min-height: 42px;
    max-height: 100%;
    width: var(--mf-radial-size, 100%);
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }

  .mf-radial-progress[data-size="sm"] {
    --mf-radial-size: 42px;
  }

  .mf-radial-progress[data-size="lg"] {
    --mf-radial-size: 88px;
  }

  .mf-radial-progress progress {
    appearance: none;
    background: var(--mf-radial-background, conic-gradient(var(--mf-radial-color, var(--mf-color-accent)) var(--mf-radial-progress, 0%), var(--mf-color-border) 0));
    width: 100%;
    height: 100%;
    animation: mf-radial-enter .48s var(--mf-ease-out) both;
    filter: none;
    transform-origin: center;
    border: 0;
    border-radius: 50%;
    position: absolute;
    inset: 0;
  }

  .mf-radial-progress progress::-webkit-progress-bar {
    background: none;
  }

  .mf-radial-progress progress::-webkit-progress-value {
    background: none;
  }

  .mf-radial-progress:after {
    background: var(--mf-color-panel);
    content: "";
    width: 74%;
    height: 74%;
    box-shadow: inset 0 0 0 1px var(--mf-color-border);
    border-radius: 50%;
    position: absolute;
  }

  .mf-radial-progress[data-thickness="thick"]:after {
    width: 64%;
    height: 64%;
  }

  .mf-radial-progress > span {
    color: var(--mf-color-text);
    font-size: var(--mf-text-xs);
    z-index: 1;
    font-weight: 750;
    position: relative;
  }

  .mf-radial-progress[data-tone="danger"] {
    --mf-radial-color: var(--mf-color-danger);
  }

  .mf-radial-progress[data-tone="success"] {
    --mf-radial-color: var(--mf-color-success);
  }

  .mf-radial-progress[data-tone="warning"] {
    --mf-radial-color: var(--mf-color-warning);
  }

  .mf-radial-progress[data-tone="neutral"] {
    --mf-radial-color: var(--mf-color-muted);
  }

  .mf-sparkline {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .mf-sparkline-line {
    fill: none;
    filter: none;
    stroke: var(--mf-sparkline-color, var(--mf-color-accent));
    stroke-width: 2px;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    vector-effect: non-scaling-stroke;
    animation: mf-sparkline-draw .36s var(--mf-ease-out) both;
  }

  .mf-sparkline-area {
    fill: color-mix(in srgb, var(--mf-sparkline-color, var(--mf-color-accent)) 16%, transparent);
    stroke: none;
    animation: mf-chart-area-enter .32s var(--mf-ease-out) 40ms both;
  }

  .mf-sparkline-empty {
    stroke: var(--mf-color-border);
    stroke-width: 1px;
  }

  .mf-sparkline-point {
    fill: var(--mf-sparkline-color, var(--mf-color-accent));
    animation: mf-chart-point-enter .22s var(--mf-ease-out) .18s both;
    transform-box: fill-box;
    transform-origin: center;
  }

  .mf-sparkline[data-tone="danger"] {
    --mf-sparkline-color: var(--mf-color-danger);
  }

  .mf-sparkline[data-tone="neutral"] {
    --mf-sparkline-color: var(--mf-color-muted);
  }

  .mf-sparkline[data-tone="success"] {
    --mf-sparkline-color: var(--mf-color-success);
  }

  .mf-metric-loading {
    background: var(--mf-color-border);
    border-radius: var(--mf-radius-control);
    width: 70%;
    max-width: 8rem;
    height: 1em;
    animation: 1.2s ease-in-out infinite alternate mf-metric-pulse;
    display: block;
  }

  @keyframes mf-metric-pulse {
    to {
      opacity: .45;
    }
  }

  @keyframes mf-radial-enter {
    from {
      opacity: 0;
      transform: scale(.94)rotate(-8deg);
    }

    to {
      opacity: 1;
      transform: scale(1)rotate(0);
    }
  }

  @keyframes mf-sparkline-draw {
    from {
      opacity: .35;
      stroke-dashoffset: 1px;
    }

    to {
      opacity: 1;
      stroke-dashoffset: 0;
    }
  }

  @keyframes mf-chart-area-enter {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes mf-chart-point-enter {
    from {
      opacity: 0;
      transform: scale(.86);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .mf-radial-progress progress, .mf-sparkline-area, .mf-sparkline-line, .mf-sparkline-point {
      animation: none;
    }
  }

  @container metric-widget (min-width: 281px) {
    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail {
      white-space: nowrap;
      align-items: center;
      gap: 0;
      min-width: 0;
      margin-top: 5px;
      display: flex;
    }

    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail > span {
      text-overflow: ellipsis;
      min-width: 0;
      overflow: hidden;
    }

    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail > small {
      font-size: var(--mf-text-xs);
      white-space: nowrap;
      flex: none;
      margin-left: 6px;
    }

    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail > small:before {
      color: var(--mf-color-subtle);
      content: "·";
      margin-right: 6px;
    }
  }

  @container detail-page (max-width: 1100px) {
    .mf-detail-grid[data-has-rail="true"] {
      grid-template-columns: minmax(0, 1fr);
    }

    .mf-description-list[data-columns="3"], .mf-description-list[data-columns="4"] {
      --mf-description-columns: 2;
    }
  }

  @container widget (max-width: 800px) {
    .mf-description-list[data-columns="3"], .mf-description-list[data-columns="4"] {
      --mf-description-columns: 2;
    }
  }

  @container widget (max-width: 680px) {
    .mf-entity-hero > .mf-widget-content {
      align-items: flex-start;
    }

    .mf-entity-hero-actions, .mf-widget-actions, .mf-widget-toolbar {
      justify-content: flex-start;
    }

    .mf-table-toolbar-search, .mf-table-toolbar-search .mf-search-field {
      width: 100%;
    }

    .mf-table-toolbar-actions {
      margin-left: 0;
    }
  }

  @container widget (max-width: 440px) {
    .mf-entity-hero-identity {
      align-items: flex-start;
    }

    .mf-description-list {
      --mf-description-columns: 1 !important;
    }

    .mf-widget-header {
      gap: var(--mf-space-3);
    }
  }

  @container metric-grid (max-width: 760px) {
    .mf-metric-grid[data-metric-columns="4"] > .mf-metric-grid-layout {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mf-metric-grid[data-metric-columns="6"] > .mf-metric-grid-layout {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @container metric-grid (max-width: 860px) {
    .mf-metric-grid[data-metric-columns="3"] > .mf-metric-grid-layout, .mf-metric-grid[data-metric-columns="6"] > .mf-metric-grid-layout {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @container metric-grid (max-width: 300px) {
    .mf-metric-grid[data-metric-columns] > .mf-metric-grid-layout {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @container metric-widget (max-width: 280px) {
    .mf-metric-trend > .mf-widget-content, .mf-metric-trend .mf-metric-link {
      grid-template-columns: minmax(0, 1fr) minmax(48px, 62px);
      gap: 8px;
    }

    .mf-metric-radial > .mf-widget-content, .mf-metric-radial .mf-metric-link, .mf-metric-summary > .mf-widget-content, .mf-metric-summary .mf-metric-link {
      grid-template-columns: minmax(0, 1fr) 44px;
      gap: 8px;
    }

    .mf-metric-copy > strong {
      font-size: clamp(20px, 11cqi, 26px);
    }

    .mf-metric-detail {
      margin-top: 5px;
    }

    .mf-metric-copy > span {
      line-height: 1.25;
    }

    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail {
      white-space: normal;
      align-items: start;
      display: grid;
    }

    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail > small {
      white-space: normal;
      margin-left: 0;
    }

    :is(.mf-metric-trend, .mf-metric-radial) .mf-metric-detail > small:before {
      content: none;
    }

    .mf-metric-summary-icon {
      --mf-summary-icon-underline-offset: 8px;
    }

    .mf-metric-visual {
      height: 52px;
    }
  }
}

/* [project]/src/styles/pages/shell.css [app-client] (css) */
@layer pages {
  .app-shell {
    background-color: var(--mf-color-bg);
    background-image: radial-gradient(circle at 78% -10%, rgb(var(--accent-rgb, 126, 207, 152), .08), transparent 34rem),
      radial-gradient(circle at 10% 110%, color-mix(in srgb, var(--blue, var(--mf-accent-blue)) 8%, transparent), transparent 30rem);
    grid-template-columns: calc(var(--mf-sidebar-w) + var(--mf-shell-inset) + var(--mf-shell-inset)) minmax(0, 1fr);
    overscroll-behavior: none;
    min-width: 0;
    height: 100dvh;
    min-height: 0;
    display: grid;
    overflow: hidden;
  }

  .app-sidebar {
    background: linear-gradient(145deg, var(--mf-glass-chrome-highlight), transparent 26%), var(--mf-glass-chrome-background);
    border: 1px solid var(--mf-glass-chrome-border);
    border-radius: var(--mf-radius-shell);
    box-shadow: var(--mf-shadow-shell);
    min-width: 0;
    min-height: 0;
    height: calc(100dvh - var(--mf-shell-inset) - var(--mf-shell-inset));
    margin: var(--mf-shell-inset);
    z-index: 20;
    flex-direction: column;
    gap: 16px;
    padding: clamp(16px, 2.4vh, 26px) 12px 16px;
    display: flex;
    overflow-x: clip;
  }

  html:not([data-reduce-transparency="true"]) .app-sidebar {
    -webkit-backdrop-filter: blur(32px) saturate(1.25);
    backdrop-filter: blur(32px) saturate(1.25);
  }

  .brand-block {
    align-items: center;
    gap: 11px;
    min-width: 0;
    min-height: 54px;
    padding: 0 4px 22px;
    display: flex;
    position: relative;
  }

  .brand-block:after {
    background: var(--mf-color-sidebar-divider);
    content: "";
    height: 1px;
    position: absolute;
    bottom: 5px;
    left: 8px;
    right: 8px;
  }

  .brand-block > span:last-child {
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    box-shadow: none;
    color: var(--mf-color-accent);
    filter: none;
    background: none;
    border: 0;
    border-radius: 0;
    width: 27px;
    height: 33px;
    padding: 0;
  }

  .brand-block strong {
    letter-spacing: -.04em;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 680;
  }

  .nav-groups {
    overscroll-behavior: contain;
    flex: auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden auto;
  }

  .nav-group {
    gap: 4px;
    min-width: 0;
    display: grid;
  }

  .nav-tree-group, .nav-group-children {
    gap: 3px;
    min-width: 0;
    display: grid;
  }

  .nav-group-children {
    max-width: 100%;
    padding: 2px 0 4px 14px;
  }

  .nav-group-trigger {
    cursor: pointer;
    font: inherit;
    text-align: left;
  }

  .nav-group-trigger-active {
    background: color-mix(in srgb, var(--mf-color-panel) 82%, transparent);
    color: var(--mf-color-text);
  }

  .nav-group-trigger-active > svg:first-child {
    color: var(--mf-color-accent);
  }

  .nav-group-chevron {
    transition: transform .16s var(--mf-ease-out);
    flex: none;
    margin-left: auto;
  }

  .nav-group-trigger[aria-expanded="true"] .nav-group-chevron {
    transform: rotate(180deg);
  }

  .nav-child-link {
    font-size: var(--mf-text-sm);
    gap: 11px;
    min-height: clamp(36px, 4.5vh, 44px);
    padding-inline: 13px;
  }

  .nav-reserved-item {
    cursor: not-allowed;
    opacity: .58;
  }

  .nav-reserved-copy {
    flex-direction: column;
    flex: auto;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    display: flex;
  }

  .nav-coming-soon-badge {
    border: 1px solid var(--mf-color-border-subtle);
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-subtle);
    letter-spacing: .035em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 100%;
    padding: 4px 6px;
    font-size: .56rem;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
  }

  .nav-link {
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-muted);
    min-width: 0;
    min-height: clamp(40px, 5vh, 50px);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    white-space: normal;
    background: none;
    border: 1px solid #0000;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 0 16px;
    font-size: clamp(13px, 10px + .18vw, 15px);
    font-weight: 550;
    display: flex;
    overflow: hidden;
  }

  .nav-link > span {
    overflow-wrap: anywhere;
    min-width: 0;
  }

  @media (hover: hover) and (pointer: fine) {
    .nav-link:hover {
      background: color-mix(in srgb, var(--mf-color-panel-raised) 72%, transparent);
      color: var(--mf-color-text);
    }

    .nav-reserved-item:hover {
      color: var(--mf-color-muted);
      background: none;
    }
  }

  .nav-link:active {
    transform: scale(.98);
  }

  .nav-link-active {
    background: color-mix(in srgb, var(--mf-color-accent) 17%, var(--mf-color-panel));
    border-color: color-mix(in srgb, var(--mf-color-accent) 24%, transparent);
    box-shadow: var(--mf-shadow-nav-active);
    color: var(--mf-color-text);
  }

  .nav-link-active > svg {
    color: var(--mf-color-accent);
    filter: none;
  }

  html[data-theme="dark"] .nav-link-active {
    border-color: #ffffff14;
  }

  html[data-theme="light"] .nav-link-active {
    border-color: rgb(var(--accent-rgb, 79, 125, 91), .18);
  }

  .account-menu-wrap {
    position: relative;
  }

  .account-card {
    background: var(--mf-glass-chrome-background-strong);
    border: 1px solid var(--mf-glass-chrome-border);
    color: var(--mf-color-text);
    height: 40px;
    box-shadow: var(--mf-shadow-control-highlight);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 40px;
    padding: 3px;
    transition: background .14s, border-color .14s;
    display: inline-flex;
  }

  .account-card:focus-visible, .account-card-open {
    background: var(--mf-color-panel);
    border-color: var(--mf-color-border);
  }

  @media (hover: hover) and (pointer: fine) {
    .account-card:hover {
      background: var(--mf-color-panel);
      border-color: var(--mf-color-border);
    }
  }

  .account-card:active, .topbar-icon-button:active {
    transform: scale(.95);
  }

  .account-avatar {
    background: color-mix(in srgb, var(--mf-color-accent) 60%, var(--mf-color-bg));
    color: var(--mf-color-avatar-text);
    object-fit: cover;
    border-radius: 50%;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: .62rem;
    font-weight: 800;
    display: inline-flex;
  }

  .account-menu {
    background: linear-gradient(145deg, var(--mf-glass-chrome-highlight), transparent 32%), var(--mf-glass-chrome-background-strong);
    border: 1px solid var(--mf-glass-chrome-border);
    border-radius: var(--mf-radius-card);
    box-shadow: var(--mf-shadow-popover);
    inset: calc(100% + var(--mf-space-2)) 0 auto auto;
    max-width: min(240px, 100vw - 24px);
    padding: var(--mf-space-1);
    z-index: 50;
    width: 220px;
    position: absolute;
  }

  html:not([data-reduce-transparency="true"]) .account-menu {
    -webkit-backdrop-filter: blur(28px) saturate(1.22);
    backdrop-filter: blur(28px) saturate(1.22);
  }

  .account-menu-profile {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-2);
    padding: var(--mf-space-2) var(--mf-space-2) var(--mf-space-3);
    display: flex;
  }

  .account-menu-profile strong {
    font-size: var(--mf-text-sm);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .account-menu-avatar {
    width: 48px;
    height: 48px;
    font-size: .75rem;
  }

  .account-menu-item {
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-muted);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: 34px;
    padding: 0 var(--mf-space-2);
    background: none;
    border: 0;
    width: 100%;
    font-size: .68rem;
    display: flex;
  }

  .account-menu-item > span {
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
  }

  .account-menu-item:focus-visible {
    background: var(--mf-color-panel);
    color: var(--mf-color-text);
  }

  @media (hover: hover) and (pointer: fine) {
    .account-menu-item:hover:not(:disabled) {
      background: var(--mf-color-panel);
      color: var(--mf-color-text);
    }
  }

  .account-menu-item:disabled {
    cursor: wait;
    opacity: .7;
  }

  .app-main {
    min-width: 0;
    height: 100dvh;
    min-height: 0;
    padding: var(--mf-page-pad-top) var(--mf-page-pad-x) var(--mf-page-pad-bottom);
    grid-template-rows: auto minmax(0, 1fr);
    display: grid;
    position: relative;
    overflow: hidden;
  }

  .app-topbar {
    background: var(--mf-surface-card-background);
    border: var(--mf-surface-card-border);
    border-radius: var(--mf-radius-card);
    box-shadow: var(--mf-shadow-panel);
    margin-inline: auto;
    margin-bottom: var(--mf-page-gap);
    max-width: var(--mf-page-max);
    min-height: var(--mf-topbar-h);
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 9px 14px;
    display: flex;
  }

  .app-shell .app-topbar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0;
  }

  .app-topbar > :first-child, .app-topbar-copy {
    min-width: 0;
  }

  .app-topbar h1 {
    font-size: var(--mf-text-page-title);
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
    font-weight: 700;
    line-height: 1;
  }

  .page-subtitle {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    margin-top: 6px;
    line-height: 1.45;
  }

  .page-content {
    height: 100%;
    max-width: var(--mf-page-max);
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    width: 100%;
    min-width: 0;
    margin-inline: auto;
    padding: 0;
    overflow: auto;
  }

  .topbar-actions {
    align-items: center;
    gap: var(--mf-space-2);
    display: flex;
  }

  .topbar-icon-button {
    background: var(--mf-glass-chrome-background-strong);
    border: 1px solid var(--mf-glass-chrome-border);
    color: var(--mf-color-text);
    height: 40px;
    box-shadow: var(--mf-shadow-control-highlight);
    transition: background-color .16s var(--mf-ease-out),
      border-color .16s var(--mf-ease-out),
      transform .16s var(--mf-ease-out);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 40px;
    display: inline-flex;
    position: relative;
  }

  @media (hover: hover) and (pointer: fine) {
    .topbar-icon-button:hover {
      background: var(--mf-color-panel-raised);
      border-color: var(--mf-color-border-strong);
    }
  }

  .page-content:has(.mf-detail-page) {
    overflow: hidden auto;
  }

  .mf-widget-kpis {
    align-items: baseline;
    gap: var(--mf-space-3);
    margin-top: var(--mf-space-2);
    display: flex;
  }

  .mf-widget-kpis strong {
    font-size: 1.15rem;
  }

  .mf-widget-kpis span {
    color: var(--mf-color-success);
    font-size: .7rem;
  }

  .portfolio-panel > [role="tabpanel"], .portfolio-panel > .dashboard-equity-tab-panel, .portfolio-panel > .mf-widget-content > [role="tabpanel"], .portfolio-panel > .mf-widget-content > .dashboard-equity-tab-panel {
    flex: 1;
    min-height: 0;
    display: flex;
  }

  .portfolio-panel > .mf-widget-content {
    flex-direction: column;
    flex: auto;
    min-height: 0;
    display: flex;
  }

  .chart-grid {
    fill: none;
    stroke: var(--mf-color-border);
    stroke-width: 1px;
  }

  html:not([data-theme="light"]) .chart-grid {
    stroke: #ffffff24;
  }

  .chart-line {
    fill: none;
    stroke: var(--mf-color-accent);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
  }

  .chart-axis-label {
    fill: var(--mf-color-subtle);
    font-size: 9px;
  }

  .chart-axis-x .chart-axis-label {
    text-anchor: middle;
  }

  .allocation-radial-layout {
    align-items: center;
    gap: var(--mf-space-5);
    flex: 1;
    grid-template-columns: minmax(120px, .7fr) minmax(0, 1.3fr);
    display: grid;
  }

  .allocation-radial {
    aspect-ratio: 1;
    width: clamp(190px, 25vh, 360px);
    max-width: 100%;
    height: clamp(190px, 25vh, 360px);
    margin: auto;
  }

  .allocation-list {
    display: grid;
  }

  .allocation-row {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-2);
    grid-template-columns: 8px minmax(0, 1fr) auto auto;
    min-height: clamp(34px, 4.2vh, 48px);
    font-size: clamp(.66rem, .52rem + .18vw, .85rem);
    display: grid;
  }

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

  .allocation-row i {
    border-radius: 50%;
    width: clamp(7px, .4vw, 9px);
    height: clamp(7px, .4vw, 9px);
  }

  .allocation-row small {
    color: var(--mf-color-muted);
    text-align: right;
    min-width: clamp(44px, 4vw, 60px);
  }

  .allocation-total-row {
    font-weight: 750;
  }

  .timeline-list, .log-list, .compact-list, .status-list {
    min-width: 0;
    display: grid;
  }

  .timeline-row {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: var(--mf-row-h);
    grid-template-columns: 42px 8px minmax(0, 1fr) auto;
    padding-block: 2px;
    font-size: clamp(.66rem, .54rem + .18vw, .84rem);
    display: grid;
  }

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

  .timeline-row > i {
    background: var(--mf-color-accent);
    border-radius: 50%;
    width: 7px;
    height: 7px;
  }

  .timeline-row small {
    color: var(--mf-color-muted);
    margin-top: 2px;
    font-size: clamp(.58rem, .48rem + .14vw, .72rem);
    display: block;
  }

  .timeline-row > span {
    color: var(--mf-color-muted);
  }

  .button-row {
    align-items: center;
    gap: var(--mf-space-2);
    flex-wrap: wrap;
    display: flex;
  }

  .lab-topbar {
    align-items: center;
    gap: var(--mf-space-4);
    display: flex;
  }

  .lab-topbar > a {
    color: var(--mf-color-accent);
    align-items: center;
    gap: var(--mf-space-2);
    font-size: .68rem;
    display: inline-flex;
  }

  .lab-topbar h2 {
    font-size: 1rem;
  }

  .lab-topbar span {
    color: var(--mf-color-muted);
    font-size: .64rem;
  }

  .studio-run-link {
    color: var(--mf-color-accent);
    align-items: center;
    gap: var(--mf-space-2);
    font-size: .68rem;
    display: inline-flex;
  }

  .status-row {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-3);
    min-height: var(--mf-row-h);
    justify-content: space-between;
    font-size: .68rem;
    display: flex;
  }

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

  @media (min-width: 1101px) and (max-width: 1280px) {
    .app-sidebar .nav-link {
      gap: 10px;
      padding-inline: 10px;
    }

    .app-sidebar .nav-link > span {
      overflow-wrap: normal;
      word-break: normal;
    }

    .app-sidebar .nav-group-children {
      padding-left: 6px;
    }

    .app-sidebar .nav-child-link {
      gap: 8px;
      padding-inline: 8px;
    }
  }

  @media (max-width: 1100px) {
    .app-shell {
      --mf-page-gap: clamp(10px, 2vw, 14px);
      --mf-page-pad-bottom: clamp(10px, 2vw, 16px);
      --mf-page-pad-top: clamp(10px, 2vw, 14px);
      --mf-page-pad-x: clamp(10px, 2.4vw, 16px);
      --mf-panel-pad: clamp(12px, 2.6vw, 16px);
      --mf-sidebar-rail-w: clamp(64px, calc(66.25vw - 558.75px), 170px);
      grid-template-columns: calc(var(--mf-sidebar-rail-w) + var(--mf-shell-inset-compact) + var(--mf-shell-inset-compact))
        minmax(0, 1fr);
    }

    .app-sidebar {
      height: calc(100dvh - var(--mf-shell-inset-compact) - var(--mf-shell-inset-compact));
      margin: var(--mf-shell-inset-compact);
      gap: 10px;
      padding: 12px 7px;
    }

    .brand-block {
      justify-content: center;
      min-height: 46px;
      padding: 0 0 14px;
    }

    .brand-block:after {
      bottom: 0;
      left: 2px;
      right: 2px;
    }

    .brand-block > span:last-child {
      display: none;
    }

    .brand-logo {
      width: 24px;
      height: 30px;
    }

    .nav-groups {
      scrollbar-gutter: auto;
      overflow: hidden auto;
    }

    .nav-group, .nav-tree-group, .nav-group-children {
      gap: 3px;
    }

    .nav-group-children {
      padding: 2px 0 4px;
    }

    .app-sidebar .nav-link {
      justify-content: center;
      gap: 0;
      min-height: 42px;
      padding: 0;
      position: relative;
    }

    .app-sidebar .nav-link > span, .app-sidebar .nav-reserved-copy {
      display: none;
    }

    .app-sidebar .nav-link > svg:first-child {
      width: 19px;
      height: 19px;
    }

    .app-sidebar .nav-group-chevron {
      width: 11px;
      height: 11px;
      margin: 0;
      position: absolute;
      bottom: 3px;
      right: 3px;
    }

    .app-sidebar .nav-child-link {
      min-height: 38px;
    }

    .app-sidebar .nav-child-link > svg:first-child {
      width: 17px;
      height: 17px;
    }

    .app-sidebar .app-settings-navigation {
      gap: var(--mf-space-2);
      scrollbar-gutter: auto;
      padding: 0;
      overflow: hidden auto;
    }

    .app-sidebar .settings-back-link, .app-sidebar .app-settings-navigation .settings-nav-link {
      justify-content: center;
      min-height: 42px;
      padding: 0;
    }

    .app-sidebar .settings-back-link > span, .app-sidebar .app-settings-navigation .settings-nav-link > span {
      display: none;
    }

    .app-sidebar .app-settings-navigation .settings-nav-group h2 {
      clip-path: inset(50%);
      white-space: nowrap;
      border: 0;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      position: absolute;
      overflow: hidden;
    }

    .app-sidebar .app-settings-navigation .settings-nav-group {
      gap: 3px;
    }

    .app-sidebar .app-settings-navigation .settings-nav-group + .settings-nav-group {
      border-top: 1px solid var(--mf-color-sidebar-divider);
      padding-top: var(--mf-space-2);
    }

    .app-sidebar .app-settings-navigation .settings-nav-group > div {
      gap: 3px;
    }

    .app-main {
      height: 100dvh;
      min-height: 0;
      overflow: hidden;
    }

    .app-topbar {
      margin-bottom: var(--mf-page-gap);
      min-height: clamp(48px, 8dvh, var(--mf-topbar-h));
      gap: 10px;
    }

    .app-topbar-copy {
      overflow: hidden;
    }

    .app-topbar h1 {
      font-size: clamp(20px, 4vw, 28px);
    }

    .page-subtitle {
      margin-top: 2px;
      line-height: 1.35;
    }

    .topbar-actions {
      flex: none;
    }

    .page-content {
      min-height: 0;
      overflow: hidden auto;
    }
  }

  @media (min-width: 1021px) and (max-width: 1100px) {
    .app-sidebar .nav-link {
      gap: var(--mf-space-2);
      padding-inline: var(--mf-space-2);
      justify-content: flex-start;
    }

    .app-sidebar .nav-link > span {
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
      display: block;
      overflow: hidden;
    }

    .app-sidebar .nav-reserved-copy {
      display: block;
    }

    .app-sidebar .nav-coming-soon-badge {
      display: none;
    }

    .app-sidebar .nav-group-chevron {
      width: 14px;
      height: 14px;
      margin-left: auto;
      position: static;
    }

    .app-sidebar .settings-back-link, .app-sidebar .app-settings-navigation .settings-nav-link {
      gap: var(--mf-space-2);
      padding-inline: var(--mf-space-2);
      justify-content: flex-start;
    }

    .app-sidebar .settings-back-link > span, .app-sidebar .app-settings-navigation .settings-nav-link > span {
      text-overflow: ellipsis;
      white-space: nowrap;
      min-width: 0;
      display: block;
      overflow: hidden;
    }
  }

  @media (max-width: 420px) {
    .app-shell {
      --mf-page-pad-bottom: 10px;
      --mf-page-pad-top: 8px;
      --mf-page-pad-x: 8px;
    }

    .app-sidebar {
      border-radius: var(--mf-radius-card);
      padding-inline: 6px;
    }

    .app-topbar {
      grid-template-columns: minmax(0, 1fr) auto;
      display: grid;
    }

    .app-topbar h1 {
      overflow-wrap: normal;
      word-break: normal;
      font-size: clamp(18px, 5.8vw, 20px);
    }

    .topbar-actions {
      gap: var(--mf-space-1);
    }

    .allocation-radial-layout {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  @media (max-height: 760px) {
    .app-shell {
      --mf-page-gap: 10px;
      --mf-page-pad-bottom: 10px;
      --mf-page-pad-top: 10px;
      --mf-panel-pad: 14px;
      --mf-row-h: 38px;
    }

    .app-sidebar {
      gap: 10px;
      padding-block: 12px;
    }

    .brand-block {
      min-height: 44px;
      padding-bottom: 14px;
    }

    .nav-link {
      min-height: 38px;
    }

    .nav-child-link {
      min-height: 34px;
    }

    .app-topbar {
      min-height: 44px;
      margin-bottom: 10px;
    }
  }

  @media (max-height: 560px) {
    .app-shell {
      --mf-page-gap: 8px;
      --mf-page-pad-bottom: 8px;
      --mf-page-pad-top: 8px;
      --mf-panel-pad: 12px;
      --mf-row-h: 34px;
      --mf-shell-inset: 6px;
      --mf-shell-inset-compact: 6px;
    }

    .app-sidebar {
      gap: 6px;
      padding-block: 8px;
    }

    .brand-block {
      min-height: 36px;
      padding-bottom: 10px;
    }

    .brand-logo {
      width: 23px;
      height: 28px;
    }

    .nav-link, .app-sidebar .settings-back-link, .app-sidebar .app-settings-navigation .settings-nav-link {
      min-height: 34px;
    }

    .nav-child-link {
      min-height: 32px;
    }

    .app-topbar {
      min-height: 40px;
    }
  }

  @media (pointer: coarse) {
    .app-shell {
      --mf-control-h-md: 44px;
      --mf-control-h-sm: 44px;
    }

    .nav-link, .app-sidebar .settings-back-link, .app-sidebar .app-settings-navigation .settings-nav-link {
      min-height: 44px;
    }

    .account-card, .topbar-icon-button {
      width: 44px;
      height: 44px;
    }
  }

  .app-main select {
    appearance: auto;
    background-image: none;
    padding-right: 36px;
  }
}

/* [project]/src/styles/pages/dashboard.css [app-client] (css) */
@layer pages {
  .notification-wrap {
    position: relative;
  }

  .notification-badge {
    background: var(--mf-color-danger);
    border: 2px solid var(--mf-color-bg);
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-on-danger);
    justify-content: center;
    align-items: center;
    min-width: 17px;
    height: 17px;
    padding-inline: 4px;
    font-size: 9px;
    font-weight: 800;
    display: inline-flex;
    position: absolute;
    top: -2px;
    right: -2px;
  }

  .notification-popover {
    background: linear-gradient(145deg, var(--mf-glass-chrome-highlight), transparent 28%), var(--mf-glass-chrome-background-strong);
    border: 1px solid var(--mf-glass-chrome-border);
    border-radius: calc(var(--mf-radius-card) + 2px);
    box-shadow: var(--mf-shadow-popover);
    color: var(--mf-color-text);
    z-index: 50;
    width: min(400px, 100vw - 24px);
    padding: 0;
    overflow: hidden;
  }

  html:not([data-reduce-transparency="true"]) .notification-popover {
    -webkit-backdrop-filter: blur(30px) saturate(1.24);
    backdrop-filter: blur(30px) saturate(1.24);
  }

  .notification-popover-head {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-4);
    padding: var(--mf-space-4);
    justify-content: space-between;
    display: flex;
  }

  .notification-popover-heading {
    align-items: center;
    gap: var(--mf-space-3);
    min-width: 0;
    display: flex;
  }

  .notification-popover-heading-icon {
    background: color-mix(in srgb, var(--mf-color-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--mf-color-accent) 20%, transparent);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-accent);
    flex: none;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    display: inline-flex;
  }

  .notification-popover-heading > div {
    gap: 2px;
    min-width: 0;
    display: grid;
  }

  .notification-popover-heading strong {
    font-size: var(--mf-text-base);
    letter-spacing: -.015em;
  }

  .notification-popover-heading > div > span {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
    line-height: 1.35;
  }

  .notification-popover-view-all {
    border-radius: var(--mf-radius-compact);
    color: var(--mf-color-accent);
    font-size: var(--mf-text-xs);
    flex: none;
    padding: 6px 8px;
    font-weight: 700;
  }

  .notification-popover-summary {
    background: color-mix(in srgb, var(--mf-color-panel-raised) 60%, transparent);
    border-bottom: 1px solid var(--mf-color-border);
    color: var(--mf-color-muted);
    letter-spacing: .055em;
    min-height: 30px;
    padding: 0 var(--mf-space-4);
    text-transform: uppercase;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
  }

  .notification-summary-pulse {
    background: var(--mf-color-accent);
    box-shadow: var(--mf-shadow-notification-pulse);
    border-radius: 50%;
    width: 6px;
    height: 6px;
  }

  .notification-list {
    overscroll-behavior: contain;
    max-height: 388px;
    display: grid;
    overflow: auto;
  }

  .notification-item {
    border-bottom: 1px solid var(--mf-color-border);
    color: var(--mf-color-text);
    align-items: center;
    gap: var(--mf-space-3);
    min-height: 78px;
    padding: var(--mf-space-3) var(--mf-space-4);
    transition: background-color .15s var(--mf-ease-out),
      box-shadow .15s var(--mf-ease-out);
    grid-template-columns: 36px minmax(0, 1fr) auto;
    text-decoration: none;
    display: grid;
  }

  .notification-list > .notification-item:last-child {
    border-bottom: 0;
  }

  .notification-severity {
    background: rgb(var(--mf-color-info-rgb) / 12%);
    border: 1px solid rgb(var(--mf-color-info-rgb) / 20%);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-info);
    justify-content: center;
    align-self: start;
    align-items: center;
    width: 34px;
    height: 34px;
    margin-top: 1px;
    display: inline-flex;
  }

  .notification-severity-warning {
    background: rgb(var(--mf-color-warning-rgb) / 12%);
    border-color: rgb(var(--mf-color-warning-rgb) / 22%);
    color: var(--mf-color-warning);
  }

  .notification-severity-critical {
    background: rgb(var(--mf-color-danger-rgb) / 11%);
    border-color: rgb(var(--mf-color-danger-rgb) / 20%);
    color: var(--mf-color-danger);
  }

  .notification-copy, .notification-copy strong, .notification-copy small {
    display: block;
  }

  .notification-copy {
    min-width: 0;
  }

  .notification-copy-heading {
    align-items: center;
    gap: var(--mf-space-2);
    justify-content: space-between;
    min-width: 0;
    display: flex;
  }

  .notification-copy strong {
    font-size: var(--mf-text-sm);
    min-width: 0;
    line-height: 1.35;
  }

  .notification-copy small {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
    margin-top: 4px;
    line-height: 1.45;
  }

  .notification-severity-label {
    color: var(--mf-color-info);
    letter-spacing: .045em;
    text-transform: uppercase;
    flex: none;
    font-size: 9px;
    font-weight: 750;
  }

  .notification-severity-label-warning {
    color: var(--mf-color-warning);
  }

  .notification-severity-label-critical {
    color: var(--mf-color-danger);
  }

  .notification-item-arrow {
    color: var(--mf-color-subtle);
    transition: color .15s var(--mf-ease-out),
      transform .15s var(--mf-ease-out);
  }

  .notification-empty {
    color: var(--mf-color-muted);
    font-size: var(--mf-text-xs);
    gap: var(--mf-space-2);
    min-height: 184px;
    padding: var(--mf-space-6);
    text-align: center;
    place-items: center;
    display: grid;
  }

  .notification-empty strong {
    color: var(--mf-color-text);
    font-size: var(--mf-text-sm);
  }

  .notification-popover-empty-icon {
    background: color-mix(in srgb, var(--mf-color-accent) 10%, transparent);
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-accent);
    height: 42px;
    margin-bottom: var(--mf-space-1);
    justify-content: center;
    align-items: center;
    width: 42px;
    display: inline-flex;
  }

  .notification-footer-link {
    background: color-mix(in srgb, var(--mf-color-panel-raised) 44%, transparent);
    border-top: 1px solid var(--mf-color-border);
    color: var(--mf-color-accent);
    font-size: var(--mf-text-xs);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: 44px;
    padding: var(--mf-space-3) var(--mf-space-4);
    text-align: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    display: flex;
  }

  .notification-popover-view-all:focus-visible, .notification-item:focus-visible, .notification-footer-link:focus-visible {
    box-shadow: var(--mf-focus-inset);
    outline: 0;
  }

  @media (hover: hover) and (pointer: fine) {
    .notification-popover-view-all:hover {
      background: color-mix(in srgb, var(--mf-color-accent) 10%, transparent);
    }

    .notification-item:hover {
      background: color-mix(in srgb, var(--mf-color-accent) 5%, var(--mf-color-panel));
      box-shadow: var(--mf-shadow-accent-edge);
    }

    .notification-item:hover .notification-item-arrow, .notification-footer-link:hover {
      color: var(--mf-color-accent-strong);
    }

    .notification-item:hover .notification-item-arrow {
      transform: translateX(2px);
    }

    .notification-footer-link:hover {
      background: color-mix(in srgb, var(--mf-color-accent) 8%, var(--mf-color-panel-raised));
    }
  }

  .notifications-page {
    gap: var(--mf-page-gap);
    max-width: var(--mf-page-max);
    min-width: 0;
    min-height: 100%;
    margin: 0 auto;
    display: grid;
    container: notifications-page / inline-size;
  }

  .notification-filter-tabs {
    align-items: center;
    gap: var(--mf-space-1);
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .notification-filter-tabs button {
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    align-items: center;
    gap: var(--mf-space-2);
    min-height: 34px;
    padding: 0 var(--mf-space-3);
    background: none;
    border: 0;
    font-weight: 650;
    display: inline-flex;
  }

  @media (hover: hover) and (pointer: fine) {
    .notification-filter-tabs button:hover {
      color: var(--mf-color-text);
    }
  }

  .notification-filter-tabs button[aria-pressed="true"] {
    background: rgb(var(--accent-rgb, 126, 207, 152), .13);
    color: var(--mf-color-accent);
  }

  .notification-filter-tabs button span {
    background: var(--mf-color-panel-raised);
    border: 1px solid var(--mf-color-border);
    border-radius: var(--mf-radius-pill);
    color: var(--mf-color-muted);
    justify-content: center;
    align-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: .6rem;
    display: inline-flex;
  }

  .notification-center-list {
    scrollbar-gutter: stable;
    max-height: min(70dvh, 760px);
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    overflow-y: auto;
  }

  .notification-center-item {
    border-bottom: 1px solid var(--mf-color-border);
    align-items: center;
    gap: var(--mf-space-4);
    min-height: 104px;
    padding: var(--mf-space-4) clamp(16px, 2.2vw, 26px);
    transition: background-color .14s var(--mf-ease-out);
    grid-template-columns: auto minmax(0, 1fr) auto;
    display: grid;
    position: relative;
  }

  .notification-center-item:last-child {
    border-bottom: 0;
  }

  @media (hover: hover) and (pointer: fine) {
    .notification-center-item:hover {
      background: var(--mf-color-panel-raised);
    }
  }

  .notification-center-item.is-unread {
    background: rgb(var(--accent-rgb, 126, 207, 152), .07);
  }

  .notification-center-item.is-unread:before {
    background: var(--mf-color-accent);
    content: "";
    width: 2px;
    position: absolute;
    inset: 0 auto 0 0;
  }

  .notification-row-icon {
    background: color-mix(in srgb, var(--mf-color-info) 12%, transparent);
    color: var(--mf-color-info);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    display: inline-flex;
  }

  .notification-row-icon-warning {
    background: color-mix(in srgb, var(--mf-color-warning) 12%, transparent);
    color: var(--mf-color-warning);
  }

  .notification-row-icon-critical {
    background: color-mix(in srgb, var(--mf-color-danger) 12%, transparent);
    color: var(--mf-color-danger);
  }

  .notification-center-item-copy {
    min-width: 0;
  }

  .notification-center-item-heading {
    align-items: center;
    gap: var(--mf-space-2);
    display: flex;
  }

  .notification-center-item-heading strong {
    font-size: var(--mf-text-md);
  }

  .notification-unread-dot {
    background: var(--mf-color-accent);
    border-radius: 50%;
    width: 7px;
    height: 7px;
  }

  .notification-detail-link {
    color: var(--mf-color-accent);
    font-size: var(--mf-text-xs);
    justify-self: start;
    font-weight: 700;
  }

  .dashboard-primary-grid {
    gap: var(--mf-page-gap);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    display: grid;
  }

  .dashboard-page {
    height: 100%;
    max-width: var(--mf-page-max);
    min-width: 0;
    min-height: 100%;
    margin: 0 auto;
    container: dashboard-page / inline-size;
  }

  .dashboard-page-layout {
    align-content: start;
    gap: var(--mf-page-gap);
    grid-auto-rows: auto;
    min-width: 0;
    height: 100%;
    min-height: 100%;
    display: grid;
  }

  .dashboard-secondary-grid {
    gap: var(--mf-page-gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    display: grid;
  }

  .dashboard-primary-grid > *, .dashboard-secondary-grid > * {
    min-width: 0;
  }

  .dashboard-primary-grid > * {
    min-height: clamp(300px, 34cqi, 460px);
  }

  .dashboard-secondary-grid > * {
    min-height: clamp(270px, 28cqi, 400px);
  }

  .dashboard-primary-grid > .portfolio-panel {
    height: 100%;
  }

  .dashboard-page .mf-panel {
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0;
    min-height: 0;
    display: grid;
    overflow: hidden;
  }

  .dashboard-page .dashboard-primary-grid > .mf-widget {
    min-height: clamp(300px, 34cqi, 460px);
  }

  .dashboard-page .dashboard-secondary-grid > .mf-widget {
    min-height: clamp(270px, 28cqi, 400px);
  }

  .dashboard-primary-grid > .mf-widget > .mf-widget-content, .dashboard-secondary-grid > .mf-widget > .mf-widget-content {
    display: contents;
  }

  .dashboard-primary-grid > .portfolio-panel > .mf-widget-content {
    flex-direction: column;
    min-height: 0;
    display: flex;
  }

  .dashboard-page .recent-orders-panel .mf-entity-cell {
    gap: var(--mf-space-2);
  }

  .dashboard-page .recent-orders-panel .mf-entity-avatar {
    background: none;
    border: 0;
    width: auto;
    height: auto;
  }

  .dashboard-page .mf-panel-header {
    align-items: center;
    min-width: 0;
    margin-bottom: clamp(10px, 1vh, 18px);
  }

  .dashboard-page .mf-panel-header > :first-child {
    min-width: 0;
  }

  .dashboard-equity-chart {
    background: var(--mf-color-bg-elevated);
    border: 1px solid var(--mf-color-border-subtle);
    border-radius: var(--mf-radius-card);
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .dashboard-equity-range-preview > span {
    border-radius: var(--mf-radius-control);
    color: var(--mf-color-muted);
    font-size: var(--mf-text-sm);
    min-height: var(--mf-control-h-sm);
    padding-inline: var(--mf-space-3);
    white-space: nowrap;
    align-items: center;
    font-weight: 650;
    display: inline-flex;
  }

  .dashboard-equity-range-preview > span.is-active {
    background: var(--mf-color-panel-raised);
    box-shadow: var(--mf-shadow-control-active);
    color: var(--mf-color-accent);
  }

  .portfolio-panel > [role="tabpanel"] > .dashboard-equity-chart, .portfolio-panel > .dashboard-equity-tab-panel > .dashboard-equity-chart, .portfolio-panel > .mf-widget-content > [role="tabpanel"] > .dashboard-equity-chart, .portfolio-panel > .mf-widget-content > .dashboard-equity-tab-panel > .dashboard-equity-chart, .portfolio-panel > [role="tabpanel"], .portfolio-panel > .dashboard-equity-tab-panel, .portfolio-panel > .mf-widget-content > [role="tabpanel"], .portfolio-panel > .mf-widget-content > .dashboard-equity-tab-panel {
    width: 100%;
    min-width: 0;
  }

  .dashboard-equity-chart svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    inset: 0;
    overflow: visible;
  }

  .dashboard-equity-chart .chart-grid {
    opacity: .66;
    vector-effect: non-scaling-stroke;
  }

  .dashboard-equity-chart .chart-axis-label {
    font-size: 11px;
  }

  .dashboard-equity-chart .chart-area {
    animation: dashboard-chart-area-in .52s var(--mf-ease-out) both;
    transform-origin: bottom;
  }

  .dashboard-equity-chart .chart-line-primary {
    animation: dashboard-chart-line-in .62s var(--mf-ease-out) both;
    filter: none;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    stroke-width: 2.35px;
    vector-effect: non-scaling-stroke;
  }

  @keyframes dashboard-chart-area-in {
    from {
      opacity: 0;
      transform: scaleY(.92);
    }
  }

  @keyframes dashboard-chart-line-in {
    from {
      stroke-dashoffset: 1px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .dashboard-equity-chart .chart-area, .dashboard-equity-chart .chart-line-primary {
      animation: none;
    }
  }

  .dashboard-page .mf-panel-table .mf-table-scroll, .dashboard-page .timeline-list {
    scrollbar-gutter: stable;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
  }

  .dashboard-page .mf-panel-table .mf-table-scroll {
    min-width: 0;
    overflow-x: auto;
  }

  .dashboard-page .mf-panel-table {
    --mf-dashboard-table-head-h: clamp(30px, 3.4vh, 36px);
    --mf-dashboard-table-row-h: clamp(40px, 4.2vh, 44px);
  }

  .dashboard-page .mf-table {
    table-layout: fixed;
    width: 100%;
    height: auto;
    font-size: clamp(.7rem, .56rem + .18vw, .9rem);
  }

  .dashboard-page .dashboard-performance-panel .mf-table {
    min-width: 600px;
  }

  .dashboard-page .recent-orders-panel .mf-table {
    min-width: 680px;
  }

  .dashboard-page .mf-table thead tr {
    height: var(--mf-dashboard-table-head-h);
  }

  .dashboard-page .mf-table tbody tr {
    height: var(--mf-dashboard-table-row-h);
  }

  .dashboard-page .mf-table :where(th, td) {
    text-overflow: ellipsis;
    white-space: nowrap;
    height: auto;
    padding: 6px 0;
    overflow: hidden;
  }

  .dashboard-page .mf-table th, .dashboard-page .mf-badge {
    font-size: clamp(.6875rem, .58rem + .12vw, .78rem);
  }

  .dashboard-page .mf-table .mf-identity {
    text-overflow: ellipsis;
    min-width: 0;
    overflow: hidden;
  }

  .dashboard-page .dashboard-performance-panel .mf-table :is(th, td):first-child {
    width: 51%;
  }

  .dashboard-page .dashboard-performance-panel .mf-table :is(th, td):nth-child(2), .dashboard-page .dashboard-performance-panel .mf-table :is(th, td):nth-child(3) {
    width: 17%;
  }

  .dashboard-page .dashboard-performance-panel .mf-table :is(th, td):nth-child(4) {
    text-align: center;
    width: 15%;
  }

  .dashboard-page .dashboard-performance-panel .mf-table .mf-badge-icon {
    margin-inline: auto;
  }

  .dashboard-page .recent-orders-panel .mf-table :is(th, td):first-child {
    width: 18%;
  }

  .dashboard-page .recent-orders-panel .mf-table :is(th, td):nth-child(2) {
    width: 14%;
  }

  .dashboard-page .recent-orders-panel .mf-table :is(th, td):nth-child(3) {
    width: 30%;
  }

  .dashboard-page .recent-orders-panel .mf-table :is(th, td):nth-child(4) {
    width: 17%;
  }

  .dashboard-page .recent-orders-panel .mf-table :is(th, td):nth-child(5) {
    width: 21%;
  }

  .dashboard-page .schedule-panel {
    --mf-schedule-row-h: clamp(42px, 4.8vh, 48px);
  }

  .dashboard-page .timeline-list {
    grid-auto-rows: var(--mf-schedule-row-h);
    align-content: start;
  }

  .dashboard-page .timeline-row {
    --mf-timeline-marker-center: calc(42px + var(--mf-space-2) + 4px);
    --mf-timeline-color: var(--mf-color-info);
    height: 100%;
    min-height: 0;
    position: relative;
  }

  .dashboard-page .timeline-row:after {
    background: var(--mf-timeline-color);
    content: "";
    height: calc(100% - 7px);
    left: var(--mf-timeline-marker-center);
    opacity: .58;
    width: 1px;
    position: absolute;
    top: calc(50% + 3.5px);
    transform: translateX(-50%);
  }

  .dashboard-page .timeline-row:last-child:after {
    display: none;
  }

  .dashboard-page .timeline-row > i {
    background: var(--mf-timeline-color);
    box-shadow: var(--mf-shadow-timeline-marker);
    z-index: 1;
    justify-self: center;
    position: relative;
  }

  .dashboard-page .timeline-row-progress {
    --mf-timeline-color: var(--mf-color-accent);
  }

  .dashboard-page .timeline-row-scheduled {
    --mf-timeline-color: var(--mf-color-info);
  }

  .dashboard-page .timeline-row-completed {
    --mf-timeline-color: var(--mf-accent-teal);
  }

  .dashboard-page .timeline-row-paused {
    --mf-timeline-color: var(--mf-color-warning);
  }

  .dashboard-board {
    gap: var(--mf-page-gap);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
  }

  .dashboard-board > .wide-panel {
    grid-column: 1 / -1;
  }

  @container dashboard-page (min-width: 1101px) {
    .dashboard-page-layout {
      grid-template-rows: auto minmax(300px, 1.15fr) minmax(270px, 1fr);
      align-content: stretch;
    }

    .dashboard-page-layout > :is(.dashboard-primary-grid, .dashboard-secondary-grid), .dashboard-page .dashboard-page-layout > .dashboard-primary-grid > *, .dashboard-page .dashboard-page-layout > .dashboard-secondary-grid > * {
      height: 100%;
      min-height: 0;
    }
  }

  @container dashboard-page (max-width: 1100px) {
    .dashboard-secondary-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-secondary-grid > :last-child {
      grid-column: 1 / -1;
    }
  }

  @container dashboard-page (max-width: 820px) {
    .dashboard-primary-grid, .dashboard-secondary-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-secondary-grid > :last-child {
      grid-column: auto;
    }

    .dashboard-primary-grid > *, .dashboard-secondary-grid > * {
      min-height: 240px;
    }

    .dashboard-primary-grid > .portfolio-panel {
      height: auto;
      min-height: clamp(300px, 34cqi, 360px);
    }

    .dashboard-page .dashboard-primary-grid > .mf-widget, .dashboard-page .dashboard-secondary-grid > .mf-widget {
      min-height: 240px;
    }

    .dashboard-page .dashboard-primary-grid > .portfolio-panel {
      min-height: clamp(300px, 34cqi, 360px);
    }

    .allocation-radial {
      width: clamp(220px, 32cqw, 280px);
      height: clamp(220px, 32cqw, 280px);
    }
  }

  @media (max-width: 1180px) {
    .dashboard-board {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 860px) {
    .dashboard-board {
      grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-board > .wide-panel {
      grid-column: auto;
    }
  }

  @media (max-height: 760px) {
    .page-content:has(.dashboard-page) {
      overflow: auto;
    }

    .dashboard-page, .dashboard-page-layout {
      height: auto;
      min-height: 100%;
    }

    .dashboard-page-layout {
      grid-template-rows: auto;
    }

    .dashboard-page-layout > :is(.dashboard-primary-grid, .dashboard-secondary-grid), .dashboard-page .dashboard-page-layout > .dashboard-primary-grid > *, .dashboard-page .dashboard-page-layout > .dashboard-secondary-grid > * {
      height: auto;
    }

    .dashboard-page .dashboard-primary-grid > .mf-widget, .dashboard-primary-grid > * {
      min-height: 250px;
    }

    .dashboard-page .dashboard-secondary-grid > .mf-widget, .dashboard-secondary-grid > * {
      min-height: 220px;
    }

    .notification-center-list {
      scrollbar-gutter: auto;
      max-height: none;
      overflow-y: visible;
    }
  }

  @media (max-width: 680px) {
    .allocation-radial-layout {
      grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-page .allocation-row > :is(span, strong) {
      overflow-wrap: anywhere;
      min-width: 0;
    }
  }

  @media (max-width: 520px) {
    .portfolio-panel .mf-tabs {
      grid-auto-columns: minmax(var(--mf-control-h-sm), 1fr);
      grid-auto-flow: column;
      width: 100%;
      display: grid;
      overflow-x: auto;
    }

    .portfolio-panel .mf-tabs button {
      min-width: var(--mf-control-h-sm);
      justify-content: center;
      width: auto;
      padding-inline: 4px;
    }

    .dashboard-equity-chart {
      min-height: 180px;
    }

    .dashboard-secondary-grid .mf-widget-actions {
      justify-content: flex-end;
    }

    .notification-filter-tabs {
      width: auto;
      max-width: 100%;
      overflow-x: auto;
    }

    .notification-filter-tabs button {
      justify-content: center;
      width: auto;
      min-height: 44px;
    }

    .notification-center-item {
      align-items: start;
      gap: var(--mf-space-3);
      padding: var(--mf-space-4);
      grid-template-columns: auto minmax(0, 1fr);
    }

    .dashboard-primary-grid > *, .dashboard-secondary-grid > * {
      min-height: 220px;
    }

    .dashboard-page .mf-table tbody tr {
      height: 52px;
    }

    .dashboard-page .mf-table :where(th, td) {
      padding-block: 7px;
    }
  }

  @media (max-width: 359px) {
    .notification-copy-heading {
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .notification-item, .notification-item-arrow {
      transition: none;
    }
  }
}

/* [project]/src/styles/marketing.css [app-client] (css) */


/* [project]/src/styles/pages/marketing-previews.css [app-client] (css) */
.product-window {
  border: var(--mf-marketing-dark-border-rule);
  background: #080a0b;
  border-radius: 10px;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--mf-marketing-card-shadow) !important;
}

.marketing-dashboard-browser {
  isolation: isolate;
  color: #1d1d1f;
  border: var(--mf-marketing-border-rule);
  background: #f5f5f7 padding-box padding-box;
  border-radius: 28px;
  width: 100%;
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  container: marketing-dashboard / inline-size;
  box-shadow: var(--mf-marketing-card-shadow) !important;
}

.marketing-dashboard-browser-chrome {
  color: #6e6e73;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: #f5f5f7;
  border-bottom: 1px solid #efeff0;
  min-width: 0;
  padding: 8px 12px 9px;
}

.marketing-dashboard-browser-topbar, .marketing-dashboard-browser-toolbar {
  align-items: center;
  min-width: 0;
  display: grid;
}

.marketing-dashboard-browser-topbar {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 25px;
}

.marketing-dashboard-browser-tabs {
  align-items: center;
  gap: 6px;
  min-width: 0;
  display: flex;
}

.marketing-dashboard-browser-tab {
  color: #1d1d1f;
  border: var(--mf-marketing-border-rule);
  width: min(220px, 100%);
  min-width: 0;
  box-shadow: none;
  background: #fff;
  border-radius: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  display: grid;
}

.marketing-dashboard-browser-tab svg {
  width: 15px;
  height: 15px;
  color: var(--mf-marketing-accent);
  background: none;
  border-radius: 4px;
  padding: 3px;
}

.marketing-dashboard-browser-tab strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-size: 10px;
  font-weight: 650;
  overflow: hidden;
}

.marketing-dashboard-browser-tab-close, .marketing-dashboard-browser-new-tab, .marketing-dashboard-browser-top-actions {
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.marketing-dashboard-browser-tab-close {
  color: #86868b;
  width: 16px;
  height: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.marketing-dashboard-browser-new-tab {
  color: #6e6e73;
  width: 22px;
  height: 22px;
  font-size: 16px;
  line-height: 1;
}

.marketing-dashboard-browser-top-actions {
  color: #6e6e73;
  width: 24px;
  height: 24px;
}

.marketing-dashboard-browser-top-actions svg, .marketing-dashboard-browser-actions svg {
  stroke-width: 2px;
  width: 15px;
  height: 15px;
}

.marketing-dashboard-browser-toolbar {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 7px;
}

.marketing-dashboard-browser-navigation, .marketing-dashboard-browser-actions {
  align-items: center;
  gap: 3px;
  display: inline-flex;
}

.marketing-dashboard-browser-navigation svg, .marketing-dashboard-browser-actions svg {
  color: #6e6e73;
  border-radius: 5px;
  width: 17px;
  height: 17px;
  padding: 3px;
}

.marketing-dashboard-browser-address {
  color: #6e6e73;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: var(--mf-marketing-border-rule);
  background: #fff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 27px;
  padding: 4px 12px;
  font-size: 10px;
  display: flex;
  overflow: hidden;
}

.marketing-dashboard-browser-address svg {
  color: #86868b;
  stroke-width: 2px;
  flex: none;
  width: 13px;
  height: 13px;
}

.marketing-dashboard-browser-address strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 550;
  overflow: hidden;
}

.marketing-dashboard-app-window {
  color: #1d1d1f;
  background: #f5f5f7;
  min-width: 0;
  display: grid;
}

.marketing-dashboard-app-content {
  background: #f5f5f7;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding: clamp(15px, 2.2vw, 26px);
  display: grid;
  overflow: hidden;
}

.marketing-dashboard-heading {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.marketing-dashboard-heading h2 {
  color: #1d1d1f;
  letter-spacing: -.04em;
  font-size: clamp(17px, 1.8vw, 25px);
  font-weight: 680;
  line-height: 1;
}

.marketing-dashboard-heading p {
  color: #6e6e73;
  margin-top: 4px;
  font-size: clamp(9px, .85vw, 12px);
  line-height: 1.3;
}

.marketing-dashboard-heading-avatar {
  color: #fff;
  background: #0071e3;
  border: 2px solid #fff;
  border-radius: 50%;
  flex: none;
  place-items: center;
  width: 27px;
  height: 27px;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  box-shadow: 0 3px 10px #0071e333;
}

.marketing-dashboard-preview-viewport {
  opacity: 0;
  transition: opacity .18s;
}

.marketing-dashboard-preview-viewport[data-preview-ready="true"] {
  opacity: 1;
}

.marketing-dashboard-preview-canvas {
  --accent: #0071e3;
  --accent-strong: #2997ff;
  --accent-rgb: 0, 113, 227;
  --mf-color-bg: #f5f5f7;
  --mf-color-bg-elevated: #fff;
  --mf-color-sidebar: #fff;
  --mf-color-panel: #fff;
  --mf-color-panel-raised: #f5f5f7;
  --mf-color-input: #f5f5f7;
  --mf-color-sidebar-divider: #00000014;
  --mf-color-border: var(--mf-color-border-light, #e8e8e8);
  --mf-color-border-subtle: var(--mf-color-border);
  --mf-color-border-strong: #0071e352;
  --mf-color-primary: #0071e3;
  --mf-color-text: #1d1d1f;
  --mf-color-muted: #6e6e73;
  --mf-color-subtle: #86868b;
  --mf-color-highlight: #ffffffeb;
  --mf-color-accent: #0071e3;
  --mf-color-accent-strong: #0058b0;
  --mf-color-on-accent: #fff;
  --mf-color-danger: #d70015;
  --mf-color-danger-rgb: 215 0 21;
  --mf-color-warning: #8a611f;
  --mf-color-warning-rgb: 138 97 31;
  --mf-color-info: #496fae;
  --mf-color-info-rgb: 73 111 174;
  --mf-color-success: #248a3d;
  --mf-color-success-rgb: 36 138 61;
  --mf-glass-chrome-background: #ffffffb8;
  --mf-glass-chrome-background-strong: #ffffffdb;
  --mf-glass-chrome-border: var(--mf-color-border);
  --mf-glass-chrome-highlight: #ffffffeb;
  --mf-surface-card-background: #fff;
  --mf-surface-card-border: var(--mf-widget-border-light, 1px solid #e8e8e8);
  --mf-surface-card-radius: 16px;
  --mf-surface-card-shadow: var(--mf-marketing-card-shadow);
  --mf-shadow-panel: var(--mf-marketing-card-shadow);
  --mf-shadow-card: var(--mf-marketing-card-shadow);
  --mf-shadow-card-hover: var(--mf-marketing-card-shadow);
  --mf-shadow-panel-hover: var(--mf-marketing-card-shadow);
  --mf-shadow-control-active: inset 0 1px 0 #ffffffeb, 0 3px 12px #0000001a;
  --mf-shadow-notification-pulse: 0 0 0 8px #0071e314;
  --mf-shadow-timeline-marker: 0 0 0 3px #0071e31a;
  color: var(--mf-color-text);
}

.marketing-dashboard-preview-content .dashboard-page-layout {
  grid-template-rows: auto 266px 210px;
  height: auto;
}

.marketing-dashboard-preview-content .dashboard-page-layout > :is(.dashboard-primary-grid, .dashboard-secondary-grid) {
  height: 100%;
  min-height: 0;
}

.marketing-dashboard-preview-content .dashboard-primary-grid > *, .marketing-dashboard-preview-content .dashboard-secondary-grid > *, .marketing-dashboard-preview-content.dashboard-page .dashboard-primary-grid > .mf-widget, .marketing-dashboard-preview-content.dashboard-page .dashboard-secondary-grid > .mf-widget {
  min-height: 0;
}

.marketing-dashboard-preview-content .dashboard-metrics .mf-metric-grid-layout {
  gap: 12px;
}

.marketing-dashboard-preview-content .dashboard-metrics .mf-metric {
  min-height: 98px;
}

.marketing-dashboard-preview-content .dashboard-metrics .mf-metric-copy > strong {
  margin-top: 4px;
  font-size: clamp(21px, 1.45vw, 28px);
}

.marketing-dashboard-preview-content .dashboard-metrics .mf-metric-copy > span, .marketing-dashboard-preview-content .dashboard-metrics .mf-metric-detail {
  font-size: 11px;
}

.marketing-dashboard-preview-content .dashboard-metrics .mf-metric-visual {
  height: 48px;
}

.marketing-dashboard-preview-content :is(.mf-metric-radial .mf-metric-visual, .mf-radial-progress) {
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
}

.marketing-dashboard-preview-content .mf-widget-header, .marketing-dashboard-preview-content .mf-panel-header {
  border-bottom-color: var(--mf-color-border);
}

.marketing-dashboard-preview-content .mf-widget-heading > svg {
  color: #0071e3;
  width: 28px;
  height: 28px;
}

.marketing-dashboard-preview-content .allocation-radial {
  width: 180px;
  height: 180px;
}

.marketing-dashboard-preview-content .allocation-row {
  min-height: 38px;
  font-size: 11px;
}

.marketing-dashboard-preview-content.dashboard-page .mf-panel-table {
  --mf-dashboard-table-head-h: 32px;
  --mf-dashboard-table-row-h: 42px;
}

.marketing-dashboard-preview-content.dashboard-page .mf-table {
  width: 100%;
  min-width: 0;
  font-size: 11px;
}

.marketing-dashboard-preview-content.dashboard-page .mf-table th, .marketing-dashboard-preview-content.dashboard-page .mf-badge {
  font-size: 10px;
}

.marketing-dashboard-preview-content.dashboard-page .mf-badge {
  border-color: var(--mf-color-border);
}

.marketing-dashboard-preview-content.dashboard-page .schedule-panel {
  --mf-schedule-row-h: 26px;
}

.marketing-dashboard-preview-content.dashboard-page .timeline-list {
  scrollbar-width: none;
  overflow: hidden;
}

.marketing-dashboard-preview-content.dashboard-page .timeline-row {
  font-size: 11px;
}

.marketing-dashboard-preview-content.dashboard-page .timeline-row small {
  font-size: 9px;
}

.marketing-dashboard-preview-content.dashboard-page :is(.mf-tabs, .mf-table-scroll) {
  scrollbar-width: none;
  overflow: hidden;
}

.marketing-dashboard-preview-content.dashboard-page :is(.mf-tabs, .mf-table-scroll, .timeline-list)::-webkit-scrollbar {
  display: none;
}

@container marketing-dashboard (max-width: 680px) {
  .marketing-dashboard-browser {
    border-radius: 22px;
  }

  .marketing-dashboard-browser-chrome {
    padding: 7px 9px 8px;
  }

  .marketing-dashboard-browser-topbar {
    gap: 8px;
    min-height: 23px;
  }

  .marketing-dashboard-browser-tab {
    padding: 6px 8px;
  }

  .marketing-dashboard-browser-toolbar {
    gap: 7px;
    margin-top: 5px;
  }

  .marketing-dashboard-browser-navigation svg, .marketing-dashboard-browser-actions svg {
    width: 15px;
    height: 15px;
  }

  .marketing-dashboard-browser-address {
    min-height: 25px;
    padding-inline: 9px;
  }

  .marketing-dashboard-app-content {
    padding: 14px;
  }
}

@container marketing-dashboard (max-width: 420px) {
  .marketing-dashboard-browser .marketing-window-controls {
    gap: 5px;
  }

  .marketing-dashboard-browser .marketing-window-controls > i {
    width: 7px;
    height: 7px;
  }

  .marketing-dashboard-browser-tab strong {
    font-size: 9px;
  }

  .marketing-dashboard-browser-topbar {
    gap: 5px;
  }

  .marketing-dashboard-browser-tab {
    gap: 5px;
    width: min(190px, 100%);
    padding: 4px 7px;
  }

  .marketing-dashboard-browser-tab svg {
    width: 13px;
    height: 13px;
    padding: 2px;
  }

  .marketing-dashboard-browser-tab-close {
    width: 13px;
    height: 13px;
    font-size: 12px;
  }

  .marketing-dashboard-browser-new-tab, .marketing-dashboard-browser-top-actions {
    width: 18px;
  }

  .marketing-dashboard-browser-new-tab {
    font-size: 14px;
  }

  .marketing-dashboard-browser-toolbar {
    gap: 4px;
  }

  .marketing-dashboard-browser-navigation, .marketing-dashboard-browser-actions {
    gap: 0;
  }

  .marketing-dashboard-browser-navigation svg, .marketing-dashboard-browser-actions svg {
    width: 15px;
    height: 15px;
    padding: 2px;
  }

  .marketing-dashboard-browser-address {
    min-height: 24px;
    padding-inline: 7px;
  }

  .marketing-dashboard-browser-address strong {
    font-size: 9px;
  }
}

.demo-note {
  z-index: 5;
  color: #b0bab4;
  font-size: 8px;
  position: absolute;
  bottom: 7px;
  right: 10px;
}

.marketing-scratch-preview {
  --mf-color-border: var(--mf-marketing-dark-line);
  --mf-color-border-subtle: var(--mf-color-border);
  height: clamp(400px, min(52vw, 72svh), 560px);
  min-height: 0;
  overflow: hidden;
  container: marketing-scratch / inline-size;
}

.marketing-scratch-shell {
  min-width: 0;
  height: 100%;
  color: var(--mf-color-text);
  background: #080b0f;
  grid-template-rows: 48px 1fr 28px;
  grid-template-columns: minmax(0, 1fr);
  display: grid;
  position: relative;
  overflow: hidden;
}

.marketing-scratch-header {
  z-index: 4;
  align-items: center;
  gap: var(--mf-space-3);
  min-width: 0;
  padding: 0 var(--mf-space-3);
  border-bottom: 1px solid var(--mf-color-border);
  background: #080b0ff5;
  display: flex;
}

.marketing-scratch-header > span:first-child, .marketing-scratch-portable, .marketing-scratch-header > button {
  align-items: center;
  gap: var(--mf-space-2);
  display: inline-flex;
}

.marketing-scratch-header > span:first-child {
  min-width: 0;
  font-size: var(--mf-text-sm);
  flex: auto;
}

.marketing-scratch-portable {
  color: var(--mf-color-accent-strong);
  border: 1px solid rgb(var(--accent-rgb), .24);
  border-radius: var(--mf-radius-pill);
  background: rgb(var(--accent-rgb), .08);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
}

.marketing-scratch-header > button {
  min-height: 28px;
  color: var(--mf-color-on-accent);
  background: var(--mf-color-accent);
  border: 0;
  border-radius: 8px;
  margin-left: auto;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
}

.marketing-scratch-tools {
  z-index: 5;
  border: 1px solid var(--mf-color-border);
  background: #0f1318f0;
  border-radius: 10px;
  gap: 4px;
  padding: 4px;
  display: grid;
  position: absolute;
  top: 60px;
  left: 8px;
  box-shadow: var(--mf-marketing-card-shadow) !important;
}

.marketing-scratch-tools button {
  width: 31px;
  height: 31px;
  color: var(--mf-color-muted);
  background: none;
  border: 0;
  border-radius: 7px;
  place-items: center;
  padding: 0;
  display: grid;
}

.marketing-scratch-tools button:hover:not(:disabled), .marketing-scratch-tools button[aria-pressed="true"] {
  color: var(--mf-color-text);
  background: var(--mf-color-highlight);
}

.marketing-scratch-tools button:disabled {
  cursor: not-allowed;
  opacity: .38;
}

.marketing-scratch-tools span {
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.marketing-scratch-canvas {
  background-color: #0b1016;
  background-image: radial-gradient(circle, #ffffff1a 1px, #0000 1px);
  background-size: 22px 22px;
  min-width: 0;
  min-height: 0;
  padding: 34px 218px 44px 82px;
  position: relative;
  overflow: auto;
}

.marketing-scratch-script {
  filter: none;
  width: min(100%, 420px);
}

.marketing-scratch-block {
  color: #fff;
  border: 1px solid #fff3;
  border-radius: 7px;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-width: 270px;
  min-height: 38px;
  margin-top: -1px;
  padding: 7px 11px;
  font-size: 10px;
  display: flex;
  position: relative;
  box-shadow: inset 0 1px #ffffff21;
}

.marketing-scratch-block strong {
  white-space: nowrap;
}

.marketing-scratch-block-event {
  background: #087f5b;
  border-radius: 18px 8px 7px;
  min-height: 42px;
  padding-top: 11px;
}

.marketing-scratch-block-control {
  background: #495057;
  min-width: 360px;
  display: block;
}

.marketing-scratch-block-control > div:first-child {
  align-items: center;
  gap: 7px;
  display: flex;
}

.marketing-scratch-block-trade {
  background: #c92a2a;
}

.marketing-scratch-block-state {
  background: #9c36b5;
}

.marketing-scratch-block-indicator {
  background: #1971c2;
}

.marketing-scratch-block-logic {
  background: #6741d9;
}

.marketing-scratch-branch {
  border-left: 8px solid #0003;
  gap: 0;
  min-height: 54px;
  margin: 7px -4px 1px 14px;
  padding: 5px 0 5px 12px;
  display: grid;
}

.marketing-scratch-branch .marketing-scratch-block {
  min-width: 255px;
}

.marketing-scratch-block-small {
  min-height: 32px;
}

.marketing-scratch-script-gap {
  margin-top: 20px;
}

.marketing-scratch-value {
  white-space: nowrap;
  border-radius: var(--mf-radius-pill);
  background: #ffffff24;
  border: 1px solid #0000003d;
  align-items: center;
  min-height: 23px;
  padding: 2px 7px;
  display: inline-flex;
}

.marketing-scratch-value-condition {
  border-radius: 6px;
}

.marketing-scratch-library {
  z-index: 5;
  border: 1px solid var(--mf-color-border);
  background: #0f1318f5;
  border-radius: 12px;
  grid-template-rows: auto auto 1fr;
  width: 194px;
  display: grid;
  position: absolute;
  top: 60px;
  bottom: 40px;
  right: 10px;
  overflow: hidden;
  box-shadow: var(--mf-marketing-card-shadow) !important;
}

.marketing-scratch-library > header {
  border-bottom: 1px solid var(--mf-color-border);
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
}

.marketing-scratch-library > header span {
  display: grid;
}

.marketing-scratch-library small {
  color: var(--mf-color-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 8px;
  font-style: normal;
}

.marketing-scratch-library > header strong {
  font-size: 11px;
}

.marketing-scratch-library > header button {
  width: 26px;
  height: 26px;
  color: var(--mf-color-muted);
  background: none;
  border: 0;
  border-radius: 7px;
  place-items: center;
  padding: 0;
  display: grid;
}

.marketing-scratch-library > label {
  border: 1px solid var(--mf-color-border);
  background: var(--mf-color-input);
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  margin: 9px;
  padding: 0 8px;
  display: flex;
}

.marketing-scratch-library input {
  width: 100%;
  min-height: 30px;
  color: var(--mf-color-text);
  background: none;
  border: 0;
  outline: 0;
  font-size: 10px;
}

.marketing-scratch-library > div {
  padding: 0 9px 9px;
  overflow: auto;
}

.marketing-scratch-library > div > button {
  width: 100%;
  color: var(--mf-color-text);
  text-align: left;
  border: 1px solid var(--mf-color-border);
  background: var(--mf-color-panel-raised);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 8px;
  display: flex;
}

.marketing-scratch-library > div > button span {
  gap: 1px;
  display: grid;
}

.marketing-scratch-library > div > button strong {
  font-size: 10px;
}

.marketing-scratch-library > div > button em {
  color: var(--mf-color-muted);
  font-size: 8px;
  font-style: normal;
}

.marketing-scratch-status {
  z-index: 4;
  min-width: 0;
  color: var(--mf-color-muted);
  border-top: 1px solid var(--mf-color-border);
  background: #080b0f;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  font-size: 9px;
  display: flex;
}

.marketing-scratch-visually-hidden {
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.marketing-strategy-studio-preview {
  height: clamp(400px, min(52vw, 72svh), 560px);
  min-height: 0;
}

@media (max-width: 680px) {
  .marketing-strategy-studio-preview {
    height: clamp(420px, 105vw, 500px);
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .subpage-hero, .safety-section {
    grid-template-columns: 1fr;
  }
}

@container marketing-scratch (max-width: 720px) {
  .marketing-scratch-canvas {
    padding: 28px 166px 40px 58px;
  }

  .marketing-scratch-library {
    width: 150px;
  }

  .marketing-scratch-block {
    min-width: 220px;
  }

  .marketing-scratch-block-control {
    min-width: 280px;
  }

  .marketing-scratch-branch .marketing-scratch-block {
    min-width: 210px;
  }
}

@container marketing-scratch (max-width: 520px) {
  .marketing-scratch-shell {
    grid-template-rows: 44px minmax(0, 1fr) 28px;
  }

  .marketing-scratch-header {
    gap: 6px;
    padding-inline: 8px;
  }

  .marketing-scratch-header > span:first-child strong {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .marketing-scratch-portable {
    padding-inline: 6px;
  }

  .marketing-scratch-header > button {
    min-height: 26px;
    padding-inline: 8px;
  }

  .marketing-scratch-tools {
    top: 52px;
    left: 6px;
  }

  .marketing-scratch-canvas {
    padding: 20px 10px 36px 50px;
  }

  .marketing-scratch-script, .marketing-scratch-block, .marketing-scratch-block-control, .marketing-scratch-branch .marketing-scratch-block {
    width: 100%;
    min-width: 0;
  }

  .marketing-scratch-block {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .marketing-scratch-block strong, .marketing-scratch-value {
    white-space: normal;
  }

  .marketing-scratch-branch {
    margin-right: 0;
  }

  .marketing-scratch-library {
    width: auto;
    inset: 52px 8px 36px 48px;
  }

  .marketing-scratch-status {
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
  }
}

@container marketing-scratch (max-width: 360px) {
  .marketing-scratch-header > span:first-child {
    font-size: 10px;
  }

  .marketing-scratch-value {
    padding-inline: 5px;
  }
}

@media (max-height: 700px) {
  .marketing-scratch-preview, .marketing-strategy-studio-preview {
    height: clamp(360px, 68svh, 480px);
    min-height: 0;
  }
}

/* [project]/src/app/(marketing)/marketing.css [app-client] (css) */
.marketing-site {
  --mf-surface-card-shadow: var(--mf-marketing-card-shadow);
  min-width: 0;
  min-height: 100dvh;
  color: var(--mf-marketing-ink);
  background: var(--mf-marketing-page);
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  overflow: clip;
}

.marketing-site :where(svg.lucide, svg[class*="lucide-"]) {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
}

.marketing-site :where(h1, h2, h3, p) {
  margin: 0;
}

.marketing-site :where(a, button) {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.marketing-site :where(a, button, input, summary):focus-visible {
  outline-offset: 3px;
  box-shadow: none;
  outline: 3px solid #0071e38c;
}

.marketing-main {
  min-width: 0;
}

.site-header {
  z-index: 80;
  width: 100%;
  min-height: 64px;
  color: var(--mf-marketing-ink);
  border-bottom: var(--mf-marketing-border-rule);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  backdrop-filter: blur(30px) saturate(1.4);
  background: linear-gradient(#ffffffe6, #f5f5f7d1);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 8px max(16px, 50% - 590px);
  display: grid;
  position: fixed;
  inset: 0 0 auto;
  box-shadow: inset 0 1px #fffffff5, 0 8px 24px #00000012;
}

.site-header-minimal {
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-brand {
  letter-spacing: -.03em;
  white-space: nowrap;
  justify-self: start;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 14px;
  font-weight: 670;
  display: inline-flex;
}

.site-brand > svg {
  width: 27px;
  height: 27px;
  color: var(--mf-marketing-accent);
  box-shadow: none;
  background: none;
  border: 0;
  border-radius: 0;
  flex: none;
  padding: 0;
}

.site-nav {
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  min-width: 0;
  display: flex;
}

.site-nav > a, .text-link {
  color: color-mix(in srgb, var(--mf-marketing-ink) 82%, transparent);
  font-size: 12px;
  font-weight: 520;
  transition: color .15s;
}

.site-nav > a[aria-current="page"] {
  color: var(--mf-marketing-ink);
  font-weight: 650;
}

.site-nav > a[aria-current="page"]:after {
  content: "";
  border-radius: var(--mf-radius-pill);
  background: var(--mf-marketing-accent);
  width: 4px;
  height: 4px;
  margin: 5px auto -9px;
  display: block;
}

.header-actions {
  justify-content: flex-end;
  justify-self: end;
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.site-header .mf-button {
  min-height: 34px;
  padding-inline: 14px;
  font-size: 12px;
}

.compact-menu-toggle, .compact-menu-actions {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav > a:hover, .text-link:hover {
    color: var(--mf-marketing-accent);
  }
}

.marketing-site .mf-widget-content {
  min-width: 0;
}

.marketing-site .mf-widget-marketing {
  border-color: var(--mf-marketing-line);
}

.marketing-site .mf-widget-marketing-dark {
  border-color: var(--mf-marketing-dark-line);
}

.marketing-site .mf-badge-marketing {
  width: fit-content;
  color: var(--mf-marketing-accent);
  background: #e8f2ff;
  border: 0;
  align-self: flex-start;
}

.section-heading {
  gap: 13px;
  max-width: 780px;
  display: grid;
}

.section-heading-centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2, .section h2, .arbitrage-copy h2, .prediction-section h2, .pricing-faq h2, .resource-related h2 {
  letter-spacing: -.055em;
  text-wrap: balance;
  font-size: clamp(38px, 5.6vw, 74px);
  font-weight: 690;
  line-height: .98;
}

.section-heading > p:last-child, .arbitrage-copy > p, .prediction-section p, .pricing-legal-links p {
  color: var(--mf-marketing-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.inline-link, .card-link, .notification-detail-link {
  width: fit-content;
  color: var(--mf-marketing-accent);
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.marketing-hero {
  background: #f5f5f7;
  align-content: start;
  justify-items: center;
  gap: clamp(44px, 6vw, 78px);
  min-height: 100svh;
  padding: clamp(130px, 14vw, 190px) 24px clamp(76px, 9vw, 122px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.marketing-hero:before, .marketing-hero:after {
  display: none;
}

.marketing-hero-copy {
  z-index: 1;
  text-align: center;
  justify-items: center;
  gap: 21px;
  max-width: 1040px;
  display: grid;
  position: relative;
}

.marketing-hero h1 {
  letter-spacing: -.072em;
  font-size: clamp(62px, 9.4vw, 132px);
  font-weight: 700;
  line-height: .82;
  display: grid;
}

.marketing-hero h1 > span:last-child {
  color: #0000;
  background: linear-gradient(90deg, #0071e3 8%, #5e5ce6 52%, #bf5af2 92%);
  -webkit-background-clip: text;
  background-clip: text;
  padding: .08em 0 .06em;
}

.hero-lead {
  max-width: 770px;
  color: var(--mf-marketing-muted);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.42;
}

.marketing-hero-stage {
  z-index: 2;
  width: min(100%, 1160px);
  position: relative;
}

.market-constellation {
  color: #f5f5f7;
  border: var(--mf-marketing-dark-border-rule);
  background: #08090b;
  border-radius: 32px;
  width: 100%;
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff24, 0 36px 110px #00000057;
}

.constellation-window-bar {
  color: #a1a1a6;
  border-bottom: var(--mf-marketing-dark-border-rule);
  background: #1c1c1eeb;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  font-size: 11px;
  display: grid;
}

.marketing-window-controls {
  gap: 7px;
  display: inline-flex;
}

.marketing-window-controls > i {
  background: #ff5f57;
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.marketing-window-controls > i:nth-child(2) {
  background: #febc2e;
}

.marketing-window-controls > i:nth-child(3) {
  background: #28c840;
}

.constellation-canvas {
  background: radial-gradient(circle at 50% 48%, #0071e333, #0000 22%), radial-gradient(circle at 82% 12%, #bf5af224, #0000 23%), radial-gradient(circle at 12% 90%, #30d15817, #0000 24%), linear-gradient(145deg, #090b10, #020304 70%);
  min-height: clamp(440px, 50vw, 620px);
  position: relative;
  overflow: hidden;
}

.constellation-canvas:before {
  content: "";
  background-image: linear-gradient(#ffffff08 1px, #0000 1px), linear-gradient(90deg, #ffffff08 1px, #0000 1px);
  background-size: 54px 54px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(circle, #000, #0000 72%);
  mask-image: radial-gradient(circle, #000, #0000 72%);
}

.constellation-glow {
  aspect-ratio: 1;
  filter: blur(20px);
  background: radial-gradient(circle, #0071e338, #0000 67%);
  width: min(64%, 540px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.constellation-paths {
  fill: none;
  stroke: #64d2ff52;
  stroke-dasharray: 4 8;
  stroke-linecap: round;
  stroke-width: 1.2px;
  width: min(92%, 820px);
  height: auto;
  position: absolute;
  inset: 50% auto auto 50%;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.constellation-orbit {
  stroke: #ffffff1a;
  stroke-dasharray: 2 10;
}

.constellation-center {
  z-index: 2;
  aspect-ratio: 1;
  color: #fff;
  border: var(--mf-marketing-dark-border-rule);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  backdrop-filter: blur(22px) saturate(1.3);
  background: linear-gradient(145deg, #ffffff30, #0000 34%), #1c1c1eb8;
  border-radius: 36%;
  align-content: center;
  place-items: center;
  gap: 10px;
  width: clamp(112px, 16vw, 158px);
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(45deg);
  box-shadow: inset 0 1px #ffffff2e, 0 22px 60px #00000061;
}

.constellation-center > * {
  transform: rotate(-45deg);
}

.constellation-center svg {
  color: #64d2ff;
  width: 42px;
  height: 42px;
}

.constellation-center strong {
  letter-spacing: -.02em;
  font-size: 12px;
}

.constellation-item {
  z-index: 3;
  border: var(--mf-marketing-dark-border-rule);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  background: linear-gradient(145deg, #ffffff21, #0000 36%), #1c1c1eb8;
  border-radius: 17px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  width: min(31%, 260px);
  min-width: 0;
  padding: 13px;
  display: grid;
  position: absolute;
  box-shadow: inset 0 1px #ffffff24, 0 18px 45px #0000003d;
}

.constellation-item > span {
  color: #fff;
  background: linear-gradient(150deg, #64d2ff, #0071e3);
  border-radius: 12px;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
  box-shadow: inset 0 1px #ffffff3d;
}

.constellation-item-2 > span {
  background: linear-gradient(150deg, #bf5af2, #5e5ce6);
}

.constellation-item-3 > span {
  background: linear-gradient(150deg, #34c759, #248a3d);
}

.constellation-item-4 > span {
  background: linear-gradient(150deg, #ff9f0a, #ff453a);
}

.constellation-item > div {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.constellation-item strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  overflow: hidden;
}

.constellation-item small {
  color: #a1a1a6;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  overflow: hidden;
}

.constellation-item-1 {
  top: 15%;
  left: 8%;
}

.constellation-item-2 {
  top: 15%;
  right: 8%;
}

.constellation-item-3 {
  bottom: 15%;
  left: 8%;
}

.constellation-item-4 {
  bottom: 15%;
  right: 8%;
}

.market-section, .platform-section, .arbitrage-section, .prediction-section, .section, .subpage-hero, .pricing-hero, .pricing-grid, .resource-hero, .resource-layout, .resource-related, .shared-profile-page {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.market-section, .platform-section, .section, .detail-section {
  padding-block: clamp(90px, 12vw, 160px);
}

.market-section {
  gap: 52px;
  display: grid;
}

.market-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  display: grid;
}

.market-card {
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  min-height: 330px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.market-card-meta {
  grid-area: 1 / 1;
  place-self: start end;
  align-items: flex-start;
  min-height: 0;
  display: flex;
}

.market-card .feature-icon {
  grid-area: 1 / 1;
}

.market-card h3 {
  grid-area: 2 / 1;
}

.market-card p {
  grid-area: 3 / 1;
}

.feature-icon, .prediction-mark {
  color: #fff;
  background: linear-gradient(150deg, #64d2ff, #0071e3);
  border-radius: 14px;
  place-items: center;
  width: 48px;
  height: 48px;
  display: grid;
  box-shadow: inset 0 1px #ffffff47, 0 12px 28px #0071e32e;
}

.market-card:nth-child(2) .feature-icon {
  background: linear-gradient(150deg, #bf5af2, #5e5ce6);
}

.market-card:nth-child(3) .feature-icon {
  background: linear-gradient(150deg, #ffd60a, #ff9f0a);
}

.platform-grid > .platform-card-link:nth-child(2) .feature-icon {
  background: linear-gradient(150deg, #bf5af2, #5e5ce6);
}

.platform-grid > .platform-card-link:nth-child(3) .feature-icon {
  background: linear-gradient(150deg, #ffd60a, #ff9f0a);
}

.market-card h3, .platform-card h3, .detail-card h3 {
  letter-spacing: -.04em;
  font-size: clamp(25px, 2.8vw, 36px);
  font-weight: 650;
  line-height: 1.04;
}

.market-card p, .platform-card p, .detail-card p {
  color: var(--mf-marketing-muted);
  font-size: 15px;
  line-height: 1.5;
}

.platform-section {
  color: #f5f5f7;
  background: radial-gradient(circle at 50% 0, #0071e32e, #0000 34rem), #000;
  gap: 54px;
  width: 100vw;
  max-width: none;
  margin-left: -50vw;
  padding-inline: max(20px, 50vw - 620px);
  display: grid;
  position: relative;
  left: 50%;
}

.platform-section .section-heading > p:last-child, .platform-card p, .detail-card p {
  color: #a1a1a6;
}

.platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  display: grid;
}

.platform-card-link {
  min-width: 0;
  display: block;
}

.platform-card {
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  min-height: 330px;
  display: flex;
}

.platform-card > div:nth-child(2) {
  gap: 10px;
  display: grid;
}

.platform-card .card-link {
  color: #64d2ff;
}

.arbitrage-section {
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  min-width: 0;
  padding-block: clamp(96px, 12vw, 160px);
  display: grid;
}

.arbitrage-copy {
  gap: 18px;
  min-width: 0;
  display: grid;
}

.marketing-exchange-flow {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.marketing-exchange-flow > .mf-widget-content {
  border-radius: inherit;
  min-width: 0;
}

.marketing-exchange-flow-surface {
  isolation: isolate;
  border-radius: inherit;
  min-height: 330px;
  box-shadow: none;
  background: #f7f8fa;
  border: 0;
  align-content: center;
  gap: 24px;
  padding: clamp(22px, 3.2vw, 34px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.marketing-exchange-flow-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.marketing-exchange-flow-kicker {
  min-width: 0;
  color: var(--mf-marketing-ink);
  letter-spacing: -.01em;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 680;
  display: inline-flex;
}

.marketing-exchange-flow-kicker svg {
  color: var(--mf-marketing-accent);
  flex: none;
}

.marketing-exchange-flow-mode {
  color: var(--mf-marketing-ink);
  font-family: var(--mf-font-mono);
  border: var(--mf-marketing-border-rule);
  background: #ffffffd1;
  border-radius: 999px;
  flex: none;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 700;
}

.marketing-exchange-markets {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  display: grid;
}

.marketing-exchange-market {
  border: var(--mf-marketing-border-rule);
  background: #ffffffe0;
  border-radius: 16px;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 68px;
  padding: 9px 6px 8px;
  display: grid;
}

.marketing-exchange-market-mark {
  border: var(--mf-marketing-border-rule);
  background: #f6f7f9;
  border-radius: 9px;
  place-items: center;
  width: 28px;
  height: 28px;
  display: grid;
}

.marketing-exchange-market-mark .exchange-brand-mark {
  width: 18px;
  height: 18px;
}

.marketing-exchange-market-mark .exchange-brand-bybit {
  width: 22px;
}

.marketing-exchange-market > strong {
  width: 100%;
  color: var(--mf-marketing-ink);
  letter-spacing: -.02em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 680;
  overflow: hidden;
}

.marketing-exchange-process {
  border: var(--mf-marketing-border-rule);
  background: #ffffffc7;
  border-radius: 18px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  display: grid;
}

.marketing-exchange-process-step {
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-width: 0;
  display: flex;
}

.marketing-exchange-process-step > span {
  width: 34px;
  height: 34px;
  color: var(--mf-marketing-accent);
  background: #e8f2ff;
  border-radius: 11px;
  place-items: center;
  display: grid;
}

.marketing-exchange-process-step-execution > span {
  color: #18864b;
  background: #e5f6ec;
}

.marketing-exchange-process-step strong {
  color: var(--mf-marketing-ink);
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 680;
  overflow: hidden;
}

.marketing-exchange-process-arrow {
  color: #0071e38c;
}

.marketing-exchange-flow .exchange-brand-mark.exchange-brand-okx, .marketing-exchange-catalog .exchange-brand-mark.exchange-brand-okx, .marketing-exchange-flow .exchange-brand-mark.exchange-brand-bybit, .marketing-exchange-catalog .exchange-brand-mark.exchange-brand-bybit, .marketing-exchange-flow .exchange-brand-mark.exchange-brand-generic, .marketing-exchange-catalog .exchange-brand-mark.exchange-brand-generic {
  color: var(--mf-marketing-ink);
}

.marketing-exchange-catalog {
  gap: 52px;
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
  padding-block: clamp(90px, 12vw, 160px);
  display: grid;
}

.marketing-exchange-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.marketing-exchange-catalog-item {
  min-width: 0;
}

.marketing-exchange-catalog-card {
  min-width: 0;
  height: 100%;
  display: block;
}

.marketing-exchange-catalog-card > .mf-widget-content {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 52px;
  display: grid;
}

.marketing-exchange-catalog-mark {
  border: var(--mf-marketing-border-rule);
  background: #f6f7f9;
  border-radius: 12px;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
}

.marketing-exchange-catalog-mark .exchange-brand-mark {
  width: 23px;
  height: 23px;
}

.marketing-exchange-catalog-mark-binance {
  background: #fff9df;
}

.marketing-exchange-catalog-mark-okx {
  background: #f0f0f2;
}

.marketing-exchange-catalog-mark-bybit {
  background: #fff4dd;
}

.marketing-exchange-catalog-mark-kraken {
  background: #f1efff;
}

.marketing-exchange-catalog-mark-coinbase {
  background: #edf4ff;
}

.marketing-exchange-catalog-mark-bitget {
  background: #e9fbff;
}

.marketing-exchange-catalog-copy {
  gap: 3px;
  min-width: 0;
  display: grid;
}

.marketing-exchange-catalog-copy strong, .marketing-exchange-catalog-copy small {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.marketing-exchange-catalog-copy strong {
  color: var(--mf-marketing-ink);
  font-size: 14px;
  font-weight: 660;
}

.marketing-exchange-catalog-copy small {
  color: var(--mf-marketing-muted);
  font-size: 10px;
}

.marketing-exchange-catalog-arrow {
  color: var(--mf-marketing-muted);
}

.marketing-exchange-catalog-action {
  justify-content: center;
  display: flex;
}

.prediction-section {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(90px, 12vw, 150px);
  display: grid;
}

.prediction-section > div:last-child {
  gap: 12px;
  min-width: 0;
  display: grid;
}

.subpage-hero {
  justify-items: center;
  gap: clamp(48px, 7vw, 86px);
  padding: clamp(138px, 14vw, 188px) 0 clamp(92px, 10vw, 132px);
  display: grid;
}

.subpage-hero-copy, .pricing-hero-copy, .resource-hero-copy {
  text-align: center;
  justify-items: center;
  gap: 20px;
  width: min(100%, 1000px);
  display: grid;
}

.subpage-hero h1, .pricing-hero h1, .resource-hero h1 {
  letter-spacing: -.07em;
  text-wrap: balance;
  max-width: 1080px;
  font-size: clamp(60px, 8.5vw, 118px);
  font-weight: 700;
  line-height: .84;
  display: grid;
}

.subpage-hero h1 > span:last-child, .pricing-hero h1 > span:last-child, .resource-hero h1 > span:last-child {
  color: #0000;
  background: linear-gradient(90deg, #0071e3 8%, #5e5ce6 52%, #bf5af2 92%);
  -webkit-background-clip: text;
  background-clip: text;
  padding: .08em 0 .06em;
}

.subpage-hero-copy > p, .pricing-hero-copy > p, .resource-hero-copy > p:last-child, .shared-profile-hero > .mf-widget-content > p {
  max-width: 780px;
  color: var(--mf-marketing-muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.48;
}

.subpage-hero-stage {
  width: min(100%, 1120px);
  min-width: 0;
}

.detail-section {
  gap: 54px;
}

.detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  min-width: 0;
  display: grid;
}

.detail-card {
  flex-direction: column;
  justify-content: flex-end;
  gap: 13px;
  min-height: 300px;
  display: flex;
}

.detail-icon {
  margin-bottom: auto;
}

.detail-card:nth-child(2) .detail-icon {
  background: linear-gradient(150deg, #bf5af2, #5e5ce6);
}

.detail-card:nth-child(3) .detail-icon {
  background: linear-gradient(150deg, #34c759, #248a3d);
}

.detail-card:nth-child(4) .detail-icon {
  background: linear-gradient(150deg, #ff9f0a, #ff453a);
}

.detail-card .inline-link {
  color: #64d2ff;
}

.pricing-hero {
  place-items: center;
  min-height: 78svh;
  padding: clamp(138px, 14vw, 188px) 0 clamp(92px, 10vw, 132px);
  display: grid;
}

.pricing-hero-copy {
  max-width: 1020px;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  align-items: stretch;
  gap: 16px;
  min-width: 0;
  padding-bottom: clamp(86px, 10vw, 130px);
  display: grid;
}

.pricing-card {
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  min-height: 520px;
  display: flex;
}

.pricing-card .mf-widget-content {
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  display: flex;
}

.pricing-plan-name {
  color: var(--mf-marketing-ink);
  letter-spacing: -.025em;
  font-size: 19px;
  font-weight: 680;
}

.plan-price {
  gap: 5px;
  display: grid;
}

.plan-price strong {
  letter-spacing: -.05em;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 680;
}

.plan-price span, .pricing-card > .mf-widget-content > p {
  color: var(--mf-marketing-muted);
}

.pricing-card ul {
  flex: auto;
  align-content: start;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.pricing-card li {
  color: var(--mf-marketing-muted);
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  display: flex;
}

.pricing-card li svg {
  color: var(--mf-marketing-accent);
  margin-top: 2px;
}

.pricing-faq, .pricing-legal-links {
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 8vw, 110px);
  display: grid;
}

.pricing-faq {
  align-items: start;
}

.pricing-faq > div:first-child {
  gap: 14px;
  display: grid;
}

.pricing-faq-list {
  min-height: 0;
  overflow: hidden;
}

.pricing-faq-list details {
  padding: 20px 22px;
}

.pricing-faq-list details + details {
  border-top: var(--mf-marketing-dark-border-rule);
}

.pricing-faq-list summary {
  cursor: pointer;
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 620;
}

.pricing-faq-list p {
  color: #a1a1a6;
  margin-top: 10px;
  line-height: 1.55;
}

.pricing-legal-links > div:last-child, .resource-link-row {
  flex-wrap: wrap;
  gap: 14px;
  display: flex;
}

.pricing-legal-links > div:last-child {
  display: grid;
}

.pricing-legal-links > div {
  align-content: start;
  gap: 14px;
}

.pricing-notes {
  text-align: center;
  gap: 12px;
  display: grid;
}

.pricing-loading output {
  color: var(--mf-marketing-muted);
  font-size: 15px;
}

.pricing-loading-card {
  min-height: 390px;
}

.resource-hero {
  align-content: center;
  justify-items: center;
  gap: 20px;
  min-height: auto;
  padding: clamp(116px, 10vw, 148px) 0 clamp(62px, 6vw, 84px);
  display: grid;
}

.resource-hero-copy {
  max-width: 1020px;
}

.resource-hero-meta {
  color: var(--mf-marketing-muted);
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 12px;
  display: flex;
}

.resource-layout {
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  min-width: 0;
  padding-bottom: 120px;
  display: grid;
}

.resource-toc {
  min-height: 0;
  position: sticky;
  top: 86px;
}

.resource-toc > .mf-widget-content {
  gap: 14px;
  display: grid;
}

.resource-toc strong {
  font-size: 12px;
}

.resource-toc nav {
  gap: 9px;
  display: grid;
}

.resource-toc a {
  overflow-wrap: anywhere;
  min-height: 30px;
  color: var(--mf-marketing-muted);
  align-items: center;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
}

.resource-document {
  min-width: 0;
}

.resource-intro {
  color: var(--mf-marketing-ink);
  border-bottom: var(--mf-marketing-border-rule);
  padding-bottom: 28px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.resource-section {
  gap: 14px;
  padding-top: 38px;
  scroll-margin-top: 90px;
  display: grid;
}

.resource-section h2, .resource-action h2 {
  letter-spacing: -.035em;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 650;
}

.resource-section p, .resource-section li, .resource-action p {
  color: var(--mf-marketing-muted);
  line-height: 1.68;
}

.resource-section ul {
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  display: grid;
}

.resource-action {
  margin-top: 42px;
}

.resource-action > .mf-widget-content, .resource-action > .mf-widget-content > div {
  gap: 14px;
  display: grid;
}

.resource-related {
  gap: 30px;
  padding-bottom: 110px;
  display: grid;
}

.support-report-portal, .support-report-complete {
  width: min(920px, 100% - 40px);
  margin: 0 auto clamp(80px, 10vw, 144px);
}

.support-report-portal {
  --accent-rgb: 0, 113, 227;
  --mf-color-accent: var(--mf-marketing-accent);
  --mf-color-border: #d2d2d7;
  --mf-color-input: #f5f5f7;
  --mf-color-muted: var(--mf-marketing-muted);
  --mf-color-panel-raised: #fff;
  --mf-color-subtle: #76767b;
  --mf-color-text: var(--mf-marketing-ink);
  --support-report-padding: clamp(24px, 5vw, 64px);
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  padding: var(--support-report-padding);
  background: radial-gradient(circle at 100% 0, #0071e312, transparent 31%), var(--mf-marketing-surface);
  overflow: hidden;
}

.support-report-heading {
  margin: calc(var(--support-report-padding) * -1) calc(var(--support-report-padding) * -1) 0;
  padding: 32px var(--support-report-padding);
  background: linear-gradient(135deg, #f2f8ff 0%, #e8f3ff 55%, #f8fbff 100%);
  border-bottom: 1px solid #d9e9fb;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}

.support-report-heading .feature-icon {
  color: #fff;
  border-radius: var(--mf-radius-control);
  background: linear-gradient(145deg, #35a6ff, var(--mf-marketing-accent));
  border: 1px solid #ffffffa6;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  box-shadow: inset 0 1px #ffffff59, 0 10px 24px #0071e333;
}

.support-report-heading > div:last-child {
  gap: 8px;
  display: grid;
}

.support-report-heading h2, .support-report-heading p, .support-report-submit p, .support-report-complete p {
  margin: 0;
}

.support-report-heading h2 {
  color: var(--mf-marketing-ink);
  letter-spacing: -.035em;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 650;
}

.support-report-heading p, .support-report-submit p, .support-report-complete > p {
  color: var(--mf-marketing-muted);
  line-height: 1.6;
}

.support-report-form {
  gap: 24px;
  margin-top: 32px;
  display: grid;
}

.support-report-form .mf-field {
  color: #4f4f54;
  letter-spacing: -.005em;
  align-content: start;
  gap: 9px;
  font-size: .78rem;
  font-weight: 620;
}

.support-report-form .mf-field :where(input, select, textarea) {
  min-height: 46px;
  color: var(--mf-marketing-ink);
  border-radius: var(--mf-radius-control);
  background: #f5f5f7;
  border-color: #d2d2d7;
  padding-inline: 14px;
  box-shadow: inset 0 1px 1px #00000005;
}

.support-report-form .mf-field :where(input:not([type="file"]), select) {
  height: 46px;
}

.support-report-form .mf-field :where(input, select, textarea)::placeholder {
  color: #929297;
}

.support-report-form .mf-field :where(input, select, textarea):focus {
  border-color: var(--mf-marketing-accent);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px #0071e321;
}

.support-report-form .mf-field small {
  color: #76767b;
  font-size: .72rem;
  font-weight: 450;
  line-height: 1.45;
}

.support-report-form input[type="file"] {
  padding: 5px;
}

.support-report-form input[type="file"]::file-selector-button {
  min-height: 34px;
  color: var(--mf-marketing-accent);
  font: inherit;
  background: var(--mf-marketing-accent-soft);
  cursor: pointer;
  border: 0;
  border-radius: 9px;
  margin-right: 10px;
  padding: 0 14px;
  font-weight: 620;
}

.support-report-fields-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  display: grid;
}

.support-report-form textarea {
  resize: vertical;
  min-height: 112px;
  padding-block: 12px;
  line-height: 1.5;
}

.support-report-files {
  gap: 8px;
  margin: -10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.support-report-files li {
  border: 1px solid var(--mf-marketing-border);
  border-radius: var(--mf-radius-control);
  background: var(--mf-marketing-surface-raised);
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 12px;
  display: grid;
}

.support-report-files span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.support-report-files small {
  color: var(--mf-marketing-muted);
  font-variant-numeric: tabular-nums;
}

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

.support-report-submit {
  border-top: 1px solid var(--mf-marketing-border);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  display: flex;
}

.support-report-form .mf-checkbox-field {
  color: #525257;
  border-radius: var(--mf-radius-control);
  background: #f2f8ff;
  border: 1px solid #d9e9fb;
  padding: 14px 16px;
  font-size: .78rem;
  line-height: 1.5;
}

.support-report-form .mf-checkbox-field input {
  width: 17px;
  height: 17px;
}

.support-report-submit p {
  max-width: 520px;
  font-size: .86rem;
}

.support-report-complete {
  justify-items: start;
  gap: 20px;
  display: grid;
}

@media (max-width: 700px) {
  .support-report-portal, .support-report-complete {
    width: min(100% - 24px, 920px);
  }

  .support-report-fields-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-report-heading {
    padding-block: 24px;
  }

  .support-report-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .support-report-submit .mf-button {
    width: 100%;
  }
}

.resource-related > div:first-child {
  gap: 10px;
  display: grid;
}

.resource-related > div:last-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.resource-related-card, .resource-related-link {
  min-width: 0;
}

.resource-related-card > .mf-widget-content {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.resource-related-card svg:first-child {
  color: var(--mf-marketing-accent);
}

.resource-related-card span {
  color: var(--mf-marketing-ink);
  font-size: 13px;
  font-weight: 620;
}

.resource-related-card svg:last-child {
  color: var(--mf-marketing-muted);
}

.shared-profile-page {
  gap: 18px;
  padding: clamp(130px, 14vw, 180px) 0 110px;
  display: grid;
}

.shared-profile-page-status {
  align-content: center;
  min-height: 78svh;
}

.shared-profile-hero, .shared-profile-performance, .shared-profile-expiry, .shared-profile-status {
  min-width: 0;
}

.shared-profile-hero {
  text-align: center;
}

.shared-profile-hero > .mf-widget-content, .shared-profile-status > .mf-widget-content {
  justify-items: center;
  gap: 15px;
  display: grid;
}

.shared-profile-hero h1, .shared-profile-status h1 {
  letter-spacing: -.06em;
  text-wrap: balance;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: .9;
}

.shared-profile-kicker, .shared-profile-expiry, .shared-profile-status > .mf-widget-content > span:not(.shared-profile-loader) {
  color: var(--mf-marketing-muted);
  letter-spacing: 0;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 620;
  display: inline-flex;
}

.shared-profile-avatar {
  color: #fff;
  border: var(--mf-marketing-border-rule);
  background: linear-gradient(150deg, #64d2ff, #0071e3 58%, #5e5ce6);
  border-radius: 28px;
  place-items: center;
  width: 92px;
  height: 92px;
  font-size: 24px;
  font-weight: 680;
  display: grid;
  overflow: hidden;
}

.shared-profile-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.shared-profile-expiry {
  color: var(--mf-marketing-muted);
}

.shared-profile-metrics {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.shared-profile-performance > .mf-widget-content {
  gap: 22px;
  display: grid;
}

.shared-profile-performance header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.shared-profile-performance header > div {
  gap: 5px;
  display: grid;
}

.shared-profile-performance header span, .shared-profile-performance header p, .shared-profile-chart-empty, .shared-profile-status p {
  color: var(--mf-marketing-muted);
  font-size: 13px;
  line-height: 1.5;
}

.shared-profile-performance h2 {
  letter-spacing: -.04em;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 660;
}

.shared-profile-chart {
  min-height: 260px;
}

.shared-profile-chart-empty {
  text-align: center;
  place-items: center;
  min-height: 260px;
  display: grid;
}

.shared-profile-status {
  text-align: center;
}

.shared-profile-loader {
  border: 3px solid #d7d7dc;
  border-top-color: var(--mf-marketing-accent);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  animation: .8s linear infinite shared-profile-spin;
}

@keyframes shared-profile-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  width: 100%;
  color: var(--mf-marketing-muted);
  background: var(--mf-marketing-surface);
  border-top: var(--mf-marketing-border-rule);
}

.footer-shell {
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.35fr);
  gap: 36px clamp(56px, 8vw, 112px);
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: clamp(68px, 6vw, 88px) 0 28px;
  display: grid;
}

.footer-lead {
  align-content: start;
  gap: 18px;
  display: grid;
}

.site-footer .site-brand {
  width: fit-content;
  color: var(--mf-marketing-ink);
}

.site-footer .site-brand > svg {
  box-shadow: none;
}

.footer-statement {
  width: fit-content;
  color: var(--mf-marketing-ink);
  letter-spacing: -.06em;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 690;
  line-height: .94;
  display: grid;
}

.footer-statement > span:last-child {
  color: #0000;
  background: linear-gradient(90deg, #2997ff 4%, #5e5ce6 54%, #bf5af2 96%);
  -webkit-background-clip: text;
  background-clip: text;
  padding-block: .06em;
}

.footer-summary {
  max-width: 370px;
  color: var(--mf-marketing-muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer-navigation {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: clamp(24px, 4vw, 54px);
  min-width: 0;
  display: grid;
}

.footer-column {
  align-content: start;
  min-width: 0;
  display: grid;
}

.footer-column strong {
  color: var(--mf-marketing-ink);
  letter-spacing: .02em;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 680;
}

.footer-column a {
  width: fit-content;
  min-height: 34px;
  color: var(--mf-marketing-muted);
  align-items: center;
  font-size: 13px;
  line-height: 1.35;
  transition: color .15s;
  display: flex;
}

.footer-column a[aria-current="page"] {
  color: var(--mf-marketing-ink);
  font-weight: 620;
}

.footer-bottom {
  color: var(--mf-marketing-muted);
  border-top: var(--mf-marketing-border-rule);
  flex-wrap: wrap;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 12px 32px;
  padding-top: 24px;
  font-size: 11px;
  line-height: 1.5;
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  .footer-column a:hover {
    color: var(--mf-marketing-ink);
  }
}

@media (max-width: 1020px) {
  .marketing-hero h1 {
    font-size: clamp(60px, 11vw, 104px);
  }

  .market-grid, .platform-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .market-card, .platform-card {
    min-height: 300px;
  }

  .arbitrage-section, .subpage-hero, .pricing-hero, .pricing-faq, .pricing-legal-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .subpage-hero {
    min-height: auto;
  }

  .subpage-hero-copy {
    max-width: 800px;
  }

  .pricing-hero {
    min-height: auto;
  }

  .resource-layout {
    grid-template-columns: minmax(0, 760px);
    gap: 28px;
  }

  .resource-toc {
    position: static;
  }

  .resource-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }

  .resource-related > div:last-child, .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketing-exchange-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 60px;
    padding: 7px 14px;
  }

  .site-nav {
    border: var(--mf-marketing-border-rule);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    backdrop-filter: blur(30px) saturate(1.4);
    background: #fffffff0;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100dvh - 82px);
    padding: 8px;
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    overflow: hidden auto;
    box-shadow: 0 22px 70px #00000029;
  }

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

  .site-nav > a {
    border-radius: 11px;
    min-height: 44px;
    padding: 0 13px;
    font-size: 14px;
    font-weight: 580;
    line-height: 44px;
  }

  .site-nav > a + a {
    border-top: var(--mf-marketing-border-rule);
  }

  .header-actions {
    display: none;
  }

  .compact-menu-toggle {
    width: 44px;
    height: 44px;
    color: var(--mf-marketing-ink);
    border: var(--mf-marketing-border-rule);
    background: #ffffffc7;
    border-radius: 50%;
    place-items: center;
    display: grid;
    box-shadow: inset 0 1px #ffffffe6, 0 5px 14px #00000014;
  }

  .compact-menu-actions {
    border-top: var(--mf-marketing-border-rule);
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding-top: 8px;
    display: grid;
  }

  .compact-menu-actions .text-link {
    text-align: center;
    min-height: 40px;
    line-height: 40px;
  }

  .marketing-hero {
    gap: 42px;
    min-height: auto;
    padding: 118px 14px 72px;
  }

  .subpage-hero, .pricing-hero {
    gap: 42px;
    min-height: auto;
    padding-block: 118px 72px;
  }

  .resource-hero {
    gap: 18px;
    min-height: auto;
    padding-block: 108px 58px;
  }

  .marketing-hero-copy {
    gap: 17px;
  }

  .marketing-hero h1 {
    font-size: clamp(52px, 15vw, 82px);
    line-height: .86;
  }

  .hero-lead {
    font-size: 17px;
  }

  .market-constellation {
    border-radius: 24px;
  }

  .constellation-canvas {
    min-height: 460px;
  }

  .constellation-paths {
    width: 150%;
  }

  .constellation-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    width: calc(50% - 22px);
    padding: 10px;
  }

  .constellation-item > span {
    border-radius: 10px;
    width: 34px;
    height: 34px;
  }

  .constellation-item-1, .constellation-item-3 {
    left: 12px;
  }

  .constellation-item-2, .constellation-item-4 {
    right: 12px;
  }

  .constellation-item-1, .constellation-item-2 {
    top: 12%;
  }

  .constellation-item-3, .constellation-item-4 {
    bottom: 12%;
  }

  .market-section, .platform-section, .arbitrage-section, .marketing-exchange-catalog, .prediction-section, .section, .subpage-hero, .pricing-hero, .pricing-grid, .resource-hero, .resource-layout, .resource-related, .shared-profile-page {
    width: min(100% - 24px, 1240px);
  }

  .pricing-card {
    min-height: 420px;
  }

  .market-section, .platform-section, .section, .detail-section {
    padding-block: 86px;
  }

  .platform-section {
    width: 100vw;
    padding-inline: 12px;
  }

  .marketing-exchange-catalog {
    width: min(100% - 24px, 1240px);
    padding-block: 86px;
  }

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

  .marketing-exchange-flow-surface {
    min-height: 310px;
    padding: 20px;
  }

  .marketing-exchange-markets {
    gap: 6px;
  }

  .marketing-exchange-market {
    min-height: 64px;
    padding: 7px 6px;
  }

  .marketing-exchange-market > strong {
    text-align: center;
    width: 100%;
  }

  .prediction-section, .detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    width: calc(100% - 24px);
    padding-block: 64px 24px;
  }
}

@media (max-width: 480px) {
  .marketing-hero h1 {
    font-size: clamp(46px, 14.2vw, 66px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

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

  .constellation-canvas {
    min-height: 420px;
  }

  .constellation-center {
    width: 108px;
  }

  .constellation-center svg {
    width: 34px;
    height: 34px;
  }

  .constellation-item strong {
    font-size: 12px;
  }

  .constellation-item small {
    font-size: 10px;
  }

  .section-heading h2, .section h2, .arbitrage-copy h2, .prediction-section h2, .pricing-faq h2, .resource-related h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .market-card, .platform-card {
    min-height: 280px;
  }

  .marketing-exchange-catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-exchange-flow-surface {
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

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

  .marketing-exchange-market:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 3px);
  }

  .marketing-exchange-process {
    gap: 5px;
    padding: 10px 6px;
  }

  .marketing-exchange-process-step {
    flex-direction: column;
    gap: 5px;
  }

  .marketing-exchange-process-step strong {
    font-size: 10px;
  }

  .marketing-exchange-process-arrow {
    width: 14px;
  }

  .subpage-hero h1, .pricing-hero h1, .resource-hero h1, .shared-profile-hero h1, .shared-profile-status h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .pricing-card {
    min-height: 0;
  }

  .resource-toc nav, .resource-related > div:last-child {
    grid-template-columns: minmax(0, 1fr);
  }

  .shared-profile-performance header, .footer-bottom {
    display: grid;
  }

  .footer-statement {
    font-size: clamp(38px, 12vw, 48px);
  }

  .footer-navigation {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .footer-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  .footer-column strong {
    grid-column: 1 / -1;
  }
}

@media (orientation: portrait) and (max-width: 1020px) {
  .market-section, .platform-section {
    gap: 32px;
    padding-block: 64px;
  }

  .market-card, .platform-card, .detail-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .marketing-hero-stage, .subpage-hero-stage {
    animation: .8s cubic-bezier(.2, .8, .2, 1) both marketing-stage-arrival;
  }

  .marketing-motion-ready [data-reveal]:not([data-visible="true"]) {
    opacity: 0;
    transform: translateY(22px);
  }

  [data-reveal] {
    transition: opacity .5s, transform .5s cubic-bezier(.2, .8, .2, 1);
  }
}

@keyframes marketing-stage-arrival {
  from {
    opacity: 0;
    transform: translateY(24px)scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

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

@media (prefers-contrast: more) {
  .marketing-site {
    --mf-marketing-line: #b8b8b8;
    --mf-marketing-dark-line: #474749;
  }
}

/*# sourceMappingURL=src_0a2u2bw._.css.map*/