/* Premium. BigScreen as a Web3 company: near black with a trace of navy,
   thin borders, very discreet glass, one lime accent used sparingly, large
   bold type and Times Square doing the talking. Loaded last: every page keeps
   its layout, this settles how it looks. */

:root {
  --background: #06080b;
  --foreground: #f3f5f7;
  --card: #0c0f14;
  --panel: #10141a;
  --panel-2: #151a22;
  --border: rgba(255, 255, 255, 0.08);
  --muted-foreground: #9aa3ae;
  --primary: #eeede8;
  --primary-foreground: #080a06;
  --gold: #eeede8;
  --gold-ink: #080a06;
  --up: #eeede8;
  --live: #ff3b30;
  --glow: rgba(238, 237, 232, 0.35);
  --radius: 14px;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color-scheme: dark;
}
html,
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  letter-spacing: -0.005em;
}
body {
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(110, 110, 115, 0.18), transparent 60%),
    var(--background);
}
::selection {
  background: var(--primary);
  color: #080a06;
}
.font-mono,
code,
.digits {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}
.digits {
  text-shadow: none;
}

/* ------------------------------------------------------------ type */

.display,
.title,
.showcase-name,
.headline,
.bs-h1,
.bs-h2 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  line-height: 1.02;
}
.title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.08;
}
.display em,
.title em,
.headline em,
.bs-h1 em,
.bs-h2 em {
  font-style: normal;
  color: var(--primary);
}
.lede {
  color: var(--muted-foreground);
}
.kicker,
.eyebrow,
.bs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.kicker::before {
  display: none;
}

/* ------------------------------------------------------------ buttons */

.btn {
  height: 2.75rem;
  padding: 0 1.2rem;
  gap: 0.5rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.btn-lg {
  height: 3.25rem;
  padding: 0 1.6rem;
  border-radius: 12px;
  font-size: 0.975rem;
}
.btn-sm {
  height: 2.25rem;
  padding: 0 0.9rem;
  border-radius: 9px;
  font-size: 0.8125rem;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #080a06;
}
.btn-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(238, 237, 232, 0.14), 0 10px 30px -10px var(--glow) !important;
}
.btn-dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--foreground);
}
.btn-dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-light {
  background: #fff;
  border-color: #fff;
  color: #06080b;
}
.btn-outline {
  width: 100%;
  border: 1px solid rgba(238, 237, 232, 0.55);
  background: transparent;
  color: var(--foreground);
}
.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #080a06;
}
/* Arrows that step forward on hover. */
.bs-arrow svg {
  transition: transform 200ms ease;
}
.bs-arrow:hover svg {
  transform: translateX(3px);
}

/* ------------------------------------------------------------ surfaces */

.tile {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)), var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.card-lift:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 237, 232, 0.35);
}

/* ------------------------------------------------------------ header */

.sh {
  background: rgba(6, 8, 11, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(1.4) blur(16px);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
}
.sh.is-scrolled {
  background: rgba(6, 8, 11, 0.86);
  border-bottom-color: var(--border);
}
/* Over the opening of the home page the bar is clear until you scroll. */
.sh.is-home:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.sh-inner {
  height: 72px;
}
.sh-brand span {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
}
.sh-brand img {
  border-radius: 0;
}
.sh-nav a {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: rgba(243, 245, 247, 0.72);
  background: transparent !important;
}
.sh-nav a:hover {
  color: #fff;
}
.sh-nav a[aria-current='page'] {
  color: #fff;
}
.sh-nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}
.sh-social {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(243, 245, 247, 0.75);
  transition: color 150ms ease, background 150ms ease;
}
.sh-social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
@media (min-width: 64rem) {
  .sh-social {
    display: inline-flex;
  }
}
.sh-burger {
  border-color: rgba(255, 255, 255, 0.14);
}
.sh-sheet {
  background: var(--background);
}
.sh-sheet nav a {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------ home: hero */

.bs-hero {
  position: relative;
  overflow: hidden;
  margin-top: -112px;
  padding: calc(72px + clamp(40px, 6vw, 88px)) 0 clamp(56px, 7vw, 96px);
}
@media (max-width: 40rem) {
  .bs-hero {
    margin-top: -96px;
  }
}
.bs-hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(700px 420px at 78% 40%, rgba(238, 237, 232, 0.1), transparent 70%),
    radial-gradient(900px 600px at 10% 0%, rgba(110, 110, 115, 0.22), transparent 65%);
}
.bs-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .bs-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 4rem;
  }
}
.bs-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.bs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(238, 237, 232, 0.28);
  border-radius: 999px;
  background: rgba(238, 237, 232, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eeede8;
}
.bs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.bs-h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  line-height: 1.02;
}
.bs-lede {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted-foreground);
}
.bs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.bs-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 0.75rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  width: 100%;
}
@media (min-width: 48rem) {
  .bs-trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.bs-trust li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
}
.bs-trust small {
  display: block;
  font-weight: 500;
  color: var(--muted-foreground);
}
.bs-trust-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary);
}

