:root {
  --bg: #07080a;
  --bg-soft: #0c0f13;
  --panel: #11151a;
  --panel-2: #151a20;
  --text: #f3f5f7;
  --muted: #9ca5ae;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --electric: #57e6c4;
  --electric-soft: rgba(87, 230, 196, 0.12);
  --amber: #ffcf58;
  --red: #ff5b66;
  --max: 1180px;
  --radius: 18px;
  --header-height: 78px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 12px); overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-height);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { max-width: 100%; }

::selection { background: var(--electric); color: #02110d; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--text);
  color: var(--bg);
  padding: 0.8rem 1rem;
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.08;
  background: linear-gradient(to bottom, transparent 49%, rgba(255,255,255,.08) 50%, transparent 51%);
  background-size: 100% 5px;
}

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 120px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}
.site-header.scrolled {
  background: rgba(7, 8, 10, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .7rem;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.brand-primary { font-size: .95rem; font-weight: 800; }
.brand-secondary {
  font: 600 .68rem/1 Roboto Mono, monospace;
  letter-spacing: .15em;
  color: var(--electric);
}
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a { color: #d7dce1; font-size: .9rem; font-weight: 600; }
.primary-nav a:hover { color: white; }
.primary-nav .nav-cta {
  border: 1px solid var(--line-strong);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.nav-toggle { display: none; }

.hero { padding-top: 92px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,230,196,.11), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}
.eyebrow, .kicker {
  font: 600 .76rem/1.2 Roboto Mono, monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--electric);
}
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1.5rem; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 0 6px rgba(87,230,196,.08), 0 0 18px rgba(87,230,196,.55);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .45; transform: scale(.82); } }
.hero h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: .94;
  letter-spacing: -.065em;
  margin: 0;
  max-width: 830px;
}
.hero-lede {
  max-width: 730px;
  color: #bcc3ca;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  margin: 2rem 0 0;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2.4rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--electric); color: #04120e; }
.button-primary:hover { background: #78edd2; }
.button-secondary { border-color: var(--line-strong); color: white; background: rgba(255,255,255,.02); }
.button-secondary:hover { border-color: rgba(255,255,255,.4); }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.25rem;
  margin-top: 2.2rem;
  color: #7f8993;
  font: 500 .68rem/1.4 Roboto Mono, monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-console {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(14, 18, 22, .86);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.console-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
  color: #8f98a2;
  font: 500 .63rem/1 Roboto Mono, monospace;
  letter-spacing: .08em;
}
.console-lights { display: flex; gap: 5px; }
.console-lights i { width: 7px; height: 7px; border-radius: 50%; background: #404850; }
.console-lights i:nth-child(1) { background: var(--red); }
.console-lights i:nth-child(2) { background: var(--amber); }
.console-lights i:nth-child(3) { background: var(--electric); }
.console-display { padding: 1.1rem; }
.system-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  font: 500 .72rem/1.2 Roboto Mono, monospace;
  letter-spacing: .05em;
  color: #87919b;
}
.system-row strong { color: var(--electric); font-weight: 600; }
.signal-field {
  height: 150px;
  margin: 1rem 0;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(87,230,196,.025), rgba(87,230,196,.08));
  border-radius: 12px;
  overflow: hidden;
}
.signal-field span {
  flex: 1;
  height: var(--h);
  min-width: 6px;
  background: linear-gradient(to top, rgba(87,230,196,.2), var(--electric));
  border-radius: 2px 2px 0 0;
  animation: signal 2.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--h) * -0.02);
}
@keyframes signal { to { height: calc(var(--h) * .55); opacity: .55; } }
.ready-panel {
  min-height: 88px;
  border: 1px solid rgba(87,230,196,.35);
  background: var(--electric-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  font-family: Roboto Mono, monospace;
}
.ready-label { color: #9ba6af; font-size: .7rem; letter-spacing: .08em; }
.ready-value { color: var(--electric); font-size: 1.8rem; font-weight: 600; letter-spacing: .06em; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-strip .container { padding: 1.4rem 0; }
.trust-strip p { margin: 0 0 .8rem; color: #737d87; font: 500 .62rem/1 Roboto Mono, monospace; text-transform: uppercase; letter-spacing: .13em; }
.title-marquee { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: #d5dae0; font-size: .77rem; font-weight: 700; letter-spacing: .03em; }
.title-marquee i { width: 3px; height: 3px; border-radius: 50%; background: #5d6872; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.kicker { margin: 0 0 1rem; }
.section-heading h2, .reliability h2, .contact h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.section-heading > p { color: var(--muted); margin: 0; font-size: 1.02rem; }

.work { background: linear-gradient(to bottom, transparent, rgba(255,255,255,.015), transparent); }

.feud-franchise {
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(255,255,255,.02), transparent 30%, rgba(255,255,255,.015));
}
.feud-franchise .section-heading > p em {
  font-style: italic;
}
.project-media-family-feud-celebrity img { object-position: 51% center; }
.project-media-family-feud-botswana img {
  height: 112%;
  object-position: center 38%;
  transform: translateY(-6%) scale(var(--project-media-scale, 1));
}
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; }
.project-card {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}
.project-card-featured { grid-row: span 2; min-height: 916px; }
.project-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  background: linear-gradient(to bottom, transparent, var(--panel) 34%);
  pointer-events: none;
  z-index: 1;
}
.project-content { position: relative; z-index: 2; max-width: 560px; margin-top: auto; padding: 1.5rem 1rem 1rem; }
.project-type { color: var(--electric); font: 500 .68rem/1.2 Roboto Mono, monospace; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 .8rem; }
.project-content h3 { margin: 0; font-size: clamp(2.1rem, 4vw, 4rem); letter-spacing: -.05em; line-height: 1; }
.project-card:not(.project-card-featured) .project-content h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  white-space: nowrap;
}

.project-card:not(.project-card-featured) .project-content h3.project-title-canada {
  font-size: clamp(1.9rem, 2.7vw, 2.9rem);
  letter-spacing: -.055em;
}
.project-content > p:not(.project-type) { color: #aab2ba; max-width: 590px; margin: 1rem 0 0; }
.tag-list { list-style: none; padding: 0; margin: 1.3rem 0 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.tag-list li { padding: .4rem .65rem; border: 1px solid var(--line); border-radius: 999px; color: #bbc2c9; font: 500 .64rem/1 Roboto Mono, monospace; }
.project-visual { position: absolute; inset: 48px 26px auto; height: 50%; display: grid; place-items: center; }
.project-card-featured .project-visual { height: 58%; top: 70px; }

.answer-board { width: min(88%, 560px); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; transform: perspective(900px) rotateX(5deg); }
.answer-board span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1rem;
  background: #122d42;
  border: 3px solid #406a85;
  box-shadow: inset 0 0 0 3px #081c2b;
  color: #f6e7b5;
  font: 600 1.15rem/1 Roboto Mono, monospace;
}
.price-visual { align-content: center; }
.price-digits { display: flex; gap: 7px; }
.price-digits span {
  width: 52px;
  height: 74px;
  display: grid;
  place-items: center;
  background: #efe7d7;
  color: #161616;
  border-radius: 5px;
  font: 600 2.5rem/1 Roboto Mono, monospace;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,.08);
}
.price-marker { width: 75%; height: 8px; margin: 22px auto 0; border-radius: 999px; background: var(--amber); box-shadow: 0 0 24px rgba(255,207,88,.28); }
.pyl-grid { width: min(90%, 420px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; transform: rotate(-2deg); }
.pyl-grid span, .pyl-grid strong { aspect-ratio: 1; border: 2px solid rgba(255,207,88,.7); background: #182b47; display: grid; place-items: center; box-shadow: inset 0 0 20px rgba(255,207,88,.08); }
.pyl-grid strong { color: #141414; background: var(--amber); font: 800 1rem/1 Inter, sans-serif; }
.more-credits {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}
.more-credits > span { color: #7f8992; font: 500 .66rem/1.4 Roboto Mono, monospace; text-transform: uppercase; letter-spacing: .1em; }
.more-credits div { display: flex; flex-wrap: wrap; gap: .75rem 1.3rem; }
.more-credits b { font-size: .95rem; font-weight: 600; color: #d9dde1; }

.capabilities { border-top: 1px solid var(--line); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability { min-height: 280px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability h3 { margin: 3.8rem 0 .8rem; font-size: 1.25rem; letter-spacing: -.02em; }
.capability p { color: var(--muted); margin: 0; font-size: .92rem; }

.reliability { background: #e9ecef; color: #0b0d0f; }
.reliability-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.reliability .kicker { color: #087f69; }
.reliability-copy > p:last-child { color: #4e565d; max-width: 570px; margin: 1.8rem 0 0; font-size: 1.04rem; }
.reliability-stack { border-top: 1px solid rgba(0,0,0,.18); }
.reliability-item { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(0,0,0,.18); }
.reliability-item > span { font: 500 .68rem/1.4 Roboto Mono, monospace; color: #667078; }
.reliability-item strong { font-size: 1.08rem; }
.reliability-item p { color: #626b72; margin: .25rem 0 0; font-size: .9rem; }

.approach { border-bottom: 1px solid var(--line); }
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-step {
  position: relative;
  min-width: 0;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -.55rem;
  width: 1.1rem;
  height: 1.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87,230,196,.32);
  border-radius: 999px;
  background: #0b0e12;
  color: var(--electric);
  transform: translate(50%, -50%);
  font: 600 .62rem/1 Roboto Mono, monospace;
  box-shadow: 0 0 20px rgba(87,230,196,.08);
}
.process-media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  background: #0b0e12;
}
.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7,8,10,.04) 48%, rgba(7,8,10,.46)),
    linear-gradient(to right, rgba(87,230,196,.055), transparent 55%);
}
.process-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}
.process-step:hover .process-media img {
  transform: scale(1.035);
  filter: brightness(1.04);
}
.process-understand .process-media img { object-position: center 48%; }
.process-engineer .process-media img { object-position: center 43%; }
.process-validate .process-media img { object-position: center 52%; }
.process-deliver .process-media img { object-position: center 48%; }
.process-copy {
  flex: 1;
  padding: 1.4rem 1.35rem 1.55rem;
  border-top: 1px solid var(--line);
}
.process-copy h3 {
  margin: 0 0 .75rem;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}
.process-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.contact { position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -340px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,230,196,.11), transparent 70%);
}
.contact-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 110px); align-items: start; }
.contact-copy > p:not(.kicker) { color: var(--muted); max-width: 560px; margin: 1.5rem 0 0; }
.contact-meta { margin-top: 3rem; display: flex; flex-direction: column; gap: .4rem; font: 500 .67rem/1.5 Roboto Mono, monospace; color: #7f8992; text-transform: uppercase; letter-spacing: .08em; }
.contact-form { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.contact-form label { display: block; color: #bdc4ca; font-size: .78rem; font-weight: 600; margin-bottom: 1rem; }
.field-optional { color: #7f8992; font-weight: 500; text-transform: none; }
.contact-form input, .contact-form textarea {
  width: 100%;
  display: block;
  margin-top: .45rem;
  border: 1px solid var(--line);
  background: #0b0e12;
  color: white;
  border-radius: 10px;
  padding: .85rem .9rem;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--electric); box-shadow: 0 0 0 3px rgba(87,230,196,.09); }
.contact-form .button { width: 100%; margin-top: .2rem; }
.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.form-status { margin: .85rem 0 0; color: #79838c; font-size: .72rem; }
.form-status.success { color: var(--electric); }
.form-status.error { color: #ff8f8f; }

.site-footer { border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; }
.site-footer p { margin: 0; color: #727c85; font-size: .72rem; }
.brand-footer .brand-primary { color: #cfd4d9; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section-pad { padding: 90px 0; }
  .hero-grid, .reliability-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-console { max-width: 620px; transform: none; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-featured { min-height: 720px; grid-row: auto; }
  .project-card { min-height: 520px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .process-step:not(:last-child)::after { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 76px 0; }
  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 50%;
    color: white;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 17px; height: 1px; background: currentColor; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 20px 2rem;
    background: rgba(7,8,10,.98);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: .7rem 0; font-size: 1rem; }
  .primary-nav .nav-cta { text-align: center; padding: .85rem 1rem; margin-top: .5rem; }
  .hero { padding-top: 56px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5.8rem); }
  .hero-grid { gap: 50px; }
  .hero-note { flex-direction: column; gap: .3rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.3rem; margin-bottom: 2.5rem; }
  .project-card, .project-card-featured { min-height: 590px; }
  .project-card-featured .project-visual, .project-visual { height: 42%; top: 58px; }
  .answer-board span { min-height: 56px; }
  .more-credits { grid-template-columns: 1fr; gap: 1rem; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: 230px; }
  .capability h3 { margin-top: 2.8rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; }
  .process-media { aspect-ratio: 16 / 9; }
  .process-copy { padding: 1.25rem 1.25rem 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: .7rem; }
}

@media (max-width: 430px) {
  .brand { gap: .45rem; }
  .brand-primary { font-size: .82rem; }
  .brand-secondary { font-size: .57rem; }
  .console-topbar { grid-template-columns: auto 1fr; }
  .console-time { display: none; }
  .ready-value { font-size: 1.45rem; }
  .price-digits span { width: 42px; height: 62px; font-size: 2rem; }
  .project-card, .project-card-featured { min-height: 560px; padding: 1rem; }
  .project-content { padding-inline: .25rem; }
}

/* Approved Fremantle Game Systems brand and production imagery */
.brand {
  align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: 188px;
  height: auto;
}
.brand-logo-footer { width: 174px; opacity: .86; }

.hero-grid {
  grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
  gap: clamp(42px, 6vw, 88px);
}
.hero h1 { font-size: clamp(3.35rem, 6.25vw, 6.45rem); }

.hero-stage {
  position: relative;
  min-height: 600px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0e12;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-slides,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 850ms ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}
.hero-slide[data-slide="0"] img { object-position: 51% center; }
.hero-slide[data-slide="1"] img { object-position: 47% center; }
.hero-slide[data-slide="2"] img { object-position: center 45%; }
.hero-stage-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(7,8,10,.08) 35%, rgba(7,8,10,.9) 100%),
    linear-gradient(to right, rgba(7,8,10,.16), transparent 45%);
}
.stage-status {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(5,7,9,.58);
  backdrop-filter: blur(12px);
  color: #d5dbe0;
  font: 500 .63rem/1 Roboto Mono, monospace;
  letter-spacing: .08em;
}
.stage-status .status-dot { width: 7px; height: 7px; }
.stage-status strong { color: white; font-weight: 600; }
.stage-controls {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
}
.stage-control {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: .8rem .75rem;
  background: rgba(6,8,10,.62);
  color: #c6cdd3;
  backdrop-filter: blur(12px);
  text-align: left;
  cursor: pointer;
  font: 600 .66rem/1.25 Inter, sans-serif;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.stage-control span {
  display: block;
  margin-bottom: .3rem;
  color: #78838d;
  font: 500 .57rem/1 Roboto Mono, monospace;
}
.stage-control:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.36); }
.stage-control.active {
  border-color: rgba(87,230,196,.66);
  background: rgba(7,22,18,.76);
  color: white;
}
.stage-control.active span { color: var(--electric); }

.project-card { padding: 0; }
.project-card::after {
  height: 51%;
  background: linear-gradient(to bottom, transparent, rgba(17,21,26,.93) 45%, var(--panel) 84%);
}
.project-number {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  left: 1.25rem;
  padding: .45rem .55rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(6,8,10,.58);
  backdrop-filter: blur(10px);
  color: #d3d9de;
}
.project-content {
  padding: 1.5rem 2rem 2rem;
  transform: translateY(.6rem);
}
.project-media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.project-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
  transform: scale(var(--project-media-scale, 1));
}
.project-card:hover .project-media img { --project-media-scale: 1.025; }
.project-card-featured .project-media img { object-position: 35% center; }
.project-content h3.long-title { font-size: clamp(1.65rem, 2.4vw, 2.55rem) !important; white-space: normal !important; line-height: 1.05; }
.project-media-family-feud-canada img { object-position: center 28%; }
.project-media-family-feud-syndicated img { object-position: center 30%; }
.project-media-press-your-luck img { object-position: 46% center; }
.project-card-featured .project-media-price-right img {
  height: 48%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(var(--project-media-scale, 1));
}
.project-card-featured:has(.project-media-price-right) .project-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 47%;
  margin-top: 0;
  padding-top: .85rem;
}
.project-media-agt img {
  height: 126%;
  transform: translateY(-21%) scale(var(--project-media-scale, 1));
}
.project-media-game-of-talents img {
  height: 116%;
  object-position: center 30%;
  transform: translateY(-18%) scale(var(--project-media-scale, 1));
}
.project-media-double-dare img {
  height: 120%;
  object-position: center 18%;
  transform: translateY(-18%) scale(var(--project-media-scale, 1));
}
.project-media-to-tell-truth img {
  height: 120%;
  transform: translateY(-18%) scale(var(--project-media-scale, 1));
}
.project-media-supermarket img {
  height: 118%;
  transform: translateY(-2%) scale(var(--project-media-scale, 1));
}
.project-media-beat-clock img {
  height: 118%;
  transform: translateY(-5%) scale(var(--project-media-scale, 1));
}
.project-media-match-game img {
  height: 140%;
  transform: translateY(-32%) scale(var(--project-media-scale, 1));
}
.project-media-password img {
  height: 118%;
  transform: translateY(-6%) scale(var(--project-media-scale, 1));
}
.project-media-card-sharks img {
  height: 122%;
  transform: translateY(-17%) scale(var(--project-media-scale, 1));
  object-position: 65% center;
}
.project-media-tug-of-words img {
  height: 112%;
  transform: translateY(-10%) scale(var(--project-media-scale, 1));
}
.project-title-long { font-size: clamp(1.35rem, 4.7vw, 2.65rem) !important; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 620px; }
  .project-card-featured:has(.project-media-price-right) {
    min-height: 680px;
  }
  .project-card-featured .project-media-price-right img {
    height: 62%;
    object-position: 66% center;
  }
  .project-card-featured:has(.project-media-price-right) .project-content {
    top: 58%;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .brand-logo { width: 154px; }
  .project-card-featured:has(.project-media-price-right) {
    min-height: 620px;
  }
  .project-card-featured:has(.project-media-price-right) .project-content {
    top: 55%;
  }
  .hero-stage { min-height: 520px; }
  .stage-controls { grid-template-columns: 1fr; }
  .stage-control {
    display: grid;
    grid-template-columns: 26px 1fr;
    align-items: center;
    gap: .4rem;
    padding: .62rem .7rem;
  }
  .stage-control span { margin: 0; }
  .project-content {
    padding: 1.5rem 1.25rem 1.5rem;
    transform: translateY(.4rem);
  }
}

@media (max-width: 430px) {
  .brand-logo { width: 136px; }
  .hero-stage { min-height: 470px; }
  .stage-status { grid-template-columns: auto 1fr; }
  .stage-status strong { display: none; }
}


/* Live Events */
.live-events {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(255,207,88,.075), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(87,230,196,.065), transparent 30%),
    linear-gradient(to bottom, rgba(255,255,255,.018), rgba(255,255,255,.006));
}
.live-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.live-event-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
}
.live-event-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b0e12;
}
.live-event-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 52%, rgba(7,8,10,.7));
}
.live-event-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}
.live-event-card:hover .live-event-media img { transform: scale(1.025); }
.live-event-media-feud img { object-position: center 48%; }
.live-event-media-price img { object-position: center 72%; }
.feud-heading-lockup {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.live-event-media-press img { object-position: center 66%; }
.live-event-line {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: .9rem;
  padding: .5rem .65rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(5,7,9,.62);
  backdrop-filter: blur(10px);
  color: #eef1f4;
  font: 600 .61rem/1 Roboto Mono, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-event-copy { padding: 1.6rem 1.6rem 1.8rem; }
.live-event-type {
  margin: 0 0 .75rem;
  color: var(--electric);
  font: 500 .66rem/1.2 Roboto Mono, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.live-event-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.live-event-copy > p:last-child {
  margin: 1rem 0 0;
  color: #aab2ba;
}

@media (max-width: 980px) {
  .live-event-grid { grid-template-columns: 1fr; }
  .live-event-card {
    display: grid;
    grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  }
  .live-event-media { aspect-ratio: auto; min-height: 360px; }
  .live-event-copy { display: flex; flex-direction: column; justify-content: center; }
}

@media (max-width: 760px) {
  .live-event-card { display: block; }
  .live-event-media { min-height: 0; aspect-ratio: 16 / 10; }
  .live-event-copy { padding: 1.4rem 1.25rem 1.6rem; }
  .live-event-copy h3 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
}

/* Full-width The Price Is Right production card */
.work .project-card-featured:has(.project-media-price-right) {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 560px;
}

.work .project-card-featured:has(.project-media-price-right) .project-media-price-right img {
  height: 76%;
  object-position: 68% center;
}

.work .project-card-featured:has(.project-media-price-right) .project-content {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  margin-top: 0;
  padding: 1rem 2rem 1.35rem;
}

@media (max-width: 980px) {
  .work .project-card-featured:has(.project-media-price-right) {
    min-height: 540px;
  }

  .work .project-card-featured:has(.project-media-price-right) .project-media-price-right img {
    height: 74%;
    object-position: 66% center;
  }

  .work .project-card-featured:has(.project-media-price-right) .project-content {
    padding: 1rem 1.5rem 1.25rem;
  }
}

@media (max-width: 760px) {
  .work .project-card-featured:has(.project-media-price-right) {
    min-height: 520px;
  }

  .work .project-card-featured:has(.project-media-price-right) .project-media-price-right img {
    height: 70%;
  }
}


/* Daytime & Special Projects */
.daytime-projects {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(255,207,88,.06), transparent 30%),
    linear-gradient(to bottom, rgba(255,255,255,.012), transparent);
}
.daytime-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.daytime-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
}
.daytime-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0e12;
  outline: none;
}
.daytime-media:focus-visible {
  box-shadow: inset 0 0 0 2px var(--electric);
}
.daytime-frames,
.daytime-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.daytime-frame {
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(var(--frame-scale, 1));
  transition: opacity 280ms ease, transform 320ms ease;
}
.daytime-frame.active { opacity: 1; }
.daytime-card:hover .daytime-frame.active,
.daytime-media:focus .daytime-frame.active { transform: scale(calc(var(--frame-scale, 1) + .018)); }
.daytime-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 54%, rgba(7,8,10,.68));
}
.daytime-media-label {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  padding: .5rem .65rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(5,7,9,.62);
  backdrop-filter: blur(10px);
  color: #eef1f4;
  font: 600 .61rem/1 Roboto Mono, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.daytime-gallery-controls {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.daytime-gallery-button {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(5,7,9,.62);
  backdrop-filter: blur(10px);
  color: #eef1f4;
  font: 500 1.1rem/1 Inter, sans-serif;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.daytime-gallery-button:hover,
.daytime-gallery-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(87,230,196,.6);
  background: rgba(7,22,18,.76);
  outline: none;
}
.daytime-gallery-dots {
  display: flex;
  align-items: center;
  gap: .38rem;
  padding: .45rem .55rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(5,7,9,.62);
  backdrop-filter: blur(10px);
}
.daytime-gallery-dot {
  width: .55rem;
  height: .55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}
.daytime-gallery-dot.active {
  background: var(--electric);
  transform: scale(1.16);
}
.daytime-gallery-dot:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}
.daytime-copy { padding: 1.7rem 1.8rem 2rem; }
.daytime-type {
  margin: 0 0 .75rem;
  color: var(--electric);
  font: 500 .66rem/1.2 Roboto Mono, monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.daytime-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.daytime-copy > p:last-child {
  max-width: 680px;
  margin: 1rem 0 0;
  color: #aab2ba;
}
.daytime-copy em { font-style: italic; }

@media (max-width: 850px) {
  .daytime-grid { grid-template-columns: 1fr; }
  .daytime-gallery-controls {
    right: .8rem;
    bottom: .8rem;
    gap: .4rem;
  }
  .daytime-gallery-dots { padding: .38rem .45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .daytime-frame { transition: none; }
}


/* Forbidden buzzer Easter egg */
.buzzer-easter-egg {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: clamp(90px, 10vw, 140px) 0 clamp(100px, 11vw, 155px);
  background:
    radial-gradient(circle at 50% 45%, rgba(255,91,102,.105), transparent 25%),
    radial-gradient(circle at 50% 82%, rgba(255,255,255,.035), transparent 28%),
    linear-gradient(to bottom, rgba(255,255,255,.012), transparent 55%);
}
.buzzer-easter-egg::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 80px;
  width: min(720px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, rgba(255,255,255,.16), transparent);
}
.buzzer-easter-egg-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.forbidden-buzzer {
  position: relative;
  width: clamp(230px, 28vw, 310px);
  aspect-ratio: 1.25 / 1;
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.forbidden-buzzer:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 12px;
  border-radius: 50%;
}
.buzzer-assembly,
.buzzer-assembly > span {
  position: absolute;
  display: block;
}
.buzzer-assembly { inset: 0; }
.buzzer-floor-shadow {
  left: 50%;
  bottom: 5%;
  width: 78%;
  height: 18%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.72);
  filter: blur(15px);
  transition: transform 160ms ease, opacity 160ms ease;
}
.buzzer-base-bottom {
  left: 50%;
  bottom: 10%;
  width: 80%;
  height: 29%;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    linear-gradient(100deg, #272c32 0%, #aeb5bc 19%, #343a40 38%, #e0e4e7 54%, #4b5258 72%, #171b1f 100%);
  box-shadow:
    inset 0 7px 10px rgba(255,255,255,.18),
    inset 0 -12px 14px rgba(0,0,0,.58),
    0 18px 30px rgba(0,0,0,.42);
}
.buzzer-base-top {
  left: 50%;
  bottom: 23%;
  width: 70%;
  height: 24%;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 32%, #d8dde1 0%, #858d94 35%, #333a40 71%, #161a1e 100%);
  box-shadow:
    inset 0 5px 7px rgba(255,255,255,.24),
    0 4px 12px rgba(0,0,0,.4);
}
.buzzer-neck {
  left: 50%;
  bottom: 33%;
  width: 48%;
  height: 26%;
  border-radius: 22% 22% 40% 40%;
  transform: translateX(-50%);
  transform-origin: bottom;
  background: linear-gradient(90deg, #4a080d, #b71925 20%, #f13a47 49%, #9e101a 78%, #45070b);
  box-shadow:
    inset 0 7px 10px rgba(255,255,255,.12),
    inset 0 -8px 12px rgba(0,0,0,.38);
  transition: transform 130ms cubic-bezier(.2,.8,.2,1);
}
.buzzer-cap {
  left: 50%;
  bottom: 47%;
  width: 59%;
  height: 36%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50% 50% 44% 44% / 56% 56% 40% 40%;
  transform: translate(-50%, -12%);
  transform-origin: center bottom;
  background:
    radial-gradient(ellipse at 34% 18%, #ff9da5 0%, #ff5965 19%, #ed1c2d 47%, #a90614 78%, #65040c 100%);
  box-shadow:
    inset 0 9px 12px rgba(255,255,255,.22),
    inset 0 -15px 18px rgba(79,0,6,.48),
    0 12px 0 #6f070f,
    0 22px 30px rgba(0,0,0,.46),
    0 0 42px rgba(255,54,68,.13);
  transition: transform 130ms cubic-bezier(.2,.8,.2,1), box-shadow 130ms ease, filter 160ms ease;
}
.buzzer-cap-highlight {
  position: absolute;
  left: 23%;
  top: 12%;
  width: 34%;
  height: 20%;
  border-radius: 50%;
  transform: rotate(-10deg);
  background: rgba(255,255,255,.34);
  filter: blur(5px);
}
.forbidden-buzzer:hover .buzzer-cap {
  filter: brightness(1.06) saturate(1.05);
}
.forbidden-buzzer.is-pressed .buzzer-cap {
  transform: translate(-50%, 30%) scaleX(.985) scaleY(.965);
  box-shadow:
    inset 0 7px 11px rgba(255,255,255,.18),
    inset 0 -10px 14px rgba(79,0,6,.5),
    0 3px 0 #6f070f,
    0 10px 18px rgba(0,0,0,.42),
    0 0 58px rgba(255,54,68,.28);
}
.forbidden-buzzer.is-pressed .buzzer-neck {
  transform: translateX(-50%) scaleY(.72);
}
.forbidden-buzzer.is-pressed .buzzer-floor-shadow {
  opacity: .86;
  transform: translateX(-50%) scale(.94);
}
.buzzer-pulse {
  z-index: 0;
  left: 50%;
  top: 15%;
  width: 62%;
  aspect-ratio: 1;
  border: 2px solid rgba(255,91,102,.7);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(.62);
}
.forbidden-buzzer.is-pressed .buzzer-pulse {
  animation: buzzer-pulse 520ms ease-out;
}
.buzzer-warning {
  width: min(1400px, 98vw);
  margin: 1.1rem 0 0;
  color: #dce1e5;
  font-family: Roboto Mono, monospace;
  font-size: clamp(.78rem, 3.35vw, 3.45rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .04em;
  padding-inline: .04em;
  text-align: center;
  white-space: nowrap;
  text-wrap: nowrap;
  overflow-wrap: normal;
  transition: color 160ms ease, text-shadow 160ms ease;
}
.buzzer-warning.is-celebrating {
  color: var(--amber);
  text-shadow: 0 0 28px rgba(255,207,88,.42);
}
.buzzer-warning.is-scolding {
  color: var(--red);
  text-shadow: 0 0 20px rgba(255,91,102,.38);
  animation: buzzer-warning-shake 320ms ease;
}

.celebration-confetti {
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}
.celebration-confetti.is-active { opacity: 1; }
.forbidden-buzzer.is-mega-win .buzzer-cap {
  filter: brightness(1.12) saturate(1.2);
  box-shadow:
    inset 0 9px 12px rgba(255,255,255,.28),
    inset 0 -15px 18px rgba(79,0,6,.48),
    0 12px 0 #6f070f,
    0 22px 30px rgba(0,0,0,.46),
    0 0 72px rgba(255,207,88,.32);
}

@keyframes buzzer-pulse {
  0% { opacity: .65; transform: translateX(-50%) scale(.62); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.65); }
}
@keyframes buzzer-warning-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-2px); }
}
@media (max-width: 560px) {
  .buzzer-easter-egg {
    padding-top: 82px;
    padding-bottom: 105px;
  }
  .buzzer-warning { margin-top: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .buzzer-cap,
  .buzzer-neck,
  .buzzer-floor-shadow,
  .buzzer-warning,
  .celebration-confetti { transition: none; }
  .forbidden-buzzer.is-pressed .buzzer-pulse,
  .buzzer-warning.is-scolding { animation: none; }
}

/* Image framing
   Keep editorial crop decisions here rather than inline in the HTML. */
.frame-daytime-drew-01 { object-position: center 47%; --frame-scale: 1.1; }
.frame-daytime-drew-02 { object-position: center 54%; --frame-scale: 1.11; }
.frame-daytime-drew-03 { object-position: center 52%; }
.frame-daytime-drew-04 { object-position: center 46%; }
.frame-daytime-ellen-01,
.frame-daytime-ellen-02 { object-position: center 50%; }

.frame-lee-01 { object-position: 40% 34%; }
.frame-lee-02,
.frame-lee-03,
.frame-lee-05,
.frame-lee-07 { object-position: 50% 34%; }
.frame-lee-04,
.frame-lee-06 { object-position: 50% 36%; }
.frame-lee-08 { object-position: 42% 34%; }

.frame-john-01,
.frame-john-02,
.frame-john-05,
.frame-john-06,
.frame-john-07,
.frame-john-08 { object-position: 50% 38%; }
.frame-john-03,
.frame-john-04 { object-position: 50% 36%; }

.frame-randy-01,
.frame-randy-02,
.frame-randy-03 { object-position: 50% 36%; }
.frame-randy-04,
.frame-randy-05 { object-position: 50% 38%; }

