
/* /routes/-route-error-screen.module.css */
._section_k2nz7_1 {
  display: grid;
  gap: 16px;
}

._summary_k2nz7_6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  color: var(--text-secondary);
  font-size: var(--font-size-small);
  transition: color var(--duration-fast) ease;
}

._summary_k2nz7_6::-webkit-details-marker {
  display: none;
}

._summary_k2nz7_6:hover {
  color: var(--text-primary);
}

._summaryChevron_k2nz7_26 {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform var(--duration-fast) ease;
}

._details_k2nz7_32[open] ._summaryChevron_k2nz7_26 {
  transform: rotate(90deg);
}

._detail_k2nz7_32 {
  margin-block-start: 10px;
  text-align: start;
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/screen-shell.module.css */
._page_lhx0i_1 {
  min-block-size: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4.5rem, 18vh, 10rem) var(--space-6) 80px;
  background: var(--bg);
  color: var(--text-primary);
}

._shell_lhx0i_11 {
  inline-size: min(100%, var(--app-content-width));
}

._panel_lhx0i_15 {
  display: grid;
  gap: 28px;
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/ui/code-block.module.css */
._codeBlock_1qne8_1 {
  max-block-size: var(--code-block-max, 320px);
  overflow: auto;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-sidebar);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: var(--font-size-small);
  line-height: var(--leading-relaxed);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/ui/button.module.css */
._button_dunp3_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-block-size: var(--control-height);
  padding-inline: 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--leading-none);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--duration-fast) ease,
    border-color var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

._sm_dunp3_21 {
  min-block-size: var(--control-height-sm);
  padding-inline: 12px;
  font-size: var(--font-size-small);
}

._primary_dunp3_27 {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg);
}

._primary_dunp3_27:hover:not(:disabled) {
  background: var(--text-primary-hover);
  border-color: var(--text-primary-hover);
}

._secondary_dunp3_38 {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text-primary);
}

._secondary_dunp3_38:hover:not(:disabled) {
  border-color: var(--text-tertiary);
}

._ghost_dunp3_48 {
  background: transparent;
  color: var(--text-primary);
}

._ghost_dunp3_48:hover:not(:disabled) {
  background: var(--hover);
}

._danger_dunp3_57 {
  background: var(--danger);
  border-color: var(--danger);
  color: var(--bg);
}

._danger_dunp3_57:hover:not(:disabled) {
  background: var(--danger-hover);
  border-color: var(--danger-hover);
}

._dangerGhost_dunp3_68 {
  background: var(--bg);
  border-color: var(--danger-border);
  color: var(--danger);
}

._dangerGhost_dunp3_68:hover:not(:disabled) {
  background: var(--danger-soft);
  border-color: var(--danger-border-strong);
}

._button_dunp3_1:disabled {
  cursor: default;
}

._button_dunp3_1:disabled:not(._pending_dunp3_83) {
  opacity: 0.45;
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/gateway-screen.module.css */
._page_l8ob4_1 {
  display: grid;
  min-block-size: 100dvh;
  /* Plain center is exact here: the implicit row is never smaller than the
     content, so the overflow case `safe` would guard against cannot occur —
     while unsupported `safe` keywords drop the whole declaration in WebKit
     and the column stretches apart. */
  align-items: center;
  justify-items: center;
  overflow-x: hidden;
  padding: var(--space-10) var(--space-6);
  background: var(--bg);
  color: var(--text-primary);
}

._content_l8ob4_16 {
  position: relative;
  display: grid;
  inline-size: min(100%, 36.25rem);
}

._stack_l8ob4_22,
._copy_l8ob4_23 {
  display: grid;
}

._stack_l8ob4_22 {
  justify-items: center;
  gap: 28px;
}

._stack_l8ob4_22 > :not(._mark_l8ob4_32):not(._copy_l8ob4_23) {
  inline-size: min(100%, var(--compact-control-width));
}

._mark_l8ob4_32 {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: 56px;
  block-size: 56px;
  color: var(--text-primary);
}

._markGlyph_l8ob4_45 {
  display: block;
  color: var(--text-primary);
}

/* Loading state: the mark stays crisp ink and gently breathes to signal
   activity, while a slow diagonal sheen — clipped to the hexagon silhouette —
   sweeps across it and rests, reading as a premium glint rather than a pulse.
   The polygon matches SolidMark's points (16-unit viewBox) as percentages, so
   the sheen tracks the drawn hexagon exactly. The global reduced-motion switch
   in base.css freezes both animations at their opening frame, leaving a still,
   solid mark. */
._markPending_l8ob4_57 ._markGlyph_l8ob4_45 {
  transform-origin: center;
  animation: _gateway-mark-breathe_l8ob4_1 3.4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

._markPending_l8ob4_57::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(
    70.31% 14.81%,
    90.63% 50%,
    70.31% 85.19%,
    29.69% 85.19%,
    9.38% 50%,
    29.69% 14.81%
  );
  background: linear-gradient(
    105deg,
    transparent 44%,
    rgb(255 255 255 / 0.5) 50%,
    transparent 56%
  );
  background-repeat: no-repeat;
  background-size: 220% 100%;
  background-position: 170% 0;
  pointer-events: none;
  animation: _gateway-mark-sheen_l8ob4_1 3.4s ease-in-out infinite;
}

._copy_l8ob4_23 {
  justify-items: center;
  gap: var(--space-2);
  text-align: center;
}

._title_l8ob4_93 {
  max-inline-size: 28ch;
  min-inline-size: 0;
  color: var(--text-primary);
  font-size: var(--font-size-title);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  overflow-wrap: anywhere;
}

._titleError_l8ob4_104 {
  color: var(--danger);
}

._titlePending_l8ob4_108 {
  font-weight: 400;
}

._tagline_l8ob4_112 {
  max-inline-size: 48ch;
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--leading-normal);
}

