/* The company layer. Loaded last, it turns the dashboard the pages were built
   on into a site: a top bar instead of a rail, a wide page with room around
   every section, one type scale, flat buttons, quiet surfaces. Colour comes
   from the same tokens; only their values are settled here. */

:root {
  --background: #05070b;
  --foreground: #f4f6fa;
  --card: #0b0f16;
  --panel: #111723;
  --panel-2: #161d2b;
  --border: rgba(255, 255, 255, 0.08);
  --muted-foreground: #98a2b3;
  --primary: #3b8cff;
  --primary-foreground: #ffffff;
  --radius: 14px;
}
html,
body {
  background: var(--background);
  color: var(--foreground);
}
body {
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: rgba(59, 140, 255, 0.35);
}

/* ------------------------------------------------------------- the page */

.site-main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
@media (max-width: 40rem) {
  .site-main {
    padding: 24px 16px 0;
  }
}
/* A section that runs the full width of the window, whatever the page. */
.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 40rem) {
  .wrap {
    padding: 0 16px;
  }
}

/* ------------------------------------------------------------ type */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}
.display {
  font-size: clamp(2.75rem, 6.6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  color: var(--primary);
}
.title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 650;
  text-wrap: balance;
}
.lede {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted-foreground);
  text-wrap: pretty;
}

/* ------------------------------------------------------------ buttons */

.btn {
  box-shadow: none !important;
  transform: none !important;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}
.btn-lg {
  height: 3.25rem;
  padding: 0 1.6rem;
  border-radius: 12px;
  font-size: 1rem;
}
.btn-primary {
  background: #2f7df6;
  border-color: #2f7df6;
  color: #fff;
}
.btn-primary:hover {
  background: #4a8ff8;
  border-color: #4a8ff8;
}
.btn-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--foreground);
}
.btn-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-light {
  background: #fff;
  border-color: #fff;
  color: #05070b;
}
.btn-light:hover {
  background: #e9eef6;
}

/* ------------------------------------------------------------ surfaces */

.tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.card-lift {
  transition: border-color 200ms ease, transform 200ms ease;
}
.card-lift:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------ header */

.sh {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.sh.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 7, 11, 0.86);
}
.sh-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1240px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
}
.sh-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sh-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.sh-nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  transition: color 150ms ease, background 150ms ease;
}
.sh-nav a:hover,
.sh-nav a[aria-current='page'] {
  color: var(--foreground);
}
.sh-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.05);
}
.sh-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}
.sh-cta {
  display: none;
}
.sh-wallet {
  display: none;
}
.sh-burger {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
}
@media (min-width: 64rem) {
  .sh-nav {
    display: flex;
  }
  .sh-cta,
  .sh-wallet {
    display: inline-flex;
  }
  .sh-burger {
    display: none;
  }
}
.sh-sheet {
  position: fixed;
  inset: 68px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 16px 2rem;
  background: var(--background);
  overflow: auto;
}
.sh-sheet nav {
  display: flex;
  flex-direction: column;
}
.sh-sheet nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ------------------------------------------------------------ home */

.hero-live.live {
  border-radius: 0;
  border: 0;
  min-height: clamp(640px, 92vh, 920px);
  margin-top: -40px;
}
@media (max-width: 40rem) {
  .hero-live.live {
    margin-top: -24px;
    min-height: 88vh;
  }
}
.hero-live .live-body {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 24px clamp(28px, 4vw, 44px);
}
.hero-live::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.94) 0%, rgba(5, 7, 11, 0.78) 34%, rgba(5, 7, 11, 0.25) 66%, rgba(5, 7, 11, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 1) 0%, rgba(5, 7, 11, 0) 34%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.6) 0%, rgba(5, 7, 11, 0) 20%);
}
@media (max-width: 48rem) {
  .hero-live::after {
    background: linear-gradient(0deg, rgba(5, 7, 11, 1) 0%, rgba(5, 7, 11, 0.7) 55%, rgba(5, 7, 11, 0.85) 100%);
  }
}
.hero-live .live-copy {
  max-width: 44rem;
}

