:root {
  --bc-ink: #121212;
  --bc-soft-ink: #252525;
  --bc-white: #ffffff;
  --bc-paper: #f3f0e9;
  --bc-mist: #e8efed;
  --bc-coral: #ef6a5b;
  --bc-teal: #087f78;
  --bc-yellow: #f0c84b;
  --bc-line: rgba(18, 18, 18, 0.19);
  --bc-line-light: rgba(255, 255, 255, 0.24);
  --motion-instant: 80ms;
  --motion-fast: 180ms;
  --motion-normal: 350ms;
  --motion-slow: 600ms;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-padding-top: 76px;
}

body {
  color: var(--bc-ink);
  background: var(--bc-white);
}

.motion-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 3px;
  background: var(--bc-coral);
  transform: scaleX(0);
  transform-origin: left center;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.page-curtain span {
  background: var(--bc-coral);
  animation: curtain-up 760ms var(--ease-smooth) 160ms both;
}

.page-curtain span:last-child {
  background: var(--bc-ink);
  animation-delay: 250ms;
}

@keyframes curtain-up {
  to { transform: translateY(-101%); }
}

.bc-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: min(1460px, calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: var(--bc-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
}

.bc-brand {
  display: inline-flex;
  min-width: 168px;
  align-items: center;
  gap: 12px;
}

.bc-brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--bc-ink);
  background: var(--bc-coral);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
}

.bc-brand > span:last-child {
  display: grid;
  gap: 1px;
}

.bc-brand strong {
  font-size: 14px;
  letter-spacing: 0;
}

.bc-brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.bc-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 12px;
  font-weight: 800;
}

.bc-nav > a:not(.bc-nav-action) {
  position: relative;
  padding: 30px 0;
}

.bc-nav > a:not(.bc-nav-action)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--bc-coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-nav > a:hover::after,
.bc-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.bc-nav-action {
  display: inline-flex;
  min-height: 40px;
  padding: 0 13px;
  align-items: center;
  gap: 18px;
  color: var(--bc-ink);
  background: var(--bc-white);
}

.bc-nav-action:hover,
.bc-nav-action:focus-visible {
  background: var(--bc-coral);
  outline: none;
}

.bc-hero {
  position: relative;
  height: clamp(560px, 78svh, 760px);
  overflow: hidden;
  color: var(--bc-white);
  background: var(--bc-ink);
}

.bc-hero-media,
.bc-hero-shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.bc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  animation: hero-settle 1.5s var(--ease-smooth) 320ms both;
}

@keyframes hero-settle {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

.bc-hero-shade {
  background: rgba(8, 8, 8, 0.57);
}

.bc-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1460px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding: 128px 0 52px;
  flex-direction: column;
  justify-content: flex-end;
}

.bc-kicker,
.bc-section-kicker {
  display: inline-flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-kicker::before,
.bc-section-kicker::before {
  width: 30px;
  height: 3px;
  background: var(--bc-coral);
  content: "";
}

.bc-kicker {
  opacity: 0;
  animation: hero-enter var(--motion-slow) var(--ease-smooth) 820ms forwards;
}

.bc-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: 90px;
  line-height: 1.04;
  letter-spacing: 0;
  opacity: 0;
  animation: hero-enter var(--motion-slow) var(--ease-smooth) 920ms forwards;
}

.bc-hero h1 em,
.bc-section-head h2 em,
.bc-platform h2 em,
.bc-footer h2 em {
  color: var(--bc-coral);
  font-family: Georgia, "Noto Serif TC", serif;
  font-style: italic;
  font-weight: 500;
}

.bc-hero-bottom {
  display: flex;
  margin-top: 38px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  opacity: 0;
  animation: hero-enter var(--motion-slow) var(--ease-smooth) 1020ms forwards;
}

.bc-hero-bottom p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.bc-round-link {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--bc-ink);
  background: var(--bc-white);
  border-radius: 50%;
  font-size: 22px;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-round-link:hover,
.bc-round-link:focus-visible {
  background: var(--bc-coral);
  outline: none;
  transform: translateY(4px);
}

.bc-event-rail {
  display: grid;
  min-height: 126px;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  color: var(--bc-white);
  background: var(--bc-ink);
  border-bottom: 1px solid var(--bc-line-light);
}

.bc-event-lead,
.bc-event-link {
  display: flex;
  min-height: 126px;
  padding: 25px 28px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--bc-line-light);
}