._body_l8ob4_119 {
  max-inline-size: 48ch;
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
}

@keyframes _gateway-mark-breathe_l8ob4_1 {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.85;
  }
}

@keyframes _gateway-mark-sheen_l8ob4_1 {
  0% {
    background-position: 170% 0;
  }

  45%,
  100% {
    background-position: -70% 0;
  }
}

@media (max-width: 640px) {
  ._page_l8ob4_1 {
    --hex-backdrop-spotlight-size: 320px 340px;
    --hex-backdrop-spotlight-center: 50% 45%;

    align-items: start;
    padding-block-start: var(--space-10);
  }
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/rpc-transport-status.module.css */
._overlay_1j2wh_1 {
  position: fixed;
  inset: 0;
  z-index: var(--z-transport);
  display: grid;
  place-items: center;
  padding: var(--space-6);
  background: color-mix(in srgb, var(--bg) 74%, transparent);
  color: var(--text-primary);
}

._panel_1j2wh_12 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  inline-size: min(22rem, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg);
  box-shadow: var(--shadow-floating);
}

._title_1j2wh_25 {
  min-inline-size: 0;
  overflow-wrap: anywhere;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-primary);
}

._inlineTransport_1j2wh_33 {
  color: var(--text-secondary);
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/hex-backdrop.module.css */
/* Threshold-screen ground shared by the gateway and pre-activation pages: a
   hex tile behind a radial white spotlight that optically holds the centered
   column. Pages tune the spotlight through the two custom properties. */
._backdrop_1y0wb_4 {
  position: relative;
  isolation: isolate;
}

._backdrop_1y0wb_4::before,
._backdrop_1y0wb_4::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
}

._backdrop_1y0wb_4::before {
  z-index: -2;
  background-image: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='134'%20height='77'%20viewBox='0%200%20134%2077'%3e%3cdefs%3e%3csymbol%20id='hex'%20viewBox='-1%20-1%2092%2080'%3e%3cpolygon%20points='22.5,0%2067.5,0%2090,39%2067.5,78%2022.5,78%200,39'%20fill='%23f0f0f0'%20/%3e%3cpolygon%20points='23.4,1%2066.6,1%2088.8,39%2066.6,77%2023.4,77%201.2,39'%20fill='%23ffffff'%20/%3e%3c/symbol%3e%3c/defs%3e%3cuse%20href='%23hex'%20x='-67'%20y='-38.5'%20width='88'%20height='76'%20/%3e%3cuse%20href='%23hex'%20x='-67'%20y='38.5'%20width='88'%20height='76'%20/%3e%3cuse%20href='%23hex'%20x='0'%20y='0'%20width='88'%20height='76'%20/%3e%3cuse%20href='%23hex'%20x='67'%20y='-38.5'%20width='88'%20height='76'%20/%3e%3cuse%20href='%23hex'%20x='67'%20y='38.5'%20width='88'%20height='76'%20/%3e%3c/svg%3e");
  background-position: center;
  background-size: 134px 77px;
}

