/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  touch-action: manipulation;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (prefers-reduced-motion) {
  .cdk-overlay-backdrop {
    transition-duration: 1ms;
  }
}
.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,
.cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.cdk-overlay-popover {
  background: none;
  border: none;
  padding: 0;
  outline: 0;
  overflow: visible;
  position: fixed;
  pointer-events: none;
  white-space: normal;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  inset: auto;
  top: 0;
  left: 0;
}
.cdk-overlay-popover::backdrop {
  display: none;
}
.cdk-overlay-popover .cdk-overlay-backdrop {
  position: fixed;
  z-index: auto;
}

/* src/tokens.css */
:root {
  --lum-bg: #fafaf7;
  --lum-surface: #ffffff;
  --lum-surface-2: #f5f4ee;
  --lum-border: #e8e6de;
  --lum-border-strong: #d6d3c8;
  --lum-ink: #0f1115;
  --lum-ink-2: #2a2d33;
  --lum-muted: #6b6e76;
  --lum-muted-2: #9a9ca3;
  --lum-accent: oklch(0.55 0.18 240);
  --lum-accent-soft: oklch(0.78 0.14 220);
  --lum-accent-bg: oklch(0.96 0.03 240);
  --lum-accent-ink: oklch(0.35 0.18 240);
  --lum-pos: oklch(0.62 0.16 150);
  --lum-pos-bg: oklch(0.96 0.04 150);
  --lum-neg: oklch(0.6 0.2 25);
  --lum-neg-bg: oklch(0.97 0.04 25);
  --lum-warn: oklch(0.75 0.15 75);
  --lum-radius: 10px;
  --lum-radius-sm: 6px;
  --lum-radius-lg: 16px;
  --lum-shadow-sm: 0 1px 0 rgba(15, 17, 21, 0.04), 0 1px 2px rgba(15, 17, 21, 0.04);
  --lum-shadow: 0 1px 0 rgba(15, 17, 21, 0.04), 0 4px 12px -6px rgba(15, 17, 21, 0.08);
  --lum-shadow-lg: 0 1px 0 rgba(15, 17, 21, 0.05), 0 12px 32px -12px rgba(15, 17, 21, 0.16);
  --lum-font-sans:
    "Inter",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  --lum-font-mono:
    "JetBrains Mono",
    "SF Mono",
    ui-monospace,
    Menlo,
    monospace;
}
[data-theme=editorial] {
  --lum-bg: #f4f2ea;
  --lum-surface: #ffffff;
  --lum-surface-2: #eae7dc;
  --lum-border: #d6d3c5;
  --lum-border-strong: #b8b4a2;
  --lum-ink: #0a0a0a;
  --lum-accent: oklch(0.5 0.2 240);
  --lum-radius: 2px;
  --lum-radius-sm: 0px;
  --lum-radius-lg: 4px;
}
[data-theme=glass] {
  --lum-bg: #f5f7fb;
  --lum-surface: rgba(255, 255, 255, 0.72);
  --lum-surface-2: rgba(231, 237, 248, 0.6);
  --lum-border: rgba(120, 140, 180, 0.18);
  --lum-border-strong: rgba(120, 140, 180, 0.28);
  --lum-ink: #0e1421;
  --lum-accent: oklch(0.62 0.18 230);
  --lum-radius: 14px;
  --lum-radius-lg: 22px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.lum-app,
.lum-app * {
  font-family: var(--lum-font-sans);
}
.lum-app {
  background: var(--lum-bg);
  color: var(--lum-ink);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[data-theme=glass].lum-app {
  background:
    radial-gradient(
      900px 600px at 10% -10%,
      oklch(0.85 0.12 230 / 0.4),
      transparent 60%),
    radial-gradient(
      900px 600px at 110% 10%,
      oklch(0.88 0.1 290 / 0.35),
      transparent 60%),
    #f5f7fb;
}
.lum-mono {
  font-family: var(--lum-font-mono);
  font-feature-settings: "tnum";
  letter-spacing: -0.01em;
}
.lum-tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.lum-app ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.lum-app ::-webkit-scrollbar-thumb {
  background: var(--lum-border-strong);
  border-radius: 6px;
  border: 2px solid var(--lum-bg);
}
.lum-app ::-webkit-scrollbar-track {
  background: transparent;
}
.lum-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--lum-radius);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--lum-border);
  background: var(--lum-surface);
  color: var(--lum-ink);
  cursor: pointer;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    transform 80ms ease;
  white-space: nowrap;
}
.lum-btn:hover {
  background: var(--lum-surface-2);
  border-color: var(--lum-border-strong);
}
.lum-btn:active {
  transform: translateY(1px);
}
.lum-btn.lum-primary {
  background: var(--lum-ink);
  color: #fff;
  border-color: var(--lum-ink);
}
.lum-btn.lum-primary:hover {
  background: #2a2d33;
}
.lum-btn.lum-accent {
  background: var(--lum-accent);
  color: #fff;
  border-color: transparent;
}
.lum-btn.lum-accent:hover {
  filter: brightness(1.05);
}
.lum-btn.lum-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--lum-muted);
}
.lum-btn.lum-ghost:hover {
  background: var(--lum-surface-2);
  color: var(--lum-ink);
}
.lum-btn.lum-sm {
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
}
.lum-btn.lum-lg {
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
}
.lum-card {
  background: var(--lum-surface);
  border: 1px solid var(--lum-border);
  border-radius: var(--lum-radius-lg);
}
[data-theme=glass] .lum-card {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lum-input {
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--lum-border);
  background: var(--lum-surface);
  border-radius: var(--lum-radius);
  font-size: 13px;
  font-family: inherit;
  color: var(--lum-ink);
  outline: none;
  width: 100%;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.lum-input:focus {
  border-color: var(--lum-accent);
  box-shadow: 0 0 0 3px #12cbf52e;
}
.lum-input::placeholder {
  color: var(--lum-muted-2);
}
.lum-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--lum-surface-2);
  border: 1px solid var(--lum-border);
  font-size: 11px;
  font-weight: 500;
  color: var(--lum-ink-2);
}
.lum-pill.lum-pos {
  background: var(--lum-pos-bg);
  color: var(--lum-pos);
  border-color: transparent;
}
.lum-pill.lum-neg {
  background: var(--lum-neg-bg);
  color: var(--lum-neg);
  border-color: transparent;
}
.lum-pill.lum-acc {
  background: var(--lum-accent-bg);
  color: var(--lum-accent-ink);
  border-color: transparent;
}
.lum-hr {
  height: 1px;
  background: var(--lum-border);
  border: 0;
  margin: 0;
}
.lum-h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.lum-h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.lum-h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.lum-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lum-muted);
}
.lum-meta {
  font-size: 12px;
  color: var(--lum-muted);
}
[data-theme=editorial] .lum-h1 {
  font-family: var(--lum-font-mono);
  letter-spacing: -0.04em;
}
[data-theme=editorial] .lum-eyebrow {
  font-family: var(--lum-font-mono);
}
.lum-app :focus-visible {
  outline: 2px solid var(--lum-accent);
  outline-offset: 2px;
}
.lum-row {
  display: flex;
  align-items: center;
}
.lum-col {
  display: flex;
  flex-direction: column;
}
.lum-grow {
  flex: 1;
  min-width: 0;
}
.lum-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lum-clickable {
  cursor: pointer;
  transition: background 120ms ease;
}
.lum-clickable:hover {
  background: var(--lum-surface-2);
}
[data-theme=editorial] .lum-card {
  box-shadow: none;
}
[data-theme=editorial] .lum-btn {
  letter-spacing: 0.02em;
}
.lum-num-lg {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
[data-theme=editorial] .lum-num-lg {
  font-family: var(--lum-font-mono);
  font-weight: 500;
  letter-spacing: -0.04em;
}
@keyframes lum-fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.lum-fade-in {
  animation: lum-fade-in 240ms ease both;
}
@keyframes lum-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.lum-pulse {
  animation: lum-pulse 1.6s ease-in-out infinite;
}
@keyframes lum-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* src/tailwind.css */
/*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji";
    --font-mono:
      "JetBrains Mono",
      ui-monospace,
      monospace;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-tight: -0.025em;
    --tracking-widest: 0.1em;
    --leading-tight: 1.25;
    --leading-relaxed: 1.625;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 1rem;
    --animate-spin: spin 1s linear infinite;
    --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-bg-primary: var(--bg-primary);
    --color-bg-secondary: var(--bg-secondary);
    --color-bg-elevated: var(--bg-elevated);
    --color-text-primary: var(--text-primary);
    --color-text-secondary: var(--text-secondary);
    --color-text-muted: var(--text-muted);
    --color-accent: var(--accent);
    --color-accent-hover: var(--accent-hover);
    --color-success: var(--success);
    --color-error: var(--error);
    --color-warning: var(--warning);
    --color-border: var(--border);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
@layer utilities {
  .pointer-events-none {
    pointer-events: none;
  }
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .inset-0 {
    inset: 0;
  }
  .-top-8 {
    top: calc(var(--spacing) * -8);
  }
  .top-1\/2 {
    top: calc(1 / 2 * 100%);
  }
  .top-2 {
    top: calc(var(--spacing) * 2);
  }
  .top-10 {
    top: calc(var(--spacing) * 10);
  }
  .top-full {
    top: 100%;
  }
  .-right-12 {
    right: calc(var(--spacing) * -12);
  }
  .right-0 {
    right: 0;
  }
  .right-2 {
    right: calc(var(--spacing) * 2);
  }
  .right-4 {
    right: calc(var(--spacing) * 4);
  }
  .bottom-0 {
    bottom: 0;
  }
  .left-0 {
    left: 0;
  }
  .left-2\.5 {
    left: calc(var(--spacing) * 2.5);
  }
  .z-10 {
    z-index: 10;
  }
  .z-20 {
    z-index: 20;
  }
  .z-30 {
    z-index: 30;
  }
  .z-40 {
    z-index: 40;
  }
  .z-50 {
    z-index: 50;
  }
  .col-span-2 {
    grid-column: span 2 / span 2;
  }
  .container {
    width: 100%;
  }
  @media (width >= 40rem) {
    .container {
      max-width: 40rem;
    }
  }
  @media (width >= 48rem) {
    .container {
      max-width: 48rem;
    }
  }
  @media (width >= 64rem) {
    .container {
      max-width: 64rem;
    }
  }
  @media (width >= 80rem) {
    .container {
      max-width: 80rem;
    }
  }
  @media (width >= 96rem) {
    .container {
      max-width: 96rem;
    }
  }
  .mx-auto {
    margin-inline: auto;
  }
  .-my-1\.5 {
    margin-block: calc(var(--spacing) * -1.5);
  }
  .mt-0\.5 {
    margin-top: calc(var(--spacing) * 0.5);
  }
  .mt-1 {
    margin-top: var(--spacing);
  }
  .mt-1\.5 {
    margin-top: calc(var(--spacing) * 1.5);
  }
  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }
  .mt-2\.5 {
    margin-top: calc(var(--spacing) * 2.5);
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mt-10 {
    margin-top: calc(var(--spacing) * 10);
  }
  .mt-auto {
    margin-top: auto;
  }
  .mt-px {
    margin-top: 1px;
  }
  .-mr-1\.5 {
    margin-right: calc(var(--spacing) * -1.5);
  }
  .mb-0\.5 {
    margin-bottom: calc(var(--spacing) * 0.5);
  }
  .mb-1 {
    margin-bottom: var(--spacing);
  }
  .mb-1\.5 {
    margin-bottom: calc(var(--spacing) * 1.5);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-2\.5 {
    margin-bottom: calc(var(--spacing) * 2.5);
  }
  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }
  .mb-3\.5 {
    margin-bottom: calc(var(--spacing) * 3.5);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-5 {
    margin-bottom: calc(var(--spacing) * 5);
  }
  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }
  .mb-7 {
    margin-bottom: calc(var(--spacing) * 7);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .mb-auto {
    margin-bottom: auto;
  }
  .-ml-2\.5 {
    margin-left: calc(var(--spacing) * -2.5);
  }
  .ml-auto {
    margin-left: auto;
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .inline-block {
    display: inline-block;
  }
  .inline-flex {
    display: inline-flex;
  }
  .aspect-square {
    aspect-ratio: 1 / 1;
  }
  .size-1\.5 {
    width: calc(var(--spacing) * 1.5);
    height: calc(var(--spacing) * 1.5);
  }
  .size-2 {
    width: calc(var(--spacing) * 2);
    height: calc(var(--spacing) * 2);
  }
  .size-2\.5 {
    width: calc(var(--spacing) * 2.5);
    height: calc(var(--spacing) * 2.5);
  }
  .size-3 {
    width: calc(var(--spacing) * 3);
    height: calc(var(--spacing) * 3);
  }
  .size-4 {
    width: calc(var(--spacing) * 4);
    height: calc(var(--spacing) * 4);
  }
  .size-5 {
    width: calc(var(--spacing) * 5);
    height: calc(var(--spacing) * 5);
  }
  .size-6 {
    width: calc(var(--spacing) * 6);
    height: calc(var(--spacing) * 6);
  }
  .size-7 {
    width: calc(var(--spacing) * 7);
    height: calc(var(--spacing) * 7);
  }
  .size-8 {
    width: calc(var(--spacing) * 8);
    height: calc(var(--spacing) * 8);
  }
  .size-9 {
    width: calc(var(--spacing) * 9);
    height: calc(var(--spacing) * 9);
  }
  .size-10 {
    width: calc(var(--spacing) * 10);
    height: calc(var(--spacing) * 10);
  }
  .size-12 {
    width: calc(var(--spacing) * 12);
    height: calc(var(--spacing) * 12);
  }
  .size-14 {
    width: calc(var(--spacing) * 14);
    height: calc(var(--spacing) * 14);
  }
  .size-16 {
    width: calc(var(--spacing) * 16);
    height: calc(var(--spacing) * 16);
  }
  .size-20 {
    width: calc(var(--spacing) * 20);
    height: calc(var(--spacing) * 20);
  }
  .size-24 {
    width: calc(var(--spacing) * 24);
    height: calc(var(--spacing) * 24);
  }
  .size-44 {
    width: calc(var(--spacing) * 44);
    height: calc(var(--spacing) * 44);
  }
  .size-\[18px\] {
    width: 18px;
    height: 18px;
  }
  .size-\[22px\] {
    width: 22px;
    height: 22px;
  }
  .size-\[220px\] {
    width: 220px;
    height: 220px;
  }
  .size-full {
    width: 100%;
    height: 100%;
  }
  .h-1 {
    height: var(--spacing);
  }
  .h-2 {
    height: calc(var(--spacing) * 2);
  }
  .h-2\.5 {
    height: calc(var(--spacing) * 2.5);
  }
  .h-3 {
    height: calc(var(--spacing) * 3);
  }
  .h-4 {
    height: calc(var(--spacing) * 4);
  }
  .h-7 {
    height: calc(var(--spacing) * 7);
  }
  .h-8 {
    height: calc(var(--spacing) * 8);
  }
  .h-14 {
    height: calc(var(--spacing) * 14);
  }
  .h-\[22px\] {
    height: 22px;
  }
  .h-\[34px\] {
    height: 34px;
  }
  .h-\[46px\] {
    height: 46px;
  }
  .h-\[60px\] {
    height: 60px;
  }
  .h-\[420px\] {
    height: 420px;
  }
  .h-full {
    height: 100%;
  }
  .h-px {
    height: 1px;
  }
  .h-screen {
    height: 100vh;
  }
  .max-h-\[264px\] {
    max-height: 264px;
  }
  .max-h-\[280px\] {
    max-height: 280px;
  }
  .w-3 {
    width: calc(var(--spacing) * 3);
  }
  .w-9 {
    width: calc(var(--spacing) * 9);
  }
  .w-14 {
    width: calc(var(--spacing) * 14);
  }
  .w-16 {
    width: calc(var(--spacing) * 16);
  }
  .w-20 {
    width: calc(var(--spacing) * 20);
  }
  .w-24 {
    width: calc(var(--spacing) * 24);
  }
  .w-28 {
    width: calc(var(--spacing) * 28);
  }
  .w-32 {
    width: calc(var(--spacing) * 32);
  }
  .w-56 {
    width: calc(var(--spacing) * 56);
  }
  .w-72 {
    width: calc(var(--spacing) * 72);
  }
  .w-\[200px\] {
    width: 200px;
  }
  .w-\[220px\] {
    width: 220px;
  }
  .w-fit {
    width: fit-content;
  }
  .w-full {
    width: 100%;
  }
  .max-w-2xl {
    max-width: var(--container-2xl);
  }
  .max-w-3xl {
    max-width: var(--container-3xl);
  }
  .max-w-\[260px\] {
    max-width: 260px;
  }
  .max-w-\[420px\] {
    max-width: 420px;
  }
  .max-w-\[480px\] {
    max-width: 480px;
  }
  .max-w-\[760px\] {
    max-width: 760px;
  }
  .max-w-full {
    max-width: 100%;
  }
  .max-w-lg {
    max-width: var(--container-lg);
  }
  .max-w-md {
    max-width: var(--container-md);
  }
  .max-w-sm {
    max-width: var(--container-sm);
  }
  .max-w-xl {
    max-width: var(--container-xl);
  }
  .min-w-0 {
    min-width: 0;
  }
  .min-w-\[48px\] {
    min-width: 48px;
  }
  .min-w-\[110px\] {
    min-width: 110px;
  }
  .min-w-\[140px\] {
    min-width: 140px;
  }
  .min-w-\[180px\] {
    min-width: 180px;
  }
  .flex-1 {
    flex: 1;
  }
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }
  .rotate-45 {
    rotate: 45deg;
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .animate-pulse {
    animation: var(--animate-pulse);
  }
  .animate-spin {
    animation: var(--animate-spin);
  }
  .cursor-default {
    cursor: default;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-\[1\.4fr_0\.9fr_0\.9fr_1\.1fr_1fr\] {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 1fr;
  }
  .grid-cols-\[1fr_360px\] {
    grid-template-columns: 1fr 360px;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-baseline {
    align-items: baseline;
  }
  .items-center {
    align-items: center;
  }
  .items-end {
    align-items: flex-end;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .gap-0\.5 {
    gap: calc(var(--spacing) * 0.5);
  }
  .gap-1 {
    gap: var(--spacing);
  }
  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-2\.5 {
    gap: calc(var(--spacing) * 2.5);
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-3\.5 {
    gap: calc(var(--spacing) * 3.5);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-5 {
    gap: calc(var(--spacing) * 5);
  }
  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-\[3px\] {
    gap: 3px;
  }
  :where(.space-y-1 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(var(--spacing) * var(--tw-space-y-reverse));
    margin-block-end: calc(var(--spacing) * calc(1 - var(--tw-space-y-reverse)));
  }
  :where(.space-y-1\.5 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
  }
  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }
  .self-start {
    align-self: flex-start;
  }
  .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .overflow-y-auto {
    overflow-y: auto;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .rounded-\[2px\] {
    border-radius: 2px;
  }
  .rounded-\[8px\] {
    border-radius: 8px;
  }
  .rounded-\[10px\] {
    border-radius: 10px;
  }
  .rounded-\[14px\] {
    border-radius: 14px;
  }
  .rounded-\[var\(--radius-md\)\] {
    border-radius: var(--radius-md);
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-md {
    border-radius: var(--radius-md);
  }
  .rounded-xl {
    border-radius: var(--radius-xl);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0px;
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-4 {
    border-style: var(--tw-border-style);
    border-width: 4px;
  }
  .border-y {
    border-block-style: var(--tw-border-style);
    border-block-width: 1px;
  }
  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }
  .border-r {
    border-right-style: var(--tw-border-style);
    border-right-width: 1px;
  }
  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }
  .\!border-error {
    border-color: var(--color-error) !important;
  }
  .border-accent {
    border-color: var(--color-accent);
  }
  .border-accent\/20 {
    border-color: var(--color-accent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-accent\/20 {
      border-color: color-mix(in oklab, var(--color-accent) 20%, transparent);
    }
  }
  .border-border {
    border-color: var(--color-border);
  }
  .border-error {
    border-color: var(--color-error);
  }
  .border-error\/20 {
    border-color: var(--color-error);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-error\/20 {
      border-color: color-mix(in oklab, var(--color-error) 20%, transparent);
    }
  }
  .border-error\/30 {
    border-color: var(--color-error);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-error\/30 {
      border-color: color-mix(in oklab, var(--color-error) 30%, transparent);
    }
  }
  .border-success\/40 {
    border-color: var(--color-success);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-success\/40 {
      border-color: color-mix(in oklab, var(--color-success) 40%, transparent);
    }
  }
  .border-text-primary {
    border-color: var(--color-text-primary);
  }
  .border-warning\/30 {
    border-color: var(--color-warning);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-warning\/30 {
      border-color: color-mix(in oklab, var(--color-warning) 30%, transparent);
    }
  }
  .border-white {
    border-color: var(--color-white);
  }
  .border-t-accent {
    border-top-color: var(--color-accent);
  }
  .\!bg-bg-primary {
    background-color: var(--color-bg-primary) !important;
  }
  .bg-accent {
    background-color: var(--color-accent);
  }
  .bg-accent\/5 {
    background-color: var(--color-accent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-accent\/5 {
      background-color: color-mix(in oklab, var(--color-accent) 5%, transparent);
    }
  }
  .bg-accent\/10 {
    background-color: var(--color-accent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-accent\/10 {
      background-color: color-mix(in oklab, var(--color-accent) 10%, transparent);
    }
  }
  .bg-bg-elevated {
    background-color: var(--color-bg-elevated);
  }
  .bg-bg-primary {
    background-color: var(--color-bg-primary);
  }
  .bg-bg-secondary {
    background-color: var(--color-bg-secondary);
  }
  .bg-border {
    background-color: var(--color-border);
  }
  .bg-error {
    background-color: var(--color-error);
  }
  .bg-error\/5 {
    background-color: var(--color-error);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-error\/5 {
      background-color: color-mix(in oklab, var(--color-error) 5%, transparent);
    }
  }
  .bg-error\/10 {
    background-color: var(--color-error);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-error\/10 {
      background-color: color-mix(in oklab, var(--color-error) 10%, transparent);
    }
  }
  .bg-error\/15 {
    background-color: var(--color-error);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-error\/15 {
      background-color: color-mix(in oklab, var(--color-error) 15%, transparent);
    }
  }
  .bg-success {
    background-color: var(--color-success);
  }
  .bg-success\/8 {
    background-color: var(--color-success);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-success\/8 {
      background-color: color-mix(in oklab, var(--color-success) 8%, transparent);
    }
  }
  .bg-success\/10 {
    background-color: var(--color-success);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-success\/10 {
      background-color: color-mix(in oklab, var(--color-success) 10%, transparent);
    }
  }
  .bg-text-primary {
    background-color: var(--color-text-primary);
  }
  .bg-transparent {
    background-color: transparent;
  }
  .bg-warning\/10 {
    background-color: var(--color-warning);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-warning\/10 {
      background-color: color-mix(in oklab, var(--color-warning) 10%, transparent);
    }
  }
  .bg-warning\/15 {
    background-color: var(--color-warning);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-warning\/15 {
      background-color: color-mix(in oklab, var(--color-warning) 15%, transparent);
    }
  }
  .bg-white {
    background-color: var(--color-white);
  }
  .object-cover {
    object-fit: cover;
  }
  .p-0\.5 {
    padding: calc(var(--spacing) * 0.5);
  }
  .p-1 {
    padding: var(--spacing);
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-3 {
    padding: calc(var(--spacing) * 3);
  }
  .p-3\.5 {
    padding: calc(var(--spacing) * 3.5);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-5 {
    padding: calc(var(--spacing) * 5);
  }
  .p-6 {
    padding: calc(var(--spacing) * 6);
  }
  .p-7 {
    padding: calc(var(--spacing) * 7);
  }
  .p-\[2px\] {
    padding: 2px;
  }
  .p-\[18px\] {
    padding: 18px;
  }
  .px-0\.5 {
    padding-inline: calc(var(--spacing) * 0.5);
  }
  .px-1 {
    padding-inline: var(--spacing);
  }
  .px-1\.5 {
    padding-inline: calc(var(--spacing) * 1.5);
  }
  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }
  .px-2\.5 {
    padding-inline: calc(var(--spacing) * 2.5);
  }
  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }
  .px-3\.5 {
    padding-inline: calc(var(--spacing) * 3.5);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-5 {
    padding-inline: calc(var(--spacing) * 5);
  }
  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }
  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }
  .py-0\.5 {
    padding-block: calc(var(--spacing) * 0.5);
  }
  .py-1 {
    padding-block: var(--spacing);
  }
  .py-1\.5 {
    padding-block: calc(var(--spacing) * 1.5);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-2\.5 {
    padding-block: calc(var(--spacing) * 2.5);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .py-3\.5 {
    padding-block: calc(var(--spacing) * 3.5);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-5 {
    padding-block: calc(var(--spacing) * 5);
  }
  .py-6 {
    padding-block: calc(var(--spacing) * 6);
  }
  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }
  .py-14 {
    padding-block: calc(var(--spacing) * 14);
  }
  .py-16 {
    padding-block: calc(var(--spacing) * 16);
  }
  .py-20 {
    padding-block: calc(var(--spacing) * 20);
  }
  .py-32 {
    padding-block: calc(var(--spacing) * 32);
  }
  .py-\[7px\] {
    padding-block: 7px;
  }
  .pt-3\.5 {
    padding-top: calc(var(--spacing) * 3.5);
  }
  .pt-8 {
    padding-top: calc(var(--spacing) * 8);
  }
  .pr-2\.5 {
    padding-right: calc(var(--spacing) * 2.5);
  }
  .pr-3 {
    padding-right: calc(var(--spacing) * 3);
  }
  .pr-28 {
    padding-right: calc(var(--spacing) * 28);
  }
  .pb-0 {
    padding-bottom: 0;
  }
  .pb-1\.5 {
    padding-bottom: calc(var(--spacing) * 1.5);
  }
  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }
  .pb-3 {
    padding-bottom: calc(var(--spacing) * 3);
  }
  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }
  .pb-16 {
    padding-bottom: calc(var(--spacing) * 16);
  }
  .pb-20 {
    padding-bottom: calc(var(--spacing) * 20);
  }
  .pb-24 {
    padding-bottom: calc(var(--spacing) * 24);
  }
  .pl-1 {
    padding-left: var(--spacing);
  }
  .pl-1\.5 {
    padding-left: calc(var(--spacing) * 1.5);
  }
  .pl-8 {
    padding-left: calc(var(--spacing) * 8);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .font-mono {
    font-family: var(--font-mono);
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .text-\[9px\] {
    font-size: 9px;
  }
  .text-\[10\.5px\] {
    font-size: 10.5px;
  }
  .text-\[10px\] {
    font-size: 10px;
  }
  .text-\[11\.5px\] {
    font-size: 11.5px;
  }
  .text-\[11px\] {
    font-size: 11px;
  }
  .text-\[12px\] {
    font-size: 12px;
  }
  .text-\[13px\] {
    font-size: 13px;
  }
  .text-\[14px\] {
    font-size: 14px;
  }
  .text-\[18px\] {
    font-size: 18px;
  }
  .text-\[22px\] {
    font-size: 22px;
  }
  .text-\[26px\] {
    font-size: 26px;
  }
  .text-\[28px\] {
    font-size: 28px;
  }
  .text-\[32px\] {
    font-size: 32px;
  }
  .text-\[52px\] {
    font-size: 52px;
  }
  .leading-none {
    --tw-leading: 1;
    line-height: 1;
  }
  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }
  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .tracking-\[-0\.01em\] {
    --tw-tracking: -0.01em;
    letter-spacing: -0.01em;
  }
  .tracking-\[0\.3em\] {
    --tw-tracking: 0.3em;
    letter-spacing: 0.3em;
  }
  .tracking-\[0\.5em\] {
    --tw-tracking: 0.5em;
    letter-spacing: 0.5em;
  }
  .tracking-\[0\.15em\] {
    --tw-tracking: 0.15em;
    letter-spacing: 0.15em;
  }
  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }
  .tracking-widest {
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
  }
  .break-all {
    word-break: break-all;
  }
  .text-accent {
    color: var(--color-accent);
  }
  .text-error {
    color: var(--color-error);
  }
  .text-error\/70 {
    color: var(--color-error);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-error\/70 {
      color: color-mix(in oklab, var(--color-error) 70%, transparent);
    }
  }
  .text-success {
    color: var(--color-success);
  }
  .text-text-muted {
    color: var(--color-text-muted);
  }
  .text-text-primary {
    color: var(--color-text-primary);
  }
  .text-text-secondary {
    color: var(--color-text-secondary);
  }
  .text-warning {
    color: var(--color-warning);
  }
  .text-white {
    color: var(--color-white);
  }
  .capitalize {
    text-transform: capitalize;
  }
  .lowercase {
    text-transform: lowercase;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .no-underline {
    text-decoration-line: none;
  }
  .opacity-30 {
    opacity: 30%;
  }
  .opacity-50 {
    opacity: 50%;
  }
  .opacity-60 {
    opacity: 60%;
  }
  .opacity-70 {
    opacity: 70%;
  }
  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-colors {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-transform {
    transition-property:
      transform,
      translate,
      scale,
      rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-150 {
    --tw-duration: 150ms;
    transition-duration: 150ms;
  }
  .duration-700 {
    --tw-duration: 700ms;
    transition-duration: 700ms;
  }
  .outline-none {
    --tw-outline-style: none;
    outline-style: none;
  }
  .placeholder\:text-text-muted::placeholder {
    color: var(--color-text-muted);
  }
  .last\:border-0:last-child {
    border-style: var(--tw-border-style);
    border-width: 0px;
  }
  @media (hover: hover) {
    .hover\:border-accent:hover {
      border-color: var(--color-accent);
    }
  }
  @media (hover: hover) {
    .hover\:bg-accent-hover:hover {
      background-color: var(--color-accent-hover);
    }
  }
  @media (hover: hover) {
    .hover\:bg-accent\/5:hover {
      background-color: var(--color-accent);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-accent\/5:hover {
        background-color: color-mix(in oklab, var(--color-accent) 5%, transparent);
      }
    }
  }
  @media (hover: hover) {
    .hover\:bg-accent\/20:hover {
      background-color: var(--color-accent);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-accent\/20:hover {
        background-color: color-mix(in oklab, var(--color-accent) 20%, transparent);
      }
    }
  }
  @media (hover: hover) {
    .hover\:bg-bg-elevated:hover {
      background-color: var(--color-bg-elevated);
    }
  }
  @media (hover: hover) {
    .hover\:bg-bg-primary:hover {
      background-color: var(--color-bg-primary);
    }
  }
  @media (hover: hover) {
    .hover\:bg-bg-secondary:hover {
      background-color: var(--color-bg-secondary);
    }
  }
  @media (hover: hover) {
    .hover\:bg-error\/10:hover {
      background-color: var(--color-error);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-error\/10:hover {
        background-color: color-mix(in oklab, var(--color-error) 10%, transparent);
      }
    }
  }
  @media (hover: hover) {
    .hover\:bg-error\/90:hover {
      background-color: var(--color-error);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-error\/90:hover {
        background-color: color-mix(in oklab, var(--color-error) 90%, transparent);
      }
    }
  }
  @media (hover: hover) {
    .hover\:text-error:hover {
      color: var(--color-error);
    }
  }
  @media (hover: hover) {
    .hover\:text-text-primary:hover {
      color: var(--color-text-primary);
    }
  }
  @media (hover: hover) {
    .hover\:underline:hover {
      text-decoration-line: underline;
    }
  }
  @media (hover: hover) {
    .hover\:opacity-90:hover {
      opacity: 90%;
    }
  }
  .focus\:border-accent:focus {
    border-color: var(--color-accent);
  }
  .focus\:border-error:focus {
    border-color: var(--color-error);
  }
  .focus\:outline-none:focus {
    --tw-outline-style: none;
    outline-style: none;
  }
  .active\:scale-90:active {
    --tw-scale-x: 90%;
    --tw-scale-y: 90%;
    --tw-scale-z: 90%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }
  .active\:scale-\[0\.98\]:active {
    scale: 0.98;
  }
  .active\:bg-accent\/15:active {
    background-color: var(--color-accent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .active\:bg-accent\/15:active {
      background-color: color-mix(in oklab, var(--color-accent) 15%, transparent);
    }
  }
  .active\:text-accent:active {
    color: var(--color-accent);
  }
  .disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
  }
  .disabled\:opacity-30:disabled {
    opacity: 30%;
  }
  .disabled\:opacity-40:disabled {
    opacity: 40%;
  }
  .disabled\:opacity-50:disabled {
    opacity: 50%;
  }
  @media (hover: hover) {
    .disabled\:hover\:bg-transparent:disabled:hover {
      background-color: transparent;
    }
  }
  @media (width >= 48rem) {
    .md\:ml-0 {
      margin-left: 0;
    }
  }
  @media (width >= 48rem) {
    .md\:block {
      display: block;
    }
  }
  @media (width >= 48rem) {
    .md\:contents {
      display: contents;
    }
  }
  @media (width >= 48rem) {
    .md\:flex {
      display: flex;
    }
  }
  @media (width >= 48rem) {
    .md\:grid {
      display: grid;
    }
  }
  @media (width >= 48rem) {
    .md\:hidden {
      display: none;
    }
  }
  @media (width >= 48rem) {
    .md\:w-64 {
      width: calc(var(--spacing) * 64);
    }
  }
  @media (width >= 48rem) {
    .md\:w-auto {
      width: auto;
    }
  }
  @media (width >= 48rem) {
    .md\:flex-none {
      flex: none;
    }
  }
  @media (width >= 48rem) {
    .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (width >= 48rem) {
    .md\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  @media (width >= 48rem) {
    .md\:gap-6 {
      gap: calc(var(--spacing) * 6);
    }
  }
  @media (width >= 48rem) {
    .md\:p-8 {
      padding: calc(var(--spacing) * 8);
    }
  }
  @media (width >= 48rem) {
    .md\:pb-0 {
      padding-bottom: 0;
    }
  }
  .\[\&_input\]\:text-base input {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }
  .\[\&_input\]\:text-accent input {
    color: var(--color-accent);
  }
}
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-rotate-x { syntax: "*"; inherits: false; }
@property --tw-rotate-y { syntax: "*"; inherits: false; }
@property --tw-rotate-z { syntax: "*"; inherits: false; }
@property --tw-skew-x { syntax: "*"; inherits: false; }
@property --tw-skew-y { syntax: "*"; inherits: false; }
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-leading { syntax: "*"; inherits: false; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-tracking { syntax: "*"; inherits: false; }
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-shadow-color { syntax: "*"; inherits: false; }
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-ring-color { syntax: "*"; inherits: false; }
@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-ring-color { syntax: "*"; inherits: false; }
@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-ring-inset { syntax: "*"; inherits: false; }
@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-duration { syntax: "*"; inherits: false; }
@property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-duration: initial;
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}

/* src/styles.scss */
:root,
[data-theme=dark] {
  --bg-primary: #0d0f14;
  --bg-secondary: #161a23;
  --bg-elevated: #1e2330;
  --text-primary: #e8eaf0;
  --text-secondary: #a0a8c0;
  --text-muted: #5a6080;
  --accent: #4f8ef7;
  --accent-hover: #6ba3ff;
  --success: #34c77b;
  --error: #f75757;
  --warning: #f7a534;
  --border: #2a3048;
}
[data-theme=light] {
  --bg-primary: #f8f9fc;
  --bg-secondary: #ffffff;
  --bg-elevated: #ffffff;
  --text-primary: #0d1117;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --success: #16a34a;
  --error: #dc2626;
  --warning: #d97706;
  --border: #e5e7eb;
}
@layer base {
  html {
    height: 100%;
    overflow-x: hidden;
    color-scheme: dark;
  }
  body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family:
      system-ui,
      -apple-system,
      sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  * {
    box-sizing: border-box;
  }
  button {
    cursor: pointer;
  }
  button:disabled {
    cursor: not-allowed;
  }
}
.main-bg {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(
      ellipse 75% 45% at 0% 0%,
      oklch(55% 0.18 240deg / 0.17),
      transparent),
    radial-gradient(
      ellipse 50% 65% at 0% 75%,
      oklch(55% 0.18 270deg / 0.11),
      transparent);
  background-attachment: local;
  background-repeat: no-repeat;
}
.page-header {
  margin: -16px -16px 24px;
  padding: 20px 16px 20px;
}
@media (min-width: 768px) {
  .page-header {
    margin: -32px -32px 24px;
    padding: 32px 32px 0;
  }
}
@layer utilities {
  .seed-blur {
    filter: blur(8px);
    -webkit-user-select: none;
    user-select: none;
  }
  .tx-icon-in {
    background: color-mix(in srgb, var(--success) 12%, transparent);
    color: var(--success);
  }
  .tx-icon-out {
    background: color-mix(in srgb, var(--error) 12%, transparent);
    color: var(--error);
  }
  .tx-icon-swap {
    background: var(--bg-secondary);
    color: var(--text-muted);
  }
}
.auth-screen {
  color-scheme: light;
  --bg-primary: #f8f9fc;
  --bg-secondary: #ffffff;
  --bg-elevated: #ffffff;
  --text-primary: #0d1117;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--lum-bg, #fafaf7);
  font-family: var(--lum-font-sans, sans-serif);
  font-size: 14px;
  color: var(--lum-ink, #0f1115);
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 1024px) {
  .auth-screen {
    grid-template-columns: 1fr;
  }
}
.auth-screen app-pin-pad button {
  color: var(--lum-ink, #0f1115);
}
.auth-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 44px 80px;
  background: #0f1115;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .auth-brand {
    width: 44%;
  }
}
.auth-brand__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.auth-brand__orb--1 {
  right: -120px;
  top: 80px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(
      circle at 30% 30%,
      oklch(78% 0.14 220deg / 0.55),
      transparent 60%);
  filter: blur(20px);
}
.auth-brand__orb--2 {
  left: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(
      circle,
      oklch(65% 0.2 290deg / 0.35),
      transparent 60%);
  filter: blur(30px);
}
.auth-brand__logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.auth-brand__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  max-width: 440px;
}
.auth-brand__eyebrow {
  font-family: var(--lum-font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #12cbf5;
  margin-bottom: 18px;
}
.auth-brand__headline {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.auth-brand__headline em {
  font-style: normal;
  color: #12cbf5;
}
.auth-brand__description {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
}
.auth-brand__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.auth-brand__stat-value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.auth-brand__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.auth-brand__footer {
  position: relative;
  font-family: var(--lum-font-mono, monospace);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.auth-panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 40px;
  background: var(--lum-bg, #fafaf7);
}
.auth-content {
  width: 100%;
  max-width: 460px;
}
.auth-title {
  margin-bottom: 8px;
}
.auth-subtitle {
  color: var(--lum-muted, #6b6e76);
  font-size: 15px;
  margin: 0 0 36px;
}
.lang-switcher {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-switcher.secondary {
  position: static;
}
.auth-topbar {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.lang-btn {
  border: 0;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  font-family: inherit;
  letter-spacing: 0.05em;
  background: transparent;
  color: var(--lum-muted, #6b6e76);
  transition: background 120ms ease, color 120ms ease;
}
.lang-btn.active {
  background: #0f1115;
  color: #fff;
}
.auth-form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--lum-muted, #6b6e76);
  margin-bottom: 6px;
}
.auth-form-spacer {
  margin-bottom: 16px;
}
.auth-form-spacer-lg {
  margin-bottom: 24px;
}
.auth-form-error {
  font-size: 12px;
  color: var(--lum-neg, #e74c3c);
  margin: 4px 0 12px;
}
.auth-input--error {
  border-color: var(--lum-neg, #e74c3c) !important;
}
.auth-checkbox-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--lum-muted, #6b6e76);
  cursor: pointer;
}
.auth-checkbox-row input[type=checkbox] {
  accent-color: #0f1115;
}
.auth-checkbox-row--error {
  color: var(--lum-neg, #e74c3c);
}
.auth-checkbox-row--error input[type=checkbox] {
  accent-color: var(--lum-neg, #e74c3c);
  outline: 1.5px solid var(--lum-neg, #e74c3c);
  outline-offset: 2px;
}
.auth-done {
  text-align: center;
  padding: 32px 0;
}
.auth-done__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lum-pos-bg, oklch(96% 0.04 150deg));
  color: var(--lum-pos, oklch(62% 0.16 150deg));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.auth-done__title {
  margin-bottom: 8px;
}
.auth-done__subtitle {
  color: var(--lum-muted, #6b6e76);
  font-size: 14px;
  margin: 0 0 32px;
}
.auth-done__spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid var(--lum-border, #e8e6de);
  border-top-color: var(--lum-accent, oklch(55% 0.18 240deg));
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
.auth-step-desc {
  color: var(--lum-muted, #6b6e76);
  font-size: 14px;
  margin: 0 0 24px;
}
.auth-link-row {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--lum-muted, #6b6e76);
  text-align: center;
  text-decoration: none;
}
.auth-link-row:hover {
  color: var(--lum-ink, #0f1115);
  text-decoration: underline;
}
.auth-panel .lum-input {
  height: 42px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.auth-brand__cta {
  display: none;
}
@media (max-width: 768px) {
  .auth-screen {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
    overflow: hidden;
  }
  lum-auth-brand {
    display: flex;
  }
  .auth-brand {
    width: 100%;
    min-height: 100vh;
    padding: 44px 28px 36px;
    flex-direction: column;
    justify-content: space-between;
  }
  .auth-brand__body {
    flex: 1;
    justify-content: center;
    max-width: 100%;
  }
  .auth-brand__headline {
    font-size: 38px;
  }
  .auth-brand__description {
    font-size: 15px;
    max-width: 100%;
  }
  .auth-brand__footer {
    display: none;
  }
  .auth-brand__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 14px;
    background: #12cbf5;
    color: #0f1115;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 120ms ease;
    margin-top: 24px;
  }
  .auth-brand__cta:active {
    opacity: 0.85;
  }
  .auth-panel {
    display: none;
    align-items: flex-start;
    padding: 28px 24px;
    min-height: 100vh;
  }
  .auth-content {
    max-width: 100%;
  }
  .mobile--panel lum-auth-brand {
    display: none;
  }
  .mobile--panel .auth-panel {
    display: flex;
    align-items: center;
  }
  .auth-screen--content-only lum-auth-brand {
    display: none;
  }
  .auth-screen--content-only .auth-panel {
    display: flex;
    align-items: center;
  }
  .seed-box__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .word-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .auth-brand {
    padding: 32px 20px 28px;
  }
  .auth-brand__headline {
    font-size: 30px;
  }
  .auth-panel {
    padding: 20px 16px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
