:root {
    --bg: #09090b;
    --bg-elev: #0c0c0e;
    --bg-card: #111113;
    --fg: #fafafa;
    --fg-muted: #b1b1b9;
    --fg-dim: #7e7e88;
    --fg-faint: #55555e;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.17);
    --accent-h: 160;
    --accent: oklch(0.75 0.15 var(--accent-h));
    --accent-dim: oklch(0.75 0.15 var(--accent-h) / 0.16);
    /* The app's own dark-theme trading inks (see apps/web/src/trading.css):
       profit and loss matched on lightness and chroma, separated by hue, and
       the armed amber one step down from amber-400. The site quotes the
       product, so it wears the product's colours. */
    --ok: oklch(0.72 0.15 152);
    --warn: oklch(0.78 0.125 78);
    --loss: oklch(0.66 0.18 27);
    /* The app's primary blue: its progress rule, wedge, and open-state ink. */
    --chart-blue: oklch(0.64 0.17 259);
    --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    color-scheme: dark;
    scroll-behavior: smooth;
  }

  body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-sans);
    font-feature-settings: "ss01", "ss02";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    z-index: 9999;
  }

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

  button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
  }

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

  .eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fg-dim);
    font-weight: 500;
  }

  .display {
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }

  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: transform 0.18s ease, background 0.18s ease,
      border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
  }

  /* The primary action wears the product's profit green: it is the one
     saturated surface on the page, so it reads as the destination. */
  .btn-primary {
    background: linear-gradient(180deg, oklch(0.8 0.15 160), oklch(0.7 0.15 160));
    color: #04120b;
    font-weight: 600;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 10px 28px -12px color-mix(in srgb, var(--accent) 55%, transparent);
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, oklch(0.83 0.15 160), oklch(0.73 0.15 160));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.36),
      0 14px 34px -12px color-mix(in srgb, var(--accent) 65%, transparent);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

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

  .btn-ghost:hover {
    color: var(--fg);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.02);
  }

  .btn-lg {
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* One material for every raised surface: a top-edge highlight that reads
     as a lit bevel, and a shadow tinted to the page rather than pure black.
     Radius scale is fixed at 8 for inputs and chips, 12 for tiles, 16 for
     the console panels, and full for pills. */
  .tile {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005) 40%),
      rgba(10, 10, 12, 0.5);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 24px 48px -32px rgba(0, 0, 0, 0.85);
    overflow: hidden;
  }

  :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
  }

  @keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    50% { opacity: 0.4; }
  }

  @keyframes blink {
    50% { opacity: 0; }
  }

  /* ── Scroll-driven motion layer ─────────────────────────────
     Every scrubbed animation on this site runs on a CSS scroll or view
     timeline, so progress tracks the wheel or the finger directly instead of
     a JS scroll listener. Browsers without the feature fall through to the
     resting state, which is the finished frame of every animation. */

  @keyframes scrub-rise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
  }

  @keyframes scrub-word {
    from { opacity: 0.06; transform: translateY(0.32em); }
    to { opacity: 1; transform: none; }
  }

  @keyframes scrub-draw {
    to { stroke-dashoffset: 0; }
  }

  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      /* Generic "arrive as it enters" scrub. Communicates reading order. */
      .scrub {
        animation: scrub-rise linear both;
        animation-timeline: view();
        animation-range: entry 8% cover 32%;
      }

      /* Headlines resolve word by word, so the wheel literally reveals the
         sentence. Each word carries its own range via an inline --d offset. */
      .kinetic > span {
        display: inline-block;
        animation: scrub-word linear both;
        animation-timeline: view();
        animation-range: entry 12% cover 40%;
        animation-delay: 0s;
      }
    }
  }.page[data-astro-cid-ju4pidww] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.scroll-tape[data-astro-cid-ju4pidww] {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 60;
  pointer-events: none;
  background: #ffffff0d;
}

.scroll-tape-fill[data-astro-cid-ju4pidww] {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--fg-faint), var(--accent));
}

.nav[data-astro-cid-ju4pidww] {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border-bottom: 1px solid #0000;
  transition: border-color .3s;
}

@supports (animation-timeline: scroll()) {
  .scroll-tape-fill[data-astro-cid-ju4pidww] {
    animation: linear both tape-fill;
    animation-timeline: scroll(root);
  }

  .nav[data-astro-cid-ju4pidww] {
    animation: step-end both nav-settle;
    animation-timeline: scroll(root);
    animation-range: 0 24px;
  }
}

@keyframes tape-fill {
  to {
    transform: scaleX(1);
  }
}

@keyframes nav-settle {
  to {
    border-bottom-color: var(--border);
  }
}

.nav-inner[data-astro-cid-ju4pidww] {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand[data-astro-cid-ju4pidww] {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--fg);
  transition: color .2s;
}

.nav-brand[data-astro-cid-ju4pidww]:hover {
  color: #fff;
}

.nav-brand-name[data-astro-cid-ju4pidww] {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1;
}

