* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
}

.steam-blueprint-page {
  --bp-ink: #050b1d;
  --bp-muted: #5f6c7e;
  --bp-blue: #c9f8ff;
  --bp-blue-strong: #2f73ff;
  --bp-paper: #f7fbff;
  --bp-card: rgba(255, 255, 255, 0.88);
  --bp-line: rgba(5, 11, 29, 0.1);
  --bp-dark: #030b20;
  --bp-accent: #c9f8ff;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 2%, rgba(194, 247, 255, 0.58), transparent 25rem),
    linear-gradient(135deg, #edfaff 0%, #f2f6fb 48%, #fbfcfd 100%);
  color: var(--bp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.steam-blueprint-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.steam-blueprint-brand,
.steam-blueprint-header nav a {
  color: var(--bp-ink);
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.steam-blueprint-brand span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, #fff, #8af3ff 32%, #2f73ff 68%, #050b1d);
  box-shadow: 0 12px 30px rgba(47, 115, 255, 0.22);
}

.steam-blueprint-header nav {
  display: flex;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.steam-blueprint-header nav::-webkit-scrollbar {
  display: none;
}

.steam-blueprint-header nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
  color: #445065;
  font-size: 12px;
  white-space: nowrap;
}

.steam-blueprint-phone,
.steam-blueprint-menu-toggle,
.steam-blueprint-menu-drawer button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
  color: #445065;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-phone {
  margin-left: auto;
  padding: 0 13px;
}

.steam-blueprint-menu-toggle {
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
}

.steam-blueprint-menu-toggle span {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.steam-blueprint-menu-toggle span::before,
.steam-blueprint-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.steam-blueprint-menu-toggle span::before {
  top: -5px;
}

.steam-blueprint-menu-toggle span::after {
  top: 5px;
}

.steam-blueprint-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  background: rgba(3, 11, 32, 0.52);
  backdrop-filter: blur(4px);
  transition: opacity 180ms ease;
}

.steam-blueprint-menu-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  width: min(440px, calc(100vw - 24px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  transform: translateX(102%);
  transition: transform 220ms ease;
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 248, 255, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 255, 0.96));
  box-shadow: -30px 0 80px rgba(3, 11, 32, 0.28);
}

.steam-menu-is-open .steam-blueprint-menu-overlay {
  pointer-events: auto;
  opacity: 1;
}

.steam-menu-is-open .steam-blueprint-menu-drawer {
  transform: translateX(0);
}

.steam-blueprint-menu-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid rgba(5, 11, 29, 0.08);
}

.steam-blueprint-menu-drawer__top strong {
  display: block;
  color: var(--bp-ink);
  font-size: 22px;
  font-weight: 950;
}

.steam-blueprint-menu-drawer__top small,
.steam-blueprint-menu-drawer__section p,
.steam-blueprint-menu-drawer__cards small,
.steam-blueprint-menu-drawer__cards span {
  color: var(--bp-muted);
}

.steam-blueprint-menu-drawer__top button {
  padding: 0 14px;
  cursor: pointer;
}

.steam-blueprint-menu-drawer__scroll {
  overflow-y: auto;
  padding: 18px 20px 24px;
}

.steam-blueprint-menu-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.steam-blueprint-menu-drawer__actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-menu-drawer__actions a:first-child {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-menu-drawer__main {
  display: grid;
  gap: 8px;
}

.steam-blueprint-menu-drawer__main a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--bp-ink);
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-menu-drawer__main a[aria-current="page"],
.steam-blueprint-menu-drawer__mini-links a[aria-current="page"] {
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-menu-drawer__main span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bp-blue);
  color: var(--bp-ink);
  font-size: 12px;
}

.steam-blueprint-menu-drawer__section {
  margin-top: 22px;
}