.bc-event-lead {
  padding-left: max(28px, calc((100vw - 1460px) / 2));
}

.bc-event-lead small,
.bc-event-link small {
  display: block;
  margin-bottom: 7px;
  color: var(--bc-coral);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-event-lead h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0;
}

.bc-event-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bc-event-link strong {
  font-size: 14px;
}

.bc-event-link b {
  color: var(--bc-coral);
  font-size: 20px;
  font-weight: 400;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-event-link:hover,
.bc-event-link:focus-visible {
  color: var(--bc-ink);
  background: var(--bc-coral);
  outline: none;
}

.bc-event-link:hover small,
.bc-event-link:focus-visible small,
.bc-event-link:hover b,
.bc-event-link:focus-visible b {
  color: var(--bc-ink);
}

.bc-event-link:hover b,
.bc-event-link:focus-visible b {
  transform: translate(3px, -3px);
}

.bc-metrics {
  padding: 32px 0;
  background: var(--bc-paper);
}

.bc-metrics-inner {
  display: grid;
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
  grid-template-columns: 1.8fr repeat(3, 0.62fr);
  border-top: 1px solid var(--bc-ink);
}

.bc-metrics-inner > p,
.bc-metric {
  min-height: 156px;
  margin: 0;
  padding: 26px 25px 18px 0;
  border-right: 1px solid var(--bc-line);
}

.bc-metrics-inner > p {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.75;
}

.bc-metric {
  display: flex;
  padding-left: 25px;
  flex-direction: column;
  justify-content: space-between;
}

.bc-metric:last-child {
  border-right: 0;
}

.bc-metric strong {
  color: var(--bc-teal);
  font-family: Georgia, serif;
  font-size: 49px;
  font-style: italic;
  font-weight: 500;
}

.bc-metric span {
  font-size: 11px;
  font-weight: 900;
}

.bc-inhouse {
  padding: 100px 0 106px;
  color: var(--bc-ink);
  background: var(--bc-coral);
}

.bc-inhouse-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 92px;
}

.bc-inhouse .bc-section-kicker::before {
  background: var(--bc-white);
}

.bc-inhouse h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.07;
  letter-spacing: 0;
}

.bc-inhouse h2 em {
  color: var(--bc-white);
  font-family: Georgia, "Noto Serif TC", serif;
  font-style: italic;
  font-weight: 500;
}

.bc-inhouse-detail > p {
  max-width: 750px;
  margin: 3px 0 42px;
  font-size: 17px;
  line-height: 1.85;
}

.bc-production-flow {
  border-top: 1px solid rgba(18, 18, 18, 0.64);
}

.bc-production-flow > div {
  display: grid;
  min-height: 104px;
  padding: 20px 0;
  grid-template-columns: 46px minmax(170px, 0.75fr) minmax(220px, 1.25fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(18, 18, 18, 0.34);
}

.bc-production-flow span {
  color: var(--bc-white);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.bc-production-flow strong {
  font-size: 18px;
}

.bc-production-flow small {
  font-size: 13px;
  line-height: 1.7;
}

.bc-work {
  padding: 106px 0 116px;
  background: var(--bc-white);
}

.bc-section-head,
.bc-filters,
.bc-case-grid,
.bc-platform,
.bc-floor-tool,
.bc-services-inner,
.bc-inhouse-inner,
.bc-starter-inner,
.bc-footer-inner {
  width: min(1460px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.bc-section-head {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
}

.bc-section-head h2 {
  margin: 0;
  font-size: 68px;
  line-height: 1.06;
  letter-spacing: 0;
}

.bc-section-head > p {
  max-width: 490px;
  margin: 0 0 5px;
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.8;
}

.bc-filters {
  display: flex;
  margin-bottom: 28px;
  padding: 16px 0;
  gap: 7px;
  flex-wrap: wrap;
  border-top: 1px solid var(--bc-ink);
  border-bottom: 1px solid var(--bc-line);
}

.bc-filters button {
  min-height: 36px;
  padding: 0 11px;
  color: #4f4f4f;
  background: transparent;
  border: 1px solid #c5c5c5;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: transform var(--motion-instant) var(--ease-smooth);
}

.bc-filters button:hover,
.bc-filters button:focus-visible {
  color: var(--bc-ink);
  border-color: var(--bc-ink);
  outline: none;
  transform: translateY(-2px);
}

.bc-filters button[aria-pressed="true"] {
  color: var(--bc-white);
  background: var(--bc-ink);
  border-color: var(--bc-ink);
}

.bc-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 58px;
}

.bc-case {
  display: block;
  min-width: 0;
}

.bc-case[hidden] {
  display: none;
}

.bc-case-featured {
  grid-column: 1 / -1;
}

.bc-case figure {
  position: relative;
  margin: 0 0 19px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bc-mist);
}

.bc-case:not(.bc-case-featured) figure {
  aspect-ratio: 4 / 3;
}

.bc-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-smooth);
}