.nav-brand-tag[data-astro-cid-ju4pidww] {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.nav-right[data-astro-cid-ju4pidww] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-github[data-astro-cid-ju4pidww] {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff05;
  color: var(--fg-muted);
  font-size: 13px;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .18s, border-color .18s, background .18s;
}

.nav-github[data-astro-cid-ju4pidww]:hover {
  color: var(--fg);
  border-color: var(--border-strong);
  background: #ffffff0a;
}

.main[data-astro-cid-ju4pidww] {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer[data-astro-cid-ju4pidww] {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
}

.footer-inner[data-astro-cid-ju4pidww] {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand[data-astro-cid-ju4pidww] {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-dim);
}

.footer-links[data-astro-cid-ju4pidww] {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links[data-astro-cid-ju4pidww] a[data-astro-cid-ju4pidww] {
  font-size: 13px;
  color: var(--fg-dim);
  transition: color .2s;
}

.footer-links[data-astro-cid-ju4pidww] a[data-astro-cid-ju4pidww]:hover {
  color: var(--fg);
}

@media (width <= 820px) {
  .nav-inner[data-astro-cid-ju4pidww], .footer-inner[data-astro-cid-ju4pidww] {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer[data-astro-cid-ju4pidww] {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }

  .footer-inner[data-astro-cid-ju4pidww] {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-links[data-astro-cid-ju4pidww] {
    justify-content: flex-start;
  }
}
section[data-astro-cid-lcdefpme] {
  position: relative;
  padding: 112px 0;
  border-top: 1px solid var(--border);
}

.section-title[data-astro-cid-lcdefpme] {
  font-size: clamp(30px, 3.9vw, 46px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.06;
  margin-bottom: 18px;
  max-width: 18ch;
  text-wrap: balance;
}

.section-lede[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 62ch;
  line-height: 1.6;
  letter-spacing: -.005em;
}

.section-lede[data-astro-cid-lcdefpme] code[data-astro-cid-lcdefpme], .cta-note[data-astro-cid-lcdefpme] code[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: .85em;
  padding: 1px 6px;
  border-radius: 5px;
  background: #ffffff0d;
  border: 1px solid var(--border);
}

.inline-link[data-astro-cid-lcdefpme] {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: #fafafa59;
  text-underline-offset: 3px;
}

.inline-link[data-astro-cid-lcdefpme]:hover {
  text-decoration-color: var(--fg);
}

.tile[data-astro-cid-lcdefpme]:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%),
      color-mix(in srgb, var(--accent) 9%, transparent),
      transparent 65%);
}

.tile[data-astro-cid-lcdefpme]:hover:after {
  opacity: 1;
}

.hero[data-astro-cid-lcdefpme] {
  padding: 64px 0 8px;
  position: relative;
  border-top: 0;
}

.hero-grid[data-astro-cid-lcdefpme] {
  position: absolute;
  inset: -10% 0;
  pointer-events: none;
  background-image: linear-gradient(to right, #ffffff09 1px, #0000 1px), linear-gradient(#ffffff09 1px, #0000 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(80% 60% at 50% 34%, #000 38%, #0000 100%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 34%, #000 38%, #0000 100%);
}

.hero-inner[data-astro-cid-lcdefpme] {
  position: relative;
  text-align: center;
}

.hero-eyebrow[data-astro-cid-lcdefpme], .hero-title[data-astro-cid-lcdefpme], .hero-sub[data-astro-cid-lcdefpme], .hero-actions[data-astro-cid-lcdefpme] {
  animation: .8s ease-out backwards fade-in;
}

.hero-title[data-astro-cid-lcdefpme] {
  animation-delay: 80ms;
}

.hero-sub[data-astro-cid-lcdefpme] {
  animation-delay: .16s;
}

.hero-actions[data-astro-cid-lcdefpme] {
  animation-delay: .24s;
}

.hero-eyebrow[data-astro-cid-lcdefpme] {
  margin-top: 36px;
  color: var(--accent);
}

.hero-title[data-astro-cid-lcdefpme] {
  font-size: clamp(38px, 5.4vw, 72px);
  margin: 20px auto 22px;
  max-width: 22ch;
  text-wrap: balance;
  color: #fff;
}

.hero-sub[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 560px;
  margin: 0 auto 34px;
  letter-spacing: -.005em;
  line-height: 1.55;
}

.hero-actions[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.dl-icon[data-astro-cid-lcdefpme] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero-source-link[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .18s;
}

.hero-source-link[data-astro-cid-lcdefpme]:hover {
  color: var(--fg);
}

.hero-source-arrow[data-astro-cid-lcdefpme] {
  flex-shrink: 0;
  opacity: .6;
  transition: transform .18s, opacity .18s;
}

.hero-source-link[data-astro-cid-lcdefpme]:hover .hero-source-arrow[data-astro-cid-lcdefpme] {
  transform: translate(2px, -2px);
  opacity: 1;
}

.hero-glow[data-astro-cid-lcdefpme] {
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  pointer-events: none;
  background: radial-gradient(ellipse 46% 42% at 50% 8%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%),
      radial-gradient(ellipse 30% 30% at 78% 30%, color-mix(in srgb, var(--accent) 5%, transparent), transparent 70%);
}

.sec-tape[data-astro-cid-lcdefpme] {
  padding: 30px 0 0;
  border-top: 0;
}

.tape[data-astro-cid-lcdefpme] {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: linear-gradient(#ffffff05, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 6% 94%, #0000);
}

.tape-track[data-astro-cid-lcdefpme] {
  display: flex;
  width: max-content;
}

.tape-run[data-astro-cid-lcdefpme] {
  display: flex;
  flex-shrink: 0;
}

.tape-item[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.tape-sym[data-astro-cid-lcdefpme] {
  color: var(--fg-dim);
  font-size: 11px;
  letter-spacing: .12em;
}

.tape-px[data-astro-cid-lcdefpme] {
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

.tape-chg[data-astro-cid-lcdefpme] {
  font-size: 11px;
  color: var(--fg-faint);
  font-variant-numeric: tabular-nums;
}

.tape-chg[data-astro-cid-lcdefpme].is-up {
  color: var(--ok);
}

.tape-chg[data-astro-cid-lcdefpme].is-down {
  color: var(--loss);
}

.tape[data-astro-cid-lcdefpme][data-state="loading"] .tape-px[data-astro-cid-lcdefpme] {
  color: #0000;
  border-radius: 4px;
  background: linear-gradient(90deg, #ffffff0d, #ffffff1c, #ffffff0d);
  background-size: 300% 100%;
  animation: 1.4s linear infinite tape-shimmer;
}

@keyframes tape-shimmer {
  to {
    background-position: -300% 0;
  }
}

.tape-note[data-astro-cid-lcdefpme] {
  margin-top: 20px;
}

.tape-note[data-astro-cid-lcdefpme] p[data-astro-cid-lcdefpme] {
  color: var(--fg-dim);
  font-size: 13.5px;
  max-width: 62ch;
  line-height: 1.6;
}

.sec-mission[data-astro-cid-lcdefpme] {
  padding-bottom: 0;
}

.mission-scroller[data-astro-cid-lcdefpme] {
  min-height: 340vh;
  margin-top: 40px;
}

.mission-sticky[data-astro-cid-lcdefpme] {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 24px;
}

.mission-dim[data-astro-cid-lcdefpme] {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(90% 70% at 50% 46%, #0000 30%, #030305e6 100%), #0303059e;
}

.stage-container[data-astro-cid-lcdefpme] {
  position: relative;
}

.appwin[data-astro-cid-lcdefpme] {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff1f;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(#ffffff0a, #ffffff02 46%), #0b0c0ef0;
  box-shadow: inset 0 1px #ffffff17, 0 42px 110px -42px #000000f2;
}

.appwin-titlebar[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  background: #ffffff05;
}

.tl-dots[data-astro-cid-lcdefpme] {
  display: inline-flex;
  gap: 6px;
}

.tl-dots[data-astro-cid-lcdefpme] i[data-astro-cid-lcdefpme] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff24;
}

.tl-dots[data-astro-cid-lcdefpme] i[data-astro-cid-lcdefpme]:first-child {
  background: #f2555a;
}

.tl-dots[data-astro-cid-lcdefpme] i[data-astro-cid-lcdefpme]:nth-child(2) {
  background: #f5b93e;
}

.tl-dots[data-astro-cid-lcdefpme] i[data-astro-cid-lcdefpme]:nth-child(3) {
  background: #43c465;
}

.tl-title[data-astro-cid-lcdefpme] {
  font-size: 12px;
  font-weight: 550;
  letter-spacing: -.01em;
  color: var(--fg-muted);
}

.tl-net[data-astro-cid-lcdefpme] {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warn);
  padding: 2px 8px;
  border: 1px solid color-mix(in srgb, var(--warn) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--warn) 8%, transparent);
}

.appwin-body[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
}

.appwin-crumb[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}

.crumb-path[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.crumb-project[data-astro-cid-lcdefpme] {
  color: var(--fg-dim);
  flex: none;
}

.crumb-sep[data-astro-cid-lcdefpme] {
  color: var(--fg-faint);
  flex: none;
}

.crumb-title[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crumb-capsule[data-astro-cid-lcdefpme] {
  margin-left: auto;
  flex: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff08;
}

.appwin-side[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 8px;
  border-right: 1px solid var(--border);
  background: #00000047;
  min-width: 0;
}

.side-brand[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 8px 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--fg);
}

.side-brand-mark[data-astro-cid-lcdefpme] {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4c7dd8, #3557a8);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.side-search[data-astro-cid-lcdefpme] {
  margin: 0 6px 8px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #ffffff05;
  font-size: 11px;
  color: var(--fg-faint);
}

.side-legend[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 4px 8px;
}

.side-thread[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 9px;
  border-radius: 8px;
  min-width: 0;
}

.side-thread--live[data-astro-cid-lcdefpme] {
  background: #ffffff0d;
  border: 1px solid var(--border);
}

.side-thread-title[data-astro-cid-lcdefpme] {
  font-size: 11px;
  line-height: 1.35;
  color: var(--fg-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.side-thread--live[data-astro-cid-lcdefpme] .side-thread-title[data-astro-cid-lcdefpme] {
  color: var(--fg);
}

.side-thread-meta[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--fg-faint);
}

.side-status[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
}

.status-window[data-astro-cid-lcdefpme] {
  display: block;
  height: 1.5em;
  overflow: hidden;
}

.status-reel[data-astro-cid-lcdefpme] {
  display: block;
  transform: translateY(-4.5em);
}

.status-step[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 1.5em;
  color: var(--fg-dim);
  white-space: nowrap;
}

.status-step--armed[data-astro-cid-lcdefpme] {
  color: var(--warn);
}

.status-step--long[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.status-step--won[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.status-dot[data-astro-cid-lcdefpme] {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
  background: currentColor;
}

.status-dot--wait[data-astro-cid-lcdefpme] {
  background: var(--fg-faint);
}

.appwin-main[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  padding: 10px 12px 12px;
}

.panel-row[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  min-height: 0;
}

.chart-col[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.console-chart[data-astro-cid-lcdefpme], .pos-card[data-astro-cid-lcdefpme], .log-card[data-astro-cid-lcdefpme] {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff06;
  box-shadow: inset 0 1px #ffffff0b;
  min-width: 0;
}

.card-legend[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.log-card[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.log-head[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 6px;
}

.log-pnl[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  color: var(--ok);
  transform-origin: 100%;
}

.log-progress[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 9px;
  border-bottom: 1px solid var(--border);
}

.log-feed[data-astro-cid-lcdefpme] {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
}

.log-row[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 5px;
  border-radius: 6px;
}

.log-row[data-astro-cid-lcdefpme] + .log-row[data-astro-cid-lcdefpme] {
  border-top: 1px solid color-mix(in srgb, var(--border) 45%, transparent);
}

.log-rail[data-astro-cid-lcdefpme] {
  flex: none;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: var(--fg-faint);
  opacity: .62;
}

.log-glyph[data-astro-cid-lcdefpme] {
  flex: none;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-size: 9px;
  font-family: var(--font-mono);
  color: var(--fg-dim);
  background: #ffffff0d;
}

.log-row--armed[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--warn);
}

.log-row--armed[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: var(--warn);
  background: color-mix(in srgb, var(--warn) 14%, transparent);
}

.log-row--fired[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--chart-blue);
}

.log-row--fired[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: var(--chart-blue);
  background: color-mix(in srgb, var(--chart-blue) 16%, transparent);
}

.log-row--check[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--ok);
}

.log-row--check[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: var(--ok);
  background: color-mix(in srgb, var(--ok) 14%, transparent);
}

.log-row--buy[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--chart-blue);
}

.log-row--buy[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: #fff;
  background: color-mix(in srgb, var(--chart-blue) 65%, transparent);
}

.log-row--stop[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--loss);
}

.log-row--stop[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: #fff;
  background: color-mix(in srgb, var(--loss) 60%, transparent);
}

.log-row--loss[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--loss);
}

.log-row--loss[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: var(--loss);
  background: color-mix(in srgb, var(--loss) 14%, transparent);
}

.log-row--win[data-astro-cid-lcdefpme] .log-rail[data-astro-cid-lcdefpme] {
  background: var(--ok);
}

.log-row--win[data-astro-cid-lcdefpme] .log-glyph[data-astro-cid-lcdefpme] {
  color: #04120b;
  background: var(--ok);
}

.log-text[data-astro-cid-lcdefpme] {
  flex: 1;
  min-width: 0;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--fg-muted);
  letter-spacing: -.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.log-value[data-astro-cid-lcdefpme] {
  flex: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}

.log-value--up[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.log-value--down[data-astro-cid-lcdefpme] {
  color: var(--loss);
}

.log-time[data-astro-cid-lcdefpme] {
  flex: none;
  width: 34px;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--fg-faint);
  font-variant-numeric: tabular-nums;
}

.statusbar[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff06;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}

.status-main[data-astro-cid-lcdefpme] {
  min-width: 148px;
}

.sb-chip[data-astro-cid-lcdefpme] {
  padding: 2px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 10px;
  color: var(--fg-dim);
}

.sb-pred[data-astro-cid-lcdefpme] {
  font-size: 10.5px;
  color: var(--fg-dim);
  font-variant-numeric: tabular-nums;
}

.sb-right[data-astro-cid-lcdefpme] {
  margin-left: auto;
  font-size: 10px;
  color: var(--fg-faint);
  font-variant-numeric: tabular-nums;
}

.composer[data-astro-cid-lcdefpme] {
  padding: 9px 12px 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0000004d;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.composer-line[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--fg-faint);
}

.composer-caret[data-astro-cid-lcdefpme] {
  width: 1px;
  height: 13px;
  background: var(--fg-muted);
  animation: 1.1s step-end infinite blink;
}

.composer-meta[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--fg-faint);
}

.composer-chip[data-astro-cid-lcdefpme] {
  padding: 1px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-dim);
}

.composer-send[data-astro-cid-lcdefpme] {
  margin-left: auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #04120b;
  font-size: 12px;
  font-weight: 600;
}

.console-chart[data-astro-cid-lcdefpme] {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 12px 10px;
  overflow: hidden;
}

.chart-plot[data-astro-cid-lcdefpme] {
  position: relative;
  min-width: 0;
}

.chart-head[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 2px 8px;
}

.chart-market[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.chart-legend[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.chart-price[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 19px;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}

.chart-price[data-astro-cid-lcdefpme] .pnl-window[data-astro-cid-lcdefpme] {
  height: 1.3em;
}

.chart-price[data-astro-cid-lcdefpme] .pnl-step[data-astro-cid-lcdefpme] {
  color: inherit;
  text-align: left;
}

.chart-interval[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.chart-svg[data-astro-cid-lcdefpme] {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 330;
  display: block;
}

.price-line[data-astro-cid-lcdefpme] {
  fill: none;
  stroke: var(--ok);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.price-wash[data-astro-cid-lcdefpme] {
  fill: url("#washGrad");
  stroke: none;
  clip-path: inset(0 7.78% 0 0);
}

.price-dot[data-astro-cid-lcdefpme] {
  fill: var(--ok);
  stroke: #0a0a0c;
  stroke-width: 2px;
  offset-rotate: 0deg;
  offset-distance: 100%;
}

.wedge[data-astro-cid-lcdefpme] {
  fill: url("#wedgeGrad");
}

.dip-dot[data-astro-cid-lcdefpme] {
  fill: var(--loss);
}

.dip-drop[data-astro-cid-lcdefpme] {
  stroke: var(--loss);
  stroke-width: 1px;
  stroke-dasharray: 4 4;
  opacity: .5;
}

.dip-label[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 13px;
  fill: var(--loss);
  stroke: #0a0a0c;
  stroke-width: 4px;
  paint-order: stroke fill;
}

.stop-hold[data-astro-cid-lcdefpme] {
  stroke: var(--loss);
  stroke-width: 2.5px;
  stroke-dasharray: 4 4;
  opacity: 0;
}

.stop-hold-label[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  fill: var(--loss);
  stroke: #0a0a0c;
  stroke-width: 4px;
  paint-order: stroke fill;
  opacity: 1;
}

.target-dot[data-astro-cid-lcdefpme] {
  fill: var(--ok);
  stroke: #0a0a0c;
  stroke-width: 2px;
}

.target-ping[data-astro-cid-lcdefpme] {
  fill: none;
  stroke: var(--ok);
  stroke-width: 1.6px;
  opacity: 0;
}

.target-check[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
  fill: none;
  stroke: #06120c;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.payoff[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 68px;
  font-weight: 600;
  letter-spacing: -.02em;
  fill: var(--ok);
  stroke: #0a0a0c;
  stroke-width: 9px;
  paint-order: stroke fill;
  transform-box: fill-box;
  transform-origin: center;
}

.rr[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid var(--border);
}

.rr-bar[data-astro-cid-lcdefpme] {
  display: flex;
  flex: 1;
  height: 26px;
  border-radius: 6px;
  overflow: hidden;
}

.rr-seg[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-variant-numeric: tabular-nums;
  min-width: 0;
  clip-path: inset(0);
}

.rr-cap[data-astro-cid-lcdefpme] {
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 9px;
  opacity: .62;
}

.rr-val[data-astro-cid-lcdefpme] {
  margin-left: auto;
}

.rr-seg--risk[data-astro-cid-lcdefpme] {
  background: color-mix(in srgb, var(--loss) 26%, transparent);
  color: color-mix(in srgb, var(--loss) 78%, white);
  flex-direction: row-reverse;
  border-right: 1px solid #ffffff73;
}

.rr-seg--risk[data-astro-cid-lcdefpme] .rr-val[data-astro-cid-lcdefpme] {
  margin-left: 0;
  margin-right: auto;
}

.rr-seg--reward[data-astro-cid-lcdefpme] {
  background: color-mix(in srgb, var(--accent) 24%, transparent);
  color: color-mix(in srgb, var(--accent) 82%, white);
}

.rr-note[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--fg-dim);
  max-width: 30ch;
  line-height: 1.4;
}

.rr-note[data-astro-cid-lcdefpme] strong[data-astro-cid-lcdefpme] {
  color: var(--fg);
  font-family: var(--font-mono);
  font-weight: 500;
}

.tick[data-astro-cid-lcdefpme] {
  width: 12px;
  height: 12px;
  flex: none;
  overflow: visible;
}

.tick[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
  fill: none;
  stroke: var(--ok);
  stroke-width: 2.4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.tick--lg[data-astro-cid-lcdefpme] {
  width: 19px;
  height: 19px;
}

.tick--lg[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
  stroke-width: 2.1px;
}

.rr-note[data-astro-cid-lcdefpme] .tick[data-astro-cid-lcdefpme] {
  margin-top: 2px;
}

.level[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke-width: 1px;
  stroke-dasharray: 4 4;
}

.grid[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke: #ffffff0d;
  stroke-width: 1px;
}

.grid[data-astro-cid-lcdefpme] text[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--fg-faint);
  opacity: .7;
}

.level--entry[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke: var(--fg-faint);
}

.level--stop[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke: var(--loss);
}

.level--target[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke: var(--ok);
}

.level--trigger[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke: var(--warn);
}

.level--wake[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
  stroke: var(--warn);
  opacity: .55;
}

.fire-dot[data-astro-cid-lcdefpme] {
  fill: var(--warn);
}

.fire-ping[data-astro-cid-lcdefpme] {
  fill: none;
  stroke: var(--warn);
  stroke-width: 1.5px;
  opacity: 0;
}

.chart-chips[data-astro-cid-lcdefpme] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chip[data-astro-cid-lcdefpme] {
  position: absolute;
  right: 4px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: #101113c2;
  box-shadow: inset 0 1px #ffffff12;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-variant-numeric: tabular-nums;
  color: var(--fg-muted);
  white-space: nowrap;
}

.chip--target[data-astro-cid-lcdefpme] {
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 40%, transparent);
}

.chip--armed[data-astro-cid-lcdefpme] {
  color: var(--warn);
  border-color: color-mix(in srgb, var(--warn) 40%, transparent);
}

.chip--met[data-astro-cid-lcdefpme] {
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 45%, transparent);
  background: color-mix(in srgb, var(--ok) 16%, #101113);
}

.chip--stop[data-astro-cid-lcdefpme] {
  color: var(--loss);
  border-color: color-mix(in srgb, var(--loss) 42%, transparent);
}

.chip--wake[data-astro-cid-lcdefpme] {
  color: var(--warn);
}

.chip--mark[data-astro-cid-lcdefpme] {
  color: #0b0f0d;
  background: var(--ok);
  border-color: var(--ok);
  font-weight: 600;
}

.chip--mark[data-astro-cid-lcdefpme] .pnl-window[data-astro-cid-lcdefpme] {
  height: 1.3em;
}

.chip--mark[data-astro-cid-lcdefpme] .pnl-step[data-astro-cid-lcdefpme] {
  color: inherit;
  text-align: left;
}

.chip--reassess[data-astro-cid-lcdefpme] {
  top: auto;
  bottom: 8px;
  right: 12%;
  transform: none;
  color: var(--warn);
  border-color: color-mix(in srgb, var(--warn) 38%, transparent);
  border-radius: 999px;
}

.pos-card[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.pos-head[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 6px;
}

.pos-unreal[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ok);
  transform-origin: 100%;
}

.pos-usd[data-astro-cid-lcdefpme] {
  font-size: 12.5px;
}

.pos-cols[data-astro-cid-lcdefpme], .pos-row[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr) minmax(0, .7fr) minmax(0, .8fr) 44px;
  gap: 10px;
  align-items: center;
  padding: 5px 12px;
}

.pos-cols[data-astro-cid-lcdefpme] {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  border-bottom: 1px solid var(--border);
}

.pos-row[data-astro-cid-lcdefpme] {
  font-size: 11px;
  color: var(--fg-muted);
}

.pos-row[data-astro-cid-lcdefpme] + .pos-row[data-astro-cid-lcdefpme] {
  border-top: 1px solid color-mix(in srgb, var(--border) 45%, transparent);
}

.ta-r[data-astro-cid-lcdefpme] {
  text-align: right;
}

.ta-r[data-astro-cid-lcdefpme] .pnl-window[data-astro-cid-lcdefpme] {
  margin-left: auto;
  width: max-content;
}

.pos-time[data-astro-cid-lcdefpme] {
  color: var(--fg-faint);
  font-size: 10px;
}

.pos-none[data-astro-cid-lcdefpme] {
  color: var(--fg-faint);
}

.pos-state[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pos-pill[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  color: var(--ok);
  border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent);
  background: color-mix(in srgb, var(--ok) 9%, transparent);
  white-space: nowrap;
}

.pos-pill[data-astro-cid-lcdefpme] b[data-astro-cid-lcdefpme] {
  font-weight: 500;
  padding: 0 3px;
  border-radius: 3px;
  background: color-mix(in srgb, currentColor 16%, transparent);
}

.pos-token[data-astro-cid-lcdefpme] {
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pos-token--open[data-astro-cid-lcdefpme] {
  color: var(--chart-blue);
}

.pos-token--working[data-astro-cid-lcdefpme] {
  color: var(--warn);
}

.pos-token--won[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.pos-token--done[data-astro-cid-lcdefpme].armed-state--met {
  color: var(--fg-faint);
}

.pnl-window[data-astro-cid-lcdefpme] {
  display: block;
  height: 1.3em;
  overflow: hidden;
}

.pnl-reel[data-astro-cid-lcdefpme], .pct-reel[data-astro-cid-lcdefpme], .mark-reel[data-astro-cid-lcdefpme], .roi-reel[data-astro-cid-lcdefpme] {
  display: block;
  transform: translateY(-41.6em);
}

.pnl-step[data-astro-cid-lcdefpme] {
  display: block;
  height: 1.3em;
  line-height: 1.3em;
  text-align: right;
  color: var(--ok);
}

.pnl-step--down[data-astro-cid-lcdefpme] {
  color: var(--loss);
}

.progress-track[data-astro-cid-lcdefpme] {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: #ffffff14;
  overflow: hidden;
}

.progress-fill[data-astro-cid-lcdefpme] {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: var(--chart-blue);
  transform-origin: 0;
}

.progress-label[data-astro-cid-lcdefpme] {
  flex: none;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  color: var(--fg-dim);
  white-space: nowrap;
}

.progress-label[data-astro-cid-lcdefpme] .pnl-window[data-astro-cid-lcdefpme] {
  height: 1.3em;
}

.progress-label[data-astro-cid-lcdefpme] .pnl-step[data-astro-cid-lcdefpme] {
  color: inherit;
}

.armed-swap[data-astro-cid-lcdefpme] {
  position: relative;
  display: grid;
  flex-shrink: 0;
}

.armed-swap[data-astro-cid-lcdefpme] .armed-state[data-astro-cid-lcdefpme] {
  grid-area: 1 / 1;
}

.armed-state--met[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.armed-state--wait[data-astro-cid-lcdefpme] {
  opacity: 0;
}

.console-success[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 13px 16px;
  border: 1px solid color-mix(in srgb, var(--ok) 34%, transparent);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, color-mix(in srgb, var(--ok) 11%, transparent), transparent 62%),
      #09090be6;
}

.success-head[data-astro-cid-lcdefpme] {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: color-mix(in srgb, var(--ok) 55%, white);
  flex: none;
}

.success-facts[data-astro-cid-lcdefpme] {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--fg-dim);
}

.mission-notes[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0;
  padding-bottom: 76px;
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.note[data-astro-cid-lcdefpme] {
  padding: 22px 30px 0 0;
}

.note[data-astro-cid-lcdefpme] + .note[data-astro-cid-lcdefpme] {
  padding-left: 30px;
  border-left: 1px solid var(--border);
}

.note[data-astro-cid-lcdefpme] h3[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 7px;
}

.note[data-astro-cid-lcdefpme] h3[data-astro-cid-lcdefpme] .tick[data-astro-cid-lcdefpme] {
  width: 13px;
  height: 13px;
  align-self: center;
}

.note[data-astro-cid-lcdefpme] p[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.sec-checks[data-astro-cid-lcdefpme] {
  padding: 0;
  background: #08080a;
}

.checks-scroller[data-astro-cid-lcdefpme] {
  min-height: 0;
}

.checks-sticky[data-astro-cid-lcdefpme] {
  padding: 92px 0 104px;
}

.checks-inner[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 64px;
  align-items: center;
}

.rail-list[data-astro-cid-lcdefpme] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.rail-list[data-astro-cid-lcdefpme] li[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 18px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.rail-list[data-astro-cid-lcdefpme] strong[data-astro-cid-lcdefpme] {
  color: var(--fg);
  font-weight: 500;
}

.preview-card[data-astro-cid-lcdefpme] {
  padding: 20px;
  background: #09090bb3;
}

.preview-head[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.preview-title[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 13px;
}

.preview-tally[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.tally-window[data-astro-cid-lcdefpme] {
  display: block;
  height: 1.25em;
  overflow: hidden;
}

.tally-reel[data-astro-cid-lcdefpme] {
  display: block;
  transform: translateY(-21.25em);
}

.tally-reel[data-astro-cid-lcdefpme] span[data-astro-cid-lcdefpme] {
  display: block;
  height: 1.25em;
  line-height: 1.25em;
  font-variant-numeric: tabular-nums;
  text-align: right;
  min-width: 2ch;
}

.tally-total[data-astro-cid-lcdefpme] {
  color: var(--fg-dim);
  font-size: 11px;
}

.preview-list[data-astro-cid-lcdefpme] {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.preview-list[data-astro-cid-lcdefpme] li[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
}

.preview-list[data-astro-cid-lcdefpme] li[data-astro-cid-lcdefpme] svg[data-astro-cid-lcdefpme] {
  color: var(--ok);
  flex-shrink: 0;
}

.preview-check-label[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  flex: 1;
}

.preview-check-detail[data-astro-cid-lcdefpme] {
  color: var(--fg-faint);
  font-size: 11px;
}

.preview-verdict[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.preview-stamp[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 999px;
}

.preview-verdict-note[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
}

.controls-strip[data-astro-cid-lcdefpme] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.controls-strip-label[data-astro-cid-lcdefpme] {
  font-size: 12px;
  color: var(--fg-dim);
  margin-right: 4px;
}

.control-chip[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff05;
}

.harness-grid[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.harness[data-astro-cid-lcdefpme] {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
  background: linear-gradient(#ffffff05, #0000);
  transition: background .2s;
}

.harness[data-astro-cid-lcdefpme]:last-child {
  border-right: 0;
}

.harness[data-astro-cid-lcdefpme]:hover {
  background: #ffffff09;
}

.harness-top[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: 10px;
}

.harness-mark[data-astro-cid-lcdefpme] {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.harness-mark[data-astro-cid-lcdefpme] img[data-astro-cid-lcdefpme] {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.harness-name[data-astro-cid-lcdefpme] {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
}

.harness-cmd[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-muted);
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  background: #00000059;
  border: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
}

.harness-tag[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: auto;
}

.harness-tag--trades[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.arming-inner[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.arming-card[data-astro-cid-lcdefpme] {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.arming-row[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arming-state[data-astro-cid-lcdefpme] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.arming-dot[data-astro-cid-lcdefpme] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.arming-state--safe[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
}

.arming-state--safe[data-astro-cid-lcdefpme] .arming-dot[data-astro-cid-lcdefpme] {
  background: var(--fg-dim);
}

.arming-state--armed[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.arming-state--armed[data-astro-cid-lcdefpme] .arming-dot[data-astro-cid-lcdefpme] {
  background: var(--ok);
  animation: 2s ease-in-out infinite pulse;
}

.arming-desc[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.5;
}

.arming-divider[data-astro-cid-lcdefpme] {
  height: 1px;
  background: var(--border);
}

.state-grid[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.state-card[data-astro-cid-lcdefpme] {
  padding: 26px 24px;
}

.state-card-label[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.state-card-label--is[data-astro-cid-lcdefpme] {
  color: var(--ok);
}

.state-card-label--isnt[data-astro-cid-lcdefpme] {
  color: var(--warn);
}

.state-card[data-astro-cid-lcdefpme] ul[data-astro-cid-lcdefpme] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.state-card[data-astro-cid-lcdefpme] li[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.state-card[data-astro-cid-lcdefpme] li[data-astro-cid-lcdefpme]:before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 6px;
  height: 1px;
  background: var(--fg-faint);
}

.open-inner[data-astro-cid-lcdefpme] {
  max-width: 760px;
}

.open-eyebrow[data-astro-cid-lcdefpme] {
  color: var(--accent);
  margin-bottom: 16px;
}

.open-title[data-astro-cid-lcdefpme] {
  max-width: 20ch;
}

.open-actions[data-astro-cid-lcdefpme] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sec-cta[data-astro-cid-lcdefpme] {
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.sec-cta[data-astro-cid-lcdefpme]:before {
  content: "";
  position: absolute;
  inset: auto 0 -50%;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
  opacity: .6;
}

.cta-inner[data-astro-cid-lcdefpme] {
  position: relative;
}

.cta-title[data-astro-cid-lcdefpme] {
  font-size: clamp(38px, 5.6vw, 66px);
}

.cta-sub[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 520px;
  margin: 20px auto 34px;
  line-height: 1.55;
  letter-spacing: -.005em;
}

.cta-actions[data-astro-cid-lcdefpme] {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-release[data-astro-cid-lcdefpme] {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .02em;
}

.cta-release[data-astro-cid-lcdefpme] span[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
}

.cta-install-label[data-astro-cid-lcdefpme] {
  margin: 26px 0 8px;
  color: var(--fg-dim);
  font-size: 12px;
  letter-spacing: .02em;
}

.cta-install[data-astro-cid-lcdefpme] {
  margin: 0 auto;
  max-width: 640px;
  overflow-x: auto;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #00000040;
  text-align: left;
}

.cta-install[data-astro-cid-lcdefpme] code[data-astro-cid-lcdefpme] {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  white-space: pre;
}

.cta-install--sm[data-astro-cid-lcdefpme] {
  margin-top: 14px;
  max-width: 560px;
}

.cta-note[data-astro-cid-lcdefpme] {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--fg-dim);
  font-size: 13px;
  line-height: 1.6;
}

.cta-note[data-astro-cid-lcdefpme] a[data-astro-cid-lcdefpme] {
  color: var(--fg-muted);
  text-decoration: underline;
  text-decoration-color: #a1a1aa66;
  text-underline-offset: 3px;
}

.cta-note[data-astro-cid-lcdefpme] a[data-astro-cid-lcdefpme]:hover {
  color: var(--fg);
  text-decoration-color: var(--fg);
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .tape-track[data-astro-cid-lcdefpme] {
      animation: linear both tape-run;
      animation-timeline: scroll(root);
    }

    @keyframes tape-run {
      to {
        transform: translateX(-50%);
      }
    }

    .mission-scroller[data-astro-cid-lcdefpme] {
      view-timeline-name: --mission;
      view-timeline-axis: block;
    }

    .payoff[data-astro-cid-lcdefpme], .grid[data-astro-cid-lcdefpme], .level[data-astro-cid-lcdefpme], .fire-dot[data-astro-cid-lcdefpme], .fire-ping[data-astro-cid-lcdefpme], .wedge[data-astro-cid-lcdefpme], .chip[data-astro-cid-lcdefpme], .dip[data-astro-cid-lcdefpme], .stop-hold[data-astro-cid-lcdefpme], .stop-hold-label[data-astro-cid-lcdefpme], .target-hit[data-astro-cid-lcdefpme], .target-ping[data-astro-cid-lcdefpme], .target-check[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme], .pnl-reel[data-astro-cid-lcdefpme], .pct-reel[data-astro-cid-lcdefpme], .mark-reel[data-astro-cid-lcdefpme], .roi-reel[data-astro-cid-lcdefpme], .pos-unreal[data-astro-cid-lcdefpme], .log-pnl[data-astro-cid-lcdefpme], .progress-fill[data-astro-cid-lcdefpme], .pos-row[data-astro-cid-lcdefpme], .sb-pred[data-astro-cid-lcdefpme], .armed-state--met[data-astro-cid-lcdefpme], .armed-state--wait[data-astro-cid-lcdefpme], .rr-seg[data-astro-cid-lcdefpme], .console-success[data-astro-cid-lcdefpme], .log-row[data-astro-cid-lcdefpme], .mission-sticky[data-astro-cid-lcdefpme] .tick[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
      animation-timeline: --mission;
      animation-range: contain var(--from) contain var(--to);
    }

    .log-row[data-astro-cid-lcdefpme], .pos-row[data-astro-cid-lcdefpme], .sb-pred[data-astro-cid-lcdefpme] {
      animation-name: check-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .price-line[data-astro-cid-lcdefpme], .price-wash[data-astro-cid-lcdefpme], .price-dot[data-astro-cid-lcdefpme] {
      animation-timeline: --mission;
      animation-range: contain;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }

    .price-line[data-astro-cid-lcdefpme] {
      animation-name: price-draw;
    }

    .price-wash[data-astro-cid-lcdefpme] {
      animation-name: price-wash;
    }

    .price-dot[data-astro-cid-lcdefpme] {
      animation-name: price-ride;
    }

    .chip[data-astro-cid-lcdefpme] {
      animation-name: chip-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes chip-in {
      from {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
      }

      to {
        opacity: 1;
        transform: translateY(-50%);
      }
    }

    .chip--armed[data-astro-cid-lcdefpme], .chip--met[data-astro-cid-lcdefpme], .chip--mark[data-astro-cid-lcdefpme] {
      animation-name: chip-flash;
    }

    @keyframes chip-flash {
      0% {
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
      }

      10% {
        opacity: 1;
        transform: translateY(-50%);
      }

      84% {
        opacity: 1;
        transform: translateY(-50%);
      }

      100% {
        opacity: 0;
        transform: translateY(-50%);
      }
    }

    .chip--reassess[data-astro-cid-lcdefpme] {
      animation-name: reassess-flash;
    }

    @keyframes reassess-flash {
      0% {
        opacity: 0;
      }

      14% {
        opacity: 1;
      }

      86% {
        opacity: 1;
      }

      100% {
        opacity: 0;
      }
    }

    .wedge[data-astro-cid-lcdefpme] {
      animation-name: zone-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .mission-dim[data-astro-cid-lcdefpme], .appwin[data-astro-cid-lcdefpme], .status-reel[data-astro-cid-lcdefpme] {
      animation-timeline: --mission;
      animation-range: contain;
      animation-fill-mode: both;
      animation-timing-function: linear;
    }

    .mission-dim[data-astro-cid-lcdefpme] {
      animation-name: dim-hold;
    }

    @keyframes dim-hold {
      0% {
        opacity: 0;
      }

      7% {
        opacity: .85;
      }

      90% {
        opacity: .85;
      }

      100% {
        opacity: .55;
      }
    }

    .appwin[data-astro-cid-lcdefpme] {
      animation-name: win-live;
    }

    @keyframes win-live {
      0% {
        transform: scale(.965) translateY(14px);
        box-shadow: inset 0 1px #ffffff17, 0 42px 110px -42px #000000f2;
      }

      8% {
        transform: none;
      }

      86% {
        box-shadow: inset 0 1px #ffffff17, 0 42px 110px -42px #000000f2;
      }

      94%, 100% {
        transform: none;
        box-shadow: inset 0 1px 0 #ffffff17,
            0 42px 110px -42px #000000f2,
            0 0 90px -18px color-mix(in srgb, var(--ok) 34%, transparent);
      }
    }

    .status-reel[data-astro-cid-lcdefpme] {
      animation-name: status-walk;
    }

    @keyframes status-walk {
      0%, 17.9% {
        transform: translateY(0);
      }

      18%, 46.9% {
        transform: translateY(-1.5em);
      }

      47%, 90.9% {
        transform: translateY(-3em);
      }

      91%, 100% {
        transform: translateY(-4.5em);
      }
    }

    .payoff[data-astro-cid-lcdefpme] {
      animation-name: payoff-land;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes payoff-land {
      0% {
        opacity: 0;
        transform: scale(.68);
        filter: none;
      }

      40% {
        opacity: 1;
        transform: scale(1.14);
        filter: drop-shadow(0 0 26px color-mix(in srgb, var(--ok) 80%, transparent));
      }

      70% {
        transform: scale(.97);
      }

      100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 14px color-mix(in srgb, var(--ok) 42%, transparent));
      }
    }

    @keyframes zone-in {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .level[data-astro-cid-lcdefpme] {
      animation-name: level-draw;
      animation-timing-function: linear;
      animation-fill-mode: both;
      transform-origin: 0;
    }

    @keyframes level-draw {
      from {
        opacity: 0;
        transform: scaleX(.02);
      }

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

    .fire-dot[data-astro-cid-lcdefpme] {
      animation-name: zone-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .fire-ping[data-astro-cid-lcdefpme] {
      animation-name: fire-ping;
      animation-timing-function: linear;
      animation-fill-mode: both;
      transform-origin: center;
      transform-box: fill-box;
    }

    @keyframes fire-ping {
      0% {
        opacity: 0;
        transform: scale(.4);
      }

      12% {
        opacity: .9;
        transform: scale(.55);
      }

      100% {
        opacity: 0;
        transform: scale(3.4);
      }
    }

    .pnl-reel[data-astro-cid-lcdefpme], .pct-reel[data-astro-cid-lcdefpme], .mark-reel[data-astro-cid-lcdefpme], .roi-reel[data-astro-cid-lcdefpme] {
      animation-name: pnl-count;
      animation-timing-function: steps(32, end);
      animation-fill-mode: both;
    }

    @keyframes pnl-count {
      from {
        transform: translateY(0);
      }

      to {
        transform: translateY(-41.6em);
      }
    }

    .pos-unreal[data-astro-cid-lcdefpme], .log-pnl[data-astro-cid-lcdefpme] {
      animation-name: pnl-flash;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes pnl-flash {
      0% {
        transform: scale(1);
        filter: none;
      }

      45% {
        transform: scale(1.16);
        filter: drop-shadow(0 0 18px color-mix(in srgb, var(--ok) 75%, transparent));
      }

      100% {
        transform: scale(1);
        filter: drop-shadow(0 0 7px color-mix(in srgb, var(--ok) 30%, transparent));
      }
    }

    .grid[data-astro-cid-lcdefpme], .dip[data-astro-cid-lcdefpme], .target-hit[data-astro-cid-lcdefpme] {
      animation-name: zone-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .stop-hold[data-astro-cid-lcdefpme] {
      animation-name: stop-flare;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes stop-flare {
      0% {
        opacity: 0;
        stroke-width: 1px;
      }

      40% {
        opacity: 1;
        stroke-width: 4px;
      }

      100% {
        opacity: .32;
        stroke-width: 2px;
      }
    }

    .stop-hold-label[data-astro-cid-lcdefpme] {
      animation-name: check-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .target-ping[data-astro-cid-lcdefpme] {
      animation-name: target-ping;
      animation-timing-function: linear;
      animation-fill-mode: both;
      transform-origin: center;
      transform-box: fill-box;
    }

    @keyframes target-ping {
      0% {
        opacity: 0;
        transform: scale(.5);
      }

      30% {
        opacity: .95;
        transform: scale(1.1);
      }

      100% {
        opacity: 0;
        transform: scale(3.6);
      }
    }

    .target-check[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
      stroke-dashoffset: 1px;
      animation-name: scrub-draw;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .rr-seg[data-astro-cid-lcdefpme] {
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .rr-seg--risk[data-astro-cid-lcdefpme] {
      animation-name: measure-down;
    }

    .rr-seg--reward[data-astro-cid-lcdefpme] {
      animation-name: measure-up;
    }

    @keyframes measure-down {
      from {
        clip-path: inset(0 0 0 100%);
      }

      to {
        clip-path: inset(0);
      }
    }

    @keyframes measure-up {
      from {
        clip-path: inset(0 100% 0 0);
      }

      to {
        clip-path: inset(0);
      }
    }

    .mission-sticky[data-astro-cid-lcdefpme] .tick[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
      stroke-dashoffset: 1px;
      animation-name: scrub-draw;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .console-success[data-astro-cid-lcdefpme] {
      animation-name: success-land;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes success-land {
      from {
        opacity: 0;
        transform: translateY(10px);
        border-color: var(--border);
      }

      to {
        opacity: 1;
        transform: none;
        border-color: color-mix(in srgb, var(--ok) 34%, transparent);
      }
    }

    .progress-fill[data-astro-cid-lcdefpme] {
      animation-name: progress-arc;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes progress-arc {
      0% {
        transform: scaleX(0);
      }

      31.25% {
        transform: scaleX(.224);
      }

      56.25% {
        transform: scaleX(0);
      }

      100% {
        transform: scaleX(1);
      }
    }

    .armed-state--met[data-astro-cid-lcdefpme] {
      animation-name: zone-in;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    .armed-state--wait[data-astro-cid-lcdefpme] {
      animation-name: state-cleared;
      animation-timing-function: linear;
      animation-fill-mode: both;
    }

    @keyframes state-cleared {
      from {
        opacity: 1;
      }

      to {
        opacity: 0;
      }
    }

    .mission-notes[data-astro-cid-lcdefpme] {
      view-timeline-name: --notes;
      view-timeline-axis: block;
    }

    .note[data-astro-cid-lcdefpme] h3[data-astro-cid-lcdefpme] .tick[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
      stroke-dashoffset: 1px;
      animation-name: scrub-draw;
      animation-timing-function: linear;
      animation-fill-mode: both;
      animation-timeline: --notes;
      animation-range: cover var(--from) cover var(--to);
    }

    .checks-scroller[data-astro-cid-lcdefpme] {
      view-timeline-name: --checks;
      view-timeline-axis: block;
    }

    .preview-list[data-astro-cid-lcdefpme] li[data-astro-cid-lcdefpme] {
      animation: linear both check-in;
      animation-timeline: --checks;
    }

    @keyframes check-in {
      from {
        opacity: .12;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .tally-reel[data-astro-cid-lcdefpme] {
      animation: steps(17, end) both tally-count;
      animation-timeline: --checks;
      animation-range: cover 16% cover 56%;
    }

    @keyframes tally-count {
      from {
        transform: translateY(0);
      }

      to {
        transform: translateY(-21.25em);
      }
    }

    .preview-stamp[data-astro-cid-lcdefpme] {
      animation: linear both stamp-land;
      animation-timeline: --checks;
      animation-range: cover 56% cover 64%;
    }

    .preview-verdict-note[data-astro-cid-lcdefpme] {
      animation: linear both check-in;
      animation-timeline: --checks;
      animation-range: cover 60% cover 68%;
    }

    @keyframes stamp-land {
      from {
        opacity: 0;
        transform: scale(1.4) rotate(-5deg);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .control-chip[data-astro-cid-lcdefpme] {
      animation: linear both check-in;
      animation-timeline: --checks;
    }
  }
}

@media (width <= 1080px), (height <= 860px) {
  .mission-scroller[data-astro-cid-lcdefpme] {
    min-height: 0;
    margin-top: 32px;
  }

  .mission-sticky[data-astro-cid-lcdefpme] {
    position: static;
    min-height: 0;
    padding: 0;
  }

  .mission-dim[data-astro-cid-lcdefpme] {
    display: none;
  }

  .appwin[data-astro-cid-lcdefpme] {
    animation: none;
  }

  .status-reel[data-astro-cid-lcdefpme], .price-line[data-astro-cid-lcdefpme], .price-wash[data-astro-cid-lcdefpme], .price-dot[data-astro-cid-lcdefpme] {
    animation-range: cover var(--pass-base)
        cover calc(var(--pass-base) + 100% * var(--pass));
  }

  .payoff[data-astro-cid-lcdefpme], .grid[data-astro-cid-lcdefpme], .level[data-astro-cid-lcdefpme], .fire-dot[data-astro-cid-lcdefpme], .fire-ping[data-astro-cid-lcdefpme], .wedge[data-astro-cid-lcdefpme], .chip[data-astro-cid-lcdefpme], .dip[data-astro-cid-lcdefpme], .stop-hold[data-astro-cid-lcdefpme], .stop-hold-label[data-astro-cid-lcdefpme], .target-hit[data-astro-cid-lcdefpme], .target-ping[data-astro-cid-lcdefpme], .target-check[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme], .pnl-reel[data-astro-cid-lcdefpme], .pct-reel[data-astro-cid-lcdefpme], .mark-reel[data-astro-cid-lcdefpme], .roi-reel[data-astro-cid-lcdefpme], .pos-unreal[data-astro-cid-lcdefpme], .log-pnl[data-astro-cid-lcdefpme], .progress-fill[data-astro-cid-lcdefpme], .pos-row[data-astro-cid-lcdefpme], .sb-pred[data-astro-cid-lcdefpme], .armed-state--met[data-astro-cid-lcdefpme], .armed-state--wait[data-astro-cid-lcdefpme], .rr-seg[data-astro-cid-lcdefpme], .console-success[data-astro-cid-lcdefpme], .log-row[data-astro-cid-lcdefpme], .mission-sticky[data-astro-cid-lcdefpme] .tick[data-astro-cid-lcdefpme] path[data-astro-cid-lcdefpme] {
    animation-range: cover calc(var(--pass-base) + var(--from) * var(--pass))
        cover calc(var(--pass-base) + var(--to) * var(--pass));
  }

  .mission-scroller[data-astro-cid-lcdefpme] {
    --pass: .42;
    --pass-base: 13%;
  }
}

@media (width <= 1080px) {
  .checks-inner[data-astro-cid-lcdefpme], .arming-inner[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .appwin-body[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
  }

  .appwin-side[data-astro-cid-lcdefpme] {
    display: none;
  }

  .panel-row[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
  }

  .statusbar[data-astro-cid-lcdefpme] {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .mission-notes[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding-bottom: 72px;
  }

  .note[data-astro-cid-lcdefpme] {
    padding: 20px 0 0;
  }

  .note[data-astro-cid-lcdefpme] + .note[data-astro-cid-lcdefpme] {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .console-success[data-astro-cid-lcdefpme] {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .success-facts[data-astro-cid-lcdefpme] {
    margin-left: 0;
    width: 100%;
  }

  .rr[data-astro-cid-lcdefpme] {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .rr-bar[data-astro-cid-lcdefpme] {
    flex: none;
  }

  .rr-note[data-astro-cid-lcdefpme] {
    max-width: none;
  }

  .level[data-astro-cid-lcdefpme] text[data-astro-cid-lcdefpme] {
    font-size: 21px;
    stroke-width: 6px;
  }

  .level[data-astro-cid-lcdefpme] line[data-astro-cid-lcdefpme] {
    stroke-dasharray: 7 7;
  }

  .grid[data-astro-cid-lcdefpme] text[data-astro-cid-lcdefpme] {
    font-size: 19px;
  }

  .dip-label[data-astro-cid-lcdefpme], .stop-hold-label[data-astro-cid-lcdefpme], .target-pays[data-astro-cid-lcdefpme] {
    font-size: 20px;
    stroke-width: 6px;
  }

  .harness-grid[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr 1fr;
  }

  .harness[data-astro-cid-lcdefpme] {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .harness[data-astro-cid-lcdefpme]:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .harness[data-astro-cid-lcdefpme]:nth-child(5):last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (width <= 820px) {
  section[data-astro-cid-lcdefpme] {
    padding: 76px 0;
  }

  .sec-tape[data-astro-cid-lcdefpme] {
    padding: 0 0 72px;
  }

  .sec-checks[data-astro-cid-lcdefpme] {
    padding: 0;
  }

  .checks-sticky[data-astro-cid-lcdefpme] {
    padding: 60px 0 76px;
  }

  .console-success[data-astro-cid-lcdefpme] {
    flex-wrap: nowrap;
  }

  .success-facts[data-astro-cid-lcdefpme] {
    display: none;
  }

  .sec-cta[data-astro-cid-lcdefpme] {
    padding: 96px 0;
  }

  .container[data-astro-cid-lcdefpme] {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero[data-astro-cid-lcdefpme] {
    padding-top: 84px;
  }

  .hero-eyebrow[data-astro-cid-lcdefpme] {
    font-size: 10px;
    letter-spacing: .1em;
  }

  .hero-title[data-astro-cid-lcdefpme] {
    font-size: clamp(34px, 9.4vw, 50px);
  }

  .section-title[data-astro-cid-lcdefpme] {
    max-width: none;
  }

  .state-grid[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
  }

  .appwin-body[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
  }

  .log-feed[data-astro-cid-lcdefpme] {
    padding: 6px;
  }

  .composer[data-astro-cid-lcdefpme] {
    display: none;
  }

  .crumb-title[data-astro-cid-lcdefpme], .crumb-sep[data-astro-cid-lcdefpme] {
    display: none;
  }

  .pos-cols[data-astro-cid-lcdefpme], .pos-row[data-astro-cid-lcdefpme] {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr) minmax(0, .7fr) minmax(0, .9fr);
    gap: 8px;
  }

  .pos-time[data-astro-cid-lcdefpme], .pos-cols[data-astro-cid-lcdefpme] span[data-astro-cid-lcdefpme]:nth-child(5) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow[data-astro-cid-lcdefpme], .hero-title[data-astro-cid-lcdefpme], .hero-sub[data-astro-cid-lcdefpme], .hero-actions[data-astro-cid-lcdefpme] {
    animation: none;
  }

  .composer-caret[data-astro-cid-lcdefpme] {
    animation: none;
  }

  .arming-state--armed[data-astro-cid-lcdefpme] .arming-dot[data-astro-cid-lcdefpme] {
    animation: none;
  }

  .tape[data-astro-cid-lcdefpme][data-state="loading"] .tape-px[data-astro-cid-lcdefpme] {
    animation: none;
  }
}