/* The three screens along the foot of the opening, as a product rail. */
.rail {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 11, 17, 0.72);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
@media (min-width: 48rem) {
  .rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 150ms ease;
}
.rail a:last-child {
  border-bottom: 0;
}
@media (min-width: 48rem) {
  .rail a {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rail a:last-child {
    border-right: 0;
  }
}
.rail a:hover {
  background: rgba(255, 255, 255, 0.05);
}
.rail b {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.rail small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.rail .rail-price {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.rail .rail-price strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* Sections: the same rhythm down every page. */
.sec {
  padding: clamp(72px, 10vw, 136px) 0 0;
  scroll-margin-top: 80px;
}
.sec-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: clamp(32px, 4vw, 56px);
}
@media (min-width: 64rem) {
  .sec-top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: end;
    gap: 4rem;
  }
}

/* A screen, told like a product: the picture large, the facts beside it. */
.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--border);
}
.showcase:first-child {
  border-top: 0;
  padding-top: 0;
}
@media (min-width: 64rem) {
  .showcase {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 4rem;
  }
  .showcase.flip > :first-child {
    order: 2;
  }
}
.showcase .real {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
}
.showcase-name {
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 650;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}
.facts > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.facts > div:nth-child(odd) {
  padding-right: 1rem;
}
.facts dt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
}
.facts dd {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* How it works: four steps on one line, numbered large. */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 48rem) {
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.process li {
  position: relative;
  padding: 2rem 1.75rem 2rem 0;
}
@media (min-width: 64rem) {
  .process li + li {
    padding-left: 1.75rem;
    border-left: 1px solid var(--border);
  }
}
.process li::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--primary);
}
@media (min-width: 64rem) {
  .process li + li::before {
    left: 1.75rem;
  }
}
.process .n {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--muted-foreground);
}
.process h3 {
  margin-top: 1.25rem;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.process p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* The two by two of reasons to trust it. */
.proofs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.proofs li {
  padding: clamp(24px, 3vw, 40px);
  background: var(--card);
}
.proofs h3 {
  margin-top: 1.25rem;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.proofs p {
  margin-top: 0.6rem;
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
.proof-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 140, 255, 0.12);
  color: var(--primary);
}

/* The closing band, full width. */
.closer {
  position: relative;
  margin-top: clamp(72px, 10vw, 136px);
  padding: clamp(72px, 10vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
}
.closer::before {
  content: '';
  position: absolute;
  inset: -30px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96) 10%, rgba(5, 7, 11, 0.55)),
    url('/screens/times-square.webp') 70% 45% / cover;
  filter: blur(12px) saturate(1.2);
}

/* The price table, set wide. */
.price-table td:first-child,
.price-table th:first-child {
  padding-left: 1.5rem;
}
.price-table td {
  font-size: 1rem;
}

/* The page title of the inner pages. */
.page-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(16px, 3vw, 40px) 0 clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.hero-live .live-foot {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.hero-live .live-credit {
  align-self: flex-end;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-live .live-body {
  justify-content: flex-end;
  gap: 3rem;
}
.hero-live .live-top {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 100%);
  padding: 0 24px;
}
.hero-proof li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat,
    var(--primary);
}
.statband {
  border-radius: 16px;
}
footer {
  background: #04060a;
}

@media (min-width: 64rem) {
  .showcase.flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  }
}
.hero-live .live-body {
  padding-top: clamp(96px, 12vh, 140px);
}
.closer::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.97) 15%, rgba(5, 7, 11, 0.8) 60%, rgba(5, 7, 11, 0.7)),
    url('/screens/times-square.webp') 70% 45% / cover;
}

/* A screen on the Screens page: its name and the booking button, the photo
   at full width, then the facts beside the full price list. */
.screen-block {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: clamp(40px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.screen-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}
.screen-block .real {
  /* The photo's own proportions: the ad's corners are measured on it. */
  aspect-ratio: 16 / 10;
  border-radius: 20px;
}
.screen-block-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 64rem) {
  .screen-block-body {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3.5rem;
  }
}
.screen-block .price-table td,
.screen-block .price-table th {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 0.9rem;
}