.bc-case:hover img,
.bc-case:focus-visible img {
  transform: scale(1.025);
}

.bc-image-reveal::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bc-coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
}

.motion-ready .bc-case:not(.is-visible) .bc-image-reveal::after {
  transform: scaleX(1);
}

.motion-ready .bc-case.is-visible .bc-image-reveal::after {
  transition: transform var(--motion-slow) var(--ease-smooth) 110ms;
  transform: scaleX(0);
}

.bc-case > div {
  position: relative;
  padding-right: 90px;
}

.bc-case span {
  color: var(--bc-teal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-case h3 {
  max-width: 930px;
  margin: 9px 0 0;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
}

.bc-case-featured h3 {
  font-size: 40px;
}

.bc-case small {
  position: absolute;
  top: 2px;
  right: 0;
  color: #747474;
  font-size: 10px;
}

.bc-platform {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  color: var(--bc-white);
  background: var(--bc-ink);
}

.bc-platform-copy,
.bc-platform-list {
  padding-top: 100px;
  padding-bottom: 106px;
}

.bc-platform-copy {
  padding-right: clamp(38px, 7vw, 110px);
  padding-left: max(32px, calc((100vw - 1460px) / 2));
  background: var(--bc-teal);
}

.bc-platform-copy .bc-section-kicker::before {
  background: var(--bc-yellow);
}

.bc-platform h2 {
  margin: 0 0 30px;
  font-size: 94px;
  line-height: 0.98;
  letter-spacing: 0;
}

.bc-platform h2 em {
  color: var(--bc-yellow);
}

.bc-platform-copy > p:not(.bc-section-kicker) {
  max-width: 580px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.bc-text-link {
  display: inline-flex;
  padding-bottom: 7px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.bc-text-link span {
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-text-link:hover span,
.bc-text-link:focus-visible span {
  transform: translate(3px, 3px);
}

.bc-platform-list {
  padding-right: max(32px, calc((100vw - 1460px) / 2));
  padding-left: clamp(38px, 7vw, 110px);
}

.bc-platform-list article {
  display: grid;
  min-height: 122px;
  padding: 22px 0;
  grid-template-columns: 46px minmax(180px, 0.8fr) minmax(220px, 1.2fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--bc-line-light);
}

.bc-platform-list article:last-child {
  border-bottom: 1px solid var(--bc-line-light);
}

.bc-platform-list span {
  color: var(--bc-coral);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.bc-platform-list h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.bc-platform-list p {
  margin: 0;
  color: #bcbcbc;
  font-size: 13px;
  line-height: 1.7;
}

.bc-floor {
  padding: 108px 0 118px;
  color: var(--bc-white);
  background: var(--bc-soft-ink);
}

.bc-section-head-light > p {
  color: #bcbcbc;
}

.bc-floor-tool {
  display: grid;
  padding-top: 20px;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.5fr);
  gap: 22px;
  border-top: 1px solid var(--bc-line-light);
}

.bc-floor-main {
  min-width: 0;
}

.bc-floor-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--bc-ink);
  background: #f5f7f6;
  border: 8px solid #3b3b3b;
}

.bc-stage {
  position: absolute;
  top: 8%;
  left: 6%;
  display: grid;
  width: 22%;
  height: 16%;
  place-items: center;
  color: var(--bc-white);
  background: var(--bc-ink);
  font-size: 12px;
  font-weight: 900;
}

.bc-aisle-h,
.bc-aisle-v {
  position: absolute;
  background: #dfe5e2;
}

.bc-aisle-h {
  top: 46%;
  left: 4%;
  width: 92%;
  height: 10%;
}

.bc-aisle-v {
  top: 5%;
  left: 47%;
  width: 7%;
  height: 90%;
}

.bc-booth {
  position: absolute;
  display: grid;
  width: 12%;
  height: 13%;
  padding: 0;
  place-items: center;
  color: var(--bc-ink);
  background: var(--bc-white);
  border: 2px solid var(--bc-teal);
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-booth:hover,
.bc-booth:focus-visible {
  outline: none;
  transform: translateY(-3px);
}

.bc-booth[aria-pressed="true"] {
  background: var(--bc-yellow);
  border-color: var(--bc-ink);
}

.bc-booth.is-booked {
  color: #697377;
  background: #d8dedb;
  border-color: #a9b2ae;
  cursor: not-allowed;
}

.booth-a01 { top: 10%; left: 33%; }
.booth-a02 { top: 10%; left: 56%; }
.booth-a03 { top: 10%; left: 71%; }
.booth-b01 { top: 30%; left: 18%; }
.booth-b02 { top: 30%; left: 33%; }
.booth-b03 { top: 30%; left: 56%; }
.booth-b04 { top: 30%; left: 71%; }
.booth-c01 { top: 64%; left: 18%; }
.booth-c02 { top: 64%; left: 33%; }
.booth-c03 { top: 64%; left: 56%; }
.booth-c04 { top: 64%; left: 71%; }

.bc-floor-legend {
  display: flex;
  margin-top: 17px;
  gap: 20px;
  flex-wrap: wrap;
  color: #c1c1c1;
  font-size: 11px;
}

.bc-floor-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bc-floor-legend i {
  width: 11px;
  height: 11px;
  background: var(--bc-white);
  border: 2px solid var(--bc-teal);
}

.bc-floor-legend i.is-selected {
  background: var(--bc-yellow);
  border-color: var(--bc-yellow);
}

.bc-floor-legend i.is-booked {
  background: #9fa9a5;
  border-color: #9fa9a5;
}

.bc-floor-info {
  display: flex;
  min-height: 100%;
  padding: 31px;
  flex-direction: column;
  color: var(--bc-ink);
  background: var(--bc-white);
}

.bc-floor-info > small {
  margin-bottom: 18px;
  color: var(--bc-teal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-floor-info h3 {
  margin: 0 0 13px;
  font-size: 31px;
  letter-spacing: 0;
}

.bc-floor-info > p {
  margin: 0 0 28px;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.75;
}

.bc-floor-info dl {
  display: grid;
  margin: 0 0 30px;
}

.bc-floor-info dl div {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--bc-line);
  font-size: 12px;
}

.bc-floor-info dt,
.bc-floor-info dd {
  margin: 0;
}

.bc-floor-info dd {
  font-weight: 900;
  text-align: right;
}

.bc-floor-action {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--bc-white);
  background: var(--bc-teal);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.bc-floor-action span {
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-floor-action:hover,
.bc-floor-action:focus-visible {
  color: var(--bc-ink);
  background: var(--bc-yellow);
  outline: none;
}

.bc-floor-action:hover span,
.bc-floor-action:focus-visible span {
  transform: translateX(4px);
}

.bc-services {
  padding: 108px 0 114px;
  background: var(--bc-mist);
}

.bc-services-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 92px;
}

.bc-services h2 {
  margin: 0;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: 0;
}

.bc-service-list {
  border-top: 1px solid var(--bc-ink);
}

.bc-service-list article {
  display: grid;
  min-height: 112px;
  padding: 22px 0;
  grid-template-columns: 45px minmax(190px, 0.75fr) minmax(230px, 1fr) 28px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--bc-line);
}

.bc-service-list span {
  color: var(--bc-coral);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.bc-service-list h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.bc-service-list p {
  margin: 0;
  color: #555f5d;
  font-size: 13px;
  line-height: 1.65;
}

.bc-service-list b {
  color: var(--bc-teal);
  font-size: 19px;
  font-weight: 400;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-service-list article:hover b {
  transform: translate(3px, -3px);
}

.bc-starter {
  padding: 104px 0 112px;
  color: var(--bc-white);
  background: var(--bc-ink);
}

.bc-starter-inner {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: 98px;
  align-items: start;
}

.bc-starter .bc-section-kicker::before {
  background: var(--bc-yellow);
}

.bc-starter h2 {
  max-width: 780px;
  margin: 0;
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: 0;
}

.bc-starter h2 em {
  color: var(--bc-yellow);
  font-family: Georgia, "Noto Serif TC", serif;
  font-style: italic;
  font-weight: 500;
}

.bc-starter-copy > p {
  max-width: 610px;
  margin: 2px 0 36px;
  color: #c5c5c5;
  font-size: 16px;
  line-height: 1.85;
}

.bc-starter-copy ul {
  margin: 0 0 35px;
  padding: 0;
  border-top: 1px solid var(--bc-line-light);
  list-style: none;
}

.bc-starter-copy li {
  display: grid;
  min-height: 64px;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--bc-line-light);
}

.bc-starter-copy li span {
  color: var(--bc-coral);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.bc-starter-copy li strong {
  font-size: 14px;
}

.bc-starter-copy > a {
  display: flex;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--bc-ink);
  background: var(--bc-yellow);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 900;
}

.bc-starter-copy > a span {
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.bc-starter-copy > a:hover,
.bc-starter-copy > a:focus-visible {
  background: var(--bc-coral);
  outline: none;
}

.bc-starter-copy > a:hover span,
.bc-starter-copy > a:focus-visible span {
  transform: translateX(4px);
}

.bc-footer {
  color: var(--bc-white);
  background: var(--bc-coral);
}

.bc-footer-inner {
  display: grid;
  min-height: 430px;
  padding: 88px 0 116px;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
}

.bc-footer small {
  color: var(--bc-ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-footer h2 {
  margin: 17px 0 0;
  font-size: 88px;
  line-height: 1.01;
  letter-spacing: 0;
}

.bc-footer h2 em {
  color: var(--bc-ink);
}

.bc-footer-contact {
  display: grid;
  padding-top: 19px;
  gap: 13px;
  border-top: 1px solid rgba(18, 18, 18, 0.55);
  color: var(--bc-ink);
  font-size: 13px;
}

.bc-footer-contact strong {
  font-size: 16px;
}

.bc-footer-contact a {
  width: fit-content;
  font-weight: 900;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
}

.motion-ready [data-reveal][data-delay="1"] { transform: translateY(31px); }
.motion-ready [data-reveal][data-delay="2"] { transform: translateY(36px); }
.motion-ready [data-reveal][data-delay="3"] { transform: translateY(41px); }

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--motion-slow) var(--ease-smooth), transform var(--motion-slow) var(--ease-smooth);
}

.motion-ready [data-reveal][data-delay="1"].is-visible { transition-delay: 90ms; }
.motion-ready [data-reveal][data-delay="2"].is-visible { transition-delay: 170ms; }
.motion-ready [data-reveal][data-delay="3"].is-visible { transition-delay: 250ms; }

.motion-static .page-curtain {
  display: none;
}

.motion-static .bc-hero-media img,
.motion-static .bc-kicker,
.motion-static .bc-hero h1,
.motion-static .bc-hero-bottom {
  animation: none;
  opacity: 1;
}

@media (max-width: 1080px) {
  .bc-event-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .bc-event-lead {
    grid-column: 1 / -1;
    min-height: 82px;
    padding-left: 32px;
    border-bottom: 1px solid var(--bc-line-light);
  }

  .bc-metrics-inner {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
  }

  .bc-platform-list article,
  .bc-service-list article {
    grid-template-columns: 42px 1fr;
  }

  .bc-platform-list p,
  .bc-service-list p {
    grid-column: 2;
  }

  .bc-service-list b {
    display: none;
  }

  .bc-floor-tool {
    grid-template-columns: 1fr;
  }

  .bc-floor-info {
    min-height: 330px;
  }

  .bc-inhouse-inner,
  .bc-starter-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .bc-header {
    width: min(100% - 36px, 1460px);
  }

  .bc-header .mobile-nav nav {
    position: absolute;
    top: 51px;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 36px));
    padding: 12px;
    color: var(--bc-ink);
    background: var(--bc-white);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  }

  .bc-header .mobile-nav nav a {
    padding: 13px 11px;
    border-bottom: 1px solid var(--bc-line);
    font-size: 13px;
    font-weight: 800;
  }

  .bc-hero-inner,
  .bc-metrics-inner,
  .bc-section-head,
  .bc-filters,
  .bc-case-grid,
  .bc-floor-tool,
  .bc-services-inner,
  .bc-inhouse-inner,
  .bc-starter-inner,
  .bc-footer-inner {
    width: min(100% - 36px, 1460px);
  }

  .bc-hero {
    height: clamp(560px, 78svh, 700px);
  }

  .bc-hero-inner {
    padding: 110px 0 39px;
  }

  .bc-hero h1 {
    font-size: 58px;
  }

  .bc-hero-bottom p {
    font-size: 14px;
  }

  .bc-metrics-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .bc-metrics-inner > p {
    grid-column: 1 / -1;
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--bc-line);
  }

  .bc-section-head,
  .bc-platform,
  .bc-services-inner,
  .bc-footer-inner {
    grid-template-columns: 1fr;
  }

  .bc-section-head {
    gap: 25px;
  }

  .bc-platform-copy,
  .bc-platform-list {
    padding: 74px 18px;
  }

  .bc-platform-copy,
  .bc-platform-list {
    padding-right: max(18px, calc((100vw - 720px) / 2));
    padding-left: max(18px, calc((100vw - 720px) / 2));
  }

  .bc-platform-list {
    padding-top: 0;
  }

  .bc-services-inner {
    gap: 52px;
  }

  .bc-inhouse h2,
  .bc-starter h2 {
    font-size: 53px;
  }

  .bc-footer-inner {
    min-height: 500px;
    gap: 70px;
  }
}

@media (max-width: 620px) {
  .bc-brand small {
    display: none;
  }

  .bc-hero h1 {
    font-size: 38px;
  }

  .bc-hero-media img {
    object-position: 58% center;
  }

  .bc-hero-shade {
    background: rgba(8, 8, 8, 0.62);
  }

  .bc-hero-bottom {
    margin-top: 27px;
  }

  .bc-round-link {
    display: none;
  }

  .bc-event-rail {
    grid-template-columns: 1fr;
  }

  .bc-event-lead {
    grid-column: auto;
  }

  .bc-event-lead,
  .bc-event-link {
    min-height: 79px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--bc-line-light);
  }

  .bc-metrics {
    padding: 24px 0;
  }

  .bc-metrics-inner {
    grid-template-columns: 1fr;
  }

  .bc-metrics-inner > p,
  .bc-metric {
    min-height: 104px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--bc-line);
  }

  .bc-metric {
    flex-direction: row;
    align-items: center;
  }

  .bc-metric strong {
    font-size: 42px;
  }

  .bc-work,
  .bc-floor,
  .bc-services,
  .bc-inhouse,
  .bc-starter {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .bc-section-head h2 {
    font-size: 39px;
  }

  .bc-inhouse h2,
  .bc-starter h2 {
    font-size: 39px;
  }

  .bc-inhouse-inner,
  .bc-starter-inner {
    gap: 38px;
  }

  .bc-inhouse-detail > p,
  .bc-starter-copy > p {
    font-size: 15px;
  }

  .bc-production-flow > div {
    min-height: 118px;
    grid-template-columns: 35px 1fr;
    gap: 10px 14px;
  }

  .bc-production-flow small {
    grid-column: 2;
  }

  .bc-case-grid {
    grid-template-columns: 1fr;
    row-gap: 45px;
  }

  .bc-case-featured {
    grid-column: auto;
  }

  .bc-case figure,
  .bc-case:not(.bc-case-featured) figure {
    aspect-ratio: 4 / 3;
  }

  .bc-case > div {
    padding-right: 0;
  }

  .bc-case h3,
  .bc-case-featured h3 {
    font-size: 22px;
  }

  .bc-case small {
    position: static;
    display: block;
    margin-top: 11px;
  }

  .bc-platform-copy,
  .bc-platform-list {
    padding-right: 18px;
    padding-left: 18px;
  }

  .bc-platform h2 {
    font-size: 52px;
  }

  .bc-platform-list article {
    grid-template-columns: 34px 1fr;
  }

  .bc-floor-canvas {
    aspect-ratio: 4 / 3;
  }

  .bc-booth {
    width: 14%;
    height: 15%;
    font-size: 9px;
  }

  .booth-a03,
  .booth-b04,
  .booth-c04 {
    left: 76%;
  }

  .bc-floor-info {
    min-height: 350px;
    padding: 25px;
  }

  .bc-services h2 {
    font-size: 39px;
  }

  .bc-service-list article {
    min-height: 132px;
    grid-template-columns: 34px 1fr;
  }

  .bc-service-list h3 {
    font-size: 18px;
  }

  .bc-footer h2 {
    font-size: 47px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-curtain {
    display: none;
  }

  .bc-hero-media img,
  .bc-kicker,
  .bc-hero h1,
  .bc-hero-bottom {
    animation: none;
    opacity: 1;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 150ms linear;
  }

  .motion-ready .bc-case:not(.is-visible) .bc-image-reveal::after,
  .motion-ready .bc-case.is-visible .bc-image-reveal::after {
    transform: scaleX(0);
    transition: none;
  }
}