/* The photograph: a tall crop of the square at night, the billboard in the
   middle wearing the BigScreen card. */
.bs-hero-visual {
  position: relative;
}
.bs-hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9), 0 0 80px -30px var(--glow);
  transform: translateY(var(--py, 0px));
  transition: transform 80ms linear;
}
.bs-hero-frame .real {
  position: absolute;
  top: 0;
  left: -69%;
  height: 100%;
  width: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0 !important;
}
.bs-hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 8, 11, 0) 60%, rgba(6, 8, 11, 0.7));
}
.bs-hero-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 8, 11, 0.6);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 600;
  transform: translateY(var(--py, 0px));
}
@media (max-width: 64rem) {
  .bs-hero-frame {
    aspect-ratio: 4 / 3.4;
  }
  .bs-hero-frame .real {
    left: -30%;
  }
}

/* ------------------------------------------------------------ home: sections */

.bs-sec {
  padding-top: clamp(80px, 11vw, 150px);
  scroll-margin-top: 84px;
}
.bs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 3rem;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.bs-h2 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.06;
}
.bs-note {
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* The three billboards. */
.bs-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .bs-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .bs-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.bs-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005)), var(--card);
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 300ms ease, box-shadow 300ms ease;
}
.bs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 237, 232, 0.4);
  box-shadow: 0 0 0 1px rgba(238, 237, 232, 0.12), 0 30px 80px -40px var(--glow);
}
.bs-card-photo {
  position: relative;
  display: block;
  overflow: hidden;
}
.bs-card-photo .real {
  aspect-ratio: 16 / 10;
  border-radius: 0 !important;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bs-card:hover .bs-card-photo .real {
  transform: scale(1.05);
}
.bs-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 15, 20, 0.85));
}
.bs-price {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 8, 11, 0.65);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.bs-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem 1.4rem 1.5rem;
}
.bs-card-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.bs-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.bs-pill {
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: var(--primary);
  color: #080a06;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bs-card-body > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.bs-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
.bs-features li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.bs-features svg {
  color: var(--primary);
}
.bs-spec {
  margin-top: auto;
  font-size: 0.8rem !important;
  font-variant-numeric: tabular-nums;
}

/* How it works: four cards. */
.bs-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 40rem) {
  .bs-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .bs-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.bs-steps li {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005)), var(--card);
  transition: border-color 250ms ease, transform 250ms ease;
}
.bs-steps li:hover {
  border-color: rgba(238, 237, 232, 0.35);
  transform: translateY(-3px);
}
.bs-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-step-n {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.bs-step-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(238, 237, 232, 0.06);
  color: var(--primary);
}
.bs-steps h3 {
  margin-top: 1.6rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bs-steps p {
  margin-top: 0.5rem;
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Live on Times Square. */
.bs-live-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}
.bs-live-title .bs-h2 {
  margin-top: 0;
}
.bs-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 7px;
  background: var(--live);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bs-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: bs-blink 1.4s ease-in-out infinite;
}
@keyframes bs-blink {
  50% {
    opacity: 0.25;
  }
}
.bs-live-cam .live {
  min-height: 0;
  aspect-ratio: 16 / 7;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
}
@media (max-width: 48rem) {
  .bs-live-cam .live {
    aspect-ratio: 4 / 5;
  }
}
.bs-live-cam .live::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.5) 100%);
}
.bs-live-cam .live-body {
  min-height: 100%;
  height: 100%;
  padding: clamp(14px, 2vw, 22px);
}
.bs-live-cam .live-copy:empty {
  display: none;
}
.bs-live-cam .live-foot {
  justify-content: flex-end;
}
.bs-wall {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.bs-wall::-webkit-scrollbar {
  display: none;
}
.bs-tile {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  transition: border-color 250ms ease, transform 250ms ease;
}
.bs-tile:hover {
  border-color: rgba(238, 237, 232, 0.35);
  transform: translateY(-3px);
}
.bs-tile-photo {
  position: relative;
  overflow: hidden;
}
.bs-tile-photo .real {
  aspect-ratio: 16 / 10;
  border-radius: 0 !important;
}
.bs-onair {
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  z-index: 2;
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  background: var(--live);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bs-tile-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
}
.bs-tile-body b {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.bs-tile-body small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

/* The numbers, large. */
.bs-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(80px, 11vw, 150px);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(238, 237, 232, 0.07), transparent 70%),
    var(--card);
}
@media (min-width: 64rem) {
  .bs-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.bs-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bs-stats strong {
  white-space: nowrap;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.bs-stats div:nth-child(2) strong {
  color: var(--primary);
}
.bs-stats span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* The final call, over the square. */
.bs-final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-top: clamp(80px, 11vw, 150px);
  padding: clamp(96px, 12vw, 170px) 0;
}
.bs-final-photo {
  position: absolute;
  inset: -60px 0;
  z-index: -2;
}
.bs-final-img {
  position: absolute;
  inset: 0;
  background: url('/screens/broadway.webp') 70% 40% / cover no-repeat;
  transform: translateY(var(--py, 0px)) scale(1.05);
}
.bs-final::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.92) 0%, rgba(6, 8, 11, 0.6) 55%, rgba(6, 8, 11, 0.25) 100%),
    linear-gradient(0deg, var(--background) 0%, transparent 14%, transparent 86%, var(--background) 100%);
}
.bs-final-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}
.bs-final .bs-h2 {
  max-width: 44rem;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
}