._backdrop_1y0wb_4::after {
  z-index: -1;
  background: radial-gradient(
    ellipse var(--hex-backdrop-spotlight-size, 420px 390px) at
      var(--hex-backdrop-spotlight-center, 50% 50%),
    rgb(255 255 255 / 0.78) 0%,
    rgb(255 255 255 / 0.44) 62%,
    rgb(255 255 255 / 0) 96%
  );
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/ui/status-dot.module.css */
._dot_16nvi_1 {
  display: inline-block;
  flex-shrink: 0;
  inline-size: 7px;
  block-size: 7px;
  border-radius: 50%;
}

._idle_16nvi_9 {
  background: var(--status-idle);
}

._success_16nvi_13 {
  background: var(--success);
}

._warning_16nvi_17 {
  background: var(--warning);
}

._danger_16nvi_21 {
  background: var(--danger);
}

._info_16nvi_25 {
  background: var(--accent);
}

._pulse_16nvi_29 {
  animation: _statusPulse_16nvi_1 2s ease-in-out infinite;
}

@keyframes _statusPulse_16nvi_1 {
  0%,
  100% {
    opacity: 1;
  }

  /* The floor keeps the dot legible at the trough; at lower values it reads
     as vanishing rather than pulsing next to static text. */
  50% {
    opacity: 0.4;
  }
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/ui/spinner.module.css */
._spinner_1puih_1 {
  display: block;
  flex-shrink: 0;
  animation: _spinnerSpin_1puih_1 1.1s linear infinite;
}

@keyframes _spinnerSpin_1puih_1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/ui/eyebrow.module.css */
._eyebrow_klry1_1 {
  font-size: var(--font-size-label);
  font-weight: 500;
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/solid-mark.module.css */
._mark_1xrmm_1 {
  display: block;
  flex-shrink: 0;
}


/* /@fs/root/loading-revamp-card/src/shared/framework/web/app.css */
@layer reset, base;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

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

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  dl,
  dd,
  pre,
  figure {
    margin: 0;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

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

  button {
    border: none;
    background: transparent;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img,
  svg {
    display: block;
    max-inline-size: 100%;
  }

  table {
    border-collapse: collapse;
  }

  textarea {
    resize: vertical;
  }
}

@layer base {
  :root {
    color-scheme: light;

    /* Surfaces */
    --bg: #ffffff;
    --bg-sidebar: #fafafa;
    --hover: #f5f5f5;
    --active: #e8e8e8;
    --message-bubble-bg: #f0f0f0;
    --scrim: rgb(0 0 0 / 0.4);

    /* Ink */
    --text-primary: #0a0a0a;
    --text-primary-hover: #222222;
    --text-secondary: #666666;
    --text-tertiary: #999999;

    /* Lines */
    --border: #e5e5e5;
    --border-hover: #d4d4d4;
    --selection-bg: #d8dee5;

    /* Status */
    --danger: #d4382c;
    --danger-hover: #bb2d22;
    --danger-soft: #fdf4f3;
    --danger-border: #f4d4d1;
    --danger-border-strong: #edbcb7;
    --success: #16a34a;
    --success-soft: #f4faf6;
    --success-border: #d8ecdf;
    --warning: #d97706;
    --warning-soft: #fdf7ec;
    --warning-border: #f5e3c2;
    --accent: #3d8ec4;
    --status-idle: #c4c4c4;

    /* Typography */
    --font-sans:
      "Geist Variable", -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
    --font-mono:
      "Geist Mono Variable", "SF Mono", "Fira Mono", "Menlo", monospace;
    --font-size-label: 12px;
    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-title: 20px;
    --font-size-display: 28px;
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;
    --tracking-tight: -0.02em;
    --tracking-snug: -0.01em;
    --tracking-wide: 0.05em;

    /* Shape */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 14px;
    --radius-2xl: 16px;

    /* Elevation */
    --shadow-soft: 0 2px 16px rgb(0 0 0 / 0.04);
    --shadow-popover: 0 2px 12px rgb(0 0 0 / 0.08);
    --shadow-floating: 0 10px 28px rgb(0 0 0 / 0.12);
    --focus-halo: 0 0 0 3px rgb(10 10 10 / 0.05);

    /* Motion */
    --duration-fast: 120ms;
    --duration-medium: 150ms;

    /* Layers */
    --z-popover: 30;
    --z-overlay: 40;
    --z-transport: 50;

    /* Spacing rhythm */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 64px;

    /* Layout */
    --app-content-width: 48rem;
    --compact-control-width: 24rem;
    --sidebar-w: 280px;
    --workspace-max: 1100px;
    --pane-header-height: 60px;
    --control-height: 40px;
    --control-height-sm: 32px;
  }

  html {
    min-block-size: 100%;
    background: var(--bg);
  }

  body {
    min-block-size: 100dvh;
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  code,
  pre {
    font-family: var(--font-mono);
  }

  input::placeholder,
  textarea::placeholder {
    color: var(--text-tertiary);
  }

  :focus-visible {
    outline: 2px solid var(--text-secondary);
    outline-offset: 2px;
  }

  ::selection {
    background: var(--selection-bg);
  }

  * {
    scrollbar-width: thin;
    scrollbar-color: #dddddd transparent;
  }

  ::-webkit-scrollbar {
    inline-size: 6px;
    block-size: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
  }

  .visually-hidden {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      /* biome-ignore lint/complexity/noImportantStyles: the global reduced-motion kill switch must override every component's motion */
      animation-duration: 0.01ms !important;
      /* biome-ignore lint/complexity/noImportantStyles: see above */
      animation-iteration-count: 1 !important;
      /* biome-ignore lint/complexity/noImportantStyles: see above */
      transition-duration: 0.01ms !important;
    }
  }
}


/* /@fs//root/loading-revamp-card/src/shared/framework/web/base.css */
@layer reset, base;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

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

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  dl,
  dd,
  pre,
  figure {
    margin: 0;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

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

  button {
    border: none;
    background: transparent;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img,
  svg {
    display: block;
    max-inline-size: 100%;
  }

  table {
    border-collapse: collapse;
  }

  textarea {
    resize: vertical;
  }
}

@layer base {
  :root {
    color-scheme: light;

    /* Surfaces */
    --bg: #ffffff;
    --bg-sidebar: #fafafa;
    --hover: #f5f5f5;
    --active: #e8e8e8;
    --message-bubble-bg: #f0f0f0;
    --scrim: rgb(0 0 0 / 0.4);

    /* Ink */
    --text-primary: #0a0a0a;
    --text-primary-hover: #222222;
    --text-secondary: #666666;
    --text-tertiary: #999999;

    /* Lines */
    --border: #e5e5e5;
    --border-hover: #d4d4d4;
    --selection-bg: #d8dee5;

    /* Status */
    --danger: #d4382c;
    --danger-hover: #bb2d22;
    --danger-soft: #fdf4f3;
    --danger-border: #f4d4d1;
    --danger-border-strong: #edbcb7;
    --success: #16a34a;
    --success-soft: #f4faf6;
    --success-border: #d8ecdf;
    --warning: #d97706;
    --warning-soft: #fdf7ec;
    --warning-border: #f5e3c2;
    --accent: #3d8ec4;
    --status-idle: #c4c4c4;

    /* Typography */
    --font-sans:
      "Geist Variable", -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
    --font-mono:
      "Geist Mono Variable", "SF Mono", "Fira Mono", "Menlo", monospace;
    --font-size-label: 12px;
    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-title: 20px;
    --font-size-display: 28px;
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;
    --tracking-tight: -0.02em;
    --tracking-snug: -0.01em;
    --tracking-wide: 0.05em;

    /* Shape */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 14px;
    --radius-2xl: 16px;

    /* Elevation */
    --shadow-soft: 0 2px 16px rgb(0 0 0 / 0.04);
    --shadow-popover: 0 2px 12px rgb(0 0 0 / 0.08);
    --shadow-floating: 0 10px 28px rgb(0 0 0 / 0.12);
    --focus-halo: 0 0 0 3px rgb(10 10 10 / 0.05);

    /* Motion */
    --duration-fast: 120ms;
    --duration-medium: 150ms;

    /* Layers */
    --z-popover: 30;
    --z-overlay: 40;
    --z-transport: 50;

    /* Spacing rhythm */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 40px;
    --space-9: 48px;
    --space-10: 64px;

    /* Layout */
    --app-content-width: 48rem;
    --compact-control-width: 24rem;
    --sidebar-w: 280px;
    --workspace-max: 1100px;
    --pane-header-height: 60px;
    --control-height: 40px;
    --control-height-sm: 32px;
  }

  html {
    min-block-size: 100%;
    background: var(--bg);
  }

  body {
    min-block-size: 100dvh;
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  code,
  pre {
    font-family: var(--font-mono);
  }

  input::placeholder,
  textarea::placeholder {
    color: var(--text-tertiary);
  }

  :focus-visible {
    outline: 2px solid var(--text-secondary);
    outline-offset: 2px;
  }

  ::selection {
    background: var(--selection-bg);
  }

  * {
    scrollbar-width: thin;
    scrollbar-color: #dddddd transparent;
  }

  ::-webkit-scrollbar {
    inline-size: 6px;
    block-size: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 3px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
  }

  .visually-hidden {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      /* biome-ignore lint/complexity/noImportantStyles: the global reduced-motion kill switch must override every component's motion */
      animation-duration: 0.01ms !important;
      /* biome-ignore lint/complexity/noImportantStyles: see above */
      animation-iteration-count: 1 !important;
      /* biome-ignore lint/complexity/noImportantStyles: see above */
      transition-duration: 0.01ms !important;
    }
  }
}
