/* BigScreen on top of the original stylesheet: the blue identity of the
   original site, on the near black of a Times Square night. --primary is the
   accent for text, rings and highlights (6:1 on the background); text on a
   --primary fill uses the deep navy --primary-foreground. --gold is the light
   sky blue used for sparklines and callouts. The screens themselves carry the
   only other colour on the page, the LED white and amber of the square. */
:root {
  --primary: #1f8fff;
  --primary-foreground: #04121f;
  --gold: #7cc4ff;
  --gold-ink: #04213f;
  --led: #ffd166;
  --led-hot: #ff3d7f;
}
html, body { background-color: var(--background); }

.focus-ring:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 2px;
}

.receipt-paper {
  background: #f7f1e3;
}

input[type='range'].accent-primary {
  accent-color: var(--primary);
}

/* Lightweight Charts draws into a canvas that must fill its box. */
.chart-box > div {
  position: absolute;
  inset: 0;
}

/* utilities used here that the original page set never used */
.bg-black\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.border-up {
  border-color: var(--up);
}
.duration-150 {
  transition-duration: 0.15s;
}
.max-h-\[70vh\] {
  max-height: 70vh;
}
.overflow-auto {
  overflow: auto;
}
.p-10 {
  padding: 2.5rem;
}
.top-12 {
  top: 3rem;
}
.right-0 {
  right: 0;
}
.z-\[60\] {
  z-index: 60;
}
.\[\&_\.text-muted-foreground\]\:text-background\/70 .text-muted-foreground {
  color: color-mix(in oklab, var(--background) 70%, transparent);
}
.hover\:shadow-primary:hover {
  box-shadow: 0 12px 30px -10px rgba(31, 143, 255, 0.55);
}

@layer components {
  /* Buttons. One system for every action on the site: a solid face, a crisp
     1px edge and a solid bottom lip that the button sinks into when pressed. No
     pills, no glow, no arrows. */
  .btn {
    --lip: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0 1.25rem;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 3px 0 var(--lip);
    transform: translateY(0);
    transition: transform 80ms ease, box-shadow 80ms ease, background-color 120ms ease;
    cursor: pointer;
    user-select: none;
  }
  .btn:hover {
    transform: translateY(1px);
    box-shadow: 0 2px 0 var(--lip);
  }
  .btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 var(--lip);
  }
  .btn:focus-visible {
    outline: 2px solid var(--foreground);
    outline-offset: 3px;
  }
  .btn:disabled,
  .btn[aria-disabled='true'] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 3px 0 var(--lip);
  }
  .btn-sm {
    height: 2.125rem;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
    border-radius: 8px;
  }
  .btn-lg {
    height: 3rem;
    padding: 0 1.75rem;
    font-size: 1rem;
    border-radius: 12px;
  }
  .btn-primary {
    --lip: #0b3f7a;
    background: #1673d9;
    border-color: #1260b8;
    color: #fff;
  }
  .btn-primary:hover {
    background: #1a7be4;
  }
  .btn-dark {
    --lip: #000;
    background: #1b1b1b;
    border-color: #3a3a3a;
    color: var(--foreground);
  }
  .btn-dark:hover {
    background: #232323;
  }
  .btn-light {
    --lip: #7d7d7d;
    background: #f4f4f4;
    border-color: #d6d6d6;
    color: #0a0a0a;
  }
  .btn-light:hover {
    background: #fff;
  }
  .btn-icon {
    width: 2.5rem;
    padding: 0;
  }
}