/* Fade in on scroll. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------ the live frame */

.live {
  background: #0a0c10;
}
.live-badge {
  border-radius: 8px;
  background: rgba(6, 8, 11, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}
.live-badge .font-mono {
  font-family: var(--sans);
}
.ts-live {
  color: #fff;
  font-weight: 800;
}
.ts-live::before {
  background: var(--live) !important;
  box-shadow: none !important;
}
.live-cams {
  border-radius: 10px;
  background: rgba(6, 8, 11, 0.62);
}
.live-cams button {
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.live-cams button[aria-pressed='true'] {
  background: var(--primary);
  color: #080a06;
}
.live-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75) !important;
}
.live-stream {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}
.live-stream.is-on {
  opacity: 1;
  z-index: 1;
}
.live-poster {
  opacity: 1;
}
.ts-live.is-waiting::before {
  animation: none;
  opacity: 0.4;
}

/* ------------------------------------------------------------ the house card on an empty screen */

.adph {
  background:
    radial-gradient(80% 70% at 50% 110%, rgba(238, 237, 232, 0.28), transparent 70%),
    radial-gradient(60% 60% at 50% -10%, rgba(110, 110, 115, 0.35), transparent 70%),
    #06080b;
  gap: 2.5cqh;
}
.adph::before {
  display: none;
}
.adph-mark {
  width: 24cqh;
  height: 24cqh;
  filter: drop-shadow(0 0 3cqh rgba(238, 237, 232, 0.6));
}
.adph-tall .adph-mark {
  width: 22cqw;
  height: 22cqw;
}
.adph-title {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  color: #fff;
}
.adph-line {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.real-ad {
  box-shadow: none;
}
.ad-pic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-initial {
  font-size: 20cqh;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

/* ------------------------------------------------------------ inner pages */

.price-table thead th {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.price-table td {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}
.price-table tbody tr:hover {
  background: rgba(238, 237, 232, 0.04);
}
.tote {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}
.tote > span {
  border-radius: 999px;
  background: linear-gradient(90deg, #cfcdc6, var(--primary));
  box-shadow: 0 0 14px -2px var(--glow);
}
.tote > span::after {
  display: none;
}
.pill {
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.pick[aria-pressed='true'],
.days button[aria-pressed='true'],
.lengths button[aria-pressed='true'] {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 16px 40px -24px var(--glow);
}
.form-step span {
  background: var(--primary);
  color: #080a06;
  font-family: var(--sans);
}
.proof-icon {
  background: rgba(238, 237, 232, 0.08);
  color: var(--primary);
}
.process li::before {
  background: var(--primary);
}
.closer::before {
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.96) 15%, rgba(6, 8, 11, 0.75) 60%, rgba(6, 8, 11, 0.6)),
    url('/screens/times-square.webp') 70% 45% / cover;
}

footer {
  background: #040507;
  margin-top: 0 !important;
}

@media (max-width: 40rem) {
  .live-cams {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .live-cams button {
    white-space: nowrap;
  }
}

/* A clicked link keeps no box around it; the keyboard still gets one. */
.sh-nav a:focus {
  outline: none;
}
.sh-nav a:focus-visible {
  outline: 2px solid rgba(238, 237, 232, 0.6);
  outline-offset: 2px;
  border-radius: 8px;
}
.sh-nav a::after {
  transition: opacity 200ms ease;
}

/* ------------------------------------------------------------ hero, cinematic */

/* The square itself behind the opening, dark and soft, so the words sit on
   Times Square rather than on a flat colour. */
.bs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.97) 0%, rgba(6, 8, 11, 0.88) 42%, rgba(6, 8, 11, 0.72) 100%),
    linear-gradient(0deg, var(--background) 0%, rgba(6, 8, 11, 0) 35%),
    url('/screens/broadway.webp') 70% 40% / cover no-repeat;
  filter: saturate(1.15);
}
.bs-h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.bs-h1 em {
  text-shadow: 0 0 40px rgba(238, 237, 232, 0.35);
}
.bs-hero-frame {
  border-color: rgba(238, 237, 232, 0.25);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(238, 237, 232, 0.08), 0 0 120px -30px rgba(238, 237, 232, 0.45);
}

/* ------------------------------------------------------------ the marquee */

/* A running strip of lime lettering, the way the square's own tickers run. */
.bs-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(238, 237, 232, 0.18);
  background:
    linear-gradient(90deg, var(--background), transparent 8%, transparent 92%, var(--background)),
    #07090a;
}
.bs-marquee > div {
  display: flex;
  width: max-content;
  animation: bs-marquee 60s linear infinite;
}
.bs-marquee p {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
}
.bs-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05rem 0 1.05rem 2.6rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 245, 247, 0.88);
}
.bs-marquee span::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: 2.1rem;
  transform: rotate(45deg);
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.bs-marquee b {
  color: var(--primary);
  font-weight: 800;
  text-shadow: 0 0 18px rgba(238, 237, 232, 0.5);
}
@keyframes bs-marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .bs-marquee > div {
    animation: none;
  }
}