.steam-blueprint-menu-drawer__section p {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steam-blueprint-menu-drawer__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.steam-blueprint-menu-drawer__cards a {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  color: var(--bp-ink);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-menu-drawer__cards strong {
  font-size: 16px;
}

.steam-blueprint-menu-drawer__mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steam-blueprint-menu-drawer__mini-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #445065;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-hero,
.steam-blueprint-logistics,
.steam-blueprint-events,
.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-faqs,
.steam-blueprint-trust,
.steam-blueprint-club,
.steam-blueprint-venues,
.steam-blueprint-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.steam-blueprint-hero {
  min-height: min(820px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 360px);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
}

.steam-blueprint-copy {
  max-width: 900px;
}

.steam-blueprint-kicker {
  margin-bottom: 12px;
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steam-blueprint-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 5.9vw, 82px);
  line-height: 0.93;
  font-weight: 930;
}

.steam-blueprint-copy > p:last-of-type,
.steam-blueprint-logistics p,
.steam-blueprint-facility-grid p,
.steam-blueprint-first p,
.steam-blueprint-checklist li,
.steam-blueprint-faqs p,
.steam-blueprint-trust p,
.steam-blueprint-club p,
.steam-blueprint-venues p {
  color: var(--bp-muted);
  line-height: 1.5;
}

.steam-blueprint-copy > p:last-of-type {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(17px, 1.25vw, 20px);
}

.steam-blueprint-actions,
.steam-blueprint-logistics-actions,
.steam-blueprint-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.steam-blueprint-actions {
  margin-top: 26px;
}

.steam-blueprint-actions a,
.steam-blueprint-logistics-actions a,
.steam-blueprint-section-button,
.steam-blueprint-trust a,
.steam-blueprint-form button,
.steam-blueprint-venue-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.steam-blueprint-actions a:first-child,
.steam-blueprint-section-button,
.steam-blueprint-trust a,
.steam-blueprint-form button {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-price {
  align-self: center;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 24px;
  background: var(--bp-dark);
  color: #fff;
  box-shadow: 0 30px 84px rgba(5, 11, 29, 0.14);
}

.steam-blueprint-price span {
  color: var(--bp-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steam-blueprint-price strong {
  display: block;
  margin: 10px 0 14px;
  font-size: clamp(58px, 6vw, 86px);
  line-height: 0.86;
}

.steam-blueprint-price p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.steam-blueprint-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steam-blueprint-pillars article,
.steam-blueprint-logistics,
.steam-blueprint-event-grid article,
.steam-blueprint-event-card,
.steam-blueprint-facility-grid article,
.steam-blueprint-reassurance,
.steam-blueprint-checklist,
.steam-blueprint-faqs,
.steam-blueprint-club,
.steam-blueprint-venues {
  background: var(--bp-card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-blueprint-pillars article {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
}

.steam-blueprint-pillars strong {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 0.92;
}

.steam-blueprint-pillars span,
.steam-blueprint-event-grid p,
.steam-blueprint-event-grid article > a,
.steam-blueprint-event-card strong {
  color: var(--bp-muted);
}

.steam-blueprint-logistics,
.steam-blueprint-events,
.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-faqs,
.steam-blueprint-trust,
.steam-blueprint-club,
.steam-blueprint-venues {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.steam-blueprint-logistics {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 24px;
}

.steam-blueprint-logistics h2,
.steam-blueprint-events h2,
.steam-blueprint-facilities h2,
.steam-blueprint-first h2,
.steam-blueprint-faqs h2,
.steam-blueprint-trust h2,
.steam-blueprint-club h2,
.steam-blueprint-venues h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1;
  font-weight: 920;
}

.steam-blueprint-logistics h2 {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.steam-blueprint-reassurance h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.steam-blueprint-events,
.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-faqs,
.steam-blueprint-trust,
.steam-blueprint-club,
.steam-blueprint-venues {
  padding: clamp(48px, 6vw, 78px) 0;
}

.steam-blueprint-event-grid,
.steam-blueprint-facility-grid {
  display: grid;
  gap: 12px;
}

.steam-blueprint-event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.steam-blueprint-event-grid article,
.steam-blueprint-event-card,
.steam-blueprint-facility-grid article {
  min-height: 190px;
  padding: 22px;
  border-radius: 20px;
}

.steam-blueprint-event-card {
  display: block;
  color: var(--bp-ink);
  text-decoration: none;
}

.steam-blueprint-event-grid span {
  color: var(--bp-blue-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steam-blueprint-event-grid h3,
.steam-blueprint-facility-grid h3,
.steam-blueprint-checklist h3,
.steam-blueprint-trust h3,
.steam-blueprint-club h3,
.steam-blueprint-venues h3 {
  margin: 14px 0 10px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.05;
}

.steam-blueprint-event-grid p,
.steam-blueprint-facility-grid p {
  font-size: 14px;
}

.steam-blueprint-event-grid article > a,
.steam-blueprint-event-card strong {
  margin-top: 18px;
  font-weight: 950;
}

.steam-blueprint-event-card strong {
  display: inline-block;
  text-decoration: underline;
}

.steam-blueprint-event-cta {
  background: var(--bp-dark) !important;
  color: #fff;
}

.steam-blueprint-event-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.steam-blueprint-event-cta a,
.steam-blueprint-event-cta strong {
  color: var(--bp-blue);
}

.steam-blueprint-facilities,
.steam-blueprint-first,
.steam-blueprint-club,
.steam-blueprint-venues {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4.5vw, 62px);
  align-items: center;
}

.steam-blueprint-photo {
  min-height: 470px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 11, 29, 0.18)),
    url("../img/steam-hero.jpg") center / cover;
  filter: saturate(0.82) contrast(1.02);
  box-shadow: 0 34px 90px rgba(5, 11, 29, 0.13);
}

.steam-blueprint-facility-grid {
  margin-top: 24px;
}

.steam-blueprint-section-button {
  width: fit-content;
  margin-top: 22px;
}

.steam-blueprint-reassurance,
.steam-blueprint-checklist {
  min-height: 0;
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: 24px;
}

.steam-blueprint-reassurance {
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-reassurance .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-blueprint-reassurance p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.steam-blueprint-text-links {
  margin-top: 26px;
}

.steam-blueprint-text-links a {
  color: var(--bp-blue);
  font-weight: 950;
}

.steam-blueprint-checklist ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  font-size: 15px;
}

.steam-blueprint-faqs {
  padding: clamp(40px, 5vw, 64px) clamp(22px, 4vw, 48px);
  border-radius: 24px;
}

.steam-blueprint-faqs details {
  padding: 19px 0;
  border-top: 1px solid var(--bp-line);
}

.steam-blueprint-faqs summary {
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
}

.steam-blueprint-faqs details p {
  max-width: 760px;
  margin-top: 12px;
  font-size: 18px;
}

.steam-blueprint-trust {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-trust .steam-blueprint-kicker {
  color: var(--bp-blue);
}

.steam-blueprint-trust a {
  color: var(--bp-ink);
}

.steam-blueprint-trust h3,
.steam-blueprint-trust p {
  max-width: 760px;
}

.steam-blueprint-trust p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.steam-blueprint-trust a {
  width: fit-content;
  margin-top: 24px;
}

.steam-blueprint-club,
.steam-blueprint-venues {
  padding: clamp(28px, 3.8vw, 44px);
  border-radius: 24px;
}

.steam-blueprint-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border-radius: 24px;
  background: var(--bp-dark);
  color: #fff;
}

.steam-blueprint-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.steam-blueprint-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.steam-blueprint-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.steam-blueprint-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--bp-blue);
}

.steam-blueprint-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.steam-blueprint-venue-grid a {
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 22px;
  background: #fff;
  color: var(--bp-ink);
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-blueprint-venue-grid span {
  margin-top: 6px;
  color: var(--bp-muted);
  font-size: 13px;
}

.steam-blueprint-venue-grid .steam-blueprint-view-all {
  grid-column: 1 / -1;
  min-height: 52px;
  align-items: center;
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-blueprint-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 34px 0 44px;
  color: var(--bp-muted);
  font-size: 13px;
}

.steam-blueprint-footer a {
  color: var(--bp-ink);
  font-weight: 950;
  text-decoration: none;
}

.steam-photo-page .steam-blueprint-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  column-gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin: 0;
  padding: clamp(76px, 9vw, 132px) max(18px, calc((100vw - 1160px) / 2)) 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.9) 0%, rgba(3, 11, 32, 0.62) 46%, rgba(3, 11, 32, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.28) 0%, rgba(3, 11, 32, 0.05) 54%, rgba(3, 11, 32, 0.92) 100%),
    url("../img/steam-live-hero-clean.jpg") center / cover;
  color: #fff;
}

.steam-photo-page main {
  background:
    radial-gradient(circle at 14% 0%, rgba(154, 243, 255, 0.9), transparent 31rem),
    radial-gradient(circle at 88% 6%, rgba(186, 205, 255, 0.86), transparent 36rem),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.88), transparent 32rem),
    linear-gradient(135deg, #e8fbff 0%, #f1f6ff 52%, #fff 100%);
}

.steam-photo-page .steam-blueprint-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.steam-photo-page .steam-blueprint-copy h1,
.steam-photo-page .steam-blueprint-copy > p:last-of-type {
  color: #fff;
}

.steam-photo-page .steam-blueprint-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.78);
}

