.hero-play {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
  text-shadow: 2px 2px 0 var(--black);
  margin: 2.25rem 0 0.4rem;
}
.hero-play-note {
  color: var(--blue-ice);
  max-width: 54ch;
  margin: 0 auto 1.5rem;
}
.hero .cta-row { gap: 0.9rem; }
.hero { border-bottom: 0; }

.intro-copy { margin-bottom: 2.25rem; }

.shots-two { grid-template-columns: repeat(2, 1fr); }
.shots-two .shot-btn {
  border: 1px solid var(--slate);
  outline: 0;
  padding: 0;
  background: var(--black);
  box-shadow: none;
}
.shots-two .shot-btn:hover { border-color: var(--lime); }
.shots-two .shot-btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.shots-two .shot-btn:active { transform: none; }
.shots-two .shot-btn img { image-rendering: pixelated; image-rendering: crisp-edges; }
@media (max-width: 900px), (pointer: coarse) {
  .shots-two .shot-btn { cursor: default; }
  .shots-two .shot-btn:hover { border-color: var(--slate); }
}

dialog.lightbox { inset: 0; margin: auto; }
dialog.lightbox .lightbox-bar { padding: 0.75rem 1rem; }
dialog.lightbox .btn { padding: 0.3rem 0.85rem; font-size: 0.85rem; }

.notes-panel h4,
.panel h4,
.demo-panel h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  margin: 1.5rem 0 0.5rem;
}
.notes-panel h4:first-child { margin-top: 0; }
.notes-panel p { font-size: 0.95rem; }

.notes-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.notes-boxes .panel { padding: 1.25rem; }
@media (max-width: 860px) {
  .notes-boxes { grid-template-columns: 1fr; }
}

.hyfx { text-align: center; margin: 1.75rem 0; }
.hyfx img { display: inline-block; }

.browser-gap { margin: 0; height: 0.75rem; }


.req-box { margin-bottom: 1.5rem; }
.req-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.req-list li {
  color: var(--lime);
  font-size: 1.05rem;
  padding: 0.1rem 0;
}
.req-wb {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--blue-mid);
  color: var(--blue-ice);
}

.thanks-prose p + p { margin-top: 1rem; }

.contact-form select {
  display: block;
  width: 100%;
  background: var(--blue-deep);
  color: var(--lime);
  border: var(--border) solid var(--blue-pale);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.55rem 0.75rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--lime) 50%),
    linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) calc(50% - 2px),
    calc(100% - 0.75rem) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
.contact-form select option { background: var(--blue-deep); color: var(--lime); }

/* The global :focus-visible rule paints a 3px lime outline. The contact fields
   already have a border, so recolour that instead of stacking a green box
   around them; the desktop-only note is focused by script and needs no ring. */
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--blue-ice);
}
.desktop-only-note:focus,
.desktop-only-note:focus-visible {
  outline: none;
}
.field-hint { font-size: 0.85rem; color: var(--slate); margin-top: 0.35rem; }
.thanks-cta { margin-top: 2rem; }
.thanks-foot { margin-top: 1.75rem; }
.thanks-foot p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.thanks-foot a {
  color: var(--paper);
  text-decoration: none;
}
.thanks-foot a:hover { color: var(--lime); }

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
@media (min-width: 720px) {
  .contact-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
  }
}

.desktop-only-note { display: none; }
@media (max-width: 900px), (pointer: coarse) {
  .desktop-only-note {
    display: block;
    margin-top: auto;
    font-size: 0.95rem;
  }
  .browser-cta { display: none; }
}

.nav-toggle {
  display: none;
  position: fixed;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 60;
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 55;
    max-height: 100vh;
    overflow-y: auto;
    padding: 3.6rem 0 0.5rem;
  }
  .site-nav.is-open ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .site-nav.is-open a {
    border-top: 1px solid var(--tan);
    padding: 0.6rem 1rem;
  }
  .shots-two { grid-template-columns: 1fr; }
}

.btn { line-height: 1.25; }
.credits-row .btn { line-height: 1.25; }
@media (max-width: 560px) {
  .credits-row .btn { font-size: 1rem; padding: 0.75rem 1.25rem; }
  .hero .cta-row { gap: 0.7rem; }
  .hero .cta-row .btn { font-size: 0.95rem; padding: 0.7rem 1.1rem; }
}