/* ------------------------------------------------------------ what you get */

.bs-get {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 64rem) {
  .bs-get {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 5rem;
  }
}
.bs-get-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9), 0 0 100px -40px rgba(110, 110, 115, 0.6);
  transform: translateY(var(--py, 0px));
}
.bs-get-frame .real {
  position: absolute;
  top: 0;
  left: -16%;
  height: 100%;
  width: auto;
  aspect-ratio: 16 / 10;
  border-radius: 0 !important;
}
@media (max-width: 64rem) {
  .bs-get-frame {
    aspect-ratio: 4 / 3.6;
  }
  .bs-get-frame .real {
    left: 0;
  }
}
.bs-get-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.bs-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0.5rem 0 0.75rem;
  border-top: 1px solid var(--border);
}
.bs-checks li {
  display: flex;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}
.bs-checks b {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--foreground);
  font-weight: 800;
}
.bs-check {
  display: inline-flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 0.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #080a06;
  box-shadow: 0 0 16px -2px var(--glow);
}

/* ------------------------------------------------------------ questions */

.bs-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 64rem) {
  .bs-faq {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 5rem;
  }
}
.bs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bs-faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  transition: border-color 200ms ease, background 200ms ease;
}
.bs-faq-list details[open] {
  border-color: rgba(238, 237, 232, 0.35);
  background: linear-gradient(180deg, rgba(238, 237, 232, 0.04), transparent), var(--card);
}
.bs-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}
.bs-faq-list summary::-webkit-details-marker {
  display: none;
}
.bs-faq-list summary::after {
  content: '+';
  flex: 0 0 auto;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  transition: transform 200ms ease;
}
.bs-faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.bs-faq-list details p {
  padding: 0 1.3rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ------------------------------------------------------------ X, not yet */

.sh-social.is-soon {
  gap: 0.4rem;
  width: auto;
  padding: 0 0.7rem;
  border: 1px solid var(--border);
  cursor: default;
}
.sh-social.is-soon em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.bs-get-visual {
  position: relative;
}

/* The contract address, before launch. */
.sh-ca {
  display: none;
  align-items: center;
  gap: 0.45rem;
  height: 2.5rem;
  padding: 0 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.sh-ca em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted-foreground);
}
@media (min-width: 64rem) {
  .sh-ca {
    display: inline-flex;
  }
}
.bs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.bs-ca {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(243, 245, 247, 0.8);
}