.steam-photo-page .steam-blueprint-price {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  justify-self: end;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.steam-photo-page .steam-blueprint-pillars {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  width: calc(100% + max(36px, calc(100vw - 1160px)));
  margin: clamp(62px, 9vw, 108px) calc(-1 * max(18px, calc((100vw - 1160px) / 2))) 0;
  gap: 0;
  background: rgba(3, 11, 32, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steam-photo-page .steam-blueprint-pillars article {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  justify-items: center;
  text-align: center;
}

.steam-photo-page .steam-blueprint-pillars article:last-child {
  border-right: 0;
}

.steam-photo-page .steam-blueprint-pillars strong {
  color: var(--bp-accent);
}

.steam-photo-page .steam-blueprint-pillars span {
  color: rgba(255, 255, 255, 0.72);
}

.steam-photo-page .steam-blueprint-actions a {
  width: 158px;
}

.steam-photo-page .steam-blueprint-logistics-actions {
  align-items: stretch;
}

.steam-photo-page .steam-blueprint-logistics-actions a {
  width: 280px;
}

.steam-template-family .steam-template-page-hero {
  min-height: 100svh;
  height: auto;
  align-items: end;
  padding-top: 128px;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.94) 0%, rgba(3, 11, 32, 0.68) 46%, rgba(3, 11, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.14) 0%, rgba(3, 11, 32, 0.05) 56%, rgba(3, 11, 32, 0.92) 100%),
    url("../img/steam-live-hero-clean.jpg") center top / cover;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy,
.steam-template-family .steam-template-page-hero .steam-blueprint-price {
  align-self: end;
  transform: translateY(clamp(132px, 18vh, 200px));
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy h1 {
  display: -webkit-box;
  max-height: calc(2 * 0.93em);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.steam-template-family .steam-blueprint-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  width: min(1048px, calc(100% - 72px));
  min-height: 58px;
  flex-direction: row;
  align-items: center;
  transform: translateX(-50%);
  padding: 7px 8px 7px 24px;
  border: 1px solid rgba(201, 248, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 11, 32, 0.84);
  color: #fff;
  box-shadow: 0 24px 70px rgba(3, 11, 32, 0.24);
  backdrop-filter: blur(18px);
}

.steam-template-family .steam-blueprint-brand {
  color: var(--bp-blue);
  font-size: 20px;
}

.steam-template-family .steam-blueprint-brand span {
  display: none;
}

.steam-template-family .steam-blueprint-phone {
  display: none;
}

.steam-template-family .steam-blueprint-menu-toggle {
  min-height: 46px;
  gap: 12px;
  margin-left: auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.66);
  color: var(--bp-ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 12px 12px 34px rgba(0, 0, 0, 0.18), -12px -12px 34px rgba(255, 255, 255, 0.08);
}

.steam-template-family .steam-blueprint-menu-toggle > span {
  position: static;
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.steam-template-family .steam-blueprint-menu-toggle > span::before,
.steam-template-family .steam-blueprint-menu-toggle > span::after {
  content: none;
}

.steam-template-family .steam-blueprint-menu-toggle i {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  background: var(--bp-ink);
  box-shadow: 0 16px 30px rgba(7, 17, 38, 0.2);
}

.steam-template-family .steam-blueprint-menu-toggle i::before,
.steam-template-family .steam-blueprint-menu-toggle i::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--bp-blue);
}

.steam-template-family .steam-blueprint-menu-toggle i::before {
  top: 12px;
}

.steam-template-family .steam-blueprint-menu-toggle i::after {
  bottom: 12px;
}

.steam-template-family.steam-menu-is-open .steam-blueprint-menu-toggle i::before {
  top: 16px;
  transform: rotate(45deg);
}

.steam-template-family.steam-menu-is-open .steam-blueprint-menu-toggle i::after {
  bottom: 16px;
  transform: rotate(-45deg);
}

.steam-template-family .steam-blueprint-pillars {
  width: calc(100% + max(36px, calc(100vw - 1160px)));
  margin: clamp(62px, 9vw, 108px) calc(-1 * max(18px, calc((100vw - 1160px) / 2))) 0;
  gap: 0;
  background: rgba(3, 11, 32, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steam-template-family .steam-blueprint-pillars article {
  min-height: 108px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  justify-items: center;
  text-align: center;
}

.steam-template-family .steam-blueprint-pillars article:last-child {
  border-right: 0;
}

.steam-template-family .steam-blueprint-pillars strong {
  color: var(--bp-blue);
}

.steam-template-family .steam-blueprint-pillars span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.steam-template-family .steam-blueprint-menu-overlay {
  z-index: 70;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: none;
}

.steam-template-family .steam-blueprint-menu-drawer {
  z-index: 80;
  width: min(88vw, 560px);
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 96px 18px 18px;
  background: #030b20;
  color: #fff;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.42);
}

.steam-template-family .steam-blueprint-menu-drawer__top {
  display: none;
}

.steam-template-family .steam-blueprint-menu-drawer__top strong {
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.steam-template-family .steam-blueprint-menu-drawer__top small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.steam-template-family .steam-blueprint-menu-drawer__top button {
  display: none;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.steam-template-family .steam-blueprint-menu-drawer__scroll {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 0 0;
}

.steam-template-family .steam-blueprint-menu-drawer__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.steam-template-family .steam-blueprint-menu-drawer__actions a {
  min-height: 46px;
  gap: 10px;
  border: 1px solid rgba(201, 248, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.steam-template-family .steam-blueprint-menu-drawer__actions a:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.steam-template-family .steam-blueprint-menu-drawer__actions a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #46d66e;
  box-shadow: 0 0 0 5px rgba(70, 214, 110, 0.13);
}

.steam-template-family .steam-blueprint-menu-drawer__actions a.steam-blueprint-menu-drawer__action--directions::before {
  background: #f5a524;
  box-shadow: 0 0 0 5px rgba(245, 165, 36, 0.13);
}

.steam-template-family .steam-blueprint-menu-drawer__main {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-bottom: 24px;
}

.steam-template-family .steam-blueprint-menu-drawer__main a {
  min-height: 40px;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none;
}

.steam-template-family .steam-blueprint-menu-drawer__main a[aria-current="page"] {
  background: transparent;
  color: #fff;
}

.steam-template-family .steam-blueprint-menu-drawer__main span {
  border: 1px solid rgba(201, 248, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 11px;
  font-weight: 600;
}

.steam-template-family .steam-blueprint-menu-drawer__main a[aria-current="page"] span {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-template-family .steam-blueprint-menu-drawer__section p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.steam-template-family .steam-blueprint-menu-drawer__cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.steam-template-family .steam-blueprint-menu-drawer__cards a {
  min-height: 62px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(201, 248, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
}

.steam-template-family .steam-blueprint-menu-drawer__cards a:hover,
.steam-template-family .steam-blueprint-menu-drawer__cards a:focus-visible {
  border-color: var(--bp-blue);
}

.steam-template-family .steam-blueprint-menu-drawer__cards strong {
  color: #fff;
  max-width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  overflow-wrap: anywhere;
}

.steam-template-family .steam-blueprint-menu-drawer__cards span,
.steam-template-family .steam-blueprint-menu-drawer__cards small {
  display: block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  overflow-wrap: anywhere;
}

.steam-template-family .drawer-events {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.steam-template-family .drawer-event-icon-list {
  align-items: start;
  padding: 4px 2px 2px;
}

.steam-template-family .drawer-event-icon {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
}

.steam-template-family .drawer-event-icon img {
  display: block;
  width: clamp(58px, 7vw, 76px);
  height: clamp(58px, 7vw, 76px);
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.steam-template-family .drawer-event-icon span {
  max-width: 100%;
  color: #fff !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.steam-template-family .drawer-event-icon:hover,
.steam-template-family .drawer-event-icon:focus-visible {
  outline: none;
}

.steam-template-family .drawer-event-icon:hover img,
.steam-template-family .drawer-event-icon:focus-visible img {
  box-shadow: none;
}

.steam-template-family .steam-blueprint-menu-drawer__mini-links a {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(201, 248, 255, 0.14);
}

.steam-template-family .steam-blueprint-menu-drawer__mini-links a[aria-current="page"] {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  padding: 10px 20px;
  color: #fff !important;
  background: #071126;
  box-shadow: 0 18px 42px rgba(7, 17, 38, 0.22), inset 1px 1px 0 rgba(255, 255, 255, 0.16) !important;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top span {
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 48px;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(47, 115, 255, 0.34);
  outline-offset: 3px;
}

.steam-template-switcher,
.steam-template-panel,
.steam-template-article,
.steam-template-schedule {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(18px, 3vw, 34px) auto;
}

.steam-template-switcher {
  display: grid;
  grid-template-columns: minmax(230px, 0.3fr) minmax(0, 0.7fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-template-switcher h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.steam-template-switcher__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.steam-template-switcher__links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: #445065;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-template-switcher__links a[aria-current="page"] {
  background: var(--bp-dark);
  color: #fff;
}

.steam-template-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  margin-top: 24px;
}

.steam-template-gallery div {
  min-height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(3, 11, 32, 0.08), rgba(3, 11, 32, 0.28)),
    url("../img/steam-hero.jpg") center / cover;
  box-shadow: 0 20px 50px rgba(5, 11, 29, 0.1);
}

.steam-template-gallery div:first-child {
  min-height: 420px;
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(3, 11, 32, 0.08), rgba(3, 11, 32, 0.28)),
    url("../img/steam-live-hero-clean.jpg") center / cover;
}

.steam-template-contact {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.steam-template-article article,
.steam-template-schedule article {
  padding: 22px 0;
  border-top: 1px solid var(--bp-line);
}

.steam-template-article article:first-of-type,
.steam-template-schedule article:first-of-type {
  margin-top: 22px;
}

.steam-template-article h3,
.steam-template-schedule h3 {
  margin: 0 0 8px;
  color: var(--bp-ink);
}

.steam-template-article p,
.steam-template-schedule p {
  max-width: 760px;
}

.steam-template-schedule strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bp-blue);
  color: var(--bp-ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 981px) {
  .steam-photo-page .steam-blueprint-hero {
    align-items: end;
    padding-top: clamp(128px, 16vh, 190px);
  }

  .steam-photo-page .steam-blueprint-copy,
  .steam-photo-page .steam-blueprint-price {
    align-self: end;
    transform: translateY(38px);
  }
}

.steam-photo-page .steam-blueprint-facilities {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  isolation: isolate;
  grid-template-columns: 1fr;
  margin-bottom: 0;
  padding: clamp(64px, 7vw, 96px) max(18px, calc((100vw - 1160px) / 2));
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.86), rgba(3, 11, 32, 0.58) 47%, rgba(237, 250, 255, 0.7) 100%),
    url("../img/steam-hero.jpg") center / cover;
  box-shadow: none;
  color: #fff;
}

.steam-photo-page .steam-blueprint-facilities .steam-blueprint-photo {
  display: none;
}

.steam-photo-page .steam-blueprint-facilities > div:not(.steam-blueprint-photo) {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.steam-photo-page .steam-blueprint-facilities .steam-blueprint-kicker {
  color: var(--bp-accent);
}

.steam-photo-page .steam-blueprint-facilities h2 {
  color: #fff;
}

.steam-photo-page .steam-blueprint-facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steam-photo-page .steam-blueprint-facility-grid article {
  min-height: 190px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 18px 42px rgba(5, 11, 29, 0.14);
}

.steam-photo-page .steam-blueprint-facility-grid h3 {
  color: var(--bp-ink);
}

.steam-photo-page .steam-blueprint-facility-grid p {
  color: #667085;
}

@media (max-width: 980px) {
  .steam-blueprint-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .steam-template-family .steam-blueprint-header {
    align-items: center;
    flex-direction: row;
  }

  .steam-blueprint-phone {
    display: none;
  }

  .steam-blueprint-hero,
  .steam-blueprint-logistics,
  .steam-blueprint-facilities,
  .steam-blueprint-first,
  .steam-blueprint-club,
  .steam-blueprint-venues {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-pillars,
  .steam-blueprint-event-grid,
  .steam-blueprint-venue-grid {
    grid-template-columns: 1fr;
  }

  .steam-blueprint-logistics-actions {
    justify-content: flex-start;
  }

  .steam-blueprint-photo {
    min-height: 390px;
  }

  .steam-photo-page .steam-blueprint-hero {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    background-position: center top;
  }

  .steam-photo-page .steam-blueprint-price {
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 360px);
    justify-self: start;
  }

  .steam-photo-page .steam-blueprint-pillars {
    width: calc(100% + 36px);
    margin: 54px -18px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-photo-page .steam-blueprint-facilities {
    grid-template-columns: 1fr;
    width: 100%;
    padding: clamp(46px, 8vw, 64px) 18px;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.78), rgba(3, 11, 32, 0.5) 52%, rgba(237, 250, 255, 0.72)),
      url("../img/steam-hero.jpg") center / cover;
  }

  .steam-photo-page .steam-blueprint-facility-grid {
    grid-template-columns: 1fr;
  }

  .steam-template-family .steam-template-page-hero {
    height: 690px;
    min-height: 690px;
    padding-top: 72px;
  }

  .steam-template-switcher,
  .steam-template-contact {
    grid-template-columns: 1fr;
  }

  .steam-template-gallery {
    grid-template-columns: 1fr;
  }

  .steam-template-gallery div,
  .steam-template-gallery div:first-child {
    min-height: 280px;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .steam-blueprint-hero,
  .steam-blueprint-logistics,
  .steam-blueprint-events,
  .steam-blueprint-facilities,
  .steam-blueprint-first,
  .steam-blueprint-faqs,
  .steam-blueprint-club,
  .steam-blueprint-venues,
  .steam-blueprint-footer {
    width: min(100% - 20px, 1160px);
  }

  .steam-blueprint-brand {
    font-size: 16px;
  }

  .steam-blueprint-copy h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .steam-blueprint-logistics h2,
  .steam-blueprint-events h2,
  .steam-blueprint-facilities h2,
  .steam-blueprint-first h2,
  .steam-blueprint-faqs h2,
  .steam-blueprint-trust h2,
  .steam-blueprint-club h2,
  .steam-blueprint-venues h2 {
    font-size: 32px;
  }

  .steam-blueprint-reassurance h2 {
    font-size: 31px;
  }

  .steam-blueprint-actions a,
  .steam-blueprint-logistics-actions a {
    width: 100%;
  }

  .steam-blueprint-price strong {
    font-size: 80px;
  }

  .steam-blueprint-logistics,
  .steam-blueprint-event-grid article,
  .steam-blueprint-event-card,
  .steam-blueprint-facility-grid article,
  .steam-blueprint-reassurance,
  .steam-blueprint-checklist,
  .steam-blueprint-faqs,
  .steam-blueprint-club,
  .steam-blueprint-venues {
    border-radius: 22px;
  }

  .steam-blueprint-photo {
    min-height: 300px;
  }

  .steam-photo-page .steam-blueprint-hero {
    min-height: auto;
    padding-top: 54px;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.74) 0%, rgba(3, 11, 32, 0.58) 36%, rgba(3, 11, 32, 0.94) 100%),
      url("../img/steam-live-hero-clean.jpg") center top / cover;
  }

  .steam-photo-page .steam-blueprint-pillars {
    grid-template-columns: 1fr;
  }

  .steam-photo-page .steam-blueprint-pillars article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .steam-photo-page .steam-blueprint-actions a,
  .steam-photo-page .steam-blueprint-logistics-actions a {
    width: 100%;
  }

  .steam-photo-page .steam-blueprint-facilities {
    width: 100%;
    padding: 34px 10px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.82), rgba(3, 11, 32, 0.58) 58%, rgba(237, 250, 255, 0.78)),
      url("../img/steam-hero.jpg") center / cover;
  }

  .steam-blueprint-header {
    padding-inline: 18px;
  }

  .steam-blueprint-menu-drawer {
    width: min(390px, calc(100vw - 14px));
  }

  .steam-blueprint-menu-drawer__cards {
    grid-template-columns: 1fr;
  }

  .steam-template-family .steam-template-page-hero {
    height: 720px;
    min-height: 720px;
    padding-top: 58px;
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy,
  .steam-template-family .steam-template-page-hero .steam-blueprint-price {
    transform: translateY(66px);
  }

  .steam-template-switcher,
  .steam-template-panel,
  .steam-template-article,
  .steam-template-schedule {
    width: min(100% - 20px, 1160px);
  }

  .steam-template-switcher {
    padding: 18px;
  }
}

/* Page-family live-site parity fixes: keep these after responsive rules. */
.steam-template-family .steam-blueprint-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1048px, calc(100% - 72px));
  min-height: 58px;
  flex-direction: row;
  align-items: center;
  transform: translateX(-50%);
  padding: 7px 8px 7px 24px;
  border: 1px solid rgba(201, 248, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 11, 32, 0.84);
  color: #fff;
}

.steam-template-family .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-price span {
  color: var(--bp-blue);
}

.design-pack-demo-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 70px;
}

.design-pack-demo-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.design-pack-demo-intro h1 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.95;
}

.design-pack-demo-intro p {
  margin-top: 14px;
  color: var(--bp-muted);
  font-size: 17px;
}

.component-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.design-pack-demo-card {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.design-pack-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.design-pack-demo-swatch {
  min-height: 120px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  font-weight: 950;
}

.design-pack-demo-swatch small {
  opacity: 0.78;
}

.steam-component-coverage {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(18px, 3vw, 34px) auto;
}

.steam-component-coverage h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.steam-component-coverage > p:last-of-type {
  max-width: 760px;
  margin-top: 12px;
  color: var(--bp-muted);
  line-height: 1.5;
}

.steam-component-coverage__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.steam-component-coverage__grid a {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  color: var(--bp-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(5, 11, 29, 0.08);
}

.steam-component-gallery {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(22px, 4vw, 52px) 0;
}

.steam-component-gallery__intro {
  width: min(980px, 100%);
}

.steam-component-gallery__intro h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.9;
}

.steam-component-gallery__intro p:not(.steam-blueprint-kicker) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--bp-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.steam-component-example {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin: clamp(22px, 3vw, 38px) 0;
  scroll-margin-top: 96px;
}

.steam-component-example__visual,
.steam-component-example__code {
  min-width: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), 0 18px 50px rgba(5, 11, 29, 0.06);
}

.steam-component-example__visual {
  overflow: hidden;
}

.steam-component-example__visual > .steam-blueprint-header {
  position: relative;
}

.steam-component-example__visual > .steam-blueprint-menu-drawer {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 720px;
  border-radius: 24px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.steam-component-example__visual .steam-template-page-hero,
.steam-component-example__visual .steam-template-switcher,
.steam-component-example__visual .steam-template-panel,
.steam-component-example__visual .steam-template-article,
.steam-component-example__visual .steam-template-schedule,
.steam-component-example__visual .steam-blueprint-logistics,
.steam-component-example__visual .steam-blueprint-events,
.steam-component-example__visual .steam-blueprint-facilities,
.steam-component-example__visual .steam-blueprint-first,
.steam-component-example__visual .steam-blueprint-faqs,
.steam-component-example__visual .steam-blueprint-trust,
.steam-component-example__visual .steam-blueprint-club,
.steam-component-example__visual .steam-blueprint-venues,
.steam-component-example__visual .steam-blueprint-footer {
  width: 100%;
  margin: 0;
}

.steam-component-example__visual .steam-template-page-hero {
  min-height: 720px;
  height: 720px;
  max-height: 720px;
}

.steam-component-example__visual .steam-template-page-hero .steam-blueprint-copy,
.steam-component-example__visual .steam-template-page-hero .steam-blueprint-price {
  transform: translateY(86px);
}

.steam-component-example__visual--utility {
  min-height: 170px;
  display: grid;
  place-items: center;
}

.steam-component-example__visual--utility .back-to-top {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.steam-component-example__code {
  position: sticky;
  top: 96px;
  padding: clamp(18px, 2vw, 26px);
}

.steam-component-example__code h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
}

.steam-component-example__code pre {
  overflow-x: auto;
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: var(--bp-dark);
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

@media (max-width: 760px) {
  .design-pack-demo-grid,
  .steam-component-coverage__grid {
    grid-template-columns: 1fr;
  }

  .steam-component-example {
    grid-template-columns: 1fr;
  }

  .steam-component-example__code {
    position: static;
  }

  .steam-component-example__visual .steam-template-page-hero {
    min-height: 720px;
    height: 720px;
    max-height: 720px;
  }
}

.steam-template-family .steam-blueprint-actions a:first-child {
  background: var(--bp-blue);
  color: var(--bp-ink);
}

.steam-template-family .steam-blueprint-price strong {
  color: var(--bp-blue);
}

.steam-template-family .steam-template-page-hero {
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  align-items: end;
  overflow: hidden;
  padding-top: clamp(128px, 16vh, 190px);
  background:
    linear-gradient(90deg, rgba(3, 11, 32, 0.94) 0%, rgba(3, 11, 32, 0.68) 46%, rgba(3, 11, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 11, 32, 0.14) 0%, rgba(3, 11, 32, 0.05) 56%, rgba(3, 11, 32, 0.92) 100%),
    url("../img/steam-live-hero-clean.jpg") center top / cover;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy,
.steam-template-family .steam-template-page-hero .steam-blueprint-price {
  align-self: end;
  transform: translateY(clamp(132px, 18vh, 200px));
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy h1 {
  display: -webkit-box;
  max-height: calc(2 * 0.93em);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.steam-template-family .steam-template-page-hero .steam-blueprint-copy > p:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.steam-template-family .steam-blueprint-pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .steam-template-family .steam-blueprint-header {
    top: 10px;
    width: min(100% - 20px, 1048px);
    padding: 10px;
  }

  .steam-template-family .steam-template-page-hero {
    height: 940px;
    min-height: 940px;
    max-height: 940px;
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy,
  .steam-template-family .steam-template-page-hero .steam-blueprint-price {
    transform: translateY(78px);
  }

  .steam-template-family .steam-blueprint-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .steam-template-family .steam-template-page-hero {
    height: 1056px;
    min-height: 1056px;
    max-height: 1056px;
    background:
      linear-gradient(180deg, rgba(3, 11, 32, 0.78) 0%, rgba(3, 11, 32, 0.62) 36%, rgba(3, 11, 32, 0.96) 100%),
      url("../img/steam-live-hero-clean.jpg") center top / cover;
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy,
  .steam-template-family .steam-template-page-hero .steam-blueprint-price {
    transform: translateY(66px);
  }

  .steam-template-family .steam-template-page-hero .steam-blueprint-copy h1 {
    max-height: calc(2 * 0.98em);
  }

  .steam-template-family .steam-blueprint-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-template-family .steam-blueprint-menu-toggle {
    min-height: 46px;
    padding: 8px 10px 8px 18px;
  }

  .steam-template-family .steam-blueprint-menu-toggle i {
    width: 34px;
    height: 34px;
  }

  .steam-template-family .steam-blueprint-pillars article {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .steam-template-family .steam-blueprint-pillars article:nth-child(2n) {
    border-right: 0;
  }

  .steam-template-family .steam-blueprint-menu-drawer__main,
  .steam-template-family .steam-blueprint-menu-drawer__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .steam-template-family .steam-blueprint-menu-drawer {
    width: min(calc(100vw - 30px), 560px);
    padding: 96px 18px 18px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__main a {
    grid-template-columns: 30px minmax(0, 1fr);
    font-size: 13px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards a {
    min-height: 62px;
    padding: 7px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards strong {
    font-size: 11px;
  }

  .steam-template-family .steam-blueprint-menu-drawer__cards span,
  .steam-template-family .steam-blueprint-menu-drawer__cards small {
    font-size: 9px;
  }

  .steam-template-family .drawer-events {
    gap: 8px;
  }

  .steam-template-family .drawer-event-icon img {
    width: clamp(50px, 13vw, 58px);
    height: clamp(50px, 13vw, 58px);
  }

  .steam-template-family .drawer-event-icon span {
    font-size: 10px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .back-to-top span {
    font-size: 22px;
    line-height: 44px;
  }
}

.steam-template-family .steam-template-switcher .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-logistics .steam-blueprint-kicker,
.steam-template-family .steam-template-panel .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-events > header .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-faqs .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-club .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-venues .steam-blueprint-kicker {
  color: var(--bp-ink);
}

.steam-template-family .steam-template-page-hero .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-facilities .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-trust .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-reassurance .steam-blueprint-kicker,
.steam-template-family .steam-blueprint-price span {
  color: var(--bp-blue);
}