@layer components {
  .flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  @media (min-width: 640px) {
    .flow-steps {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
  }
}

/* The brand glyph shows the mark in colour, not a silhouette tinted with the
   text colour. Doubled class so it wins over the compiled rule. */
.brand-glyph.brand-glyph {
  background: url(/brand/mark.svg) 50% / contain no-repeat;
  -webkit-mask: none;
  mask: none;
}

/* Utilities these pages use that the original page set never did. */
.-mt-12 { margin-top: -3rem; }
.accent-\[var\(--primary\)\] { accent-color: var(--primary); }
.align-\[-0\.1em\] { vertical-align: -0.1em; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.bg-transparent { background-color: transparent; }
.blur-2xl { filter: blur(40px); }
.capitalize { text-transform: capitalize; }
.fee-rail { padding-top: 4px; }
.gap-\[0\.18em\] { gap: 0.18em; }
.gap-x-4 { column-gap: 1rem; }
.grid-cols-\[112px_minmax\(0\,1fr\)\] { grid-template-columns: 112px minmax(0, 1fr); }
.grid-cols-\[20px_minmax\(0\,1fr\)\] { grid-template-columns: 20px minmax(0, 1fr); }
.grid-cols-\[48px_minmax\(0\,1fr\)_auto\] { grid-template-columns: 48px minmax(0, 1fr) auto; }
.h-20 { height: 5rem; }
.h-28 { height: 7rem; }
.left-3 { left: 0.75rem; }
.max-h-\[340px\] { max-height: 340px; }
.max-h-\[82\%\] { max-height: 82%; }
.max-w-\[86\%\] { max-width: 86%; }
.min-h-\[320px\] { min-height: 320px; }
.object-contain { object-fit: contain; }
.pb-10 { padding-bottom: 2.5rem; }
.pl-9 { padding-left: 2.25rem; }
.pr-1 { padding-right: 0.25rem; }
.pt-0\.5 { padding-top: 0.125rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.ring-primary { --tw-ring-color: var(--primary); }
.scale-150 { scale: 1.5; }
.top-3 { top: 0.75rem; }
.w-1 { width: 0.25rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-28 { width: 7rem; }
.z-\[1\] { z-index: 1; }
@media (min-width: 64rem) {
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:grid-cols-\[minmax\(0\,1fr\)_320px\] { grid-template-columns: minmax(0, 1fr) 320px; }
  .lg\:items-start { align-items: flex-start; }
}
.bg-\[\#cf6a32\] { background-color: #cf6a32; }
.bg-\[\#ffd700\] { background-color: #ffd700; }
.text-black { color: #000; }
.col-span-3 { grid-column: span 3 / span 3; }
.disabled\:opacity-40:disabled { opacity: 0.4; }
.grid-cols-\[20px_64px_minmax\(0\,1fr\)_auto\] { grid-template-columns: 20px 64px minmax(0, 1fr) auto; }
.h-1\.5 { height: 0.375rem; }
.bg-primary\/15 { background-color: color-mix(in oklab, var(--primary) 15%, transparent); }
.border-primary\/30 { border-color: color-mix(in oklab, var(--primary) 30%, transparent); }
.font-serif { font-family: Georgia, 'Times New Roman', serif; }
.whitespace-pre-line { white-space: pre-line; }
.bg-primary\/5 { background-color: color-mix(in oklab, var(--primary) 5%, transparent); }

/* Utilities the screen pages use. */
.aspect-video { aspect-ratio: 16 / 9; }
.gap-16 { gap: 4rem; }
.grid-cols-\[88px_minmax\(0\,1fr\)_48px\] { grid-template-columns: 88px minmax(0, 1fr) 48px; }
.h-16 { height: 4rem; }
.hover\:border-white\/25:hover { border-color: rgba(255, 255, 255, 0.25); }
.max-w-4xl { max-width: 56rem; }
.mb-5 { margin-bottom: 1.25rem; }
.z-\[5\] { z-index: 5; }
@media (min-width: 40rem) {
  .sm\:pt-8 { padding-top: 2rem; }
}
@media (min-width: 64rem) {
  .lg\:sticky { position: sticky; }
  .lg\:top-24 { top: 6rem; }
}
.text-\[30px\] { font-size: 30px; }
@media (min-width: 40rem) {
  .sm\:text-\[38px\] { font-size: 38px; }
}
@media (min-width: 64rem) {
  .lg\:grid-cols-\[minmax\(0\,1fr\)_400px\] { grid-template-columns: minmax(0, 1fr) 400px; }
}
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white { color: #fff; }
.mt-7 { margin-top: 1.75rem; }
.hover\:text-white:hover { color: #fff; }
.max-w-\[1040px\] { max-width: 1040px; }
.tracking-\[0\.08em\] { letter-spacing: 0.08em; }
.tracking-\[0\.1em\] { letter-spacing: 0.1em; }
.w-10 { width: 2.5rem; }
@media (min-width: 64rem) {
  .lg\:grid-cols-\[minmax\(0\,1\.25fr\)_minmax\(0\,1fr\)\] { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
  .lg\:grid-cols-\[minmax\(0\,1\.3fr\)_minmax\(0\,1fr\)\] { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
}
@media (min-width: 80rem) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.mb-1\.5 { margin-bottom: 0.375rem; }
.gap-24 { gap: 6rem; }
.hover\:text-primary:hover { color: var(--primary); }
.max-w-lg { max-width: 32rem; }
@media (min-width: 48rem) {
  .md\:table-cell { display: table-cell; }
}
@media (min-width: 64rem) {
  .lg\:grid-cols-\[minmax\(0\,1fr\)_minmax\(0\,1\.4fr\)\] { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
}
.max-w-\[760px\] { max-width: 760px; }
.max-w-xs { max-width: 20rem; }
.mr-2 { margin-right: 0.5rem; }
.pb-8 { padding-bottom: 2rem; }
.text-\[32px\] { font-size: 32px; }
@media (min-width: 40rem) {
  .sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (min-width: 48rem) {
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