/* ------------------------------------------------------------ the square, full window */

.hs {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: max(680px, 100vh);
  margin-top: -112px;
  display: flex;
  align-items: flex-end;
  background: #05070a;
  --fx: 1;
  --fy: 0.3;
}
@media (max-width: 40rem) {
  .hs {
    margin-top: -96px;
    min-height: 1120px;
    --fx: 0.84;
    --fy: 0;
  }
}
.hs-stage {
  position: absolute;
  left: calc((100% - var(--sw, 100%)) * var(--fx));
  top: calc((100% - var(--sh, 100%)) * var(--fy));
  z-index: -2;
  transform-origin: 70% 40%;
  animation: hs-drift 30s ease-in-out infinite alternate;
}
@keyframes hs-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hs-stage {
    animation: none;
  }
}
.hs-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(1.2) contrast(1.05) brightness(0.92);
}
.hs-face {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0 0;
  overflow: hidden;
  background: #05070a;
  box-shadow: 0 0 120px 10px rgba(238, 237, 232, 0.18);
}
.hs-face::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.14) 0 2px, transparent 2px 5px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%);
}
.hs-ad {
  position: absolute;
  inset: 0;
  animation: hs-in 700ms ease both;
}
@keyframes hs-in {
  from {
    opacity: 0;
    filter: brightness(2);
  }
  to {
    opacity: 1;
    filter: none;
  }
}
.hs-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.78) 30%, rgba(5, 7, 10, 0.2) 58%, rgba(5, 7, 10, 0) 75%),
    linear-gradient(0deg, var(--background) 0%, rgba(5, 7, 10, 0.4) 22%, rgba(5, 7, 10, 0) 45%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.75) 0%, rgba(5, 7, 10, 0) 18%);
}
@media (max-width: 64rem) {
  .hs-shade {
    background:
      linear-gradient(0deg, var(--background) 0%, rgba(5, 7, 10, 0.97) 50%, rgba(5, 7, 10, 0.2) 66%, rgba(5, 7, 10, 0) 80%, rgba(5, 7, 10, 0.6) 100%);
  }
}
.hs-body {
  position: relative;
  padding-top: 140px;
  padding-bottom: clamp(48px, 6vw, 80px);
}
.hs .bs-hero-copy {
  max-width: 36rem;
}
.hs .bs-h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 0.98;
}
.hs .bs-lede {
  color: rgba(243, 245, 247, 0.8);
}
.hs .bs-trust {
  max-width: 44rem;
}

/* The house ads on the square's screens, laid out in the face's own units. */
.hx {
  position: absolute;
  inset: 0;
  container-type: size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8cqw;
  color: #fff;
  background:
    radial-gradient(90% 90% at 100% 100%, rgba(238, 237, 232, 0.35), transparent 60%),
    radial-gradient(70% 70% at 0% 0%, rgba(110, 110, 115, 0.45), transparent 70%),
    #05070a;
}
.hx span {
  font-size: 9cqh;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.hx b {
  font-size: min(22cqh, 13cqw);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hx-cta b {
  color: var(--primary);
  text-shadow: 0 0 6cqh rgba(238, 237, 232, 0.6);
}
.hx-fees {
  background:
    linear-gradient(135deg, #eeede8 0%, #cfcdc6 100%);
  color: #06080b;
}
.hx-fees span {
  color: rgba(6, 8, 11, 0.7);
}
.hx-strip {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4cqw;
  background: linear-gradient(90deg, #05070a, #1a1b1e);
}
.hx-strip img {
  height: 58cqh;
  filter: drop-shadow(0 0 4cqh rgba(238, 237, 232, 0.7));
}
.hx-strip b {
  font-size: 34cqh;
}
.hx-strip span {
  font-size: 11cqh;
  letter-spacing: 0.12em;
}
.hx-strip.is-alt b {
  font-size: 26cqh;
}
.hx-strip.is-alt {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2cqh;
  background: var(--primary);
  color: #06080b;
}
.hx-strip.is-alt span {
  color: rgba(6, 8, 11, 0.7);
}
