@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/review-assets/montserrat-latin-400-normal.woff2) format("woff2");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/review-assets/montserrat-latin-600-normal.woff2) format("woff2");
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/review-assets/montserrat-latin-700-normal.woff2) format("woff2");
}
:root {
  color-scheme: dark;
  --vici-black: #000000;
  --vici-white: #ffffff;
  --vici-blue: #73bce6;
  --vici-charcoal-deep: #1f2324;
  --vici-charcoal: #35393a;
  --vici-charcoal-light: #4f5354;
  --white-72: rgba(255, 255, 255, 0.72);
  --white-16: rgba(255, 255, 255, 0.16);
  --white-04: rgba(255, 255, 255, 0.04);
  --blue-72: rgba(115, 188, 230, 0.72);
  --blue-32: rgba(115, 188, 230, 0.32);
  --blue-18: rgba(115, 188, 230, 0.18);
  --shell: min(1180px, calc(100% - 40px));
  --black: var(--vici-black);
  --white: var(--vici-white);
  --blue: var(--vici-blue);
  --panel: var(--vici-charcoal-deep);
  --edge: var(--white-16);
  --muted: var(--white-72);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font: 400 15px/1.7 Montserrat, sans-serif;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--blue-72);
}
.site-header {
  min-height: 96px;
  border-bottom: 1px solid var(--edge);
  overflow: hidden;
}
.header-shell {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  --section-band: var(--vici-charcoal-deep);
}
.band {
  position: relative;
  z-index: 0;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--section-band);
}
.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.emblem {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.wordmark {
  width: 195px;
  height: auto;
  object-fit: contain;
}
.header-label {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
}
.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 64px 0 24px;
}
.intro {
  max-width: 720px;
  margin-bottom: 58px;
}
.eyebrow,
.card-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--blue);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  font-weight: 600;
}
h1 span {
  color: var(--blue);
}
h2 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}
h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 600;
  margin: 24px 0 16px;
}
.intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  max-width: 610px;
}
.pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--blue-32);
  border-radius: 24px;
  padding: 5px 14px;
  font-size: 11px;
  color: var(--blue);
}
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.section-heading > span {
  font-size: 11px;
  color: var(--muted);
}
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.workspace-card {
  display: flex;
  flex-direction: column;
  min-height: 278px;
  padding: 30px;
  border: 1px solid var(--edge);
  background: var(--vici-charcoal-deep);
  border-radius: 12px;
}
.reactive-tile {
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.reactive-tile:focus-within {
  border-color: var(--blue-72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .28), inset 0 0 0 1px var(--blue-18);
}
.workspace-card p {
  max-width: 450px;
  color: var(--muted);
  font-size: 14px;
}
.card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}
.card-action > span {
  font-size: 20px;
}
.button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  min-width: 48px;
  padding: 12px 20px;
  border: 1px solid var(--edge);
  border-radius: 7px;
  background: var(--panel);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}
.primary {
  background: var(--blue);
  color: var(--black);
  border-color: var(--blue);
}
.quiet {
  background: transparent;
}
.review-notes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--edge);
  margin-top: 42px;
  padding-top: 30px;
}
.review-notes div {
  max-width: 800px;
}
.review-notes p,
.fine {
  font-size: 12px;
  color: var(--muted);
}
.review-notes form {
  flex-shrink: 0;
}
.build-note {
  margin-top: 48px;
  border-top: 1px solid var(--edge);
  padding-top: 20px;
  color: var(--muted);
  font-size: 10px;
}
.login-panel {
  max-width: 600px;
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 32px;
  background: var(--panel);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.login-panel:focus-within {
  border-color: var(--blue-72);
  box-shadow: 0 0 0 1px var(--blue-18);
}
.login-panel p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
}
.login-panel form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.login-panel label {
  font-size: 12px;
  font-weight: 600;
}
.login-panel input {
  min-height: 52px;
  min-width: 0;
  width: 100%;
  padding: 12px 14px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--edge);
  border-radius: 6px;
}
.login-panel .button {
  margin: 8px 0 12px;
}
.login-panel .fine {
  margin-bottom: 0;
}
.notice {
  border-left: 2px solid var(--blue);
  padding-left: 12px;
}
.skip {
  position: fixed;
  top: -90px;
  left: 20px;
  background: var(--blue);
  color: var(--black);
  padding: 12px 18px;
  z-index: 20;
  min-height: 48px;
}
.skip:focus {
  top: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .reactive-tile:hover {
    z-index: 1;
    transform: translateY(-4px);
    border-color: var(--blue-72);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32), inset 0 0 0 1px var(--blue-18);
  }
  .button:hover {
    border-color: var(--blue);
  }
  .login-panel:hover {
    border-color: var(--blue-72);
  }
}
@media (max-width: 960px) {
  .review-notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .workspace-card {
    padding: 26px;
  }
}
@media (max-width: 680px) {
  :root {
    --shell: min(1180px, calc(100% - 28px));
  }
  .site-header {
    min-height: 68px;
  }
  .header-shell {
    padding: 10px 0;
    gap: 12px;
  }
  .identity {
    gap: 9px;
  }
  .emblem {
    width: 37px;
    height: 37px;
  }
  .wordmark {
    width: 148px;
  }
  .header-label {
    display: none;
  }
  .section-shell {
    padding: 40px 0 20px;
  }
  .intro {
    margin-bottom: 40px;
  }
  .intro > p:not(.eyebrow) {
    font-size: 15px;
  }
  .workspace-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .workspace-card {
    padding: 24px;
    min-height: 260px;
  }
  .section-heading > span {
    display: none;
  }
  .login-panel {
    padding: 24px;
  }
  .site-header .button {
    min-height: 48px;
    padding: 10px;
    font-size: 11px;
  }
  .primary-button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reactive-tile:hover {
    transform: none;
  }
}
