:root {
  --ink: #151515;
  --muted: #676767;
  --line: #dedbd2;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #0f7f55;
  --red: #b73333;
  --gold: #d6a84f;
  --blue: #245c83;
  --magenta: #d51f6f;
  --orange: #e97827;
  --shadow: 0 20px 60px rgba(18, 18, 18, .12);
  --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --page-pad: clamp(24px, 7vw, 112px);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(15, 127, 85, .08) 1px, transparent 1px),
    linear-gradient(rgba(183, 51, 51, .06) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.45;
}
a { color: inherit; }
.topbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; font-weight: 800; }
.brand-logo { width: 48px; max-height: 42px; object-fit: contain; display: block; }
.brand-title { display: grid; gap: 1px; line-height: 1; text-transform: uppercase; }
.brand-title strong { font-size: 15px; letter-spacing: 0; }
.brand-title small { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 0; }
.brand-mark { background: var(--ink); color: var(--white); padding: 8px 10px; border-radius: 4px; }
nav { display: flex; gap: 20px; font-size: 14px; }
nav a { text-decoration: none; color: var(--muted); }
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 56px 7vw 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--green) 0 11%, var(--white) 11% 22%, var(--red) 22% 33%, var(--gold) 33% 44%, var(--magenta) 44% 55%, var(--blue) 55% 66%);
  opacity: .95;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 820px; }
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #3a3a3a;
  font-weight: 700;
}
.hero-stats strong {
  color: var(--red);
  font-size: 22px;
}

.stand-preview-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) var(--page-pad);
  background:
    linear-gradient(90deg, rgba(15, 127, 85, .08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stand-preview-copy {
  max-width: 620px;
}

.stand-preview-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: .96;
}

.stand-preview-copy p {
  margin: 0;
  color: #3f4744;
  font-size: 19px;
  line-height: 1.5;
}

.stand-preview-points {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.stand-preview-points span {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
}

.stand-preview-points strong {
  min-width: 44px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.stand-preview-media {
  margin: 0;
}

.stand-preview-media img {
  display: block;
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 20, 24, .18);
}

.stand-preview-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero h1, .simple-page h1, .form-intro h1 { font-size: clamp(44px, 7vw, 96px); line-height: .95; margin: 0 0 24px; letter-spacing: 0; }
.lede { font-size: 21px; color: #3f3f3f; max-width: 720px; }
.eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: 0; font-size: 13px; font-weight: 800; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button {
  border: 1px solid var(--ink);
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--ink); color: var(--white); }
.button.secondary { background: transparent; color: var(--ink); }
.hero-wall {
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 18px;
  transform: rotate(-2deg);
}
.poster-wall {
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 136px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.show-poster,
.show-sticker {
  border: 1px solid #cfc7b8;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.show-poster {
  grid-column: span 3;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 18px;
}
.show-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .72), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .18));
  pointer-events: none;
}
.show-poster > * { position: relative; z-index: 1; }
.show-poster span,
.show-sticker span {
  color: #2f3f4b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.show-poster strong {
  display: block;
  margin: 4px 0 7px;
  font-size: 29px;
  line-height: .95;
}
.show-poster small {
  display: block;
  color: #343434;
  font-weight: 700;
  line-height: 1.25;
}
.poster-ribbon {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 11px;
  font-weight: 900;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  padding: 5px 7px;
  letter-spacing: 0;
}
.poster-face {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  border: 5px solid rgba(255, 255, 255, .76);
  align-self: center;
}
.show-poster b {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  align-self: end;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
}
.poster-red { background: linear-gradient(135deg, #fff5ed, #f8d6cf 52%, #d53b33); }
.poster-green { background: linear-gradient(135deg, #f4fff6, #caead6 52%, #15935e); transform: translateY(22px) rotate(1deg); }
.poster-gold { background: linear-gradient(135deg, #fff9df, #f3d779 56%, #e97827); transform: translateX(18px) rotate(-1deg); }
.poster-blue { background: linear-gradient(135deg, #f7fbff, #c8e2ee 54%, #245c83); transform: translateY(14px) rotate(1.2deg); }
.poster-magenta { background: linear-gradient(135deg, #fff7fb, #f3cce0 54%, #d51f6f); transform: translateX(-12px) rotate(-.8deg); }
.show-sticker {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background:
    linear-gradient(135deg, #f7e2a4, #fff 48%, #d7eadc),
    var(--white);
  border: 7px solid var(--gold);
}
.show-sticker strong {
  font-size: 54px;
  line-height: 1;
}
.show-sticker div {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 24px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mini-card.tall { min-height: 240px; }
.mini-card.sticker { background: linear-gradient(135deg, #f7e2a4, #fff, #d7eadc); }
.mini-card span { color: var(--muted); }
.mini-card strong { font-size: 30px; }
.band { padding: 72px 7vw; background: var(--white); border-block: 1px solid var(--line); }
.section-head { max-width: 820px; margin-bottom: 30px; }
.section-head h2, .split h2 { font-size: 42px; margin: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps article, .panel, .talent-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.steps span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 72px 7vw; }
.form-shell, .simple-page, .admin-page, .profile-page { padding: 48px 7vw; }
.form-intro { max-width: 900px; margin-bottom: 28px; }
.typeform {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 44px);
  max-width: 920px;
  min-height: 620px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.form-progress {
  height: 7px;
  background: #ece8dd;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 34px;
}
.form-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
  border-radius: inherit;
  transition: width .35s ease;
}
.draft-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -18px 0 30px;
  padding: 10px 12px;
  border: 1px solid #cfdcca;
  border-radius: 8px;
  background: #f4fbf1;
  color: #264a2f;
  font-size: 14px;
  font-weight: 750;
}
.draft-status[hidden] {
  display: none !important;
}
.draft-status button {
  border: 1px solid #b8c9b0;
  border-radius: 6px;
  background: #fff;
  color: #1d3423;
  padding: 7px 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.bot-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-step { display: none; }
.form-step.is-active {
  display: grid;
  gap: 18px;
  animation: stepIn .28s ease both;
}
.step-count {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}
.form-step h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  margin: 0;
  max-width: 780px;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
label { display: grid; gap: 7px; font-weight: 700; }
.has-typeahead {
  position: relative;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.typeahead-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid #cfc4b0;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 38px rgba(18, 18, 18, .16);
}
.typeahead-menu[hidden] {
  display: none !important;
}
.typeahead-menu button {
  width: 100%;
  min-height: 34px;
  padding: 7px 9px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #171717;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.typeahead-menu button:hover,
.typeahead-menu button.is-active {
  background: #f0e6d5;
}
.typeahead-menu p {
  margin: 3px 4px 0;
  color: #6b6256;
  font-size: 12px;
  font-weight: 750;
}
textarea { min-height: 110px; resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-builder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 12px; }
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.range-grid label {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.range-grid label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.range-grid input {
  padding: 0;
}
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkline { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.checkline input, .checks input { width: auto; min-height: auto; }
.helper { color: var(--muted); }
.field-note {
  margin: -10px 0 2px;
  color: #59524a;
  font-size: 14px;
  font-weight: 650;
}
.field-note.is-error {
  color: #b73333;
}
.material-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.material-preview-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid #d8cfbf;
  border-radius: 8px;
  background: #fffdf8;
}
.material-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #d4caba;
  border-radius: 6px;
  background: #efe7d7;
}
.material-poster-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #101414;
}
.material-preview-grid strong {
  font-size: 18px;
  line-height: 1.1;
}
.material-preview-grid small {
  color: var(--muted);
  font-weight: 650;
}
.material-flip-card {
  cursor: pointer;
  perspective: 1200px;
  outline: none;
}
.material-flip-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(36, 92, 131, .22);
}
.material-flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  transform-style: preserve-3d;
  transition: transform .42s ease;
}
.material-flip-card:hover .material-flip-inner,
.material-flip-card.is-flipped .material-flip-inner {
  transform: rotateY(180deg);
}
.material-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid #d4caba;
  border-radius: 6px;
  background: #101414;
  backface-visibility: hidden;
}
.material-flip-back {
  transform: rotateY(180deg);
}
.material-preview-grid .material-flip-face img {
  height: 100%;
  object-fit: contain;
  background: #101414;
  border: 0;
}
.photo-framing {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid #d8cfbf;
  border-radius: 8px;
  background: #fffdf8;
}
.photo-framing[hidden] {
  display: none !important;
}
.photo-frame-preview {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    #101414;
  background-size: 22px 22px;
}
.photo-frame-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px 999px 14px 14px;
  z-index: 2;
  pointer-events: none;
}
.photo-frame-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform .12s ease, object-position .12s ease;
}
.photo-frame-preview span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 5px;
  background: rgba(16, 20, 20, .82);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.photo-frame-controls {
  display: grid;
  gap: 12px;
}
.photo-frame-controls label {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #353535;
  font-size: 14px;
}
.photo-frame-controls input {
  padding: 0;
  min-height: 26px;
  accent-color: var(--green);
}
.edition-options { display: grid; gap: 12px; }
.option-card,
.check-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.option-card:hover,
.check-card:hover {
  border-color: #b8ad92;
  box-shadow: 0 10px 28px rgba(18, 18, 18, .08);
  transform: translateY(-1px);
}
.option-card input,
.check-card input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green);
}
.option-card span,
.check-card span { display: grid; gap: 4px; }
.option-card strong { font-size: 18px; }
.option-card small { color: var(--muted); font-weight: 600; line-height: 1.35; }
.option-card.is-selected,
.check-card.is-selected,
.option-card:has(input:checked),
.check-card:has(input:checked) {
  border-color: var(--green);
  background: #f1f8f0;
  box-shadow: 0 14px 34px rgba(15, 127, 85, .14);
}
.check-card.single { grid-template-columns: auto 1fr; }
.admin-page .check-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 12px 0 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  font-size: 15px;
  line-height: 1.25;
}
.admin-page .check-row input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}
.conditional {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #fffaf0;
  border-radius: 8px;
}
.is-hidden { display: none !important; }
.form-nav { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.form-nav .button:disabled { opacity: .45; cursor: not-allowed; }
.form-feedback {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 750;
}
.form-feedback.is-error {
  color: #6b1717;
  background: #ffe8e8;
  border: 1px solid #eeaaaa;
}
.form-feedback.is-success {
  color: #0b5237;
  background: #e9f8ef;
  border: 1px solid #a8d8b9;
}
.submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(16, 20, 20, .72);
  backdrop-filter: blur(10px);
}
.submit-overlay[hidden] {
  display: none;
}
.submit-overlay > div {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 18px;
  background: #fffaf0;
  border: 1px solid rgba(16, 20, 20, .16);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
  display: grid;
  gap: 10px;
  text-align: center;
}
.submit-overlay strong {
  color: var(--ink);
  font-size: clamp(26px, 7vw, 40px);
  line-height: 1;
}
.submit-overlay span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}
.notice { margin: 18px auto; max-width: 860px; padding: 12px 16px; border-radius: 6px; }
.notice-error { background: #ffe6e6; border: 1px solid #f1b0b0; }
.notice.success { background: #eaf4ed; border: 1px solid rgba(15, 109, 74, .25); color: #0f5138; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.talent-card { text-decoration: none; background: var(--white); }
.avatar { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; background: var(--ink); color: var(--white); display: grid; place-items: center; font-size: 34px; font-weight: 800; }
.avatar.large { width: 190px; height: 230px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.album-page-shell {
  overflow: hidden;
}
.album-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .72fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: 54px 7vw 62px;
  background:
    radial-gradient(circle at 6% 18%, rgba(213, 31, 111, .18), transparent 19%),
    radial-gradient(circle at 96% 72%, rgba(15, 127, 85, .18), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 250, 240, .68));
  border-bottom: 1px solid var(--line);
  position: relative;
}
.album-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--green) 0 9%, #fff 9% 18%, var(--red) 18% 27%, var(--gold) 27% 36%, var(--magenta) 36% 45%, var(--blue) 45% 54%);
}
.album-hero-copy,
.album-cover-card {
  position: relative;
  z-index: 1;
}
.album-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .92;
  margin: 0 0 24px;
}
.album-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.album-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 18, 18, .08);
  font-weight: 800;
}
.album-stats strong {
  color: var(--red);
  font-size: 24px;
}
.album-cover-card {
  width: min(100%, 420px);
  justify-self: center;
  transform: rotate(2.5deg);
}
.album-cover-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(18, 18, 18, .25);
}
.album-intro-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: end;
  padding: 54px 7vw;
  background: #111;
  color: #fff;
}
.album-intro-band h2,
.album-book-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .96;
}
.album-intro-band p:last-child {
  margin: 0;
  font-size: 20px;
  color: rgba(255, 255, 255, .78);
}
.album-book {
  padding: 64px 4vw 86px;
  background:
    linear-gradient(90deg, rgba(15, 127, 85, .08) 1px, transparent 1px),
    linear-gradient(rgba(36, 92, 131, .07) 1px, transparent 1px),
    #f1efe6;
  background-size: 22px 22px;
}
.album-book-head {
  width: min(1180px, 100%);
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.album-field-strip,
.album-state-strip {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.album-field-strip span,
.album-state-strip span {
  padding: 7px 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.album-state-strip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.album-state-strip .is-featured {
  background: #111;
  border-color: #111;
  color: #fff;
}
.album-state-strip b,
.album-sheet-head b {
  color: var(--gold);
  font-size: 15px;
}
.album-spread {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  perspective: 1600px;
  filter: drop-shadow(0 30px 60px rgba(18, 18, 18, .16));
}
.album-sheet {
  min-height: 650px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, .045) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, .045) 1px, transparent 1px),
    #fffdf7;
  background-size: 18px 18px;
  border: 1px solid #d4cfc3;
  position: relative;
}
.album-sheet.is-innovafest-state {
  border-color: rgba(214, 168, 79, .85);
  box-shadow: inset 0 0 0 4px rgba(214, 168, 79, .18);
}
.album-sheet:nth-child(1) {
  border-radius: 8px 0 0 8px;
  transform: rotateY(3deg);
  transform-origin: right center;
}
.album-sheet:nth-child(2) {
  border-radius: 0 8px 8px 0;
  transform: rotateY(-3deg);
  transform-origin: left center;
}
.album-sheet:nth-child(1)::after,
.album-sheet:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
}
.album-sheet:nth-child(1)::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(18, 18, 18, .14));
}
.album-sheet:nth-child(2)::before {
  left: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, .16), transparent);
}
.album-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #111;
  text-transform: uppercase;
  font-weight: 900;
}
.album-sheet-head span {
  color: var(--red);
}
.album-sheet-head strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-align: right;
}
.album-state-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding: 15px 16px;
  background:
    linear-gradient(135deg, rgba(15, 127, 85, .12), rgba(214, 168, 79, .16)),
    #fff;
  border: 1px solid #d8d3c6;
  border-radius: 8px;
}
.is-innovafest-state .album-state-banner {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, .9), rgba(36, 92, 131, .82)),
    #111;
  color: #fff;
  border-color: #111;
}
.album-state-banner small {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.is-innovafest-state .album-state-banner small {
  color: var(--gold);
}
.album-state-banner h3 {
  margin: 2px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: .96;
}
.album-state-banner span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.is-innovafest-state .album-state-banner span {
  background: var(--gold);
  color: #111;
}
.album-sticker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.album-sticker {
  min-height: 270px;
  display: grid;
  grid-template-rows: 124px 1fr auto;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #d8d3c6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(18, 18, 18, .08);
  transform: rotate(var(--tilt, -1deg));
  transition: transform .18s ease, box-shadow .18s ease;
}
.album-sticker:nth-child(2n) { --tilt: 1deg; }
.album-sticker:nth-child(3n) { --tilt: -.35deg; }
.album-sticker:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 22px 38px rgba(18, 18, 18, .14);
}
.album-sticker-empty {
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(15, 127, 85, .08), rgba(183, 51, 51, .07)),
    rgba(255, 255, 255, .72);
  box-shadow: none;
}
.album-sticker-empty .album-sticker-photo {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, .055) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, .055) 1px, transparent 1px),
    #f6f1e6;
  background-size: 16px 16px;
  color: var(--red);
}
.album-sticker-empty .album-sticker-photo span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px dashed var(--red);
  border-radius: 50%;
  background: #fff;
}
.album-sticker-photo {
  background:
    linear-gradient(135deg, rgba(15, 127, 85, .12), rgba(213, 31, 111, .12)),
    #151515;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 46px;
  font-weight: 900;
}
.album-sticker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.03);
}
.album-sticker-body {
  padding: 12px 13px 8px;
}
.album-sticker-body small {
  color: var(--red);
  font-weight: 900;
}
.is-innovafest-state .album-sticker:not(.album-sticker-empty) {
  border-color: rgba(214, 168, 79, .9);
}
.is-innovafest-state .album-sticker-body small {
  color: #946400;
}
.album-sticker h3 {
  margin: 3px 0 5px;
  font-size: 20px;
  line-height: 1;
}
.album-sticker p {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.album-sticker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}
.album-sticker-tags span {
  max-width: 100%;
  padding: 4px 6px;
  background: #f4f0e6;
  border-radius: 4px;
  color: #3d3d3d;
  font-size: 10px;
  font-weight: 800;
}
.album-sticker footer {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 8px;
  align-items: center;
  padding: 9px 12px 12px;
}
.album-sticker footer span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.album-sticker footer b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, #111 4px, transparent 4px 8px, #111 8px 12px, transparent 12px),
    linear-gradient(#111 4px, transparent 4px 8px, #111 8px 12px, transparent 12px),
    #fff;
  background-size: 14px 14px;
  border: 1px solid #111;
  color: transparent;
}
.album-empty {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.album-hero-v2 {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .58fr);
  min-height: auto;
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
}
.album-hero-v2 h1 {
  max-width: 880px;
  font-size: clamp(46px, 6.8vw, 88px);
}
.album-priority-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 22px;
  padding: 14px 16px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 18, 18, .16);
}
.album-priority-note b {
  display: grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: #111;
  background: var(--gold);
  border-radius: 50%;
}
.album-priority-note span {
  font-weight: 800;
  line-height: 1.35;
}
.album-index-band {
  position: sticky;
  top: 72px;
  z-index: 9;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 7vw;
  background: rgba(251, 250, 246, .96);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.album-index-band h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
}
.album-index-band .eyebrow {
  margin: 0 0 3px;
}
.album-state-nav {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 3px;
}
.album-state-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #242424;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(18, 18, 18, .06);
}
.album-state-nav a.is-featured {
  background: #111;
  border-color: #111;
  color: #fff;
}
.album-state-nav b {
  color: var(--gold);
}
.album-state-nav small {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f0ece2;
  color: #111;
  font-size: 12px;
}
.album-book-v2 {
  padding-top: 54px;
}
.album-book-helper {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.album-state-spread {
  width: min(1240px, 100%);
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  gap: 0;
  scroll-margin-top: 160px;
  filter: drop-shadow(0 30px 60px rgba(18, 18, 18, .16));
}
.album-chapter-page,
.album-sticker-sheet {
  min-height: 720px;
}
.album-chapter-page {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 16% 18%, rgba(213, 31, 111, .18), transparent 20%),
    radial-gradient(circle at 90% 88%, rgba(15, 127, 85, .18), transparent 23%),
    linear-gradient(135deg, #fffdf7, #f1ece0);
  border: 1px solid #d4cfc3;
  border-radius: 8px 0 0 8px;
  position: relative;
  overflow: hidden;
}
.album-chapter-page::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: repeating-linear-gradient(180deg, var(--green) 0 15%, #fff 15% 30%, var(--red) 30% 45%, var(--gold) 45% 60%, var(--blue) 60% 75%);
}
.is-innovafest-state .album-chapter-page {
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 168, 79, .28), transparent 22%),
    linear-gradient(135deg, #111, #1f3140);
  border-color: #111;
  color: #fff;
}
.album-chapter-kicker {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.is-innovafest-state .album-chapter-kicker {
  color: var(--gold);
}
.album-chapter-kicker b {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
}
.album-chapter-page h3 {
  align-self: end;
  margin: 0;
  font-size: clamp(50px, 8vw, 104px);
  line-height: .86;
  letter-spacing: 0;
}
.album-chapter-page p {
  max-width: 420px;
  margin: 0;
  font-size: 19px;
  color: #3d3d3d;
  font-weight: 800;
}
.is-innovafest-state .album-chapter-page p {
  color: rgba(255, 255, 255, .82);
}
.album-chapter-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.album-chapter-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 900;
}
.album-chapter-metrics strong {
  color: var(--red);
  font-size: 22px;
}
.is-innovafest-state .album-chapter-metrics span {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
}
.is-innovafest-state .album-chapter-metrics strong {
  color: var(--gold);
}
.album-chapter-map {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 132px;
  height: 132px;
  opacity: .8;
}
.album-chapter-map span {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
}
.album-chapter-map span:nth-child(1) { left: 12px; top: 10px; background: var(--magenta); }
.album-chapter-map span:nth-child(2) { right: 10px; top: 24px; background: var(--gold); }
.album-chapter-map span:nth-child(3) { left: 44px; bottom: 10px; background: var(--blue); }
.album-chapter-map span:nth-child(4) { right: 34px; bottom: 44px; width: 22px; height: 22px; background: var(--red); }
.album-sticker-sheet {
  border-radius: 0 8px 8px 0;
  transform: none !important;
  transform-origin: initial;
  box-shadow: inset 20px 0 28px rgba(18, 18, 18, .08);
}
.album-sticker-sheet::before,
.album-sticker-sheet::after {
  display: none;
}
.album-state-spread .album-sticker-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.album-state-spread .album-sticker {
  min-height: 250px;
  grid-template-rows: 108px 1fr auto;
  transform: none;
}
.album-state-spread .album-sticker:hover {
  transform: translateY(-5px);
}
.album-state-spread .album-sticker h3 {
  font-size: 18px;
}
.album-state-spread .album-sticker-tags span {
  font-size: 9px;
}
.profile-hero { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px; border-bottom: 1px solid var(--line); }
.status { display: inline-block; padding: 5px 8px; border-radius: 4px; background: #edf2ed; font-size: 12px; font-weight: 800; }
.mail-preview {
  max-width: min(52rem, 70vw);
  max-height: 22rem;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: 13px/1.55 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.row { display: flex; justify-content: space-between; align-items: center; }
.review-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; margin-top: 24px; }
dl { display: grid; grid-template-columns: 140px 1fr; gap: 10px 18px; }
dt { color: var(--muted); font-weight: 800; }
.asset-body {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .82), transparent 34%),
    #e9e7df;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
}
.poster {
  --poster-accent: #0f7f55;
  --poster-accent-2: #b73333;
  --poster-dark: #111;
  width: 760px;
  min-height: 1080px;
  background: #f5f1e8;
  border: 1px solid #cfc9b9;
  padding: 30px;
  box-shadow: 0 34px 90px rgba(18, 18, 18, .24);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.wall-poster,
.editorial-poster {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}
.wall-poster::before,
.editorial-poster::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--poster-accent-2);
}
.wall-poster::after,
.editorial-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, .035) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.poster > * { position: relative; z-index: 1; }
.poster-head,
.poster-foot,
.sticker-top,
.sticker-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.poster-head {
  min-height: 86px;
  background: transparent;
  color: var(--ink);
  border-bottom: 0;
  padding: 14px 22px 8px;
  text-transform: uppercase;
  justify-content: flex-start;
}
.poster-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 60px;
  background: transparent;
  border-radius: 4px;
  flex: 0 0 auto;
}
.poster-brand .poster-logo {
  max-width: 66px;
  max-height: 56px;
}
.poster-title-block {
  display: grid;
  gap: 5px;
  margin-left: auto;
  max-width: 360px;
  text-align: right;
}
.poster-title-block span {
  color: var(--poster-accent-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}
.poster-title-block strong {
  font-size: 23px;
  line-height: .95;
  letter-spacing: 0;
  text-align: right;
}
.editorial-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.editorial-frame {
  position: absolute;
  right: 0;
  top: 8px;
  width: 350px;
  height: 300px;
  border: 3px solid #7b35ff;
  z-index: 3;
}
.editorial-photo {
  position: absolute;
  left: 88px;
  right: 72px;
  top: 62px;
  bottom: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .2), transparent 20%),
    linear-gradient(135deg, #cfcfcf, #6f6f6f);
}
.editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(1) contrast(1.08) brightness(1.04);
}
.editorial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 56%, rgba(245, 241, 232, .92) 93%);
}
.editorial-person {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .82);
  border-radius: 50%;
  font-size: 62px;
  font-weight: 900;
  color: var(--ink);
}
.editorial-name {
  position: absolute;
  left: 62px;
  top: 214px;
  z-index: 5;
  background: var(--poster-accent-2);
  color: var(--white);
  padding: 14px 18px 16px;
  min-width: 210px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.editorial-name small {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
}
.editorial-name strong {
  display: block;
  font-size: 30px;
  line-height: .9;
}
.editorial-event {
  position: absolute;
  right: 42px;
  top: 166px;
  z-index: 5;
  display: grid;
  gap: 5px;
  max-width: 180px;
  text-align: left;
}
.editorial-event strong {
  color: var(--poster-accent-2);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
}
.editorial-event span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.editorial-qr {
  position: absolute;
  right: 48px;
  top: 250px;
  z-index: 5;
  display: grid;
  gap: 5px;
  justify-items: center;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.editorial-qr .qr-box {
  width: 74px;
  height: 74px;
  border-color: var(--ink);
}
.editorial-mainline {
  position: absolute;
  left: 90px;
  right: 90px;
  bottom: 116px;
  z-index: 5;
  color: var(--ink);
  text-align: center;
}
.editorial-mainline span,
.editorial-mainline strong {
  display: block;
  line-height: .84;
  letter-spacing: 0;
}
.editorial-mainline span {
  font-size: 58px;
  font-weight: 900;
}
.editorial-mainline strong {
  font-size: 74px;
  font-weight: 900;
}
.editorial-caption {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  align-items: end;
  min-height: 154px;
  padding: 0 48px 24px 88px;
}
.editorial-caption h2 {
  margin: 0 0 8px;
  color: var(--poster-accent-2);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}
.editorial-caption p {
  margin: 0;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 800;
}
.wall-card {
  align-self: center;
  background: #fff;
  min-height: 740px;
  border: 1px solid #d2cec5;
  box-shadow: 0 18px 38px rgba(18, 18, 18, .18);
  position: relative;
  overflow: hidden;
  display: block;
}
.wall-photo,
.sticker-photo {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 80px;
  font-weight: 800;
}
.wall-photo {
  min-height: 740px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .18)),
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, .12) 8% 9%, transparent 9% 18%, rgba(255, 255, 255, .12) 18% 19%, transparent 19%),
    linear-gradient(180deg, #9ab2c6 0 38%, #536d7f 38% 55%, #101820 55% 100%);
  position: relative;
}
.wall-photo.has-real-photo::before,
.wall-photo.has-real-photo::after {
  display: none;
}
.wall-photo::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 178px;
  height: 190px;
  background:
    linear-gradient(to top, #1e2a31 0 64%, transparent 64%) 3% 100% / 56px 160px no-repeat,
    linear-gradient(to top, #263640 0 76%, transparent 76%) 18% 100% / 70px 190px no-repeat,
    linear-gradient(to top, #1b252c 0 58%, transparent 58%) 38% 100% / 64px 150px no-repeat,
    linear-gradient(to top, #2a3d48 0 84%, transparent 84%) 58% 100% / 82px 220px no-repeat,
    linear-gradient(to top, #172127 0 70%, transparent 70%) 82% 100% / 72px 180px no-repeat;
  opacity: .72;
}
.wall-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 210px;
  height: 320px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 56px, #c78d68 0 42px, transparent 43px),
    linear-gradient(78deg, transparent 0 20%, #0e2639 20% 46%, #f2f0ea 46% 55%, #0e2639 55% 81%, transparent 81%),
    linear-gradient(90deg, transparent 0 18%, #162b3a 18% 82%, transparent 82%);
  border-radius: 80px 80px 10px 10px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .36));
}
.wall-photo .wall-person {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  bottom: 266px;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}
.poster-photo img, .sticker-photo img, .wall-photo img { width: 100%; height: 100%; object-fit: cover; }
.wall-photo.has-real-photo img {
  object-position: center center;
  filter: saturate(1.02) contrast(1.02);
}
.wall-diagonal {
  position: absolute;
  inset: auto -78px 0 auto;
  width: 640px;
  height: 188px;
  background:
    linear-gradient(142deg, transparent 0 20%, var(--poster-dark) 20% 44%, var(--poster-accent) 44% 56%, #fff 56% 64%, var(--poster-accent-2) 64% 100%);
  transform: rotate(-1deg);
  box-shadow: 0 -10px 20px rgba(18, 18, 18, .12);
}
.wall-qr {
  position: absolute;
  z-index: 3;
  bottom: 30px;
}
.wall-qr-left { left: 28px; }
.wall-qr-right { right: 26px; }
.wall-qr .qr-box {
  width: 92px;
  height: 92px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .28);
}
.wall-info {
  position: absolute;
  left: 138px;
  right: 26px;
  bottom: 38px;
  color: var(--white);
  z-index: 3;
  text-align: left;
}
.poster h1 {
  margin: 0;
  font-size: 45px;
  line-height: .86;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .36);
}
.wall-info p {
  margin: 7px 0 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
}
.wall-location {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 3;
  padding: 8px 10px;
  background: rgba(17, 17, 17, .72);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
}
.poster-qr-wrap {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.qr-box {
  width: 88px;
  height: 88px;
  background: #fff;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.qr-visual {
  background:
    linear-gradient(90deg, #111 7px, transparent 7px 13px, #111 13px 20px, transparent 20px),
    linear-gradient(#111 7px, transparent 7px 13px, #111 13px 20px, transparent 20px),
    conic-gradient(from 90deg, #111 25%, transparent 0 50%, #111 0 75%, transparent 0);
  background-size: 26px 26px, 26px 26px, 11px 11px;
  background-color: #fff;
}
.wall-caption {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  align-items: end;
  background: #fff;
  border: 1px solid #d2cec5;
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(18, 18, 18, .1);
  min-height: 116px;
  overflow: hidden;
}
.wall-caption p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}
.poster-opportunities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}
.poster-opportunities span {
  display: inline-flex;
  padding: 7px 9px;
  background: var(--poster-accent);
  color: var(--white);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.poster-theme-red { --poster-accent: #0f7f55; --poster-accent-2: #b73333; }
.poster-theme-green { --poster-accent: #0f7f55; --poster-accent-2: #d51f6f; }
.poster-theme-gold { --poster-accent: #d6a84f; --poster-accent-2: #b73333; }
.poster-theme-blue { --poster-accent: #245c83; --poster-accent-2: #b73333; }
.poster-theme-magenta { --poster-accent: #d51f6f; --poster-accent-2: #0f7f55; }
.poster-logo, .sticker-logo { max-width: 110px; max-height: 70px; object-fit: contain; }
.canva-body {
  margin: 0;
  min-height: 100vh;
  background: #121212;
  color: var(--white);
}
.canva-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 22px 48px;
}
.canva-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}
.canva-head h1 {
  margin: 0 0 8px;
  font-size: 34px;
}
.canva-head p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}
.canva-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 140.9524%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.canva-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.canva-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
}
.sticker-card { width: 430px; min-height: 620px; padding: 24px; background: linear-gradient(135deg, #f4df9d, #fff 48%, #dceede); border: 8px solid var(--gold); border-radius: 18px; box-shadow: var(--shadow); }
.sticker-photo { height: 310px; border-radius: 12px; margin: 18px 0; }
.sticker-card h1 { margin: 0; font-size: 38px; }
.sticker-card p { font-size: 20px; font-weight: 800; color: var(--blue); }

/* Global UI refresh */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 127, 85, .14), transparent 26%),
    radial-gradient(circle at 92% 6%, rgba(213, 31, 111, .12), transparent 24%),
    linear-gradient(90deg, rgba(18, 18, 18, .045) 1px, transparent 1px),
    linear-gradient(rgba(18, 18, 18, .035) 1px, transparent 1px),
    #f6f2e8;
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
}
.topbar {
  height: 78px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(255, 252, 244, .86);
  border-bottom: 1px solid rgba(18, 18, 18, .12);
  backdrop-filter: blur(18px);
}
.brand {
  gap: 14px;
}
.brand-logo {
  width: 52px;
  max-height: 48px;
  filter: drop-shadow(0 8px 14px rgba(18, 18, 18, .12));
}
.brand-title strong {
  font-size: 16px;
}
.brand-title small {
  color: var(--blue);
}
nav {
  gap: 8px;
  align-items: center;
}
nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  color: #363636;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
nav a:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}
.eyebrow {
  margin-top: 0;
  color: var(--red);
  font-size: 12px;
  letter-spacing: .02em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(18, 18, 18, .08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button[hidden],
[hidden] {
  display: none !important;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(18, 18, 18, .13);
}
.button.primary {
  border-color: #111;
  background: #111;
}
.button.secondary {
  background: rgba(255, 255, 255, .78);
}
.hero {
  min-height: calc(100vh - 78px);
  padding-top: clamp(46px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .68), rgba(246, 242, 232, .2)),
    radial-gradient(circle at 72% 18%, rgba(214, 168, 79, .2), transparent 24%);
}
.hero::before {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--green) 0 12%, #fff 12% 22%, var(--red) 22% 34%, var(--gold) 34% 46%, var(--blue) 46% 58%, var(--magenta) 58% 70%);
}
.hero h1,
.simple-page h1,
.form-intro h1 {
  max-width: 920px;
  font-size: clamp(46px, 7vw, 94px);
  line-height: .92;
}
.lede,
.form-intro p,
.simple-page p {
  color: #3b3b3b;
}
.hero-stats span {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(18, 18, 18, .1);
  box-shadow: 0 12px 26px rgba(18, 18, 18, .08);
}
.poster-wall {
  gap: 14px;
  transform: rotate(-1.2deg);
}
.show-poster,
.show-sticker {
  border: 1px solid rgba(18, 18, 18, .14);
  box-shadow: 0 18px 36px rgba(18, 18, 18, .13);
}
.show-poster {
  background: #fffdf7;
}
.poster-ribbon {
  border-radius: 999px;
}
.poster-face {
  border-radius: 8px;
}
.band,
.split {
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(56px, 7vw, 86px);
}
.band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 250, 240, .88)),
    #fff;
}
.section-head h2,
.split h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .96;
}
.steps {
  gap: 18px;
}
.steps article,
.panel,
.talent-card,
.mini-card {
  background: rgba(255, 255, 255, .86);
  border-color: rgba(18, 18, 18, .11);
  box-shadow: 0 16px 34px rgba(18, 18, 18, .08);
}
.steps article {
  min-height: 220px;
}
.steps h3,
.panel h3,
.mini-card strong {
  line-height: 1.05;
}
.split {
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 127, 85, .1), transparent 25%),
    radial-gradient(circle at 100% 100%, rgba(183, 51, 51, .1), transparent 25%),
    #111;
  color: #fff;
}
.split p {
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}
.split .eyebrow {
  color: var(--gold);
}
.form-shell,
.simple-page,
.admin-page,
.profile-page {
  padding: clamp(34px, 6vw, 72px) 7vw;
}
.form-intro {
  max-width: 980px;
}
.typeform {
  max-width: 1040px;
  border-color: rgba(18, 18, 18, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 250, 240, .92)),
    #fff;
  box-shadow: 0 30px 80px rgba(18, 18, 18, .14);
}
.form-step h2 {
  max-width: 880px;
  font-size: clamp(34px, 5vw, 58px);
}
label {
  color: #202020;
}
input,
select,
textarea {
  border-color: rgba(18, 18, 18, .16);
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 127, 85, .13);
}
.option-card,
.check-card {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(18, 18, 18, .13);
  box-shadow: 0 10px 24px rgba(18, 18, 18, .05);
}
.option-card strong {
  line-height: 1.05;
}
.conditional {
  background: rgba(214, 168, 79, .12);
}
.form-nav {
  position: sticky;
  bottom: 14px;
  z-index: 5;
  justify-content: space-between;
  padding: 12px;
  background: rgba(255, 252, 244, .88);
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(18, 18, 18, .12);
  backdrop-filter: blur(14px);
}
.table-wrap {
  box-shadow: 0 18px 40px rgba(18, 18, 18, .08);
}
th {
  background: #111;
  color: #fff;
  border-bottom: 0;
}
td {
  background: rgba(255, 255, 255, .8);
}
.status {
  border-radius: 999px;
  background: #eaf4ed;
  color: #0f6d4a;
}
.status.urgent {
  margin-left: 8px;
  background: #111;
  color: #fff;
}
.profile-hero {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 18px 42px rgba(18, 18, 18, .1);
}
.avatar {
  box-shadow: 0 14px 30px rgba(18, 18, 18, .16);
}

/* Talent directory v3 */
.directory-page {
  min-height: calc(100vh - 78px);
}
.directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .42fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(48px, 7vw, 86px) 7vw 34px;
}
.directory-copy {
  display: grid;
  align-content: center;
}
.directory-copy h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  font-weight: 900;
}
.directory-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.directory-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 18, 18, .07);
  font-weight: 800;
}
.directory-metrics strong {
  color: var(--red);
  font-size: 22px;
}
.directory-feature {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 380px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .08), rgba(17, 17, 17, .88)),
    radial-gradient(circle at 18% 18%, rgba(214, 168, 79, .5), transparent 28%),
    #111;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.directory-feature::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, .22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 12px 12px;
}
.directory-feature > * {
  position: relative;
  z-index: 1;
}
.feature-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.directory-feature h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .94;
}
.directory-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}
.directory-state-nav {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 7vw;
  background: rgba(246, 242, 232, .9);
  border-block: 1px solid rgba(18, 18, 18, .1);
  backdrop-filter: blur(14px);
}
.directory-state-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 11px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 999px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 850;
}
.directory-state-nav a.is-priority {
  background: #111;
  color: #fff;
  border-color: #111;
}
.directory-state-nav b {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 7px;
  border-radius: 999px;
  background: #efe8d8;
  color: #111;
  font-size: 12px;
}
.directory-content {
  display: grid;
  gap: 34px;
  padding: 34px 7vw 82px;
}
.state-directory-section {
  scroll-margin-top: 150px;
}
.state-directory-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(18, 18, 18, .14);
}
.state-directory-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
}
.state-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.state-summary span,
.state-summary strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, .12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.state-summary strong {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}
.talent-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.directory-talent-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 190px 1fr auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(18, 18, 18, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.directory-talent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(18, 18, 18, .14);
}
.directory-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 127, 85, .16), rgba(183, 51, 51, .14)),
    #111;
  color: #fff;
  font-size: 62px;
  font-weight: 900;
}
.directory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}
.directory-card-body {
  padding: 16px 16px 10px;
}
.directory-card-body small {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.is-priority-card .directory-card-body small {
  color: #946400;
}
.directory-card-body h3 {
  margin: 6px 0 8px;
  font-size: 25px;
  line-height: 1;
}
.directory-card-body p {
  margin: 0;
  color: #363636;
  line-height: 1.35;
}
.directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.directory-tags span {
  padding: 5px 7px;
  background: #f2eee4;
  border-radius: 999px;
  color: #373737;
  font-size: 11px;
  font-weight: 800;
}
.directory-talent-card footer {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px 16px;
}
.directory-talent-card footer span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.directory-talent-card footer b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background:
    linear-gradient(90deg, #111 4px, transparent 4px 8px, #111 8px 12px, transparent 12px),
    linear-gradient(#111 4px, transparent 4px 8px, #111 8px 12px, transparent 12px),
    #fff;
  background-size: 14px 14px;
  border: 1px solid #111;
  color: transparent;
}
.directory-empty {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Panini album sheets */
.panini-page {
  min-height: calc(100vh - 78px);
}
.panini-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(46px, 7vw, 82px) 7vw 28px;
}
.panini-hero h1 {
  max-width: 920px;
  margin: 0 0 22px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
}
.panini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.panini-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 18, 18, .07);
  font-weight: 800;
}
.panini-metrics strong {
  color: var(--red);
  font-size: 22px;
}
.panini-priority-card {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 340px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, .1), rgba(17, 17, 17, .88)),
    radial-gradient(circle at 24% 18%, rgba(214, 168, 79, .42), transparent 30%),
    #111;
  border-radius: 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.panini-priority-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 112px;
  height: 76px;
  background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,.2) 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 45%, rgba(255,255,255,.16) 46% 54%, transparent 55%);
  background-size: 22px 22px;
  opacity: .85;
}
.panini-priority-card > * {
  position: relative;
  z-index: 1;
}
.panini-priority-card small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}
.panini-priority-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .94;
}
.panini-priority-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
}
.panini-index {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 7vw;
  background: rgba(246, 242, 232, .9);
  border-block: 1px solid rgba(18, 18, 18, .1);
  backdrop-filter: blur(14px);
}
.state-picker {
  display: grid;
  gap: 6px;
}
.state-picker span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.state-picker select {
  width: 100%;
  min-height: 46px;
  padding: 0 42px 0 14px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #111 50%) calc(100% - 20px) 19px / 7px 7px no-repeat,
    linear-gradient(135deg, #111 50%, transparent 50%) calc(100% - 15px) 19px / 7px 7px no-repeat,
    #fff;
  border: 2px solid rgba(18, 18, 18, .16);
  border-radius: 8px;
  color: #111;
  font: 900 15px var(--font-sans);
}
.state-letter-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 98px;
  overflow: auto;
  padding-right: 2px;
}
.panini-index button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 70px;
  min-height: 42px;
  justify-content: space-between;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 8px;
  color: #222;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 850;
}
.panini-index button.is-priority {
  background: #111;
  color: #fff;
  border-color: #111;
}
.panini-index button.is-active {
  border-color: #111;
  outline: 3px solid rgba(214, 168, 79, .42);
}
.panini-index b {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 7px;
  border-radius: 999px;
  background: #efe8d8;
  color: #111;
  font-size: 12px;
}
.panini-sheets {
  display: grid;
  gap: 16px;
  padding: 34px 7vw 82px;
}
.panini-flipbar {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(18, 18, 18, .1);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(18, 18, 18, .08);
}
.panini-flipbar p {
  margin: 0;
  text-align: center;
  font-weight: 900;
}
.panini-stage {
  width: min(1120px, 100%);
  margin: 0 auto;
  perspective: 1800px;
}
.panini-sheet {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(90deg, rgba(18,18,18,.045) 1px, transparent 1px),
    linear-gradient(rgba(18,18,18,.04) 1px, transparent 1px),
    #fffdf7;
  background-size: 18px 18px;
  border: 1px solid rgba(18, 18, 18, .14);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(18,18,18,.13);
  scroll-margin-top: 150px;
  display: none;
  transform-origin: left center;
}
.panini-sheet.is-active {
  display: block;
  animation: sheetFlipIn .38s ease both;
}
@keyframes sheetFlipIn {
  from { opacity: .2; transform: rotateY(-14deg) translateX(18px); }
  to { opacity: 1; transform: rotateY(0) translateX(0); }
}
.panini-sheet.is-priority-sheet {
  border-color: rgba(214, 168, 79, .82);
  box-shadow: 0 28px 80px rgba(18,18,18,.16), inset 0 0 0 5px rgba(214,168,79,.18);
}
.state-watermark {
  display: none;
}
.state-bg-image {
  position: absolute;
  inset: 160px auto auto clamp(18px, 3vw, 34px);
  width: min(30%, 300px);
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 18px 28px rgba(18,18,18,.12));
}
.state-bg-image rect {
  fill: rgba(255, 255, 255, .72);
  stroke: rgba(18,18,18,.85);
  stroke-width: 7;
}
.state-bg-image text {
  fill: #111;
  font: 900 58px var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}
.state-bg-grid path {
  fill: none;
  stroke: #111;
  stroke-width: 3;
  opacity: .26;
}
.state-bg-mark path {
  display: none;
  fill: none;
  stroke: var(--blue);
  stroke-width: 30;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.state-bg-mark .mark-talavera,
.state-bg-mark .mark-pyramid,
.state-bg-mark .mark-agave,
.state-bg-mark .mark-butterfly,
.state-bg-mark .mark-map {
  fill: rgba(36, 92, 131, .16);
}
.state-bg-image.symbol-mountain .mark-mountain,
.state-bg-image.symbol-wave .mark-wave,
.state-bg-image.symbol-arches .mark-arches,
.state-bg-image.symbol-angel .mark-angel,
.state-bg-image.symbol-talavera .mark-talavera,
.state-bg-image.symbol-pyramid .mark-pyramid,
.state-bg-image.symbol-agave .mark-agave,
.state-bg-image.symbol-butterfly .mark-butterfly,
.state-bg-image.symbol-sun .mark-sun,
.state-bg-image.symbol-map .mark-map {
  display: block;
}
.symbol-mountain .state-watermark {
  background:
    linear-gradient(135deg, transparent 45%, #111 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 48%, #111 49% 57%, transparent 58%);
  background-size: 90px 90px;
}
.symbol-angel .state-watermark {
  background:
    radial-gradient(circle at 50% 18%, #111 0 8%, transparent 9%),
    linear-gradient(90deg, transparent 44%, #111 45% 55%, transparent 56%),
    linear-gradient(35deg, transparent 38%, #111 39% 47%, transparent 48%),
    linear-gradient(-35deg, transparent 38%, #111 39% 47%, transparent 48%);
}
.symbol-arches .state-watermark {
  background:
    radial-gradient(ellipse at 50% 100%, transparent 0 38%, #111 39% 44%, transparent 45%),
    repeating-linear-gradient(90deg, #111 0 12px, transparent 12px 38px);
}
.symbol-talavera .state-watermark {
  background:
    radial-gradient(circle at 25% 25%, #111 0 7%, transparent 8%),
    radial-gradient(circle at 75% 75%, #111 0 7%, transparent 8%),
    linear-gradient(45deg, transparent 45%, #111 46% 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #111 46% 54%, transparent 55%);
  background-size: 84px 84px;
}
.symbol-pyramid .state-watermark {
  background:
    linear-gradient(to top, #111 0 18%, transparent 19%),
    linear-gradient(135deg, transparent 44%, #111 45% 55%, transparent 56%),
    linear-gradient(45deg, transparent 44%, #111 45% 55%, transparent 56%);
}
.symbol-map .state-watermark {
  background:
    radial-gradient(circle at 30% 22%, #111 0 9%, transparent 10%),
    radial-gradient(circle at 64% 38%, #111 0 7%, transparent 8%),
    radial-gradient(circle at 46% 68%, #111 0 10%, transparent 11%),
    linear-gradient(25deg, transparent 42%, #111 43% 47%, transparent 48%),
    linear-gradient(-28deg, transparent 45%, #111 46% 50%, transparent 51%);
}
.panini-sheet-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 3px solid #111;
}
.panini-sheet-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .9;
}
.sheet-meta {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
}
.sheet-meta span,
.sheet-meta strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 9px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.sheet-meta strong {
  background: var(--gold);
  color: #111;
}
.sticker-slots {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-left: min(34%, 330px);
}
.panini-sticker {
  min-height: 258px;
  display: grid;
  grid-template-rows: 112px 1fr;
  overflow: hidden;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(18,18,18,.14);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(18,18,18,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.panini-sticker:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(18,18,18,.14);
}
.sticker-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,127,85,.16), rgba(183,51,51,.14)),
    #111;
  color: #fff;
  font-size: 52px;
  font-weight: 900;
}
.sticker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sticker-info {
  display: grid;
  gap: 6px;
  padding: 12px;
}
.sticker-info small {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.is-priority-sticker .sticker-info small {
  color: #946400;
}
.sticker-info h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
}
.sticker-info p {
  margin: 0;
  color: #3c3c3c;
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sticker-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.sticker-info span {
  padding: 4px 6px;
  background: #f0ece2;
  border-radius: 999px;
  color: #3a3a3a;
  font-size: 10px;
  font-weight: 800;
}
.empty-slot {
  border-style: dashed;
  background: rgba(255,255,255,.58);
  box-shadow: none;
}
.empty-slot .sticker-photo {
  background:
    linear-gradient(90deg, rgba(18,18,18,.06) 1px, transparent 1px),
    linear-gradient(rgba(18,18,18,.06) 1px, transparent 1px),
    #f4efe5;
  background-size: 14px 14px;
  color: var(--red);
}
.empty-slot .sticker-photo span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px dashed var(--red);
  border-radius: 50%;
  background: #fff;
}

/* Panini-inspired album sheet */
.panini-stage {
  width: min(1240px, 100%);
}
.panini-sheet {
  min-height: 800px;
  padding: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 16px), rgba(18,18,18,.08) calc(50% - 15px), rgba(18,18,18,.08) calc(50% + 15px), transparent calc(50% + 16px)),
    radial-gradient(circle at 19% 88%, rgba(183,51,51,.16) 0 8%, transparent 8.5%),
    radial-gradient(circle at 28% 82%, rgba(15,127,85,.15) 0 5%, transparent 5.5%),
    repeating-linear-gradient(90deg, rgba(18,18,18,.035) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(18,18,18,.032) 0 1px, transparent 1px 24px),
    #fff5df;
  border: 8px solid #111;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(18,18,18,.22);
}
.panini-sheet::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(255,255,255,.35), rgba(18,18,18,.34), rgba(255,255,255,.2));
  box-shadow: -13px 0 28px rgba(18,18,18,.12), 13px 0 28px rgba(18,18,18,.08);
}
.panini-sheet::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 13px;
  z-index: 4;
  background: linear-gradient(90deg, var(--green) 0 33.33%, #fff 33.33% 66.66%, var(--red) 66.66%);
}
.panini-sheet-head {
  margin: 0;
  padding: 32px 34px 20px;
  border-bottom: 4px solid #111;
  background:
    linear-gradient(135deg, rgba(214,168,79,.18), transparent 42%),
    #fff9ec;
}
.panini-sheet-head h2 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 86px);
  letter-spacing: 0;
  text-transform: uppercase;
}
.sheet-subtitle {
  margin: 10px 0 0;
  color: #292929;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sheet-meta span,
.sheet-meta strong {
  border-radius: 3px;
}
.state-bg-image {
  inset: 185px auto auto 32px;
  width: calc(50% - 64px);
  max-height: 540px;
  opacity: .94;
  filter: none;
}
.state-bg-image rect {
  fill: rgba(255,255,255,.55);
  stroke: #111;
  stroke-width: 5;
}
.state-bg-grid path {
  stroke: rgba(18,18,18,.24);
  stroke-width: 2;
}
.state-bg-mark path {
  stroke: var(--green);
  stroke-width: 34;
}
.state-bg-mark .mark-talavera,
.state-bg-mark .mark-pyramid,
.state-bg-mark .mark-agave,
.state-bg-mark .mark-butterfly,
.state-bg-mark .mark-map {
  fill: rgba(15,127,85,.14);
}
.state-bg-image text {
  fill: #111;
  font-size: 54px;
}
.sticker-slots {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-left: 50%;
  padding: 28px 30px 34px;
}
.panini-sticker {
  min-height: 220px;
  grid-template-rows: 132px 1fr;
  background: #fff;
  border: 2px solid #111;
  border-radius: 2px;
  box-shadow: 0 4px 0 rgba(18,18,18,.16);
}
.panini-sticker:hover {
  transform: translateY(-3px) rotate(-.35deg);
}
.sticker-photo {
  background:
    linear-gradient(135deg, rgba(15,127,85,.12), rgba(183,51,51,.16)),
    #e9e2d0;
  color: #111;
}
.sticker-photo img {
  filter: saturate(.95) contrast(1.04);
}
.sticker-info {
  border-top: 2px solid #111;
  background: #fff;
}
.sticker-info small {
  color: var(--red);
  font-size: 12px;
  letter-spacing: .06em;
}
.sticker-info h3 {
  font-size: 18px;
  text-transform: uppercase;
}
.sticker-info span {
  border-radius: 2px;
  background: #efe7d2;
}
.empty-slot {
  background: #fff9ed;
  border: 2px dashed rgba(17,17,17,.62);
}
.empty-slot .sticker-photo {
  background:
    linear-gradient(135deg, transparent 44%, rgba(183,51,51,.18) 45% 55%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(18,18,18,.07) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(18,18,18,.06) 0 1px, transparent 1px 16px),
    #f8efdc;
}
.empty-slot .sticker-photo span {
  border-radius: 2px;
  border-color: #111;
  color: #111;
  font-size: 32px;
}

/* Quiet album direction */
.panini-page {
  background:
    linear-gradient(rgba(20, 20, 20, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 20, 20, .025) 1px, transparent 1px),
    #f4f0e7;
  background-size: 28px 28px;
}
.panini-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 4vw, 54px);
  padding-block: clamp(42px, 7vw, 86px);
}
.panini-hero h1 {
  max-width: 880px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}
.panini-hero .lede {
  max-width: 720px;
  color: #343434;
  font-size: clamp(17px, 1.5vw, 21px);
}
.panini-priority-card {
  min-height: 280px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(0,0,0,.1)),
    #151515;
  border-radius: 6px;
}
.panini-priority-card h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.panini-index {
  grid-template-columns: 300px 1fr;
  align-items: center;
  background: rgba(248, 244, 235, .95);
  box-shadow: 0 10px 30px rgba(18,18,18,.06);
}
.state-letter-rail {
  max-height: 84px;
}
.panini-index button {
  min-width: 58px;
  min-height: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  border-color: rgba(18,18,18,.12);
  box-shadow: none;
  font-size: 12px;
}
.panini-index button.is-active {
  background: #151515;
  color: #fff;
  outline: none;
}
.panini-index button.is-active b,
.panini-index button.is-priority b {
  background: rgba(255,255,255,.18);
  color: inherit;
}
.state-picker select {
  border-radius: 999px;
  border-width: 1px;
  background-color: #fffefb;
}
.panini-flipbar {
  width: min(980px, 100%);
  border-radius: 6px;
  box-shadow: none;
}
.panini-stage {
  width: min(980px, 100%);
}
.panini-sheet {
  min-height: 660px;
  padding: clamp(22px, 3vw, 36px);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(18,18,18,.08) calc(50% - 1px), rgba(18,18,18,.08) calc(50% + 1px), transparent calc(50% + 1px)),
    #fffaf0;
  border: 1px solid rgba(18,18,18,.22);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(18,18,18,.13);
}
.panini-sheet::before {
  width: 18px;
  transform: translateX(-9px);
  background: linear-gradient(90deg, transparent, rgba(18,18,18,.09), transparent);
  box-shadow: none;
}
.panini-sheet::after {
  display: none;
}
.panini-sheet-head {
  padding: 0 0 18px;
  background: transparent;
  border-bottom: 1px solid rgba(18,18,18,.7);
}
.panini-sheet-head h2 {
  max-width: 680px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .94;
  text-transform: none;
}
.sheet-subtitle {
  color: #565656;
  font-size: 12px;
  letter-spacing: .05em;
}
.sheet-meta span,
.sheet-meta strong {
  min-height: 28px;
  border-radius: 999px;
  font-size: 11px;
}
.sheet-meta span {
  background: #151515;
}
.sheet-meta strong {
  background: #efe1bf;
}
.state-bg-image {
  inset: 175px auto auto clamp(22px, 3vw, 36px);
  width: calc(50% - 74px);
  max-height: 390px;
  opacity: .36;
  filter: none;
}
.state-bg-image rect {
  fill: transparent;
  stroke: rgba(18,18,18,.28);
  stroke-width: 4;
}
.state-bg-grid path {
  stroke: rgba(18,18,18,.13);
  stroke-width: 2;
}
.state-bg-mark path {
  stroke: rgba(18,18,18,.55);
  stroke-width: 24;
}
.state-bg-mark .mark-talavera,
.state-bg-mark .mark-pyramid,
.state-bg-mark .mark-agave,
.state-bg-mark .mark-butterfly,
.state-bg-mark .mark-map {
  fill: rgba(18,18,18,.08);
}
.state-bg-image text {
  fill: rgba(18,18,18,.65);
  font-size: 48px;
}
.sticker-slots {
  margin-left: 50%;
  padding: 24px 0 0 26px;
  gap: 16px;
}
.panini-sticker {
  min-height: 204px;
  grid-template-rows: 104px 1fr;
  background: #fff;
  border: 1px solid rgba(18,18,18,.22);
  border-radius: 4px;
  box-shadow: none;
}
.panini-sticker:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18,18,18,.08);
}
.sticker-photo {
  background:
    linear-gradient(135deg, rgba(15,127,85,.08), rgba(183,51,51,.08)),
    #eee7dc;
  color: #151515;
  font-size: 42px;
}
.sticker-info {
  gap: 5px;
  padding: 10px;
  border-top: 1px solid rgba(18,18,18,.18);
}
.sticker-info small {
  color: #9f2f2f;
  font-size: 10px;
  letter-spacing: .04em;
}
.sticker-info h3 {
  font-size: 16px;
  line-height: 1.05;
  text-transform: none;
}
.sticker-info p {
  color: #454545;
  font-size: 12px;
}
.sticker-info div {
  gap: 4px;
}
.sticker-info span {
  padding: 3px 5px;
  background: #f1eadc;
  border-radius: 999px;
  font-size: 9px;
}
.empty-slot {
  background:
    linear-gradient(90deg, rgba(18,18,18,.035) 1px, transparent 1px),
    linear-gradient(rgba(18,18,18,.035) 1px, transparent 1px),
    rgba(255,255,255,.52);
  background-size: 12px 12px;
  border: 1px dashed rgba(18,18,18,.35);
}
.empty-slot .sticker-photo {
  background: transparent;
}
.empty-slot .sticker-photo span {
  width: 42px;
  height: 42px;
  border: 1px dashed rgba(18,18,18,.5);
  border-radius: 50%;
  color: rgba(18,18,18,.58);
  font-size: 26px;
}

/* Generated sticker showcase */
.hero-sticker-showcase {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  justify-items: center;
  isolation: isolate;
}
.hero-sticker-showcase::before {
  content: "";
  position: absolute;
  inset: 7% 2% 8% 9%;
  background:
    radial-gradient(circle at 25% 22%, rgba(214,168,79,.32), transparent 28%),
    radial-gradient(circle at 74% 70%, rgba(15,127,85,.20), transparent 30%),
    linear-gradient(135deg, rgba(16,20,20,.08), rgba(255,255,255,.34));
  border: 1px solid rgba(16,20,20,.14);
  border-radius: 8px;
  transform: rotate(-2deg);
  z-index: -2;
}
.hero-sticker-showcase::after {
  content: "";
  position: absolute;
  inset: 17% 16% 10% 0;
  background:
    linear-gradient(90deg, rgba(16,20,20,.055) 1px, transparent 1px),
    linear-gradient(rgba(16,20,20,.055) 1px, transparent 1px),
    rgba(255,250,239,.72);
  background-size: 22px 22px;
  border-radius: 8px;
  z-index: -1;
}
.showcase-copy {
  position: absolute;
  left: 0;
  top: 34px;
  width: min(320px, 44%);
  padding: 18px;
  background: #101414;
  color: #fbfaf5;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16,20,20,.18);
  z-index: 3;
}
.showcase-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.showcase-copy strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: .98;
}
.showcase-copy p {
  margin: 10px 0 0;
  color: rgba(251,250,245,.76);
  font-size: 14px;
  line-height: 1.35;
}
.showcase-main-card,
.showcase-mini-card {
  display: block;
  width: min(54vw, 330px);
  aspect-ratio: 900 / 1278;
  background: #101414;
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(16,20,20,.24);
  overflow: hidden;
}
.showcase-main-card {
  transform: translate(24px, 20px) rotate(2deg);
  z-index: 2;
}
.showcase-mini-card {
  position: absolute;
  width: min(30vw, 185px);
  box-shadow: 0 18px 42px rgba(16,20,20,.22);
}
.showcase-mini-card.card-1 {
  right: 4%;
  top: 74px;
  transform: rotate(9deg);
}
.showcase-mini-card.card-2 {
  left: 9%;
  bottom: 36px;
  transform: rotate(-8deg);
}
.showcase-mini-card.card-3 {
  right: 12%;
  bottom: 18px;
  transform: rotate(6deg);
}
.showcase-main-card img,
.showcase-mini-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.album-sticker-feature {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 5vw, 62px) 7vw;
  background:
    radial-gradient(circle at 78% 20%, rgba(214,180,108,.20), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    #101414;
  background-size: auto, 24px 24px, 24px 24px, auto;
  color: #fbfaf5;
  border-block: 1px solid rgba(16,20,20,.20);
  overflow: hidden;
}
.album-sticker-feature h2 {
  margin: 8px 0 12px;
  max-width: 620px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: .96;
}
.album-sticker-feature p {
  max-width: 620px;
  color: rgba(251,250,245,.74);
  font-size: 17px;
  line-height: 1.45;
}
.album-sticker-fan {
  min-height: 360px;
  position: relative;
}
.album-sticker-fan a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(24vw, 220px);
  aspect-ratio: 900 / 1278;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.38);
  transform:
    translate(calc(-50% + (var(--i) - 1.5) * 126px), -50%)
    rotate(calc((var(--i) - 1.5) * 6deg));
  transition: transform .18s ease;
}
.album-sticker-fan a:hover {
  transform:
    translate(calc(-50% + (var(--i) - 1.5) * 126px), calc(-50% - 12px))
    rotate(0deg);
}
.album-sticker-fan img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.album-generated-sticker {
  min-height: 332px;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 9px;
  background:
    linear-gradient(rgba(16,20,20,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,20,20,.035) 1px, transparent 1px),
    #fbfaf5;
  background-size: 14px 14px;
  cursor: pointer;
  perspective: 1100px;
  outline: none;
}
.album-generated-sticker:focus-visible {
  box-shadow: 0 0 0 4px rgba(36,92,131,.22);
}
.album-flip-inner {
  position: relative;
  min-height: 238px;
  transform-style: preserve-3d;
  transition: transform .42s ease;
}
.album-generated-sticker:hover .album-flip-inner,
.album-generated-sticker.is-flipped .album-flip-inner {
  transform: rotateY(180deg);
}
.album-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #101414;
  box-shadow: inset 0 0 0 1px rgba(16,20,20,.18);
  backface-visibility: hidden;
}
.album-flip-back {
  transform: rotateY(180deg);
}
.album-flip-face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #101414;
}
.album-generated-sticker .sticker-info {
  border-top: 0;
  padding: 11px 2px 2px;
}
.album-generated-sticker .sticker-info p {
  margin: 3px 0 0;
  color: #666;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.album-generated-sticker .sticker-info h3 {
  font-size: 15px;
}
.album-sticker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.album-sticker-actions a {
  padding: 5px 7px;
  border: 1px solid rgba(16,20,20,.24);
  border-radius: 999px;
  background: #fff;
  color: #101414;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}
.album-sticker-actions a:nth-child(2) {
  background: #101414;
  color: #fff;
  border-color: #101414;
}

/* Typography system */
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
.brand-title,
.button,
.eyebrow,
.step-count,
.poster-ribbon,
.status,
.album-stats,
.album-state-nav,
.album-sheet-head,
.album-chapter-kicker {
  font-family: var(--font-display);
  letter-spacing: 0;
}
h1,
h2,
h3,
.hero h1,
.simple-page h1,
.form-intro h1,
.album-hero h1,
.album-chapter-page h3,
.poster h1,
.poster h2,
.sticker-card h1 {
  font-weight: 900;
}
h4,
h5,
h6,
strong,
.button,
.eyebrow,
.step-count,
label,
nav a {
  font-weight: 800;
}
p,
li,
td,
dd,
.helper,
.lede,
.album-book-helper,
.album-sticker p,
.album-chapter-page p {
  font-weight: 500;
}
small,
.album-sticker-tags span,
.album-sticker footer span {
  font-weight: 750;
}
@media (max-width: 820px) {
  .topbar { padding: 0 18px; }
  nav { gap: 10px; }
  .hero, .split, .profile-hero, .review-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    gap: 30px;
    padding: 34px 18px 48px;
  }
  .hero h1,
  .simple-page h1,
  .form-intro h1 {
    font-size: clamp(40px, 12vw, 64px);
  }
  .lede {
    font-size: 18px;
  }
  .hero-wall { min-height: auto; }
  .poster-wall {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
    grid-template-columns: none;
    grid-auto-rows: 190px;
    overflow-x: auto;
    padding: 8px 18px 22px 2px;
    margin-right: -18px;
    transform: none;
    scroll-snap-type: x mandatory;
  }
  .poster-wall > * {
    scroll-snap-align: start;
  }
  .show-poster, .show-sticker { grid-column: auto; grid-row: auto; transform: none; }
  .show-poster { grid-template-columns: 86px 1fr; }
  .show-poster b { display: none; }
  .poster-face { width: 86px; font-size: 26px; }
  .brand-title small { display: none; }
  .steps, .checks, .grid-2, .stat-builder-grid, .range-grid { grid-template-columns: 1fr; }
  .album-hero,
  .album-intro-band,
  .album-book-head,
  .album-spread {
    grid-template-columns: 1fr;
  }
  .album-hero h1 { font-size: clamp(44px, 14vw, 70px); }
  .album-cover-card {
    width: min(100%, 340px);
    transform: rotate(0);
  }
  .album-intro-band { align-items: start; }
  .album-book-head { align-items: start; }
  .album-field-strip,
  .album-state-strip { justify-content: flex-start; }
  .album-state-banner { grid-template-columns: 1fr; align-items: start; }
  .album-hero-v2 { grid-template-columns: 1fr; }
  .album-hero-v2 {
    gap: 24px;
    padding: 34px 18px 38px;
    position: relative;
  }
  .album-hero-v2 .album-hero-copy {
    padding-top: 108px;
  }
  .album-hero-v2 h1 {
    font-size: clamp(40px, 12vw, 62px);
    margin-bottom: 18px;
  }
  .album-hero-v2 .lede {
    font-size: 18px;
  }
  .album-hero-v2 .album-cover-card {
    position: absolute;
    top: 34px;
    right: 18px;
    width: 96px;
  }
  .album-hero-v2 .album-cover-card img {
    box-shadow: 0 16px 34px rgba(18, 18, 18, .18);
  }
  .album-priority-note {
    margin-top: 16px;
    padding: 12px;
  }
  .album-index-band {
    position: static;
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .album-state-nav { justify-content: flex-start; }
  .album-book-helper { max-width: none; }
  .album-state-spread {
    grid-template-columns: 1fr;
    filter: none;
    scroll-margin-top: 90px;
  }
  .album-chapter-page,
  .album-sticker-sheet {
    min-height: auto;
    border-radius: 8px;
  }
  .album-chapter-page {
    min-height: 420px;
    margin-bottom: 18px;
  }
  .album-chapter-page h3 {
    font-size: clamp(48px, 18vw, 86px);
  }
  .album-chapter-map {
    width: 96px;
    height: 96px;
    right: 18px;
    bottom: 18px;
  }
  .album-chapter-map span {
    width: 34px;
    height: 34px;
  }
  .album-sticker-sheet {
    box-shadow: none;
  }
  .album-state-spread .album-sticker-grid {
    grid-template-columns: 1fr;
  }
  .album-state-spread .album-sticker {
    min-height: 286px;
    grid-template-rows: 112px 1fr auto;
  }
  .directory-hero {
    grid-template-columns: 1fr;
    padding: 34px 18px 22px;
  }
  .directory-copy h1 {
    font-size: clamp(40px, 12vw, 62px);
  }
  .directory-feature {
    min-height: 260px;
  }
  .directory-state-nav {
    position: static;
    padding: 12px 18px;
  }
  .directory-content {
    padding: 26px 18px 58px;
  }
  .state-directory-section {
    scroll-margin-top: 90px;
  }
  .state-directory-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .state-summary {
    justify-content: flex-start;
  }
  .talent-directory-grid {
    grid-template-columns: 1fr;
  }
  .directory-talent-card {
    min-height: 390px;
    grid-template-rows: 170px 1fr auto;
  }
  .panini-hero {
    grid-template-columns: 1fr;
    padding: 34px 18px 22px;
  }
  .panini-hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }
  .panini-priority-card {
    min-height: 240px;
  }
  .panini-index {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px 18px;
  }
  .state-letter-rail {
    max-height: 128px;
  }
  .panini-index button {
    min-width: 64px;
  }
  .panini-flipbar {
    grid-template-columns: 1fr auto 1fr;
    border-radius: 8px;
  }
  .panini-flipbar .button {
    padding-inline: 12px;
  }
  .panini-sheets {
    padding: 26px 18px 58px;
  }
  .panini-sheet {
    min-height: auto;
    padding: 18px;
    scroll-margin-top: 90px;
  }
  .state-watermark {
    width: 70%;
    opacity: .09;
  }
  .state-bg-image {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 16px;
    opacity: 1;
  }
  .panini-sheet-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .sheet-meta {
    justify-items: start;
    text-align: left;
  }
  .sticker-slots {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .panini-sticker {
    min-height: 286px;
    grid-template-rows: 128px 1fr;
  }
  .album-spread { filter: none; gap: 18px; }
  .album-sheet,
  .album-sheet:nth-child(1),
  .album-sheet:nth-child(2) {
    min-height: auto;
    border-radius: 8px;
    transform: none;
  }
  .album-sheet:nth-child(1)::after,
  .album-sheet:nth-child(2)::before { display: none; }
  .album-sticker-grid { grid-template-columns: 1fr; }
  .poster { width: min(100%, 760px); min-height: 900px; }
  .poster-main { grid-template-columns: 1fr; }
}

/* Platform simplification layer */
:root {
  --ink: #171717;
  --muted: #606060;
  --line: #ddd5c8;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --green: #0f7f55;
  --red: #a93434;
  --gold: #d6b46c;
  --blue: #245c83;
  --magenta: #ba2f69;
  --orange: #d26d2f;
  --shadow: 0 18px 44px rgba(18, 18, 18, .09);
}
body {
  background:
    linear-gradient(rgba(18,18,18,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,18,18,.022) 1px, transparent 1px),
    var(--paper);
  background-size: 30px 30px;
  color: var(--ink);
}
.topbar {
  height: 74px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(253, 250, 244, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.brand {
  gap: 11px;
}
.brand-logo {
  width: 44px;
  max-height: 38px;
}
.brand-title strong {
  font-size: 14px;
  letter-spacing: 0;
}
.brand-title small {
  color: var(--blue);
  font-size: 10px;
}
nav {
  gap: 8px;
}
nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #353535;
  font-weight: 800;
}
nav a:hover {
  background: rgba(18,18,18,.06);
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, .7fr));
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  padding: 44px clamp(18px, 5vw, 64px) 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    #171717;
  background-size: 28px 28px;
  color: #fffaf0;
  border-top: 1px solid rgba(18,18,18,.18);
}
.footer-kicker {
  display: grid;
  gap: 14px;
  max-width: 300px;
}
.site-footer .brand-logo {
  width: 42px;
  max-height: 38px;
  padding: 3px;
  background: #fffaf0;
  border-radius: 6px;
}
.footer-kicker p,
.footer-bottom {
  margin: 0;
  color: rgba(255,250,240,.72);
  font-size: 14px;
  line-height: 1.45;
}
.footer-column {
  display: grid;
  gap: 9px;
}
.footer-column a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.footer-column h2 {
  margin: 0 0 6px;
  color: #fffaf0;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-column a {
  color: rgba(255,250,240,.76);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
}
.footer-column a:hover {
  color: #fffaf0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,250,240,.14);
  font-size: 12px;
}
.button {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid #171717;
  box-shadow: none;
  font-weight: 850;
}
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(18,18,18,.08);
}
.button.primary {
  background: #171717;
  color: #fff;
}
.button.secondary {
  background: rgba(255,255,255,.66);
  color: #171717;
}
.eyebrow,
.step-count {
  color: var(--red);
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 900;
}
.hero,
.form-shell,
.simple-page,
.admin-page,
.profile-page {
  padding-inline: clamp(18px, 7vw, 96px);
}
.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(48px, 8vw, 104px);
}
.hero::before {
  height: 6px;
  background: linear-gradient(90deg, var(--green), #fff, var(--red));
}
.hero h1,
.simple-page h1,
.form-intro h1,
.album-hero h1,
.directory-copy h1 {
  max-width: 900px;
  font-size: clamp(44px, 6.8vw, 88px);
  line-height: .95;
  letter-spacing: 0;
}
.lede,
.hero-copy p,
.form-intro p,
.simple-page p,
.profile-page p {
  color: #3d3d3d;
}
.hero-stats span,
.panini-metrics span,
.directory-metrics span {
  min-height: 40px;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
}
.poster-wall {
  gap: 12px;
  transform: none;
}
.show-poster {
  min-height: 178px;
  border: 1px solid rgba(18,18,18,.16);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(18,18,18,.08);
  transform: none !important;
  background: #fffaf0 !important;
}
.show-poster b {
  display: none;
}
.poster-ribbon {
  background: #171717;
  color: #fff;
}
.poster-face {
  background: #f0e5d3;
  color: #171717;
}
.band,
.split {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 7vw, 96px);
}
.split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  gap: clamp(24px, 5vw, 64px);
}
.section-head h2,
.split h2,
.form-step h2,
.profile-hero h1 {
  line-height: 1;
  letter-spacing: 0;
}
.steps {
  gap: 14px;
}
.steps article,
.panel,
.talent-card,
.mini-card,
.typeform,
.directory-empty {
  background: rgba(255,253,248,.86);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}
.steps article,
.panel,
.talent-card,
.mini-card {
  padding: 18px;
}
.steps span {
  width: 30px;
  height: 30px;
  background: #171717;
  color: #fff;
}
.typeform {
  max-width: 980px;
  padding: clamp(20px, 4vw, 42px);
}
.form-progress {
  height: 6px;
  background: #e8dfd0;
  border-radius: 999px;
}
.form-progress span {
  background: #171717;
}
label {
  color: #242424;
  font-weight: 850;
}
input,
select,
textarea {
  border: 1px solid #d4caba;
  border-radius: 6px;
  background: #fffdf8;
  color: #171717;
  box-shadow: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(36,92,131,.2);
  border-color: var(--blue);
}
.option-card,
.check-card {
  background: #fffdf8;
  border: 1px solid #d8cfbf;
  border-radius: 6px;
  box-shadow: none;
}
.option-card:hover,
.check-card:hover {
  transform: none;
  border-color: #171717;
  box-shadow: none;
}
.option-card.is-selected,
.check-card.is-selected,
.option-card:has(input:checked),
.check-card:has(input:checked) {
  background: #f2eadb;
  border-color: #171717;
  box-shadow: none;
}
.cards,
.talent-directory-grid {
  gap: 14px;
}
.talent-card,
.directory-talent-card {
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: none;
}
.directory-talent-card:hover,
.talent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18,18,18,.08);
}
.profile-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255,253,248,.76);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.profile-photo {
  border-radius: 6px;
  box-shadow: none;
}

.instagram-share-panel {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(260px, 380px);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  max-width: 1040px;
  margin: 24px auto 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(214, 180, 108, .2), transparent 28%),
    rgba(255, 253, 248, .82);
}

.instagram-share-copy h2 {
  max-width: 640px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: .98;
}

.instagram-share-copy > p:not(.eyebrow),
.instagram-share-preview figcaption {
  color: #4f5653;
  font-size: 16px;
  line-height: 1.45;
}

.instagram-caption-box {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #4e5654;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.instagram-caption-box textarea {
  min-height: 150px;
  resize: vertical;
  color: #171717;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.copy-status {
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 900;
}

.instagram-share-preview {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  background: #101414;
  color: #fff;
  box-shadow: 0 22px 54px rgba(16, 20, 20, .16);
}

.instagram-share-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 1278;
  object-fit: contain;
  background: #101414;
}

.instagram-share-preview figcaption {
  margin-top: 10px;
  color: rgba(255, 250, 240, .72);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 820px) {
  .instagram-share-panel {
    grid-template-columns: 1fr;
  }
}

.admin-page table {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
  overflow: hidden;
}
th {
  background: #f1eadc;
  color: #171717;
}
td,
th {
  border-bottom: 1px solid #e5dccd;
}
.status {
  border-radius: 999px;
  background: #eee4d2;
  color: #171717;
}
.poster {
  background: #fffaf0;
  border: 1px solid #171717;
  border-radius: 4px;
  box-shadow: 0 20px 46px rgba(18,18,18,.12);
}
.wall-poster::before,
.editorial-poster::before,
.wall-poster::after,
.editorial-poster::after {
  display: none;
}
.poster-head,
.poster-foot {
  border-color: #171717;
}
.poster-title-block span,
.poster h1,
.poster h2,
.poster-opportunities span {
  letter-spacing: 0;
}
.poster-photo,
.editorial-photo {
  border-radius: 4px;
  border-color: #171717;
}
.poster-opportunities span {
  background: #f0e5d3;
  color: #171717;
  border-radius: 999px;
}
.sticker-card {
  background: #fffaf0;
  border: 1px solid #171717;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18,18,18,.12);
}
.canva-head {
  background: rgba(255,253,248,.86);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}
.info-page {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 7vw, 96px);
}
.info-hero {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 56px);
}
.info-hero h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}
.info-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #3c3c3c;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.info-grid article,
.info-panel {
  background: rgba(255,253,248,.84);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}
.info-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 245px;
  padding: 18px;
}
.info-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.info-grid h2,
.info-panel h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.04;
}
.info-grid p,
.info-panel p,
.info-panel li {
  margin: 0;
  color: #454545;
  line-height: 1.45;
}
.info-panel {
  max-width: 920px;
  margin-top: 16px;
  padding: 22px;
}
.info-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}
.contact-panel {
  display: grid;
  gap: 10px;
}
.contact-panel a {
  color: var(--blue);
  font-weight: 850;
}
.concept-page {
  padding: clamp(34px, 6vw, 76px) clamp(18px, 5vw, 64px) clamp(52px, 8vw, 96px);
}
.concept-head {
  max-width: 880px;
  margin-bottom: 28px;
}
.concept-head h1 {
  margin: 0 0 14px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: .96;
}
.concept-head p:not(.eyebrow) {
  max-width: 720px;
  color: #3d3d3d;
  font-size: 18px;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}
.concept-grid-five {
  grid-template-columns: repeat(5, minmax(230px, 1fr));
}
.concept-card {
  display: grid;
  gap: 12px;
}
.concept-note {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px;
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.concept-note strong {
  font-size: 16px;
}
.concept-note span {
  color: #555;
  font-size: 13px;
}
.concept-poster {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: grid;
  background: #fffaf0;
  border: 1px solid #171717;
  border-radius: 4px;
  box-shadow: 0 22px 50px rgba(18,18,18,.12);
}
.concept-poster img {
  display: block;
}
.concept-poster header,
.concept-poster footer {
  position: relative;
  z-index: 2;
}
.concept-poster header img {
  width: 36px;
  max-height: 34px;
}
.concept-poster h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: .92;
}
.concept-poster p {
  margin: 0;
}
.concept-poster small,
.concept-poster header span,
.concept-poster footer span,
.concept-ask span {
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.concept-photo {
  overflow: hidden;
  background: #efe3cf;
}
.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-photo b {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 58px;
}
.concept-poster i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #171717;
  color: #171717;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}
.concept-a {
  grid-template-rows: auto 1fr auto auto;
  padding: 22px;
  gap: 18px;
}
.concept-a header,
.concept-a footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.concept-a header {
  padding-bottom: 14px;
  border-bottom: 1px solid #171717;
}
.concept-a .concept-photo {
  min-height: 285px;
  border: 1px solid #171717;
}
.concept-a .concept-copy {
  display: grid;
  gap: 10px;
}
.concept-a .concept-copy small {
  color: #245c83;
}
.concept-a .concept-copy p {
  max-width: 320px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 750;
}
.concept-a footer {
  padding-top: 14px;
  border-top: 1px solid #171717;
}
.concept-b {
  color: #fff;
  background: #111;
}
.concept-b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.78));
}
.concept-b .concept-photo {
  position: absolute;
  inset: 0;
  background: #2a2a2a;
}
.concept-b .concept-photo img {
  filter: grayscale(1) contrast(1.05);
}
.concept-b header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.concept-b header img {
  padding: 3px;
  background: #fffaf0;
  border-radius: 4px;
}
.concept-b .concept-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 0 22px 108px;
}
.concept-b .concept-copy small {
  color: #f1c35e;
}
.concept-b .concept-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(44px, 4vw, 64px);
}
.concept-b .concept-copy p {
  max-width: 330px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 850;
}
.concept-b footer {
  position: absolute;
  inset: auto 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  z-index: 3;
}
.concept-b footer i {
  border-color: #fff;
  color: #fff;
}
.concept-b2 {
  background: #111;
}
.concept-b2::after {
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.35));
}
.concept-b2 .concept-photo {
  inset: 0 0 26%;
}
.concept-b2 .concept-photo img {
  filter: grayscale(1) contrast(1.08);
}
.concept-b2 .concept-copy {
  inset: auto 18px 76px;
  align-self: auto;
  padding: 18px;
  background: rgba(255,250,240,.95);
  color: #171717;
}
.concept-b2 .concept-copy small {
  color: #a93434;
}
.concept-b2 .concept-copy h2 {
  color: #171717;
  font-size: clamp(34px, 3vw, 48px);
}
.concept-b2 .concept-copy p {
  max-width: none;
  color: #222;
  font-size: 17px;
}
.concept-b2 footer {
  color: #fff;
}
.concept-b3 {
  padding: 18px;
  color: #171717;
  background: #fffaf0;
}
.concept-b3::after {
  display: none;
}
.concept-b3 header,
.concept-b3 footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #171717;
}
.concept-b3 header {
  padding: 0 0 14px;
  border-bottom: 1px solid #171717;
}
.concept-b3 .concept-photo {
  position: relative;
  inset: auto;
  height: 52%;
  border: 1px solid #171717;
  margin-top: 18px;
}
.concept-b3 .concept-photo img {
  filter: grayscale(.7) contrast(1.04);
}
.concept-b3 .concept-copy {
  position: relative;
  align-self: auto;
  padding: 18px 0 0;
  color: #171717;
}
.concept-b3 .concept-copy small {
  color: #245c83;
}
.concept-b3 .concept-copy h2 {
  font-size: clamp(34px, 3vw, 48px);
}
.concept-b3 .concept-copy p {
  max-width: none;
  font-size: 18px;
}
.concept-b3 footer {
  position: relative;
  inset: auto;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #171717;
}
.concept-b3 footer i {
  border-color: #171717;
  color: #171717;
}
.concept-b4 .concept-photo img {
  filter: grayscale(1) contrast(1.1) brightness(.88);
}
.concept-b4::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.8) 0 43%, rgba(0,0,0,.18) 43% 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.5));
}
.concept-b4 header {
  align-items: start;
}
.concept-b4 .concept-copy {
  padding: 0 22px 92px;
}
.concept-b4 .concept-copy p {
  max-width: 285px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: .98;
}
.concept-b4 .concept-copy h2 {
  max-width: 250px;
  font-size: clamp(30px, 3vw, 44px);
}
.concept-b4 .concept-copy small {
  color: #f1c35e;
}
.concept-b5::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.72)),
    radial-gradient(circle at 80% 18%, rgba(214,180,108,.38), transparent 28%);
}
.concept-b5 .concept-photo img {
  filter: grayscale(.85) contrast(1.08);
}
.concept-b5 .concept-copy {
  padding: 0 20px 104px;
}
.concept-b5 .concept-copy > strong {
  display: block;
  max-width: 330px;
  font-size: clamp(38px, 3.8vw, 58px);
  line-height: .9;
}
.concept-b5 .concept-copy p {
  max-width: 300px;
  margin: 12px 0 22px;
  font-size: 20px;
}
.concept-b5 .concept-copy h2 {
  font-size: clamp(28px, 2.8vw, 40px);
}
.concept-b5 .concept-copy small {
  color: #f1c35e;
}
.concept-b5 footer span {
  color: #fff;
}

/* Poster variation cleanup: photo-led, readable, one family */
.concept-grid-five {
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content: center;
  gap: 24px;
}
.concept-grid-five .concept-note {
  min-height: 76px;
}
.concept-grid-five .concept-poster {
  min-height: auto;
  aspect-ratio: 3 / 4.35;
}
.concept-grid-five .concept-b {
  color: #171717;
  background: #fffaf0;
  border: 1px solid #171717;
}
.concept-grid-five .concept-b::after {
  display: none;
}
.concept-grid-five .concept-b .concept-photo {
  position: absolute;
  inset: 0 0 34%;
  background: #ded4c2;
}
.concept-grid-five .concept-b .concept-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.08));
  pointer-events: none;
}
.concept-grid-five .concept-b .concept-photo img {
  filter: grayscale(.72) contrast(1.08);
}
.concept-grid-five .concept-b header {
  position: absolute;
  inset: 16px 16px auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  padding: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.concept-grid-five .concept-b header img {
  width: 34px;
  max-height: 32px;
  padding: 3px;
  background: #fffaf0;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0,0,0,.16);
}
.concept-grid-five .concept-b header span {
  max-width: 220px;
  color: #fff;
  font-size: 10px;
}
.concept-grid-five .concept-b .concept-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-height: 37%;
  padding: 20px 20px 78px;
  background: #fffaf0;
  color: #171717;
}
.concept-grid-five .concept-b .concept-copy small {
  color: #a93434;
  font-size: 10px;
}
.concept-grid-five .concept-b .concept-copy h2 {
  margin: 0;
  max-width: 280px;
  color: #171717;
  font-size: 34px;
  line-height: .96;
}
.concept-grid-five .concept-b .concept-copy p,
.concept-grid-five .concept-b .concept-copy > strong {
  max-width: 280px;
  color: #171717;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 850;
}
.concept-grid-five .concept-b footer {
  position: absolute;
  inset: auto 20px 18px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  color: #171717;
}
.concept-grid-five .concept-b footer strong,
.concept-grid-five .concept-b footer span {
  color: #171717;
  font-size: 12px;
  line-height: 1.2;
}
.concept-grid-five .concept-b footer i {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid #171717;
  color: #171717;
  background: #fffaf0;
}
.concept-grid-five .concept-b2 .concept-copy {
  inset: auto 18px 18px;
  min-height: 0;
  padding: 18px 18px 76px;
  border: 1px solid #171717;
  background: rgba(255,250,240,.96);
}
.concept-grid-five .concept-b2 .concept-photo {
  inset: 0;
}
.concept-grid-five .concept-b2 footer {
  inset: auto 36px 36px;
}
.concept-grid-five .concept-b3 {
  padding: 18px;
  background: #fffaf0;
}
.concept-grid-five .concept-b3 header {
  inset: 18px 18px auto;
  color: #171717;
  text-shadow: none;
}
.concept-grid-five .concept-b3 header span {
  color: #171717;
}
.concept-grid-five .concept-b3 .concept-photo {
  position: relative;
  inset: auto;
  height: 56%;
  margin: 52px 0 0;
  border: 1px solid #171717;
}
.concept-grid-five .concept-b3 .concept-copy {
  position: relative;
  inset: auto;
  min-height: auto;
  padding: 18px 0 72px;
  background: transparent;
}
.concept-grid-five .concept-b3 footer {
  inset: auto 18px 18px;
  padding-top: 14px;
  border-top: 1px solid #171717;
}
.concept-grid-five .concept-b4 {
  background: #171717;
}
.concept-grid-five .concept-b4 .concept-photo {
  inset: 0 0 42%;
}
.concept-grid-five .concept-b4 .concept-copy {
  inset: auto 0 0;
  min-height: 44%;
  background: #171717;
  color: #fffaf0;
}
.concept-grid-five .concept-b4 .concept-copy p,
.concept-grid-five .concept-b4 .concept-copy h2 {
  color: #fffaf0;
}
.concept-grid-five .concept-b4 .concept-copy p {
  font-size: 28px;
  line-height: 1;
}
.concept-grid-five .concept-b4 footer strong,
.concept-grid-five .concept-b4 footer span {
  color: #fffaf0;
}
.concept-grid-five .concept-b4 footer i {
  border-color: #fffaf0;
  color: #fffaf0;
  background: transparent;
}
.concept-grid-five .concept-b5 .concept-photo {
  inset: 0 0 38%;
}
.concept-grid-five .concept-b5 .concept-copy {
  min-height: 41%;
  padding-top: 18px;
  background: #efe3cf;
}
.concept-grid-five .concept-b5 .concept-copy > strong {
  font-size: 31px;
  line-height: .96;
}
.concept-grid-five .concept-b5 .concept-copy p {
  font-size: 17px;
}
.concept-grid-five .concept-b5 .concept-copy h2 {
  font-size: 26px;
}
.reference-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  align-items: start;
}
.reference-poster {
  --ref-panel: #111;
  --ref-paper: #fffaf0;
  --ref-green: #0f7f55;
  --ref-red: #b73333;
  --ref-blue: #245c83;
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4.25;
  min-height: auto;
  background: var(--ref-paper);
  border: 1px solid #111;
  border-radius: 4px;
  box-shadow: 0 22px 50px rgba(18,18,18,.13);
}
.reference-poster header {
  position: absolute;
  inset: 14px 14px auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0;
  color: #111;
  text-shadow: none;
}
.reference-poster header img {
  width: 38px;
  max-height: 36px;
  padding: 3px;
  background: rgba(255,250,240,.94);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.reference-poster header span {
  max-width: 210px;
  padding: 5px 8px;
  background: rgba(255,250,240,.92);
  border-radius: 999px;
  color: #111;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.reference-poster .concept-photo {
  position: absolute;
  inset: 0 0 28%;
  background: #d8cfbf;
}
.reference-poster .concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.reference-poster .concept-photo b {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 64px;
}
.reference-diagonal {
  position: absolute;
  z-index: 3;
  inset: 52% 0 24%;
  background:
    linear-gradient(140deg, transparent 0 31%, var(--ref-green) 31% 43%, #fff 43% 52%, var(--ref-red) 52% 66%, transparent 66%),
    linear-gradient(140deg, transparent 0 44%, rgba(17,17,17,.92) 44% 58%, transparent 58%);
  pointer-events: none;
}
.reference-poster .concept-copy {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  min-height: 31%;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 28px 22px 82px;
  background: var(--ref-panel);
  color: #fff;
}
.reference-poster .concept-copy small {
  color: #f1c35e;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.reference-poster .concept-copy h2 {
  max-width: 260px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: .95;
}
.reference-poster .concept-copy p {
  max-width: 285px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 750;
}
.reference-data {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.reference-data span {
  padding: 4px 6px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}
.reference-poster footer {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 6;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
}
.reference-poster footer span,
.reference-poster footer strong {
  max-width: 205px;
  color: inherit;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
}
.reference-poster footer i {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, #111 1px, transparent 1px),
    linear-gradient(#111 1px, transparent 1px),
    #fff;
  background-size: 8px 8px;
  border: 2px solid #fff;
  color: #111;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}
.reference-logo {
  max-width: 92px;
  max-height: 42px;
  object-fit: contain;
  padding: 4px;
  background: rgba(255,255,255,.9);
  border-radius: 4px;
}
.reference-v2 {
  --ref-panel: #0e0e0e;
}
.reference-v2 .concept-copy {
  min-height: 33%;
  padding-top: 24px;
}
.reference-v2 footer {
  justify-content: flex-end;
}
.reference-v2 footer i + i {
  margin-left: 8px;
}
.reference-v3 {
  --ref-panel: #fffaf0;
}
.reference-v3 .concept-photo {
  inset: 0 0 34%;
}
.reference-v3 .concept-copy {
  min-height: 36%;
  color: #111;
  border-top: 1px solid #111;
}
.reference-v3 .concept-copy h2,
.reference-v3 .concept-copy p {
  color: #111;
}
.reference-v3 .concept-copy small {
  color: var(--ref-blue);
}
.reference-v3 .reference-data span {
  background: #efe3cf;
  color: #111;
}
.reference-v3 footer {
  color: #111;
}
.reference-v3 footer i {
  border-color: #111;
}
.reference-v4 .concept-photo {
  inset: 0 0 30%;
}
.reference-v4 .concept-copy h2 {
  font-size: 38px;
}
.reference-v4 .concept-copy p {
  margin-top: 4px;
}
.reference-v5 {
  --ref-panel: #111;
}
.reference-v5 .concept-copy {
  min-height: 34%;
}
.reference-v5 .concept-copy h2 {
  font-size: 30px;
}
.reference-v5 .concept-copy p {
  max-width: 270px;
  font-size: 16px;
}

/* Palette and poster system refinement */
:root {
  --paper: #f4f7f3;
  --white: #ffffff;
  --ink: #151716;
  --line: #d7ddd3;
  --muted: #5b625e;
  --green: #0b7a53;
  --red: #b93232;
  --blue: #1f5d83;
  --gold: #caa64f;
}
body {
  background:
    linear-gradient(rgba(16, 24, 20, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 20, .022) 1px, transparent 1px),
    #f4f7f3;
}
.topbar,
.typeform,
.panel,
.info-grid article,
.info-panel,
.concept-note,
.panini-sheet,
.hero .poster-wall {
  background-color: rgba(255,255,255,.86);
}
.reference-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
}
.reference-poster {
  --ref-paper: #f7faf6;
  --ref-panel: #121514;
  background:
    radial-gradient(circle at 84% 11%, rgba(31,93,131,.18), transparent 30%),
    linear-gradient(135deg, #f7faf6, #e9f0eb);
}
.reference-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.flag-l {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.flag-mx {
  position: absolute;
  inset: 0 auto 0 0;
  width: 13px;
  background: linear-gradient(180deg, #006847 0 33.333%, #fff 33.333% 66.666%, #ce1126 66.666%);
}
.flag-country {
  position: absolute;
  inset: 0 0 auto 0;
  height: 13px;
  background: linear-gradient(90deg, #1f5d83 0 33.333%, #fff 33.333% 66.666%, #b93232 66.666%);
}
.country-mexico .flag-country {
  background: linear-gradient(90deg, #006847 0 33.333%, #fff 33.333% 66.666%, #ce1126 66.666%);
}
.country-reino-unido .flag-country,
.country-united-kingdom .flag-country {
  background: linear-gradient(90deg, #012169 0 31%, #fff 31% 39%, #c8102e 39% 61%, #fff 61% 69%, #012169 69%);
}
.country-espana .flag-country,
.country-spain .flag-country {
  background: linear-gradient(90deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}
.country-suecia .flag-country,
.country-sweden .flag-country {
  background: linear-gradient(90deg, #006aa7 0 31%, #fecc00 31% 39%, #006aa7 39% 100%);
}
.reference-poster header {
  inset: 22px 24px auto;
}
.reference-poster header strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 130px;
  padding: 5px 8px;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  color: #151716;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.reference-poster header span {
  background: rgba(255,255,255,.9);
}
.reference-poster .concept-photo {
  inset: 13px 13px 30%;
  background:
    radial-gradient(circle at 68% 20%, rgba(31,93,131,.35), transparent 25%),
    linear-gradient(135deg, #dbe7e1, #e9edf1 45%, #d2d9d5);
}
.reference-poster .concept-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 0 54%, rgba(11,122,83,.86) 54% 62%, #fff 62% 67%, rgba(185,50,50,.9) 67% 78%, transparent 78%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.52), transparent 22%);
  z-index: 0;
}
.reference-poster .concept-photo img,
.reference-poster .concept-photo b {
  position: relative;
  z-index: 1;
}
.reference-poster.has-cutout .concept-photo img {
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.28));
}
.reference-poster:not(.has-cutout) .concept-photo img {
  opacity: .9;
}
.reference-poster .concept-copy {
  inset: auto 0 0;
  min-height: 32%;
  padding: 30px 24px 88px;
}
.reference-poster .concept-copy h2 {
  max-width: 300px;
  font-size: 36px;
}
.reference-poster .concept-copy p {
  max-width: 300px;
  font-size: 15px;
}
.reference-diagonal {
  inset: 51% 0 25%;
  z-index: 3;
  background:
    linear-gradient(140deg, transparent 0 30%, var(--ref-green) 30% 42%, #fff 42% 49%, var(--ref-red) 49% 61%, transparent 61%),
    linear-gradient(140deg, transparent 0 43%, rgba(18,21,20,.94) 43% 58%, transparent 58%);
}
.reference-logo-slot {
  min-width: 104px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.reference-v3 .reference-logo-slot {
  background: #edf3ef;
  border-color: #d7ddd3;
  color: #151716;
}
.reference-logo {
  max-width: 94px;
  max-height: 34px;
  padding: 0;
  background: transparent;
}
.concept-c {
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(18,18,18,.04) 1px, transparent 1px),
    linear-gradient(rgba(18,18,18,.04) 1px, transparent 1px),
    #fffaf0;
  background-size: 18px 18px;
}
.concept-c header,
.concept-c footer,
.concept-id {
  display: flex;
  gap: 14px;
}
.concept-c header,
.concept-c footer {
  justify-content: space-between;
  align-items: center;
}
.concept-c header {
  padding-bottom: 12px;
  border-bottom: 1px solid #171717;
}
.concept-id {
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid #171717;
}
.concept-id .concept-photo {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
}
.concept-id small {
  color: var(--red);
}
.concept-id h2 {
  margin: 5px 0 8px;
  font-size: 34px;
}
.concept-id p {
  color: #444;
  font-size: 13px;
  line-height: 1.25;
}
.concept-ask {
  align-self: center;
  display: grid;
  gap: 8px;
}
.concept-ask span {
  color: #245c83;
}
.concept-ask strong {
  max-width: 360px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: .98;
}
.concept-c footer {
  padding-top: 12px;
  border-top: 1px solid #171717;
}
.concept-c footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.concept-c footer span {
  padding: 5px 8px;
  background: #efe3cf;
  border-radius: 999px;
  color: #171717;
}

@media (max-width: 820px) {
  .topbar {
    height: auto;
    min-height: 74px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 10px 14px 8px;
  }
  .topbar .brand {
    width: max-content;
  }
  nav {
    width: 100%;
    min-width: 0;
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  nav::-webkit-scrollbar {
    display: none;
  }
  nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 12px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 28px 18px;
  }
  .footer-kicker,
  .footer-bottom {
    grid-column: 1 / -1;
  }
  .hero,
  .split,
  .profile-hero {
    grid-template-columns: 1fr;
  }
  .hero,
  .form-shell,
  .simple-page,
  .admin-page,
  .profile-page {
    padding-inline: 18px;
  }
  .hero h1,
  .simple-page h1,
  .form-intro h1,
  .directory-copy h1 {
    font-size: clamp(40px, 12vw, 60px);
  }
  .show-poster {
    min-height: 156px;
  }
  .typeform {
    padding: 18px;
  }
  .material-preview-grid {
    grid-template-columns: 1fr;
  }
  .form-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    bottom: 8px;
    border-radius: 24px;
  }
  .form-nav .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    justify-content: center;
  }
  .poster {
    width: min(100%, 720px);
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-grid article {
    min-height: auto;
  }
  .concept-grid {
    grid-template-columns: 1fr;
  }
  .concept-grid-five {
    grid-template-columns: 1fr;
  }
  .concept-poster {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .hero-sticker-showcase {
    min-height: 560px;
  }
  .album-sticker-feature {
    grid-template-columns: 1fr;
  }
  .album-sticker-fan {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .hero-sticker-showcase {
    min-height: 520px;
    justify-items: end;
  }
  .showcase-copy {
    left: 0;
    top: 0;
    width: min(100%, 300px);
  }
  .showcase-main-card {
    width: min(78vw, 300px);
    transform: translate(0, 64px) rotate(2deg);
  }
  .showcase-mini-card {
    width: 128px;
  }
  .showcase-mini-card.card-1 {
    right: auto;
    left: 2%;
    top: 245px;
  }
  .showcase-mini-card.card-2,
  .showcase-mini-card.card-3 {
    display: none;
  }
  .album-sticker-fan {
    min-height: 560px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .album-sticker-fan a {
    position: static;
    width: 100%;
    transform: none;
  }
  .album-sticker-fan a:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 560px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-kicker,
  .footer-bottom {
    grid-column: auto;
  }
}

/* Album state navigation and generated state art */
.panini-index.panini-state-control {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: grid;
  grid-template-columns: auto minmax(280px, 520px) auto;
  gap: 12px;
  align-items: end;
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
  padding: 14px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(18, 18, 18, .12);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(18, 18, 18, .08);
  backdrop-filter: blur(14px);
}

.panini-state-control .state-picker {
  min-width: 0;
}

.panini-state-control .state-picker span {
  display: block;
  margin: 0 0 6px;
  color: #5d6667;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.panini-state-control .state-picker select {
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  color: #101414;
  border: 2px solid #101414;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-weight: 900;
}

.state-nav-button {
  min-height: 48px;
  padding: 0 18px;
  color: #101414;
  background: #fff;
  border: 2px solid #101414;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  font-weight: 900;
}

.state-nav-button:hover {
  color: #fff;
  background: #101414;
}

.state-nav-button:disabled {
  cursor: not-allowed;
  opacity: .36;
}

.state-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.state-progress input[type="range"] {
  width: 100%;
  accent-color: #101414;
}

.state-progress span {
  color: #5d6667;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.panini-sheet .state-bg-image {
  position: absolute;
  inset: 202px auto auto clamp(22px, 3vw, 36px);
  z-index: 0;
  width: calc(50% - 76px);
  height: auto;
  max-height: none;
  aspect-ratio: 1000 / 1400;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  background: transparent;
  border: 1px solid rgba(18, 18, 18, .2);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 18, 18, .12);
}

.panini-sheet .state-bg-image + .state-watermark {
  opacity: .035;
}

@media (max-width: 820px) {
  .panini-index.panini-state-control {
    position: static;
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 28px);
    padding: 12px;
  }

  .panini-state-control .state-picker {
    grid-column: 1 / -1;
    order: -1;
  }

  .state-progress {
    grid-column: 1 / -1;
  }

  .panini-sheet .state-bg-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 1400;
    margin-bottom: 16px;
  }
}

/* Home hero refinement */
.hero {
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(440px, .92fr) minmax(520px, .78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  padding-top: clamp(38px, 5vw, 72px);
  padding-bottom: clamp(42px, 6vw, 84px);
}
.hero-copy {
  max-width: 780px;
}
.hero .eyebrow {
  margin-bottom: 18px;
  max-width: 620px;
  color: #7c2b2b;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.8vw, 82px);
  line-height: .98;
}
.hero .lede {
  max-width: 680px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.42;
}
.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-stats {
  margin-top: 26px;
}
.hero-stats span {
  min-height: 38px;
  padding: 7px 12px;
}
.hero-stats strong {
  color: #9f2f2f;
  font-size: 22px;
}
.hero .poster-wall {
  align-self: center;
  min-height: auto;
  max-width: 720px;
  margin-left: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-auto-rows: auto;
  gap: 12px;
  background: rgba(255,253,248,.72);
  border: 1px solid #ded5c7;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(18,18,18,.1);
}
.hero .poster-wall::before {
  content: "Cartelera viva";
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  min-height: 28px;
  color: #575757;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero .show-poster,
.hero .show-sticker {
  grid-column: auto;
  grid-row: auto;
  min-height: 150px;
  border-color: #ded5c7;
  border-radius: 6px;
  box-shadow: none;
}
.hero .show-poster {
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 34px 16px 16px;
}
.hero .show-poster::before {
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent);
}
.hero .poster-ribbon {
  top: 11px;
  left: 14px;
  padding: 4px 7px;
  font-size: 9px;
  letter-spacing: .03em;
}
.hero .poster-face {
  width: 74px;
  border: 0;
  border-radius: 5px;
  background: #efe3cf;
  color: #171717;
  font-size: 26px;
}
.hero .show-poster span {
  color: #244a64;
  font-size: 10px;
  letter-spacing: .03em;
}
.hero .show-poster strong {
  margin: 3px 0 5px;
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1;
}
.hero .show-poster small {
  max-width: 230px;
  color: #333;
  font-size: 12px;
  line-height: 1.28;
}
.hero .show-sticker {
  display: grid;
  align-content: end;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(214,180,108,.28), rgba(15,127,85,.09)),
    #fff7df;
}
.hero .show-sticker span {
  color: #244a64;
  font-size: 11px;
}
.hero .show-sticker strong {
  font-size: 46px;
  line-height: .92;
}
.hero .show-sticker div {
  color: #245c83;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero h1,
  .hero .lede {
    max-width: 820px;
  }
  .hero .poster-wall {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .stand-preview-section {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }
  .stand-preview-media {
    order: -1;
  }
  .stand-preview-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero .poster-wall {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-auto-rows: auto;
    overflow: visible;
    margin-right: 0;
    padding: 14px;
  }
  .hero .show-poster {
    min-height: 132px;
  }
}

/* Generated poster engine previews */
.concept-split {
  display: grid;
  gap: 30px;
}

.concept-group-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  max-width: 960px;
}

.concept-group-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.concept-group-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: .95;
}

.concept-group-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.concept-grid-three {
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  justify-content: start;
  gap: 24px;
}

.rendered-grid {
  align-items: start;
}

.rendered-poster {
  display: block;
  width: 100%;
  aspect-ratio: 1080 / 1530;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(16, 20, 24, 0.16);
}

.print-ready-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(32px, 7vw, 92px) var(--page-pad);
  background: var(--paper);
}

.print-ready-copy {
  max-width: 700px;
}

.print-ready-copy h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 96px);
  line-height: .9;
}

.print-ready-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.print-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0;
}

.print-specs div {
  display: grid;
  grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.print-specs dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.print-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.share-link {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.share-link input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

.print-ready-preview img {
  width: 100%;
  aspect-ratio: 1080 / 1530;
  object-fit: contain;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 20, 24, 0.14);
}

@media (max-width: 860px) {
  .print-ready-page {
    grid-template-columns: 1fr;
  }
}

.generated-sticker-page {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(32px, 7vw, 88px) var(--page-pad);
}
.generated-sticker-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .92;
}
.generated-sticker-copy p {
  color: var(--muted);
  font-size: 18px;
}
.generated-sticker-spread {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background: #101414;
}
.generated-sticker-spread img {
  width: 100%;
  aspect-ratio: 900 / 1278;
  object-fit: contain;
  background: #101414;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .25);
}

.admin-row-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-row-actions form,
.danger-zone form {
  margin: 0;
}

.link-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.danger-zone {
  border-color: rgba(190, 42, 52, .34);
}

.danger-zone hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}

.button.danger {
  background: #be2a34;
  color: #fff;
  border-color: #be2a34;
}

.button.danger:hover {
  background: #a21f2a;
  border-color: #a21f2a;
}

@media (max-width: 920px) {
  .generated-sticker-page,
  .generated-sticker-spread {
    grid-template-columns: 1fr;
  }
}

/* Album hero polish */
.panini-hero {
  grid-template-columns: minmax(360px, .9fr) minmax(420px, .62fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 7vw, 94px) var(--page-pad) clamp(46px, 6vw, 78px);
}

.panini-hero-copy {
  max-width: 820px;
}

.panini-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .97;
}

.panini-hero .lede {
  max-width: 700px;
  color: #2f3432;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.46;
}

.panini-metrics {
  gap: 12px;
  margin-top: 28px;
}

.panini-metrics span {
  min-height: 46px;
  padding: 9px 14px;
  border: 1px solid rgba(16, 20, 20, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(16, 20, 20, .05);
}

.panini-metrics strong {
  color: var(--blue);
}

.panini-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.album-hero-card {
  position: relative;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 20, .16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 180, 108, .34), transparent 28%),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(135deg, #0f1515 0%, #1d2320 52%, #332c20 100%);
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: 0 28px 68px rgba(16, 20, 20, .2);
  color: #fbfaf5;
}

.album-hero-card::before {
  content: "";
  position: absolute;
  inset: 20px 20px auto auto;
  width: 134px;
  height: 98px;
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(135deg, transparent 43%, rgba(255, 255, 255, .18) 45% 54%, transparent 56%),
    linear-gradient(45deg, transparent 43%, rgba(255, 255, 255, .14) 45% 54%, transparent 56%);
  background-size: 24px 24px;
  opacity: .82;
}

.album-hero-card > * {
  position: relative;
  z-index: 1;
}

.album-hero-card-head,
.album-hero-priority {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.album-hero-card-head {
  color: rgba(251, 250, 245, .72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.album-hero-card-head strong {
  color: var(--gold);
}

.album-hero-preview {
  position: relative;
  min-height: 340px;
  margin: 28px 0 22px;
}

.album-hero-preview a {
  position: absolute;
  display: block;
  width: min(42%, 190px);
  aspect-ratio: 900 / 1278;
  border: 8px solid #f6f0df;
  border-radius: 6px;
  overflow: hidden;
  background: #101414;
  box-shadow: 0 24px 52px rgba(0, 0, 0, .36);
  transform: rotate(calc((var(--i) * 2 - 1) * 5deg));
}

.album-hero-preview a:nth-of-type(1) {
  left: 10%;
  top: 8%;
}

.album-hero-preview a:nth-of-type(2) {
  right: 9%;
  bottom: 0;
}

.album-hero-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.album-hero-sheet {
  position: absolute;
  inset: 18% 19% auto auto;
  display: grid;
  place-items: center;
  width: min(42%, 186px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(214, 180, 108, .52);
  border-radius: 8px;
  background:
    linear-gradient(rgba(16, 20, 20, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .08) 1px, transparent 1px),
    rgba(246, 240, 223, .92);
  background-size: 18px 18px;
  color: #101414;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.album-hero-sheet span,
.album-hero-sheet small {
  font-weight: 900;
  text-transform: uppercase;
}

.album-hero-sheet b {
  color: var(--red);
  font-size: clamp(54px, 7vw, 88px);
  line-height: .8;
}

.album-hero-priority {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
}

.album-hero-priority small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.album-hero-priority h2 {
  margin: 7px 0 6px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.album-hero-priority p {
  max-width: 360px;
  margin: 0;
  color: rgba(251, 250, 245, .76);
  font-size: 16px;
  line-height: 1.38;
}

.talent-directory-page {
  min-height: calc(100vh - 78px);
  padding: clamp(48px, 7vw, 84px) 0 72px;
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 180, 108, .18), transparent 28%),
    linear-gradient(rgba(16, 20, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .03) 1px, transparent 1px),
    #f6f4ee;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.talent-directory-page .directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
  padding: 0;
}

.talent-directory-page .directory-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .92;
}

.talent-directory-page .directory-hero .lede {
  max-width: 760px;
  margin: 0;
  color: #44504d;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
}

.talent-directory-page .panini-hero-actions {
  margin-top: 8px;
}

.talent-search {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 76px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(16, 20, 20, .14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(249, 246, 237, .92)),
    linear-gradient(rgba(16, 20, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .03) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  box-shadow: 0 24px 60px rgba(16, 20, 20, .1);
}

.talent-search-head {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, .72fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 18px;
}

.talent-search-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.talent-search-head > p {
  margin: 0;
  color: #4b5351;
  font-size: 16px;
  line-height: 1.42;
}

.talent-search-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(190px, .75fr) minmax(190px, .72fr) auto;
  gap: 12px;
  align-items: end;
}

.talent-search-controls label {
  display: grid;
  gap: 7px;
  color: #4e5654;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.talent-search-controls input,
.talent-search-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 20, 20, .18);
  border-radius: 10px;
  background: #fffdf7;
  color: #151817;
  font: inherit;
  font-weight: 800;
}

.talent-search-controls input:focus,
.talent-search-controls select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 92, 130, .12);
  outline: 0;
}

.talent-search-summary {
  min-height: 22px;
  margin: 16px 0 0;
  color: #53605d;
  font-size: 14px;
  font-weight: 900;
}

.talent-search-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.talent-result-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 13px;
  min-height: 148px;
  padding: 12px;
  border: 1px solid rgba(16, 20, 20, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 28px rgba(16, 20, 20, .06);
}

.talent-result-image {
  display: block;
  width: 86px;
  height: 122px;
  overflow: hidden;
  border: 4px solid #f5edda;
  border-radius: 7px;
  background: #111;
}

.talent-result-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-result-card small,
.talent-result-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.talent-result-card h3 {
  margin: 5px 0 4px;
  font-size: 23px;
  line-height: .98;
}

.talent-result-card p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: #2e3432;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.talent-result-card span {
  color: #6a6255;
  text-transform: none;
}

.talent-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.talent-result-actions a {
  min-height: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(16, 20, 20, .16);
  border-radius: 999px;
  background: #fffdf7;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.talent-result-actions a:first-child {
  background: #111;
  color: #fff;
}

.talent-search-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed rgba(16, 20, 20, .28);
  border-radius: 12px;
  background: rgba(255, 255, 255, .74);
  color: #4b5351;
  font-weight: 900;
}

.panini-flipbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.panini-flipbar-actions .button {
  white-space: nowrap;
}

.panini-stage {
  width: min(1180px, 100%);
}

.panini-sheet {
  min-height: 760px;
}

.state-cover-card {
  position: absolute;
  inset: 132px auto 34px clamp(22px, 3vw, 36px);
  z-index: 1;
  width: calc(50% - 74px);
  overflow: hidden;
  border: 1px solid rgba(16, 20, 20, .22);
  border-radius: 10px;
  background: #101414;
  box-shadow: 0 22px 54px rgba(16, 20, 20, .16);
}

.state-cover-card .state-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(.92) contrast(1.02);
}

.state-cover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 12, 12, .06) 0 42%, rgba(10, 12, 12, .8) 100%),
    linear-gradient(90deg, rgba(10, 12, 12, .42), transparent 42%),
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
}

.state-cover-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 3px solid rgba(255, 248, 226, .82);
  box-shadow: inset 0 0 0 1px rgba(16, 20, 20, .42);
  pointer-events: none;
}

.state-cover-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.state-cover-frame::before,
.state-cover-frame::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.state-cover-frame::before {
  left: 20px;
  right: 20px;
  bottom: 82px;
  height: 6px;
}

.state-cover-frame::after {
  top: 28px;
  right: 28px;
  width: 46px;
  height: 124px;
  background: linear-gradient(90deg, var(--green) 0 33%, #fff 33% 66%, var(--red) 66%);
}

.state-cover-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 36px;
  z-index: 3;
  color: #fffaf0;
}

.state-cover-copy span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  background: rgba(16, 20, 20, .72);
  color: var(--gold);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.state-cover-copy h3 {
  margin: 14px 0 4px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0, 0, 0, .34);
}

.state-cover-copy p {
  margin: 0;
  color: rgba(255, 250, 240, .88);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.state-cover-copy button {
  margin-top: 16px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 240, .9);
  border-radius: 999px;
  background: rgba(16, 20, 20, .72);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.panini-sheet .state-bg-image + .state-watermark {
  opacity: 0;
}

@media (max-width: 980px) {
  .panini-hero {
    grid-template-columns: 1fr;
  }

  .album-hero-card {
    min-height: 480px;
  }

  .talent-search-head,
  .talent-search-controls {
    grid-template-columns: 1fr;
  }

  .talent-search-controls .button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .state-cover-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 540px;
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .panini-hero {
    padding-block: 36px 42px;
  }

  .panini-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .album-hero-card {
    min-height: 430px;
    padding: 14px;
  }

  .album-hero-preview {
    min-height: 276px;
  }

  .album-hero-preview a {
    border-width: 6px;
    width: min(45%, 156px);
  }

  .talent-search {
    width: min(100% - 20px, 1180px);
    margin-top: 24px;
    padding: 14px;
  }

  .talent-result-card {
    grid-template-columns: 72px 1fr;
  }

  .talent-result-image {
    width: 72px;
    height: 104px;
  }
}

@media print {
  body {
    background: #fff !important;
  }

  .topbar,
  .site-footer,
  .panini-hero,
  .panini-index,
  .panini-flipbar,
  .talent-search,
  .album-download-floating {
    display: none !important;
  }

  .panini-sheets {
    padding: 0 !important;
  }

  .panini-stage {
    width: 100% !important;
  }

  .panini-sheet {
    display: none !important;
    min-height: 100vh !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    page-break-inside: avoid;
  }

  .panini-sheet.is-active {
    display: block !important;
    animation: none !important;
  }

  .panini-page.is-printing-all .panini-sheet {
    display: block !important;
    page-break-after: always;
  }

  .panini-page.is-printing-all .panini-sheet:last-child {
    page-break-after: auto;
  }

  .state-cover-copy button,
  .album-sticker-actions {
    display: none !important;
  }
}

/* Album slot normalization */
.sticker-slots {
  align-items: start;
}

.sticker-slots .panini-sticker.empty-slot {
  min-height: 0;
  grid-template-rows: 116px auto;
  align-self: start;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 20, 20, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .026) 1px, transparent 1px),
    rgba(255, 253, 248, .78);
  background-size: 14px 14px;
}

.sticker-slots .panini-sticker.empty-slot .sticker-photo {
  min-height: 116px;
  height: 116px;
  border-bottom: 1px solid rgba(18, 18, 18, .18);
  background:
    linear-gradient(rgba(16, 20, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .035) 1px, transparent 1px),
    #fbfaf5;
  background-size: 16px 16px;
}

.sticker-slots .panini-sticker.empty-slot .sticker-photo span {
  display: none;
}

.sticker-slots .panini-sticker.empty-slot .sticker-info {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border-top: 0;
  background: rgba(255, 253, 248, .94);
}

.sticker-slots .panini-sticker.empty-slot .sticker-info small {
  font-size: 10px;
}

.sticker-slots .panini-sticker.empty-slot .sticker-info h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1;
}

.sticker-slots .panini-sticker.empty-slot .sticker-info p {
  min-height: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.28;
  -webkit-line-clamp: 3;
}

.sticker-slots .panini-sticker.empty-slot .sticker-info div {
  margin-top: 6px;
}

.sticker-slots .panini-sticker.empty-slot .sticker-info span {
  width: auto;
  height: auto;
  padding: 4px 7px;
  border: 0;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
}

/* Compact album navigation */
.panini-index.panini-state-control {
  position: sticky;
  top: 84px;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(220px, .48fr) auto minmax(320px, 1fr) auto;
  gap: 12px;
  align-items: end;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 14px;
  border: 1px solid rgba(16, 20, 20, .12);
  border-radius: 16px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 44px rgba(16, 20, 20, .1);
  backdrop-filter: blur(12px);
}

.state-control-heading {
  align-self: center;
}

.state-control-heading .eyebrow {
  margin: 0 0 4px;
}

.state-control-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: .98;
}

.panini-state-control .state-picker {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.panini-state-control .state-picker span {
  color: #58615f;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.panini-state-control .state-picker select {
  min-height: 48px;
  width: 100%;
  border: 2px solid #101414;
  border-radius: 10px;
  background: #fffdf7;
  color: #151817;
  font: inherit;
  font-size: 17px;
  font-weight: 1000;
}

.panini-state-control .state-nav-button {
  min-height: 48px;
  min-width: 132px;
  padding: 10px 18px;
  border: 1px solid rgba(16, 20, 20, .18);
  border-radius: 999px;
  background: #fffdf7;
  color: #151817;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.panini-state-control .state-nav-button:not(:disabled):hover {
  background: #101414;
  color: #fffaf0;
}

.panini-state-control .state-nav-button:disabled {
  color: rgba(16, 20, 20, .34);
  cursor: not-allowed;
}

.panini-state-control .state-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 2px 0 0;
}

.panini-state-control .state-progress input {
  width: 100%;
  accent-color: #101414;
}

.panini-state-control .state-progress span {
  display: inline-flex;
  min-width: 92px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe4c9;
  color: #4f5654;
  font-size: 12px;
  font-weight: 1000;
}

.panini-state-control .state-progress b {
  color: #101414;
  font-size: 16px;
}

/* Album state edition refinements */
.album-map-panel {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(520px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(16, 20, 20, .14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(250, 247, 238, .94)),
    linear-gradient(rgba(16, 20, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .03) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  box-shadow: 0 22px 54px rgba(16, 20, 20, .08);
}

.album-map-copy h2 {
  max-width: 360px;
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .96;
}

.album-map-copy p:not(.eyebrow) {
  max-width: 410px;
  margin: 0;
  color: #4b5351;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.42;
}

.album-state-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding: 4px;
}

.album-state-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 8px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(16, 20, 20, .13);
  border-radius: 10px;
  background: rgba(255, 253, 248, .88);
  color: #151817;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.album-state-chip:hover,
.album-state-chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 92, 130, .42);
  box-shadow: 0 14px 28px rgba(16, 20, 20, .1);
  outline: 0;
}

.album-state-chip.is-active {
  background: #101414;
  color: #fffaf0;
  box-shadow: 0 18px 36px rgba(16, 20, 20, .18);
}

.album-state-chip.is-priority {
  border-color: rgba(214, 180, 108, .72);
}

.album-state-chip span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f5e7b9);
  color: #101414;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
}

.album-state-chip strong {
  align-self: end;
  overflow: hidden;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.album-state-chip small {
  overflow: hidden;
  color: inherit;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  opacity: .72;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sheet-meta em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16, 20, 20, .08);
  color: #53605d;
  font-style: normal;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.album-sticker-actions button,
.album-sticker-actions a {
  min-height: 28px;
}

.album-sticker-actions button {
  padding: 7px 10px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
}

.has-sticker-modal {
  overflow: hidden;
}

.sticker-modal[hidden] {
  display: none;
}

.sticker-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
}

.sticker-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 13, .72);
  backdrop-filter: blur(8px);
}

.sticker-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(560px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  width: min(1240px, 100%);
  max-height: min(860px, calc(100vh - 32px));
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 250, 240, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 10%, rgba(214, 180, 108, .22), transparent 28%),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    #101414;
  background-size: auto, 24px 24px, 24px 24px, auto;
  color: #fffaf0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

.sticker-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, .25);
  border-radius: 50%;
  background: rgba(255, 250, 240, .08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.sticker-modal-copy {
  align-self: center;
}

.sticker-modal-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(36px, 5vw, 76px);
  line-height: .92;
}

.sticker-modal-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 250, 240, .74);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.36;
}

.sticker-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sticker-modal-actions .button.secondary {
  background: rgba(255, 250, 240, .07);
  color: #fffaf0;
  border-color: rgba(255, 250, 240, .28);
}

.sticker-modal-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: clamp(12px, 2vw, 22px);
  align-items: start;
}

.sticker-modal-images img {
  display: block;
  width: 100%;
  max-height: min(760px, calc(100vh - 110px));
  object-fit: contain;
  border: 10px solid #f5edda;
  border-radius: 6px;
  background: #111;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .32);
}

@media (max-width: 980px) {
  .panini-index.panini-state-control {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .panini-state-control .state-control-heading,
  .panini-state-control .state-picker,
  .panini-state-control .state-progress {
    grid-column: 1 / -1;
  }

  .album-map-panel,
  .sticker-modal-panel {
    grid-template-columns: 1fr;
  }

  .album-state-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 300px;
  }

  .sticker-modal-images {
    grid-template-columns: 1fr;
  }

  .sticker-modal-images img {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .panini-index.panini-state-control {
    width: min(100% - 20px, 1180px);
    padding: 12px;
  }

  .panini-state-control .state-nav-button {
    min-width: 0;
    width: 100%;
  }

  .panini-state-control .state-progress {
    grid-template-columns: 1fr;
  }

  .panini-state-control .state-progress span {
    justify-self: end;
  }

  .album-map-panel {
    width: min(100% - 20px, 1180px);
    padding: 14px;
  }

  .album-state-map {
    grid-template-columns: 1fr;
  }

  .sticker-modal {
    padding: 10px;
  }

  .sticker-modal-panel {
    padding: 16px;
  }
}

/* Immersive album direction */
.panini-page {
  background:
    linear-gradient(rgba(16, 20, 20, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .026) 1px, transparent 1px),
    #f2eee4;
  background-size: 30px 30px;
}

.panini-hero {
  grid-template-columns: minmax(0, .9fr) minmax(260px, .42fr);
  min-height: auto;
  padding: clamp(34px, 5vw, 68px) var(--page-pad) clamp(24px, 4vw, 44px);
}

.panini-hero h1 {
  max-width: 880px;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: .94;
}

.panini-hero .lede {
  max-width: 760px;
}

.album-hero-card {
  min-height: 360px;
  border-radius: 18px;
}

.album-hero-preview {
  min-height: 210px;
}

.panini-index.panini-state-control {
  position: sticky;
  top: 86px;
  z-index: 20;
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto -18px;
  padding: 12px;
  border: 1px solid rgba(255, 250, 240, .2);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(19, 28, 27, .98), rgba(18, 20, 20, .96));
  background-size: 20px 20px, 20px 20px, auto;
  color: #fffaf0;
  box-shadow: 0 22px 70px rgba(16, 20, 20, .28);
}

.state-control-heading {
  min-width: 138px;
}

.state-control-heading .eyebrow {
  color: var(--gold);
}

.state-control-heading h2 {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 32px);
}

.panini-state-control .state-picker span {
  color: rgba(255, 250, 240, .62);
}

.panini-state-control .state-picker select {
  min-height: 50px;
  border: 1px solid rgba(255, 250, 240, .26);
  border-radius: 999px;
  background: rgba(255, 250, 240, .09);
  color: #fffaf0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.panini-state-control .state-picker select option {
  color: #151817;
}

.panini-state-control .state-nav-button,
.state-control-actions button,
.state-control-actions a {
  min-height: 50px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 240, .22);
  border-radius: 999px;
  background: rgba(255, 250, 240, .08);
  color: #fffaf0;
  font: inherit;
  font-weight: 1000;
  text-decoration: none;
  cursor: pointer;
}

.panini-state-control .state-nav-button:not(:disabled):hover,
.state-control-actions button:hover,
.state-control-actions a:hover {
  background: #fffaf0;
  color: #101414;
}

.panini-state-control .state-nav-button:disabled {
  color: rgba(255, 250, 240, .32);
  border-color: rgba(255, 250, 240, .12);
}

.panini-state-control .state-progress {
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto auto;
  margin-top: 4px;
}

.panini-state-control .state-progress input {
  accent-color: var(--gold);
}

.panini-state-control .state-progress span {
  background: rgba(214, 180, 108, .18);
  color: rgba(255, 250, 240, .78);
}

.panini-state-control .state-progress b {
  color: #fff;
}

.state-control-actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px;
  justify-content: end;
}

.state-control-actions button[data-panini-autoplay] {
  background: linear-gradient(135deg, var(--gold), #f5e1a6);
  border-color: transparent;
  color: #101414;
}

.panini-page.is-autoplaying .state-control-actions button[data-panini-autoplay] {
  background: var(--red);
  color: #fff;
}

.panini-sheets {
  padding: 52px var(--page-pad) 74px;
  background:
    radial-gradient(circle at 14% 8%, rgba(15, 127, 85, .18), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(214, 180, 108, .22), transparent 28%),
    linear-gradient(135deg, #0d1312 0%, #111616 48%, #272116 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.panini-stage {
  width: min(1240px, 100%);
  perspective: 2400px;
}

.panini-stage::before,
.panini-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.panini-stage::before {
  inset: -28px -34px;
  z-index: -2;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    rgba(0, 0, 0, .24);
  background-size: 26px 26px;
}

.panini-stage::after {
  inset: 16px 50% 16px auto;
  z-index: 4;
  width: 34px;
  transform: translateX(50%);
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .18), rgba(255, 255, 255, .08), transparent);
  mix-blend-mode: multiply;
}

.panini-sheet {
  min-height: min(820px, calc(100vh - 220px));
  border: 12px solid #f6f0df;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(16,20,20,.11) calc(50% - 1px), rgba(16,20,20,.11) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(rgba(16, 20, 20, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .025) 1px, transparent 1px),
    #fffaf0;
  background-size: auto, 22px 22px, 22px 22px, auto;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(16, 20, 20, .12);
  transform-origin: 50% center;
}

.panini-sheet.is-active {
  animation: albumPageIn .58s cubic-bezier(.2, .72, .18, 1) both;
}

.panini-stage.turn-next .panini-sheet.is-active {
  animation-name: albumPageNext;
}

.panini-stage.turn-prev .panini-sheet.is-active {
  animation-name: albumPagePrev;
}

@keyframes albumPageIn {
  from { opacity: .25; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes albumPageNext {
  0% { opacity: .2; transform: rotateY(-18deg) translateX(26px) scale(.98); filter: saturate(.9); }
  55% { opacity: 1; transform: rotateY(3deg) translateX(-4px) scale(1.005); }
  100% { opacity: 1; transform: rotateY(0) translateX(0) scale(1); filter: saturate(1); }
}

@keyframes albumPagePrev {
  0% { opacity: .2; transform: rotateY(18deg) translateX(-26px) scale(.98); filter: saturate(.9); }
  55% { opacity: 1; transform: rotateY(-3deg) translateX(4px) scale(1.005); }
  100% { opacity: 1; transform: rotateY(0) translateX(0) scale(1); filter: saturate(1); }
}

.panini-sheet-head {
  padding-bottom: 14px;
}

.panini-sheet-head h2 {
  font-size: clamp(44px, 6.4vw, 84px);
}

.state-cover-card {
  inset: 134px auto 34px clamp(22px, 3vw, 36px);
  width: calc(50% - 72px);
  border-radius: 12px;
}

.sticker-slots {
  padding-top: 22px;
}

.album-generated-sticker {
  cursor: pointer;
}

.talent-search {
  margin-top: 64px;
}

.talent-search::before {
  content: "Directorio";
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.talent-search-standalone {
  margin-top: 28px;
  margin-bottom: 0;
}

.talent-search-standalone::before {
  content: none;
}

@media (max-width: 980px) {
  .panini-index.panini-state-control {
    position: static;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px;
  }

  .panini-state-control .state-control-heading,
  .panini-state-control .state-picker,
  .panini-state-control .state-progress,
  .state-control-actions {
    grid-column: 1 / -1;
  }

  .state-control-actions {
    justify-content: start;
  }

  .panini-sheets {
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .panini-hero {
    padding-top: 30px;
  }

  .panini-index.panini-state-control {
    width: min(100% - 20px, 1180px);
  }

  .state-control-actions button,
  .state-control-actions a {
    flex: 1 1 130px;
    text-align: center;
  }

  .panini-sheet {
    min-height: auto;
    border-width: 8px;
  }
}

/* Cinematic album scenes */
.album-stand-show {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(22px, 3vw, 42px);
  background:
    radial-gradient(circle at 14% 16%, rgba(15, 127, 85, .32), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(214, 180, 108, .34), transparent 27%),
    radial-gradient(circle at 82% 82%, rgba(198, 55, 63, .28), transparent 32%),
    linear-gradient(135deg, #07100f 0%, #101414 48%, #2d2418 100%);
  color: #fbfaf5;
  isolation: isolate;
}

.album-stand-grid,
.album-stand-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.album-stand-grid {
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 58%, transparent 86%);
}

.album-stand-aurora {
  z-index: -1;
  background:
    conic-gradient(from 190deg at 48% 46%, transparent 0 10%, rgba(245, 206, 107, .36) 13% 18%, transparent 22% 38%, rgba(33, 111, 151, .34) 44% 51%, transparent 55% 75%, rgba(214, 45, 45, .3) 80% 87%, transparent 91%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12), transparent 54%);
  filter: blur(20px) saturate(1.12);
  opacity: .84;
  animation: screenAurora 20s linear infinite;
}

.album-stand-header,
.album-stand-footer,
.album-stand-stage {
  position: relative;
  z-index: 1;
}

.album-stand-header,
.album-stand-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.album-stand-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.album-stand-nav a {
  padding: 9px 13px;
  border: 1px solid rgba(255, 250, 240, .2);
  border-radius: 999px;
  color: rgba(255, 250, 240, .76);
  font-size: 12px;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .055);
}

.album-stand-nav a.is-active,
.album-stand-nav a:hover {
  color: #101413;
  background: #f7efd9;
}

.album-stand-stage {
  display: grid;
  grid-template-columns: minmax(290px, .54fr) minmax(520px, 1fr) minmax(180px, .26fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: center;
  min-height: calc(100vh - 190px);
  padding-block: clamp(22px, 3vh, 44px);
}

.album-stand-copy h1 {
  max-width: 640px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 128px);
  line-height: .86;
}

.album-stand-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(251, 250, 245, .78);
  font-size: clamp(19px, 1.8vw, 30px);
  font-weight: 850;
  line-height: 1.14;
}

.album-stand-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
}

.album-stand-copy dl div {
  min-height: 88px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.album-stand-copy dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.album-stand-copy dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 28px);
  font-weight: 1000;
  line-height: 1;
}

.album-stand-scene {
  position: relative;
  display: grid;
  min-height: min(78vh, 760px);
  padding: clamp(20px, 2.2vw, 34px);
  border: 1px solid rgba(255, 250, 240, .14);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    rgba(255, 255, 255, .055);
  background-size: 28px 28px;
  box-shadow: 0 34px 96px rgba(0, 0, 0, .34);
}

.album-stand-cover {
  position: absolute;
  inset: clamp(20px, 2.2vw, 34px);
  width: calc(100% - clamp(40px, 4.4vw, 68px));
  height: calc(100% - clamp(40px, 4.4vw, 68px));
  object-fit: cover;
  border: 10px solid rgba(246, 240, 223, .85);
  border-radius: 22px;
  filter: saturate(.95) contrast(1.04) brightness(.72);
  opacity: .32;
}

.album-stand-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 24%, rgba(7, 16, 15, .22) 58%, rgba(7, 16, 15, .62) 100%),
    linear-gradient(180deg, rgba(7, 16, 15, .18), rgba(7, 16, 15, .64));
  pointer-events: none;
}

.album-stand-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(14px, 1.5vw, 22px);
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  min-height: min(70vh, 680px);
}

.album-stand-show[data-count="3"] .album-stand-cards,
.album-stand-show[data-count="4"] .album-stand-cards,
.album-stand-show[data-count="5"] .album-stand-cards,
.album-stand-show[data-count="6"] .album-stand-cards {
  display: block;
  min-height: min(68vh, 650px);
}

.album-stand-card {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 270px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 240, .18);
  border-radius: 16px;
  background: rgba(6, 12, 12, .9);
  box-shadow: 0 28px 74px rgba(0, 0, 0, .42);
  transform-origin: center;
}

.album-stand-card-front {
  display: block;
  aspect-ratio: 900 / 1278;
  border: 7px solid #f7efd9;
  border-radius: 8px;
  overflow: hidden;
  background: #101414;
}

.album-stand-card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.album-stand-card-meta {
  display: grid;
  gap: 5px;
  padding: 9px 4px 2px;
}

.album-stand-card-meta strong {
  color: #fff;
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: .92;
  text-transform: uppercase;
}

.album-stand-card-meta span {
  color: rgba(251, 250, 245, .7);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
}

.album-stand-card-meta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.album-stand-card-meta a {
  padding: 5px 7px;
  border: 1px solid rgba(255, 250, 240, .18);
  border-radius: 999px;
  color: #fffaf0;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.album-stand-empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: min(100%, 520px);
  min-height: 360px;
  border: 2px dashed rgba(255, 250, 240, .32);
  border-radius: 24px;
  color: #fffaf0;
  background: rgba(255, 255, 255, .05);
}

.album-stand-empty strong {
  font-size: clamp(36px, 4vw, 68px);
}

.album-stand-next {
  display: grid;
  align-content: center;
  gap: 16px;
}

.album-stand-next > span {
  color: rgba(251, 250, 245, .58);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.album-stand-next div {
  display: grid;
  gap: 14px;
}

.album-stand-next figure {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.album-stand-next img {
  width: 72px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 3px solid #f7efd9;
  border-radius: 7px;
}

.album-stand-next figcaption {
  display: grid;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
}

.album-stand-next figcaption span {
  color: rgba(255, 250, 240, .62);
  font-size: 11px;
  text-transform: uppercase;
}

.album-stand-footer p {
  margin: 0;
  color: rgba(251, 250, 245, .72);
  font-weight: 800;
}

.album-stand-footer .album-share-status {
  color: rgba(245, 206, 107, .92);
  font-size: 12px;
  text-align: right;
}

.album-stand-show[data-count="1"] .album-stand-cards {
  grid-template-columns: 1fr;
}

.album-stand-show[data-count="1"] .album-stand-card {
  max-width: min(46vw, 430px);
  transform: rotate(-2deg);
}

.album-stand-show[data-count="2"] .album-stand-cards {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.album-stand-show[data-count="2"] .album-stand-card:nth-child(1) {
  transform: translateY(-34px) rotate(-4deg);
}

.album-stand-show[data-count="2"] .album-stand-card:nth-child(2) {
  transform: translateY(34px) rotate(4deg);
}

.album-stand-show[data-count="3"] .album-stand-cards {
  --deck-card-w: min(15.5vw, 178px);
  --deck-center-x: 50%;
  --deck-center-y: 48%;
}

.album-stand-show[data-count="3"] .album-stand-card {
  position: absolute;
  left: var(--deck-center-x);
  top: var(--deck-center-y);
  max-width: var(--deck-card-w);
}

.album-stand-show[data-count="3"] .album-stand-card:nth-child(1) {
  transform: translate(-122%, -47%) rotate(-7deg);
}

.album-stand-show[data-count="3"] .album-stand-card:nth-child(2) {
  transform: translate(-50%, -54%) rotate(1deg);
}

.album-stand-show[data-count="3"] .album-stand-card:nth-child(3) {
  transform: translate(22%, -41%) rotate(7deg);
}

.album-stand-show[data-count="4"] .album-stand-cards,
.album-stand-show[data-count="6"][data-variant="1"] .album-stand-cards {
  --deck-card-w: min(14.5vw, 166px);
  --deck-center-x: 50%;
  --deck-center-y: 47%;
}

.album-stand-show[data-count="4"] .album-stand-card {
  position: absolute;
  left: var(--deck-center-x);
  top: var(--deck-center-y);
  max-width: var(--deck-card-w);
}

.album-stand-show[data-count="5"] .album-stand-cards {
  --deck-card-w: min(13.2vw, 152px);
  --deck-center-x: 50%;
  --deck-center-y: 47%;
}

.album-stand-show[data-count="5"] .album-stand-card {
  position: absolute;
  left: var(--deck-center-x);
  top: var(--deck-center-y);
  max-width: var(--deck-card-w);
}

.album-stand-show[data-count="4"] .album-stand-card:nth-child(1) { transform: translate(-126%, -47%) rotate(-8deg); }
.album-stand-show[data-count="4"] .album-stand-card:nth-child(2) { transform: translate(-62%, -55%) rotate(-2deg); }
.album-stand-show[data-count="4"] .album-stand-card:nth-child(3) { transform: translate(3%, -46%) rotate(4deg); }
.album-stand-show[data-count="4"] .album-stand-card:nth-child(4) { transform: translate(66%, -54%) rotate(9deg); }

.album-stand-show[data-count="5"] .album-stand-card:nth-child(1) { transform: translate(-150%, -48%) rotate(-10deg); }
.album-stand-show[data-count="5"] .album-stand-card:nth-child(2) { transform: translate(-100%, -58%) rotate(-5deg); }
.album-stand-show[data-count="5"] .album-stand-card:nth-child(3) { transform: translate(-50%, -45%) rotate(0deg); }
.album-stand-show[data-count="5"] .album-stand-card:nth-child(4) { transform: translate(0%, -58%) rotate(5deg); }
.album-stand-show[data-count="5"] .album-stand-card:nth-child(5) { transform: translate(50%, -48%) rotate(10deg); }

.album-stand-show[data-count="6"][data-variant="2"] .album-stand-cards,
.album-stand-show[data-count="6"][data-variant="3"] .album-stand-cards {
  --deck-card-w: min(11.5vw, 134px);
  --deck-center-x: 50%;
  --deck-center-y: 47%;
}

.album-stand-show[data-count="6"] .album-stand-card {
  position: absolute;
  left: var(--deck-center-x);
  top: var(--deck-center-y);
  max-width: var(--deck-card-w, min(11.5vw, 134px));
  padding: 6px;
  border-radius: 13px;
}

.album-stand-show[data-count="3"] .album-stand-card-front,
.album-stand-show[data-count="4"] .album-stand-card-front,
.album-stand-show[data-count="5"] .album-stand-card-front,
.album-stand-show[data-count="6"] .album-stand-card-front {
  border-width: 5px;
}

.album-stand-show[data-count="3"] .album-stand-card-meta,
.album-stand-show[data-count="4"] .album-stand-card-meta,
.album-stand-show[data-count="5"] .album-stand-card-meta,
.album-stand-show[data-count="6"] .album-stand-card-meta {
  padding-top: 6px;
}

.album-stand-show[data-count="3"] .album-stand-card-meta strong,
.album-stand-show[data-count="4"] .album-stand-card-meta strong {
  font-size: clamp(13px, 1vw, 18px);
}

.album-stand-show[data-count="5"] .album-stand-card-meta strong,
.album-stand-show[data-count="6"] .album-stand-card-meta strong {
  font-size: clamp(11px, .82vw, 15px);
}

.album-stand-show[data-count="3"] .album-stand-card-meta span,
.album-stand-show[data-count="4"] .album-stand-card-meta span,
.album-stand-show[data-count="5"] .album-stand-card-meta span,
.album-stand-show[data-count="6"] .album-stand-card-meta span {
  font-size: 10px;
}

.album-stand-show[data-count="3"] .album-stand-card-meta nav,
.album-stand-show[data-count="4"] .album-stand-card-meta nav,
.album-stand-show[data-count="5"] .album-stand-card-meta nav,
.album-stand-show[data-count="6"] .album-stand-card-meta nav {
  display: none;
}

.album-stand-show[data-count="6"] .album-stand-card:nth-child(1) { transform: translate(-178%, -50%) rotate(-11deg); }
.album-stand-show[data-count="6"] .album-stand-card:nth-child(2) { transform: translate(-126%, -59%) rotate(-7deg); }
.album-stand-show[data-count="6"] .album-stand-card:nth-child(3) { transform: translate(-74%, -47%) rotate(-2deg); }
.album-stand-show[data-count="6"] .album-stand-card:nth-child(4) { transform: translate(-22%, -58%) rotate(3deg); }
.album-stand-show[data-count="6"] .album-stand-card:nth-child(5) { transform: translate(30%, -47%) rotate(7deg); }
.album-stand-show[data-count="6"] .album-stand-card:nth-child(6) { transform: translate(82%, -56%) rotate(12deg); }

.album-stand-show[data-count="6"][data-variant="2"] .album-stand-card:nth-child(1) { transform: translate(-168%, -40%) rotate(-8deg); }
.album-stand-show[data-count="6"][data-variant="2"] .album-stand-card:nth-child(2) { transform: translate(-114%, -55%) rotate(5deg); }
.album-stand-show[data-count="6"][data-variant="2"] .album-stand-card:nth-child(3) { transform: translate(-58%, -43%) rotate(-4deg); }
.album-stand-show[data-count="6"][data-variant="2"] .album-stand-card:nth-child(4) { transform: translate(-2%, -56%) rotate(8deg); }
.album-stand-show[data-count="6"][data-variant="2"] .album-stand-card:nth-child(5) { transform: translate(54%, -44%) rotate(-2deg); }
.album-stand-show[data-count="6"][data-variant="2"] .album-stand-card:nth-child(6) { transform: translate(110%, -54%) rotate(7deg); }

.album-stand-show[data-count="6"][data-variant="3"] .album-stand-card:nth-child(1) { transform: translate(-150%, -62%) rotate(-9deg); }
.album-stand-show[data-count="6"][data-variant="3"] .album-stand-card:nth-child(2) { transform: translate(-112%, -38%) rotate(6deg); }
.album-stand-show[data-count="6"][data-variant="3"] .album-stand-card:nth-child(3) { transform: translate(-62%, -58%) rotate(-3deg); }
.album-stand-show[data-count="6"][data-variant="3"] .album-stand-card:nth-child(4) { transform: translate(-12%, -39%) rotate(4deg); }
.album-stand-show[data-count="6"][data-variant="3"] .album-stand-card:nth-child(5) { transform: translate(38%, -59%) rotate(-5deg); }
.album-stand-show[data-count="6"][data-variant="3"] .album-stand-card:nth-child(6) { transform: translate(88%, -41%) rotate(9deg); }

.album-stand-show.is-entering .album-stand-card {
  animation: albumStandCardIn .78s cubic-bezier(.18, .82, .16, 1) both;
  animation-delay: calc(var(--slot, 1) * 90ms);
}

.album-stand-show.is-running .screen-progress span {
  animation: screenProgress var(--screen-interval, 9000ms) linear infinite;
}

@keyframes albumStandCardIn {
  from { opacity: 0; transform: translateY(44px) scale(.88) rotate(calc((var(--slot, 1) - 3) * 4deg)); filter: blur(5px) saturate(.8); }
  to { opacity: 1; filter: blur(0) saturate(1); }
}

.panini-page > .panini-hero {
  display: none;
}

.panini-page > .panini-index {
  margin-top: 40px;
}

@media (max-width: 1160px) {
  .album-stand-stage {
    grid-template-columns: 1fr minmax(360px, .8fr);
  }

  .album-stand-next {
    display: none;
  }
}

@media (max-width: 760px) {
  .album-stand-show {
    padding: 18px;
    overflow-x: hidden;
  }

  .album-stand-header,
  .album-stand-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .album-stand-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
  }

  .album-stand-copy h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .album-stand-copy dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .album-stand-copy dl div {
    min-height: 70px;
    padding: 10px;
  }

  .album-stand-copy dd {
    font-size: 18px;
  }

  .album-stand-scene {
    width: 100%;
    min-height: auto;
    padding: 12px;
    overflow: hidden;
    border-radius: 20px;
  }

  .album-stand-show[data-count] .album-stand-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: 10px;
    height: auto;
    min-height: 0 !important;
    align-items: start;
    justify-items: stretch;
    padding: 4px;
  }

  .album-stand-show[data-count] .album-stand-card:nth-child(n) {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: none !important;
    padding: 4px;
    border-radius: 12px;
    transform: none !important;
  }

  .album-stand-show[data-count="1"] .album-stand-cards {
    grid-template-columns: 1fr !important;
  }

  .album-stand-show[data-count="1"] .album-stand-card:nth-child(n) {
    max-width: min(76vw, 280px) !important;
    justify-self: center;
  }

  .album-stand-card-front {
    border-width: 4px;
    border-radius: 6px;
  }

  .album-stand-card-meta {
    gap: 3px;
    padding: 6px 2px 0;
  }

  .album-stand-card-meta strong {
    font-size: clamp(12px, 3.5vw, 16px) !important;
    line-height: .95;
  }

  .album-stand-card-meta span {
    font-size: 9px !important;
  }

  .album-stand-card-meta nav {
    display: none;
  }
}

.album-download-floating {
  position: fixed;
  right: clamp(14px, 2.6vw, 34px);
  bottom: clamp(14px, 2.6vw, 34px);
  z-index: 40;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 156px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 250, 240, .2);
  border-radius: 18px;
  background: linear-gradient(135deg, #101414 0%, #1b211e 56%, #2d2415 100%);
  color: #fffaf0;
  box-shadow: 0 18px 48px rgba(16, 20, 20, .32);
  cursor: pointer;
}

.album-download-floating span {
  font-weight: 1000;
}

.album-download-floating small {
  color: rgba(255, 250, 240, .62);
  font-size: 11px;
  text-transform: uppercase;
}

.panini-sheets {
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(84px, 8vw, 118px);
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 114, 150, .28), transparent 30%),
    radial-gradient(circle at 78% 10%, rgba(214, 180, 108, .28), transparent 27%),
    radial-gradient(circle at 86% 80%, rgba(183, 51, 51, .24), transparent 31%),
    linear-gradient(135deg, #07100f 0%, #101414 48%, #302719 100%);
}

.panini-stage {
  width: min(1360px, 100%);
}

.panini-stage::before {
  inset: -56px -48px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(214, 180, 108, .16), transparent 34%),
    rgba(2, 8, 8, .52);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.panini-sheet.cinematic-sheet {
  position: relative;
  display: none;
  grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(26px, 3.2vw, 48px);
  min-height: clamp(720px, calc(100vh - 156px), 960px);
  padding: clamp(30px, 4vw, 58px);
  border: 10px solid rgba(246, 240, 223, .96);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 250, 240, .9), transparent 34%),
    linear-gradient(90deg, rgba(255, 250, 240, .96) 0 48%, rgba(255, 253, 247, .985) 48% 100%);
  box-shadow: 0 42px 120px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(16, 20, 20, .13);
  overflow: hidden;
}

.panini-sheet.cinematic-sheet::before,
.panini-sheet.cinematic-sheet::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.panini-sheet.cinematic-sheet::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(16, 20, 20, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 20, .03) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .8;
}

.panini-sheet.cinematic-sheet::after {
  top: 0;
  bottom: 0;
  left: calc(50% - 16px);
  z-index: 0;
  width: 32px;
  background: linear-gradient(90deg, transparent, rgba(16, 20, 20, .13), rgba(255, 255, 255, .34), transparent);
}

.panini-sheet.cinematic-sheet.is-active {
  display: grid;
}

.cinematic-sheet .panini-sheet-head {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding: 0 0 12px;
  border-bottom: 2px solid rgba(16, 20, 20, .84);
}

.cinematic-sheet .panini-sheet-head h2 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .86;
}

.cinematic-sheet .sheet-subtitle {
  margin-top: 10px;
  color: rgba(16, 20, 20, .68);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cinematic-sheet .sheet-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.cinematic-sheet .sheet-meta span,
.cinematic-sheet .sheet-meta strong,
.cinematic-sheet .sheet-meta em {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  font-style: normal;
  font-weight: 1000;
}

.cinematic-sheet .sheet-meta span {
  padding: 8px 13px;
  background: #101414;
  color: #fffaf0;
  text-transform: uppercase;
}

.cinematic-sheet .sheet-meta strong,
.cinematic-sheet .sheet-meta em {
  padding: 8px 12px;
  background: rgba(214, 180, 108, .42);
  color: #101414;
}

.cinematic-sheet .state-cover-card {
  position: relative;
  inset: auto;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  align-self: stretch;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #101414;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .2);
}

.cinematic-sheet .state-cover-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 3;
  border: 3px solid rgba(255, 250, 240, .82);
  border-radius: 8px;
  pointer-events: none;
}

.cinematic-sheet .state-cover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 250, 240, .2), transparent 28%),
    linear-gradient(180deg, rgba(16, 20, 20, .12), transparent 34%, rgba(16, 20, 20, .78));
  pointer-events: none;
}

.cinematic-sheet .state-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.02);
}

.cinematic-sheet .state-cover-copy {
  position: absolute;
  left: clamp(28px, 4vw, 54px);
  right: clamp(28px, 4vw, 54px);
  bottom: clamp(30px, 4vw, 58px);
  z-index: 4;
  display: grid;
  gap: 7px;
  color: #fffaf0;
}

.cinematic-sheet .state-cover-copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cinematic-sheet .state-cover-copy h3 {
  color: #fffaf0;
  font-size: clamp(34px, 4.7vw, 68px);
  line-height: .88;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .4);
}

.cinematic-sheet .state-cover-copy p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 250, 240, .85);
  font-weight: 900;
}

.cinematic-sheet .state-cover-copy button {
  width: max-content;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 250, 240, .55);
  border-radius: 999px;
  background: rgba(255, 250, 240, .12);
  color: #fffaf0;
  font-weight: 1000;
  cursor: pointer;
}

.cinematic-sheet .cinematic-slots {
  position: relative;
  z-index: 2;
  display: grid;
  align-self: stretch;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 0;
  min-height: 560px;
}

.cinematic-sheet .album-generated-sticker {
  min-width: 0;
  width: 100%;
  min-height: 0;
  align-self: stretch;
  border: 1px solid rgba(255, 250, 240, .16);
  border-radius: 14px;
  background: rgba(10, 14, 14, .94);
  box-shadow: 0 20px 54px rgba(16, 20, 20, .26);
  overflow: hidden;
  transform-origin: center;
}

.cinematic-sheet .album-generated-sticker .album-flip-inner {
  aspect-ratio: 5 / 7;
  min-height: 0;
}

.cinematic-sheet .album-generated-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cinematic-sheet .album-generated-sticker .sticker-info {
  padding: 10px 12px 12px;
  background: #fffaf0;
}

.cinematic-sheet .album-generated-sticker .sticker-info h3 {
  font-size: clamp(16px, 1.45vw, 24px);
  line-height: .94;
}

.cinematic-sheet .album-generated-sticker .sticker-info p {
  margin: 5px 0 0;
  font-size: 11px;
}

.cinematic-sheet .album-sticker-actions {
  gap: 5px;
  margin-top: 8px;
}

.cinematic-sheet .album-sticker-actions a,
.cinematic-sheet .album-sticker-actions button {
  padding: 6px 8px;
  font-size: 10px;
}

.cinematic-sheet .empty-slot {
  opacity: .16;
  transform: scale(.96);
}

.cinematic-sheet.sheet-count-1 .empty-slot,
.cinematic-sheet.sheet-count-2 .empty-slot,
.cinematic-sheet.sheet-count-3 .empty-slot,
.cinematic-sheet.sheet-count-4 .empty-slot,
.cinematic-sheet.sheet-count-5 .empty-slot {
  display: none;
}

.cinematic-sheet.sheet-count-1 .cinematic-slots {
  grid-template-columns: minmax(280px, 520px);
  align-content: center;
  justify-content: center;
}

.cinematic-sheet.sheet-count-1 .album-generated-sticker {
  transform: rotate(-2deg);
}

.cinematic-sheet.sheet-count-2 .cinematic-slots {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  align-content: center;
}

.cinematic-sheet.sheet-count-2 .album-generated-sticker:nth-of-type(1) {
  transform: translateY(-24px) rotate(-3deg);
}

.cinematic-sheet.sheet-count-2 .album-generated-sticker:nth-of-type(2) {
  transform: translateY(24px) rotate(3deg);
}

.cinematic-sheet.sheet-count-3 .cinematic-slots {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.cinematic-sheet.sheet-count-3 .album-generated-sticker:nth-of-type(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
  transform: rotate(-2deg);
}

.cinematic-sheet.sheet-count-3 .album-generated-sticker:nth-of-type(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 2;
  transform: rotate(2deg);
}

.cinematic-sheet.sheet-count-3 .album-generated-sticker:nth-of-type(3) {
  grid-column: 2 / 6;
  grid-row: 2 / 3;
  transform: translateY(-6px);
}

.cinematic-sheet.sheet-count-4 .cinematic-slots,
.cinematic-sheet.sheet-count-6.sheet-six-1 .cinematic-slots {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  align-content: center;
}

.cinematic-sheet.sheet-count-5 .cinematic-slots {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, minmax(64px, 1fr));
}

.cinematic-sheet.sheet-count-5 .album-generated-sticker:nth-of-type(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  transform: rotate(-2deg);
}

.cinematic-sheet.sheet-count-5 .album-generated-sticker:nth-of-type(2) {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
  transform: rotate(2deg);
}

.cinematic-sheet.sheet-count-5 .album-generated-sticker:nth-of-type(3) {
  grid-column: 1 / 3;
  grid-row: 4 / 7;
}

.cinematic-sheet.sheet-count-5 .album-generated-sticker:nth-of-type(4) {
  grid-column: 3 / 5;
  grid-row: 4 / 7;
  transform: translateY(-18px);
}

.cinematic-sheet.sheet-count-5 .album-generated-sticker:nth-of-type(5) {
  grid-column: 5 / 7;
  grid-row: 4 / 7;
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .cinematic-slots {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, minmax(48px, 1fr));
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker {
  box-shadow: 0 24px 58px rgba(16, 20, 20, .32);
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(1) {
  grid-column: 1 / 4;
  grid-row: 1 / 5;
  transform: rotate(-5deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(2) {
  grid-column: 3 / 6;
  grid-row: 1 / 5;
  transform: rotate(4deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(3) {
  grid-column: 5 / 7;
  grid-row: 2 / 6;
  transform: rotate(7deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(4) {
  grid-column: 1 / 3;
  grid-row: 5 / 9;
  transform: rotate(-7deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(5) {
  grid-column: 2 / 5;
  grid-row: 5 / 9;
  transform: rotate(2deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(6) {
  grid-column: 5 / 7;
  grid-row: 5 / 9;
  transform: rotate(5deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .cinematic-slots {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
  transform: rotate(-4deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 4;
  transform: translateY(22px) rotate(2deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(3) {
  grid-column: 5 / 7;
  grid-row: 1 / 4;
  transform: rotate(4deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(4) {
  grid-column: 1 / 3;
  grid-row: 4 / 7;
  transform: rotate(3deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(5) {
  grid-column: 3 / 5;
  grid-row: 4 / 7;
  transform: translateY(-22px) rotate(-2deg);
}

.cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(6) {
  grid-column: 5 / 7;
  grid-row: 4 / 7;
  transform: rotate(-3deg);
}

.panini-sheet.is-active .album-generated-sticker {
  animation: cinematicCardRise .82s cubic-bezier(.18, .82, .16, 1) both;
  animation-delay: calc(var(--slot, 1) * 90ms);
}

.panini-sheet.is-active.sheet-count-1 .album-generated-sticker {
  animation-name: cinematicSolo;
}

.panini-sheet.is-active.sheet-count-2 .album-generated-sticker {
  animation-name: cinematicDuel;
}

.panini-sheet.is-active.sheet-count-3 .album-generated-sticker {
  animation-name: cinematicTriad;
}

.panini-sheet.is-active.sheet-count-5 .album-generated-sticker {
  animation-name: cinematicConstellation;
}

.panini-sheet.is-active.sheet-count-6.sheet-six-2 .album-generated-sticker {
  animation-name: cinematicFan;
}

.panini-sheet.is-active.sheet-count-6.sheet-six-3 .album-generated-sticker {
  animation-name: cinematicOrbit;
}

@keyframes cinematicCardRise {
  from { opacity: 0; transform: translateY(38px) scale(.94); filter: blur(4px) saturate(.85); }
  to { opacity: 1; filter: blur(0) saturate(1); }
}

@keyframes cinematicSolo {
  from { opacity: 0; transform: translateY(44px) scale(.88) rotate(-7deg); filter: blur(5px); }
  to { opacity: 1; transform: rotate(-2deg); filter: blur(0); }
}

@keyframes cinematicDuel {
  from { opacity: 0; transform: translateX(calc((var(--slot, 1) - 1.5) * 80px)) translateY(34px) rotate(calc((var(--slot, 1) - 1.5) * 8deg)) scale(.9); }
  to { opacity: 1; }
}

@keyframes cinematicTriad {
  from { opacity: 0; transform: translateY(48px) rotate(calc((var(--slot, 1) - 2) * 7deg)) scale(.9); }
  to { opacity: 1; }
}

@keyframes cinematicConstellation {
  from { opacity: 0; transform: translateY(40px) rotate(calc((var(--slot, 1) - 3) * 5deg)) scale(.86); }
  to { opacity: 1; }
}

@keyframes cinematicFan {
  from { opacity: 0; transform: translateY(52px) rotate(calc((var(--slot, 1) - 3.5) * 8deg)) scale(.84); }
  to { opacity: 1; }
}

@keyframes cinematicOrbit {
  from { opacity: 0; transform: translateY(34px) translateX(calc((var(--slot, 1) - 3.5) * 24px)) scale(.88); filter: blur(5px); }
  to { opacity: 1; filter: blur(0); }
}

@media (max-width: 1120px) {
  .panini-sheet.cinematic-sheet {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .panini-sheet.cinematic-sheet::after {
    display: none;
  }

  .cinematic-sheet .state-cover-card {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .album-download-floating {
    left: 14px;
    right: 14px;
    bottom: 12px;
    align-items: center;
  }

  .panini-sheet.cinematic-sheet {
    padding: 18px;
    border-width: 6px;
  }

  .cinematic-sheet .panini-sheet-head {
    grid-template-columns: 1fr;
  }

  .cinematic-sheet .sheet-meta {
    justify-items: start;
  }

  .cinematic-sheet .panini-sheet-head h2 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .cinematic-sheet .state-cover-card {
    min-height: 380px;
  }

  .cinematic-sheet .cinematic-slots,
  .cinematic-sheet.sheet-count-2 .cinematic-slots,
  .cinematic-sheet.sheet-count-3 .cinematic-slots,
  .cinematic-sheet.sheet-count-4 .cinematic-slots,
  .cinematic-sheet.sheet-count-5 .cinematic-slots,
  .cinematic-sheet.sheet-count-6.sheet-six-1 .cinematic-slots,
  .cinematic-sheet.sheet-count-6.sheet-six-2 .cinematic-slots,
  .cinematic-sheet.sheet-count-6.sheet-six-3 .cinematic-slots {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cinematic-sheet .album-generated-sticker,
  .cinematic-sheet.sheet-count-2 .album-generated-sticker:nth-of-type(n),
  .cinematic-sheet.sheet-count-3 .album-generated-sticker:nth-of-type(n),
  .cinematic-sheet.sheet-count-5 .album-generated-sticker:nth-of-type(n),
  .cinematic-sheet.sheet-count-6.sheet-six-2 .album-generated-sticker:nth-of-type(n),
  .cinematic-sheet.sheet-count-6.sheet-six-3 .album-generated-sticker:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }
}

/* Fullscreen stand screen */
.screen-show {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(24px, 3vw, 44px);
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 127, 85, .34), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(214, 180, 108, .34), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(183, 51, 51, .32), transparent 30%),
    linear-gradient(135deg, #07100f 0%, #101414 44%, #251f18 100%);
  color: #fbfaf5;
  isolation: isolate;
}

.screen-grid,
.screen-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.screen-grid {
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 58%, transparent 86%);
}

.screen-aurora {
  z-index: -1;
  background:
    conic-gradient(from 220deg at 44% 48%, transparent 0 12%, rgba(245, 206, 107, .32) 14% 18%, transparent 22% 42%, rgba(33, 111, 151, .34) 46% 50%, transparent 54% 76%, rgba(214, 45, 45, .28) 80% 86%, transparent 90%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12), transparent 52%);
  filter: blur(18px) saturate(1.12);
  opacity: .82;
  animation: screenAurora 18s linear infinite;
}

.screen-show-header,
.screen-show-footer,
.screen-stage {
  position: relative;
  z-index: 1;
}

.screen-show-header,
.screen-show-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.screen-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fbfaf5;
  text-decoration: none;
}

.screen-brand img {
  width: 54px;
  height: 54px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 253, 248, .92);
}

.screen-brand strong,
.screen-brand small {
  display: block;
  line-height: .95;
  text-transform: uppercase;
}

.screen-brand strong {
  font-size: 18px;
  font-weight: 1000;
}

.screen-brand small {
  margin-top: 3px;
  color: #91c9da;
  font-size: 12px;
  font-weight: 900;
}

.screen-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(251, 250, 245, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-status b {
  color: var(--gold);
}

.screen-stage {
  display: grid;
  grid-template-columns: minmax(330px, .74fr) minmax(380px, .78fr) minmax(220px, .34fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 156px);
  padding-block: clamp(22px, 3vh, 42px);
}

.screen-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 6vw, 116px);
  line-height: .9;
  text-wrap: balance;
}

.screen-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(251, 250, 245, .78);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.14;
}

.screen-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 34px 0 0;
}

.screen-copy dl div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.screen-copy dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.screen-copy dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 900;
  line-height: 1.05;
}

.screen-card-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(76vh, 760px);
}

.screen-card-orbit {
  position: absolute;
  width: min(58vw, 660px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 180, 108, .28);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 53%, rgba(214, 180, 108, .1) 54% 55%, transparent 56%),
    conic-gradient(from 0deg, transparent 0 8%, rgba(245, 206, 107, .36) 10%, transparent 12% 28%, rgba(183, 51, 51, .28) 30%, transparent 33% 58%, rgba(33, 111, 151, .34) 60%, transparent 63% 100%);
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, .36));
  animation: screenOrbit 22s linear infinite;
}

.screen-card {
  width: min(34vw, 430px);
  min-width: 310px;
  aspect-ratio: 900 / 1278;
  perspective: 1600px;
  animation: screenCardFloat 5.8s ease-in-out infinite;
}

.screen-card.is-entering {
  animation: screenCardIn .62s cubic-bezier(.2, .75, .22, 1), screenCardFloat 5.8s ease-in-out infinite .62s;
}

.screen-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .9s cubic-bezier(.22, .72, .18, 1);
}

.screen-card.is-flipped .screen-card-inner {
  transform: rotateY(180deg);
}

.screen-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 12px solid #f7efd9;
  border-radius: 10px;
  background: #101414;
  box-shadow: 0 36px 92px rgba(0, 0, 0, .48);
  backface-visibility: hidden;
}

.screen-card-back {
  transform: rotateY(180deg);
}

.screen-qr-card {
  position: absolute;
  right: clamp(8px, 1.2vw, 20px);
  bottom: clamp(16px, 2.2vh, 34px);
  z-index: 5;
  width: clamp(112px, 9vw, 154px);
  padding: 10px;
  display: grid;
  gap: 7px;
  justify-items: center;
  text-decoration: none;
  color: #101414;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 16px;
  background: rgba(247, 239, 217, .94);
  box-shadow: 0 24px 62px rgba(0, 0, 0, .34);
  backdrop-filter: blur(10px);
}

.screen-qr-card span {
  font-size: 11px;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
}

.screen-qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border: 6px solid #fff;
  border-radius: 8px;
  background: #fff;
}

.screen-next {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 16px;
}

.screen-next > span {
  color: rgba(251, 250, 245, .58);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.screen-next div {
  display: grid;
  gap: 14px;
}

.screen-next figure {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.screen-next img {
  width: 68px;
  aspect-ratio: 900 / 1278;
  object-fit: cover;
  border: 3px solid #f7efd9;
  border-radius: 4px;
}

.screen-next figcaption {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
}

.screen-show-footer {
  min-height: 54px;
}

.screen-show-footer p {
  margin: 0;
  color: rgba(251, 250, 245, .72);
  font-weight: 800;
}

.screen-progress {
  position: absolute;
  left: clamp(24px, 3vw, 44px);
  right: clamp(24px, 3vw, 44px);
  bottom: 0;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.screen-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f7f55, #f5ce6b, #c6373f);
}

.screen-show.is-running .screen-progress span {
  animation: screenProgress var(--screen-interval, 7200ms) linear infinite;
}

.screen-actions {
  display: flex;
  gap: 8px;
}

.screen-actions a,
.screen-actions button {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes screenAurora {
  from { transform: rotate(0deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1.08); }
}

@keyframes screenOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes screenCardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes screenCardIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.94) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-1deg);
  }
}

@keyframes screenProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 1100px) {
  .screen-stage {
    grid-template-columns: 1fr minmax(300px, 420px);
  }

  .screen-next {
    display: none;
  }

  .screen-card {
    width: min(42vw, 390px);
  }
}

@media (max-width: 760px) {
  .screen-show {
    padding: 18px;
  }

  .screen-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .screen-copy dl {
    grid-template-columns: 1fr;
  }

  .screen-card {
    width: min(72vw, 340px);
  }

  .screen-show-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.crm-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.stat-pill {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
}

.stat-pill.active,
.stat-pill:hover {
  background: var(--ink);
  color: #fff;
}

.crm-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-form .wide {
  grid-column: 1 / -1;
}

.crm-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.crm-toolbar {
  margin: 18px 0;
}

.crm-filter {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(160px, .8fr)) auto auto;
}

.crm-create summary {
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.crm-table-head {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 18px 0 10px;
}

.crm-table-wrap {
  border-radius: 14px;
  max-height: 72vh;
  overflow: auto;
}

.crm-table {
  min-width: 1580px;
}

.crm-table th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.crm-table td {
  vertical-align: top;
}

.crm-table input,
.crm-table select,
.crm-table textarea {
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  min-height: 38px;
  padding: 8px 10px;
  width: 100%;
}

.crm-table textarea {
  min-height: 78px;
  resize: vertical;
}

.crm-table small,
.crm-links {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.crm-inline-form,
.crm-ops form {
  margin: 0;
}

.crm-ops {
  display: grid;
  gap: 8px;
  min-width: 138px;
}

.crm-ops .button {
  min-height: 36px;
  padding: 8px 10px;
  width: 100%;
}

.crm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr) auto;
  padding: 22px;
}

.crm-card h2 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: .96;
  margin: 0 0 12px;
}

.crm-card textarea {
  min-height: 94px;
}

.actions.compact {
  gap: 8px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .photo-framing {
    grid-template-columns: 1fr;
  }

  .photo-frame-preview {
    max-width: 320px;
  }

  .crm-form,
  .crm-card,
  .crm-filter {
    grid-template-columns: 1fr;
  }

  .crm-table-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 2026-08 editorial UX refinement */
:root {
  --font-display: "Segoe UI Black", "Aptos Display", "Arial Black", sans-serif;
  --font-meta: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

h1,
h2,
.showcase-copy strong,
.story-proof figcaption strong,
.talent-result-card h3 {
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

.eyebrow,
.step-count,
.album-stand-copy dt,
.album-stand-next > span,
.talent-search-controls label {
  font-family: var(--font-meta);
  letter-spacing: .045em;
}

.topbar nav .nav-path {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 1px;
  line-height: 1;
}

.topbar nav .nav-path small {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.topbar nav .nav-path:hover small {
  color: rgba(255, 255, 255, .72);
}

@media (min-width: 981px) {
  .hero {
    min-height: calc(100svh - 74px);
    grid-template-columns: minmax(540px, 1.12fr) minmax(360px, .76fr);
    gap: clamp(28px, 3.8vw, 56px);
    align-items: center;
    padding-block: clamp(38px, 5.2vh, 58px) clamp(28px, 4vh, 46px);
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(54px, 5.55vw, 76px);
    line-height: .91;
  }

  .hero .lede {
    max-width: 720px;
    font-size: clamp(17px, 1.45vw, 21px);
  }

  .hero-sticker-showcase {
    min-height: min(72vh, 570px);
  }

  .showcase-main-card {
    width: min(25vw, 292px);
  }

  .showcase-mini-card {
    width: min(14vw, 156px);
  }

  .showcase-copy {
    top: 8px;
    width: min(300px, 51%);
  }
}

.story-trail {
  padding: clamp(52px, 7vw, 96px) clamp(18px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(16, 24, 20, .028) 1px, transparent 1px),
    #f8f5ed;
  background-size: 34px 34px;
  border-block: 1px solid var(--line);
}

.story-trail-head {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1fr);
  gap: 14px clamp(28px, 6vw, 88px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 62px);
}

.story-trail-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.story-trail-head h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: .93;
}

.story-trail-head > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 5px;
  color: #46504c;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.42;
}

.story-trail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, .78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.story-trail-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.story-trail-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.story-trail-steps li > span {
  padding-top: 4px;
  color: var(--red);
  font-family: var(--font-meta);
  font-size: 13px;
  font-weight: 900;
}

.story-trail-steps h3 {
  margin: 0 0 5px;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1;
}

.story-trail-steps p {
  max-width: 620px;
  margin: 0;
  color: #4f5854;
  font-size: 16px;
}

.story-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, .72fr) minmax(180px, .8fr);
  gap: 22px;
  align-items: end;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  background: #111614;
  color: #fffaf0;
  box-shadow: 0 26px 64px rgba(16, 20, 20, .18);
}

.story-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 127, 85, .2), transparent 45%, rgba(183, 51, 51, .18));
  pointer-events: none;
}

.story-proof-card,
.story-proof figcaption {
  position: relative;
  z-index: 1;
}

.story-proof-card {
  display: block;
  transform: rotate(-3deg);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .38);
}

.story-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 1278;
  object-fit: cover;
}

.story-proof figcaption {
  display: grid;
  gap: 9px;
  padding-bottom: 8px;
}

.story-proof figcaption span {
  color: #f1ce7a;
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-proof figcaption strong {
  font-size: clamp(28px, 3vw, 44px);
  line-height: .9;
  text-transform: uppercase;
}

.story-proof figcaption p {
  margin: 0;
  color: rgba(255, 250, 240, .74);
  font-size: 14px;
  line-height: 1.35;
}

.story-proof figcaption a {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
}

.story-proof-empty {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  min-height: 300px;
  align-content: center;
}

.story-proof-empty span {
  max-width: 440px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px);
  line-height: .92;
}

.talent-directory-page {
  padding-top: clamp(28px, 4vw, 48px);
}

.talent-directory-page .directory-hero {
  grid-template-columns: minmax(430px, 1.08fr) minmax(320px, .72fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
  margin-bottom: 30px;
}

.talent-directory-page .directory-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.2vw, 72px);
}

.talent-directory-page .directory-hero .lede {
  max-width: 690px;
  margin-top: 13px;
  font-size: clamp(17px, 1.5vw, 20px);
}

.directory-route-nav {
  display: grid;
  border-top: 2px solid var(--ink);
}

.directory-route-nav a {
  display: grid;
  grid-template-columns: minmax(130px, .9fr) minmax(150px, 1.1fr);
  gap: 16px;
  align-items: center;
  min-height: 62px;
  padding: 10px 2px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.directory-route-nav a:hover strong {
  color: var(--red);
}

.directory-route-nav strong {
  font-size: 15px;
  line-height: 1.05;
}

.directory-route-nav span {
  color: #5f6864;
  font-size: 13px;
  font-weight: 750;
}

.directory-route-nav .directory-apply-link strong {
  color: var(--green);
}

.talent-search-standalone {
  margin-top: 0;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(16, 20, 20, .08);
}

.talent-search-head {
  grid-template-columns: minmax(310px, 1fr) minmax(280px, .72fr);
  margin-bottom: 14px;
}

.talent-search-head h2 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.talent-result-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.album-stand-show {
  padding-bottom: 104px;
}

.album-stand-aurora {
  opacity: .58;
  filter: blur(16px) saturate(1.04);
}

.album-stand-nav a {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px;
  min-height: 52px;
  padding-inline: 15px;
  line-height: 1;
  text-align: center;
}

.album-stand-nav a small {
  color: rgba(255, 250, 240, .6);
  font-size: 8px;
  letter-spacing: .055em;
}

.album-stand-nav a.is-active small,
.album-stand-nav a:hover small {
  color: rgba(16, 20, 19, .65);
}

.album-stand-stage {
  min-height: calc(100vh - 174px);
  padding-bottom: 78px;
}

.album-stand-copy .eyebrow {
  color: #ffab9e;
}

.album-stand-copy > p:not(.eyebrow) {
  color: rgba(255, 252, 244, .9);
}

.album-stand-copy h1 {
  overflow-wrap: normal;
  word-break: normal;
}

.album-stand-footer {
  position: fixed;
  z-index: 20;
  right: clamp(22px, 3vw, 42px);
  bottom: 14px;
  left: clamp(22px, 3vw, 42px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, .2);
  border-radius: 14px;
  background: rgba(7, 16, 15, .94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .32);
}

.album-scene-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, .34);
  border-radius: 50%;
  background: #f7efd9;
  color: #101413;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  transform: translateY(-50%);
  cursor: pointer;
}

.album-scene-arrow:hover,
.album-scene-arrow:focus-visible {
  background: #fff;
  outline: 3px solid rgba(255, 171, 158, .55);
  outline-offset: 3px;
}

.album-scene-arrow-prev {
  left: 12px;
}

.album-scene-arrow-next {
  right: 12px;
}

.album-stand-next figure {
  background: rgba(7, 16, 15, .76);
}

@media (max-width: 980px) {
  .story-trail-head,
  .story-trail-layout,
  .talent-directory-page .directory-hero {
    grid-template-columns: 1fr;
  }

  .talent-search-head,
  .talent-search-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .talent-search-controls .button {
    width: 100%;
    min-height: 48px;
  }

  .directory-route-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .directory-route-nav a {
    grid-template-columns: 1fr;
    align-content: start;
    border-top: 2px solid var(--ink);
    padding: 14px 12px;
  }
}

@media (max-width: 760px) {
  h1,
  h2,
  .showcase-copy strong,
  .story-proof figcaption strong,
  .talent-result-card h3 {
    letter-spacing: -.025em;
  }

  .story-trail {
    padding-block: 46px;
  }

  .story-trail-head {
    margin-bottom: 32px;
  }

  .story-trail-head h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .story-trail-layout {
    gap: 34px;
  }

  .story-trail-steps li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .story-proof {
    grid-template-columns: minmax(130px, .7fr) minmax(130px, .8fr);
    gap: 16px;
    padding: 18px;
  }

  .talent-directory-page {
    padding-top: 26px;
  }

  .talent-directory-page .directory-hero {
    width: min(100% - 28px, 1180px);
    gap: 24px;
  }

  .talent-directory-page .directory-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .directory-route-nav {
    grid-template-columns: 1fr;
  }

  .directory-route-nav a {
    grid-template-columns: minmax(130px, .8fr) minmax(150px, 1.2fr);
    min-height: 56px;
    border-top-width: 1px;
    padding-inline: 0;
  }

  .talent-search-standalone {
    width: min(100% - 20px, 1180px);
    padding: 16px;
  }

  .album-stand-show {
    padding-bottom: 18px;
  }

  .album-stand-header {
    gap: 14px;
  }

  .album-stand-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .album-stand-nav::-webkit-scrollbar {
    display: none;
  }

  .album-stand-nav a {
    flex: 0 0 auto;
  }

  .album-stand-stage {
    padding-bottom: 22px;
  }

  .album-stand-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    padding-top: 16px;
  }

  .album-scene-arrow {
    top: 44%;
    width: 46px;
    height: 46px;
  }

  .album-scene-arrow-prev {
    left: 6px;
  }

  .album-scene-arrow-next {
    right: 6px;
  }

  .screen-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .screen-actions button,
  .screen-actions a {
    min-height: 48px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .album-stand-aurora,
  .album-stand-show.is-entering .album-stand-card,
  .album-stand-show.is-running .screen-progress span {
    animation: none !important;
  }
}

/* Homepage V2: Álbum México Global */
.home-v2 {
  --album-black: #111513;
  --album-paper: #f4efe3;
  --album-cream: #fffaf0;
  --album-green: #08754e;
  --album-red: #bd342e;
  --album-gold: #efc764;
  --album-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  background: var(--album-cream);
}

.home-v2 .topbar {
  height: 68px;
  padding-inline: clamp(20px, 4vw, 64px);
  border-bottom-color: rgba(17, 21, 19, .16);
  background: rgba(255, 250, 240, .94);
  backdrop-filter: blur(14px);
}

.home-v2 .topbar nav {
  align-items: center;
}

.home-v2 .topbar nav > a[href="/aplicar"] {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--album-black);
  background: var(--album-black);
  color: #fff;
  font-weight: 850;
}

.home-v2 main {
  overflow: clip;
}

.home-v2 .album-home-hero {
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 6vw, 104px);
  padding: clamp(56px, 8vh, 96px) var(--page-pad) clamp(72px, 9vh, 112px);
  overflow: clip;
  background:
    radial-gradient(circle at 83% 22%, rgba(239, 199, 100, .25) 0 7%, transparent 7.2%),
    linear-gradient(112deg, #fffaf0 0 53%, #f0eadc 53% 100%);
}

.home-v2 .album-home-hero::before {
  display: none;
}

.home-v2 .album-home-hero::after {
  content: "EDICIÓN ABIERTA · 2026";
  position: absolute;
  left: 18px;
  bottom: 32px;
  color: rgba(17, 21, 19, .52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-v2 .album-home-hero .hero-copy {
  z-index: 3;
  align-self: center;
}

.home-v2 .album-home-hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(52px, 5.8vw, 92px);
  line-height: .87;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.home-v2 .album-home-hero .lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #3f443f;
  font-family: var(--album-serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.42;
}

.home-v2 .album-home-hero .hero-actions {
  align-items: stretch;
  margin-top: 34px;
}

.home-v2 .album-home-hero .button.primary,
.home-v2 .application-envelope .button.primary {
  background: var(--album-green);
  border-color: var(--album-green);
  box-shadow: 7px 7px 0 var(--album-black);
}

.home-v2 .album-home-hero .button.primary:hover,
.home-v2 .application-envelope .button.primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--album-black);
}

.home-v2 .album-home-hero .hero-route-links {
  min-width: 212px;
  padding: 3px 0 3px 20px;
  border-left: 1px solid rgba(17, 21, 19, .22);
}

.home-v2 .album-home-hero .hero-route-links > span {
  color: #777a73;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-v2 .album-home-hero .hero-route-links a {
  color: var(--album-black);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.home-v2 .hero-proofline {
  max-width: 590px;
  margin-top: 28px;
  color: #696c66;
  font-size: 12px;
  letter-spacing: .02em;
}

.home-v2 .hero-proofline strong {
  color: var(--album-black);
}

.album-stage {
  width: min(100%, 730px);
  min-height: 650px;
  justify-self: end;
  position: relative;
  isolation: isolate;
  outline: none;
}

.album-stage::before {
  content: "";
  position: absolute;
  inset: 3% 1% 2% 9%;
  z-index: -2;
  border: 1px solid rgba(17, 21, 19, .2);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(17, 21, 19, .07) 50%, transparent 50.2%),
    repeating-linear-gradient(0deg, transparent 0 43px, rgba(17, 21, 19, .045) 43px 44px),
    #e4ddce;
  box-shadow: 24px 30px 0 rgba(17, 21, 19, .08);
  transform: rotate(1.2deg);
}

.album-stage:focus-visible::before {
  outline: 3px solid var(--album-green);
  outline-offset: 5px;
}

.album-stage-spine {
  width: 108px;
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 26px 20px;
  background: var(--album-black);
  color: #fff;
  box-shadow: 15px 20px 0 rgba(17, 21, 19, .12);
}

.album-stage-spine strong {
  align-self: start;
  font-size: 15px;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.album-stage-spine span {
  color: rgba(255,255,255,.66);
  font-family: var(--album-serif);
  font-size: 12px;
  line-height: 1.3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.album-stack {
  position: absolute;
  inset: 24px 16px 132px 120px;
}

.album-stack-card {
  width: clamp(244px, 25vw, 340px);
  display: block;
  position: absolute;
  top: 50%;
  left: 51%;
  z-index: 1;
  pointer-events: none;
  transform-origin: 50% 92%;
  transition: transform .55s cubic-bezier(.2,.75,.22,1), opacity .35s ease, filter .35s ease;
}

.album-stack-card img {
  width: 100%;
  display: block;
  filter: saturate(.82) contrast(.95);
  box-shadow: 0 25px 50px rgba(17, 21, 19, .25);
}

.album-stack-card.slot-1 { transform: translate(-58%, -48%) rotate(-9deg); }
.album-stack-card.slot-2 { transform: translate(-49%, -51%) rotate(7deg); }
.album-stack-card.slot-3 { transform: translate(-61%, -53%) rotate(-3deg); }
.album-stack-card.slot-4 { transform: translate(-43%, -47%) rotate(12deg); }
.album-stack-card.slot-5 { transform: translate(-53%, -49%) rotate(2deg); }

.album-stack-card.is-active {
  z-index: 8;
  pointer-events: auto;
  transform: translate(-50%, -52%) rotate(0);
}

.album-stack-card.is-active img {
  filter: none;
  box-shadow: 0 35px 70px rgba(17, 21, 19, .34);
}

.album-stack-card.is-active:hover {
  transform: translate(-50%, -54%) rotate(-1deg);
}

.album-stage-meta {
  max-width: 390px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 2px 14px;
  position: absolute;
  left: 148px;
  right: 16px;
  bottom: 72px;
  z-index: 9;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 21, 19, .24);
}

.album-stage-meta > span {
  grid-row: 1 / 3;
  color: #777a73;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.album-stage-meta > span b {
  color: var(--album-red);
  font-size: 22px;
}

.album-stage-meta strong {
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
}

.album-stage-meta small {
  color: #666a64;
  font-family: var(--album-serif);
  font-size: 13px;
  line-height: 1.25;
}

.album-stage-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 16px;
  bottom: 6px;
  z-index: 10;
}

.album-stage-arrow,
.album-stage-selectors button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(17, 21, 19, .42);
  border-radius: 0;
  background: transparent;
  color: var(--album-black);
  cursor: pointer;
}

.album-stage-arrow {
  display: grid;
  place-items: center;
}

.album-stage-arrow svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

.album-stage-selectors {
  display: flex;
  gap: 4px;
}

.album-stage-selectors button {
  font-size: 10px;
  font-weight: 900;
}

.album-stage-selectors button[aria-pressed="true"] {
  border-color: var(--album-black);
  background: var(--album-black);
  color: #fff;
}

.home-album-ribbon {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(78px, 10vw, 150px) var(--page-pad);
  background: var(--album-black);
  color: #fff;
}

.home-album-ribbon > header {
  align-self: center;
}

.home-album-ribbon h2,
.story-transform h2,
.application-envelope h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 78px);
  letter-spacing: -.055em;
  line-height: .9;
  text-wrap: balance;
}

.home-album-ribbon header p {
  max-width: 42ch;
  margin: 26px 0;
  color: rgba(255,255,255,.68);
  font-family: var(--album-serif);
  font-size: 19px;
  line-height: 1.45;
}

.home-album-ribbon header a {
  color: var(--album-gold);
  font-weight: 900;
  text-underline-offset: 5px;
}

.home-album-track {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 20px 12px;
}

.home-album-item {
  grid-column: span 3;
}

.home-album-item:nth-child(2),
.home-album-item:nth-child(6) { transform: translateY(-25px) rotate(2deg); }
.home-album-item:nth-child(3),
.home-album-item:nth-child(7) { transform: translateY(22px) rotate(-2deg); }
.home-album-item:nth-child(4),
.home-album-item:nth-child(8) { transform: rotate(1.5deg); }

.home-album-item a {
  display: grid;
  color: #fff;
  text-decoration: none;
}

.home-album-item img {
  width: 100%;
  display: block;
  margin-bottom: 11px;
  box-shadow: 0 18px 36px rgba(0,0,0,.42);
  transition: transform .3s ease, filter .3s ease;
}

.home-album-item a:hover img {
  filter: saturate(1.08);
  transform: translateY(-7px);
}

.home-album-item span {
  color: var(--album-gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-album-item strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
  font-size: clamp(13px, 1.1vw, 17px);
  line-height: 1.05;
}

.home-album-item small {
  margin-top: 5px;
  color: rgba(255,255,255,.57);
  font-family: var(--album-serif);
  font-size: 11px;
}

.home-v2 .stand-preview-v2 {
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding: clamp(82px, 10vw, 150px) var(--page-pad);
  background: #ddd5c5;
}

.home-v2 .stand-preview-v2 .stand-preview-copy {
  position: sticky;
  top: 112px;
}

.home-v2 .stand-preview-v2 h2 {
  font-size: clamp(44px, 5vw, 74px);
  line-height: .91;
  letter-spacing: -.055em;
}

.home-v2 .stand-preview-v2 .stand-preview-copy > p {
  max-width: 50ch;
  font-family: var(--album-serif);
  font-size: 19px;
  line-height: 1.48;
}

.home-v2 .stand-preview-v2 .stand-preview-points {
  border-top-color: rgba(17,21,19,.24);
}

.home-v2 .stand-preview-v2 .stand-preview-points span {
  border-bottom-color: rgba(17,21,19,.24);
}

.home-v2 .stand-preview-v2 .stand-preview-media {
  position: relative;
  overflow: visible;
}

.home-v2 .stand-preview-v2 .stand-preview-media > img {
  width: 100%;
  display: block;
  border: 12px solid var(--album-cream);
  box-shadow: 24px 28px 0 rgba(17,21,19,.12);
  transform: rotate(.7deg);
}

.home-v2 .stand-callout {
  min-width: 138px;
  display: grid;
  position: absolute;
  z-index: 3;
  padding: 12px 15px;
  border: 1px solid var(--album-black);
  background: var(--album-cream);
  box-shadow: 7px 7px 0 var(--album-black);
}

.home-v2 .stand-callout::after {
  content: "";
  width: 54px;
  height: 1px;
  position: absolute;
  top: 50%;
  background: var(--album-black);
}

.home-v2 .stand-callout strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.home-v2 .stand-callout small {
  color: #676a64;
  font-family: var(--album-serif);
}

.home-v2 .callout-cartel { top: 15%; left: -6%; transform: rotate(-2deg); }
.home-v2 .callout-cartel::after { right: -54px; }
.home-v2 .callout-screen { top: 45%; right: -4%; transform: rotate(2deg); }
.home-v2 .callout-screen::after { left: -54px; }
.home-v2 .callout-qr { bottom: 14%; left: -5%; transform: rotate(1deg); }
.home-v2 .callout-qr::after { right: -54px; }

.home-v2 .stand-preview-v2 figcaption {
  max-width: 44ch;
  margin: 28px 0 0 auto;
  color: #525650;
  font-family: var(--album-serif);
  font-size: 15px;
}

.story-transform {
  padding: clamp(84px, 10vw, 152px) var(--page-pad);
  background: var(--album-cream);
}

.story-transform > header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .45fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.story-transform > header p {
  margin: 0;
  color: #595d57;
  font-family: var(--album-serif);
  font-size: 20px;
}

.story-transform-layout {
  display: grid;
  grid-template-columns: minmax(250px, .6fr) minmax(0, 1.4fr);
  gap: clamp(42px, 7vw, 104px);
}

.story-transform-controls {
  align-self: center;
}

.story-transform-controls button {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  align-items: start;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(17,21,19,.2);
  border-radius: 0;
  background: transparent;
  color: #7a7d77;
  text-align: left;
  cursor: pointer;
}

.story-transform-controls button:first-child {
  border-top: 1px solid rgba(17,21,19,.2);
}

.story-transform-controls button > span {
  grid-row: 1 / 3;
  padding-top: 2px;
  color: var(--album-red);
  font-size: 11px;
  font-weight: 900;
}

.story-transform-controls button strong {
  font-size: 21px;
  line-height: 1;
}

.story-transform-controls button small {
  max-width: 31ch;
  font-family: var(--album-serif);
  font-size: 13px;
}

.story-transform-controls button.is-active,
.story-transform-controls button[aria-pressed="true"] {
  color: var(--album-black);
  transform: translateX(12px);
}

.story-transform-stage {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  position: relative;
  padding: clamp(30px, 5vw, 76px);
  overflow: hidden;
  background: var(--album-black);
  color: #fff;
}

.story-transform-stage::before {
  content: "MX / GLOBAL";
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(255,255,255,.28);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}

.story-transform-identity {
  align-self: end;
  position: relative;
  z-index: 2;
}

.story-transform-identity > span {
  color: var(--album-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-transform-identity strong {
  display: block;
  margin: 12px 0 9px;
  overflow-wrap: anywhere;
  font-size: clamp(30px, 3.5vw, 56px);
  letter-spacing: -.05em;
  line-height: .88;
}

.story-transform-identity strong.is-long-name {
  font-size: clamp(25px, 2.8vw, 43px);
}

.story-transform-identity small {
  display: block;
  color: rgba(255,255,255,.62);
  font-family: var(--album-serif);
  font-size: 14px;
}

.story-transform-panel {
  width: 100%;
  max-width: 390px;
  justify-self: center;
  margin: 0;
  position: relative;
  animation: album-reveal .42s cubic-bezier(.2,.75,.22,1) both;
}

.story-transform-panel img {
  width: 100%;
  max-height: 480px;
  display: block;
  object-fit: contain;
  box-shadow: 0 26px 55px rgba(0,0,0,.38);
}

.story-transform-panel.panel-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}

.story-transform-panel.panel-qr {
  max-width: 300px;
  padding: 26px;
  background: #fff;
  transform: rotate(2deg);
}

.story-transform-panel.panel-qr img {
  box-shadow: none;
}

.story-transform-panel figcaption {
  position: absolute;
  right: -16px;
  bottom: 18px;
  padding: 8px 11px;
  background: var(--album-gold);
  color: var(--album-black);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.story-transform-profile {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 24px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 850;
  text-underline-offset: 5px;
}

.story-transform-empty {
  min-height: 340px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(34px, 6vw, 80px);
  background: var(--album-black);
  color: #fff;
}

.story-transform-empty strong {
  max-width: 16ch;
  font-size: clamp(36px, 5vw, 66px);
  letter-spacing: -.05em;
  line-height: .92;
}

@keyframes album-reveal {
  from { opacity: 0; transform: translateY(16px) rotate(-1deg); }
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.application-envelope {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
  padding: clamp(84px, 10vw, 150px) var(--page-pad);
  background: var(--album-green);
  color: #fff;
}

.application-envelope-copy > p {
  max-width: 56ch;
  margin: 26px 0 32px;
  color: rgba(255,255,255,.78);
  font-family: var(--album-serif);
  font-size: 19px;
  line-height: 1.48;
}

.application-envelope ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.3);
}

.application-envelope li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.application-envelope li strong {
  color: var(--album-gold);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.application-envelope li span {
  color: rgba(255,255,255,.72);
  font-family: var(--album-serif);
}

.application-envelope-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.home-v2 .application-envelope .button.primary {
  background: var(--album-gold);
  border-color: var(--album-gold);
  color: var(--album-black);
}

.application-envelope-actions > a:not(.button) {
  font-weight: 900;
  text-underline-offset: 5px;
}

.application-envelope-sample {
  min-height: 600px;
  position: relative;
  margin: 0;
  border: 1px solid rgba(255,255,255,.45);
  background:
    repeating-linear-gradient(0deg, transparent 0 49px, rgba(255,255,255,.08) 49px 50px),
    rgba(0,0,0,.08);
}

.sample-caption {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.application-envelope-sample > div {
  position: absolute;
  background: var(--album-cream);
  box-shadow: 18px 22px 0 rgba(17,21,19,.25);
}

.application-envelope-sample > div img {
  width: 100%;
  display: block;
}

.application-envelope-sample > div > span {
  display: block;
  padding: 8px 10px;
  color: var(--album-black);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sample-photo {
  width: 42%;
  left: 8%;
  top: 15%;
  transform: rotate(-5deg);
}

.sample-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sample-sticker {
  width: 43%;
  right: 9%;
  top: 12%;
  z-index: 2;
  transform: rotate(5deg);
}

.sample-qr {
  width: 28%;
  left: 37%;
  bottom: 7%;
  z-index: 3;
  padding: 12px 12px 0;
  transform: rotate(-2deg);
}

.sample-album-cover {
  width: min(76%, 420px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  box-shadow: 24px 28px 0 rgba(17,21,19,.24);
}

.mobile-apply-bar {
  display: none;
}

.home-v2 :is(.album-stage-arrow, .album-stage-selectors button, .story-transform-controls button):focus-visible {
  outline: 3px solid var(--album-gold);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .home-v2 .album-home-hero {
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    gap: 32px;
  }

  .album-stage {
    min-height: 590px;
  }

  .album-stage-spine {
    min-height: 520px;
  }

  .home-album-ribbon {
    grid-template-columns: 1fr;
  }

  .home-album-ribbon > header {
    max-width: 680px;
  }
}

@media (max-width: 900px) {
  .home-v2 .album-home-hero,
  .home-v2 .stand-preview-v2,
  .story-transform-layout,
  .application-envelope {
    grid-template-columns: 1fr;
  }

  .home-v2 .album-home-hero {
    min-height: 0;
  }

  .album-stage {
    width: min(100%, 680px);
    justify-self: center;
  }

  .home-v2 .stand-preview-v2 .stand-preview-copy {
    position: static;
  }

  .story-transform-stage {
    min-height: 600px;
  }

  .application-envelope-sample {
    width: min(100%, 680px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .home-v2 {
    padding-bottom: 68px;
  }

  .home-v2 .topbar {
    height: auto;
    min-height: 92px;
    padding: 12px 18px;
  }

  .home-v2 .topbar .brand-logo {
    width: 40px;
  }

  .home-v2 .topbar .brand-title strong {
    font-size: 13px;
  }

  .home-v2 .topbar nav {
    gap: 12px;
  }

  .home-v2 .topbar nav > a[href="/aplicar"],
  .home-v2 .topbar nav > a[href="/talento"] {
    display: none;
  }

  .home-v2 .topbar .nav-path {
    font-size: 11px;
  }

  .home-v2 .album-home-hero {
    gap: 48px;
    padding: 44px 18px 72px;
    background: linear-gradient(165deg, #fffaf0 0 48%, #eee7d8 48% 100%);
  }

  .home-v2 .album-home-hero::after {
    display: none;
  }

  .home-v2 .album-home-hero h1 {
    max-width: 12ch;
    font-size: clamp(45px, 14.3vw, 64px);
    line-height: .88;
  }

  .home-v2 .album-home-hero .lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .home-v2 .album-home-hero .hero-actions {
    gap: 20px;
    margin-top: 27px;
  }

  .home-v2 .album-home-hero .hero-route-links {
    min-width: 0;
    padding: 12px 0 0;
    border-top: 1px solid rgba(17,21,19,.2);
    border-left: 0;
  }

  .home-v2 .hero-proofline {
    margin-top: 23px;
    line-height: 1.7;
  }

  .album-stage {
    min-height: 530px;
  }

  .album-stage::before {
    inset: 3% 0 3% 8%;
    box-shadow: 12px 15px 0 rgba(17,21,19,.08);
  }

  .album-stage-spine {
    width: 60px;
    min-height: 430px;
    padding: 18px 12px;
  }

  .album-stage-spine strong {
    font-size: 11px;
  }

  .album-stage-spine span {
    display: none;
  }

  .album-stack {
    inset: 20px 0 132px 56px;
  }

  .album-stack-card {
    width: clamp(205px, 64vw, 270px);
  }

  .album-stage-meta {
    left: 78px;
    right: 8px;
    bottom: 69px;
    grid-template-columns: 43px 1fr;
  }

  .album-stage-meta strong {
    font-size: 17px;
  }

  .album-stage-meta small {
    font-size: 11px;
  }

  .album-stage-navigation {
    right: 7px;
    bottom: 3px;
    gap: 5px;
  }

  .album-stage-selectors {
    gap: 2px;
  }

  .album-stage-selectors button {
    min-width: 34px;
    width: 34px;
    min-height: 44px;
  }

  .home-album-ribbon,
  .home-v2 .stand-preview-v2,
  .story-transform,
  .application-envelope {
    padding: 76px 18px;
  }

  .home-album-ribbon h2,
  .story-transform h2,
  .application-envelope h2,
  .home-v2 .stand-preview-v2 h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .home-album-track {
    width: calc(100% + 36px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 63vw);
    gap: 18px;
    margin-inline: -18px;
    padding: 28px 18px 34px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .home-album-item {
    grid-column: auto;
    scroll-snap-align: center;
    transform: none !important;
  }

  .home-v2 .stand-preview-v2 {
    gap: 52px;
  }

  .home-v2 .stand-preview-v2 .stand-preview-media > img {
    border-width: 7px;
    box-shadow: 12px 15px 0 rgba(17,21,19,.12);
  }

  .home-v2 .stand-callout {
    min-width: 0;
    padding: 8px 10px;
    box-shadow: 4px 4px 0 var(--album-black);
  }

  .home-v2 .stand-callout::after,
  .home-v2 .stand-callout small {
    display: none;
  }

  .home-v2 .callout-cartel { left: -4px; top: 10%; }
  .home-v2 .callout-screen { right: -3px; top: 45%; }
  .home-v2 .callout-qr { left: 5%; bottom: 9%; }

  .story-transform > header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-transform-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .story-transform-controls button,
  .story-transform-controls button:first-child {
    min-height: 82px;
    padding: 12px 8px;
    border-top: 0;
    border-right: 1px solid rgba(17,21,19,.2);
  }

  .story-transform-controls button strong {
    font-size: 16px;
  }

  .story-transform-controls button small {
    display: none;
  }

  .story-transform-controls button.is-active,
  .story-transform-controls button[aria-pressed="true"] {
    background: var(--album-black);
    color: #fff;
    transform: none;
  }

  .story-transform-stage {
    min-height: 600px;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 30px 22px 72px;
  }

  .story-transform-identity {
    align-self: start;
  }

  .story-transform-identity strong,
  .story-transform-identity strong.is-long-name {
    font-size: clamp(28px, 10vw, 40px);
  }

  .story-transform-panel {
    max-width: 280px;
  }

  .story-transform-panel img {
    max-height: 390px;
  }

  .story-transform-profile {
    left: 22px;
    right: auto;
  }

  .application-envelope {
    gap: 58px;
  }

  .application-envelope-actions {
    display: grid;
  }

  .application-envelope-actions .button {
    width: 100%;
  }

  .application-envelope-sample {
    min-height: 460px;
  }

  .sample-photo { width: 45%; left: 5%; }
  .sample-sticker { width: 46%; right: 5%; }
  .sample-qr { width: 31%; left: 34%; }

  .mobile-apply-bar {
    min-height: 54px;
    display: grid;
    place-items: center;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    border: 1px solid #fff;
    background: var(--album-green);
    color: #fff;
    box-shadow: 7px 7px 0 var(--album-black);
    font-weight: 900;
    text-decoration: none;
    transform: translateY(calc(100% + 30px));
    transition: transform .28s ease;
  }

  .mobile-apply-bar.is-visible {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .album-stack-card,
  .home-album-item img,
  .mobile-apply-bar {
    transition: none;
  }

  .story-transform-panel {
    animation: none;
  }
}

/* Homepage V3: México on the world stage */
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo/Archivo-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Black";
  src: url("/assets/fonts/archivo/ArchivoBlack-Regular.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.home-v3 {
  --global-black: #0b0d0c;
  --global-white: #f6f7f2;
  --global-green: #008554;
  --global-red: #d53932;
  --global-line: rgba(11, 13, 12, .2);
  --global-font: "Archivo", "Helvetica Neue", sans-serif;
  --global-display: "Archivo Black", "Archivo", sans-serif;
  background: var(--global-white);
  color: var(--global-black);
  font-family: var(--global-font);
}

.home-v3 ::selection {
  background: var(--global-red);
  color: #fff;
}

.home-v3 .topbar {
  height: 72px;
  padding-inline: clamp(22px, 4.5vw, 72px);
  border-bottom: 1px solid rgba(11, 13, 12, .14);
  background: #fff;
  backdrop-filter: none;
}

.home-v3 .topbar nav {
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.home-v3 .topbar nav > a {
  color: var(--global-black);
  font-weight: 720;
}

.home-v3 .topbar nav > a[href="/aplicar"] {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 18px;
  background: var(--global-green);
  color: #fff;
}

.home-v3 .brand-title,
.home-v3 .topbar nav {
  font-family: var(--global-font);
}

.home-v3 .global-home {
  overflow: clip;
}

.global-hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(350px, .72fr) minmax(560px, 1.28fr);
  grid-template-rows: 1fr auto;
  position: relative;
  background: var(--global-black);
  color: #fff;
}

.global-hero-copy {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  padding: 32px clamp(32px, 5.8vw, 92px);
}

.global-hero-copy::after {
  content: "INNOVAFEST / RED GLOBAL MX";
  position: absolute;
  left: clamp(32px, 5.8vw, 92px);
  bottom: 20px;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.global-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--global-display);
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .88;
  text-wrap: balance;
}

.global-hero h1 span,
.global-hero h1 strong {
  display: block;
}

.global-hero h1 strong {
  color: #32c987;
}

.global-hero-copy > p {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.5;
}

.global-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}

.home-v3 .global-actions .button.primary,
.home-v3 .global-close .button.primary {
  min-height: 54px;
  padding-inline: 24px;
  border: 1px solid var(--global-green);
  border-radius: 0;
  background: var(--global-green);
  box-shadow: none;
  font-family: var(--global-font);
  font-weight: 800;
}

.home-v3 .global-actions .button.primary:hover,
.home-v3 .global-close .button.primary:hover {
  transform: none;
  background: #0a6f49;
  box-shadow: none;
}

.global-text-link {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: rgba(255,255,255,.5);
  text-underline-offset: 6px;
}

.world-stage {
  min-width: 0;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  grid-template-rows: 1fr auto;
  position: relative;
  border-left: 1px solid rgba(255,255,255,.2);
  background: #151916;
}

.world-stage-media {
  min-width: 0;
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background: #151916;
}

.world-stage-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #151916;
}

.world-stage-slide[hidden] {
  display: none;
}

.world-stage-slide.is-active {
  animation: global-stage-enter .72s cubic-bezier(.16, 1, .3, 1) both;
}

.world-stage-slide > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--photo-focus-x, 50%) var(--photo-focus-y, 35%);
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-focus-x, 50%) var(--photo-focus-y, 35%);
  filter: saturate(.9) contrast(1.04);
}

.world-stage-slide.is-generated > img {
  object-fit: contain;
  padding: 50px;
  background: #202421;
}

.world-stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 8, 7, .12) 56%, rgba(6, 8, 7, .92) 100%);
  pointer-events: none;
}

.world-stage-person {
  max-width: 78%;
  display: grid;
  gap: 8px;
  position: absolute;
  left: clamp(24px, 4vw, 62px);
  bottom: 44px;
  z-index: 2;
}

.world-stage-person strong {
  overflow-wrap: anywhere;
  font-family: var(--global-display);
  font-size: clamp(27px, 3.1vw, 49px);
  letter-spacing: -.03em;
  line-height: .94;
}

.world-stage-person span {
  max-width: 52ch;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.world-stage-slide > a {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  color: transparent;
  text-indent: -999px;
}

.world-stage-route {
  display: grid;
  grid-template-columns: auto minmax(70px, 180px) auto;
  gap: 10px;
  align-items: center;
  position: absolute;
  left: 24px;
  right: 214px;
  top: 22px;
  z-index: 4;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.world-stage-route svg {
  width: 100%;
  height: 28px;
  fill: #fff;
  stroke: rgba(255,255,255,.8);
  stroke-width: 1;
}

.world-stage-route path {
  fill: none;
  stroke-dasharray: 190;
  animation: global-route-draw 1.3s cubic-bezier(.16, 1, .3, 1) both;
}

.world-stage-selectors {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  align-content: end;
  border-left: 1px solid rgba(255,255,255,.2);
  background: var(--global-black);
}

.world-stage-selectors button {
  min-height: 104px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 8px;
  align-content: center;
  padding: 14px 17px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,.56);
  text-align: left;
  cursor: pointer;
}

.world-stage-selectors button > span {
  grid-row: 1 / 3;
  color: #32c987;
  font-size: 10px;
  font-weight: 850;
}

.world-stage-selectors button strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.08;
}

.world-stage-selectors button small {
  color: inherit;
  font-size: 10px;
}

.world-stage-selectors button[aria-pressed="true"] {
  background: var(--global-green);
  color: #fff;
}

.world-stage-selectors button[aria-pressed="true"] > span {
  color: #fff;
}

.world-stage-caption {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
  padding: 0 142px 0 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 750;
}

.world-stage-caption b {
  color: #32c987;
}

.world-stage-caption small {
  margin-left: auto;
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
}

.world-stage-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  right: 206px;
  bottom: 13px;
  z-index: 5;
}

.world-stage-controls button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 0;
  background: rgba(11,13,12,.75);
  color: #fff;
  cursor: pointer;
}

.world-stage-controls svg,
.global-network-person > svg,
.global-path > svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
}

.world-stage-controls svg {
  width: 20px;
}

.world-stage-controls > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.world-stage-controls > span b {
  color: #32c987;
  font-size: 17px;
}

.world-stage-empty {
  display: grid;
  grid-template-columns: 1fr;
}

.world-stage-empty > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(.52);
}

.world-stage-empty > div {
  max-width: 500px;
  display: grid;
  gap: 18px;
  position: absolute;
  left: 48px;
  bottom: 60px;
}

.world-stage-empty strong {
  font-family: var(--global-display);
  font-size: clamp(34px, 4vw, 60px);
  line-height: .96;
}

.world-stage-empty a {
  color: #32c987;
  font-weight: 800;
}

.global-proof {
  min-height: 108px;
  display: flex;
  grid-column: 1 / -1;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,.2);
  background: var(--global-black);
}

.global-proof p {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 24px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(255,255,255,.2);
}

.global-proof p:last-child {
  border-right: 0;
}

.global-proof strong {
  color: #32c987;
  font-family: var(--global-display);
  font-size: clamp(26px, 2.5vw, 40px);
  font-variant-numeric: tabular-nums;
}

.global-proof span {
  max-width: 13ch;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.global-network {
  padding: clamp(96px, 11vw, 176px) var(--page-pad);
  background: #fff;
}

.global-network > header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .45fr);
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 118px);
}

.global-network h2,
.global-paths h2,
.global-physical h2,
.global-close h2 {
  margin: 0;
  font-family: var(--global-display);
  font-size: clamp(44px, 6vw, 86px);
  letter-spacing: -.035em;
  line-height: .92;
  text-wrap: balance;
}

.global-network > header p,
.global-paths-intro p,
.global-physical > div > p,
.global-close-copy > p {
  max-width: 62ch;
  margin: 0;
  color: #4f5551;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.52;
}

.global-network-list {
  border-top: 1px solid var(--global-line);
}

.global-network-person {
  min-height: 112px;
  display: grid;
  grid-template-columns: 38px 76px minmax(160px, .9fr) minmax(170px, .8fr) minmax(210px, 1.1fr) 32px;
  gap: clamp(12px, 2vw, 30px);
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--global-line);
  color: var(--global-black);
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.global-network-person:hover {
  background: var(--global-black);
  color: #fff;
  transform: translateX(8px);
}

.global-network-index {
  color: var(--global-red);
  font-size: 10px;
  font-weight: 850;
}

.global-network-portrait {
  width: 76px;
  height: 76px;
  overflow: hidden;
  background: #dde0db;
}

.global-network-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-network-portrait.is-generated img {
  object-fit: contain;
}

.global-network-person > strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.7vw, 25px);
  line-height: 1.03;
}

.global-network-field {
  color: #616762;
  font-size: 13px;
}

.global-network-person:hover .global-network-field {
  color: rgba(255,255,255,.65);
}

.global-network-route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.global-network-route b {
  font-weight: 850;
}

.global-network-route i {
  color: var(--global-green);
  font-style: normal;
}

.global-network-person > svg {
  width: 24px;
}

.global-directory-link {
  width: fit-content;
  display: block;
  margin: 38px 0 0 auto;
  color: var(--global-black);
  font-weight: 850;
  text-underline-offset: 6px;
}

.global-paths {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) repeat(2, minmax(0, 1fr));
  background: var(--global-white);
}

.global-paths-intro,
.global-path {
  min-height: 540px;
  padding: clamp(48px, 5.5vw, 88px);
}

.global-paths-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.global-paths h2 {
  font-size: clamp(42px, 4.8vw, 72px);
}

.global-paths-intro p {
  margin-top: 40px;
}

.global-path {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.global-path-origin {
  background: var(--global-green);
}

.global-path-residence {
  background: var(--global-black);
}

.global-path > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.global-path > strong {
  max-width: 8ch;
  margin-top: auto;
  font-family: var(--global-display);
  font-size: clamp(43px, 5vw, 76px);
  letter-spacing: -.035em;
  line-height: .9;
}

.global-path > p {
  max-width: 42ch;
  margin: 24px 70px 0 0;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.global-path > svg {
  width: 52px;
  position: absolute;
  right: clamp(30px, 4vw, 60px);
  bottom: clamp(30px, 4vw, 60px);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.global-path:hover > svg {
  transform: translate(8px, -8px);
}

.global-physical {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  background: var(--global-black);
  color: #fff;
}

.global-physical figure {
  min-height: 820px;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.global-physical figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-physical-materials {
  width: min(74%, 620px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  position: absolute;
  left: 6%;
  bottom: 8%;
  padding: 15px;
  background: rgba(11, 13, 12, .9);
  box-shadow: 0 20px 45px rgba(0,0,0,.32);
}

.global-physical .global-physical-materials > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.global-physical .global-physical-materials > .global-physical-qr {
  width: 74px;
  height: 74px;
  position: absolute;
  right: -34px;
  bottom: -22px;
  padding: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

.global-physical figcaption {
  position: absolute;
  left: 6%;
  bottom: 3%;
  z-index: 2;
  color: rgba(255,255,255,.88);
  font-size: 11px;
}

.global-physical > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 112px);
}

.global-physical h2 {
  font-size: clamp(43px, 5vw, 75px);
}

.global-physical > div > p {
  margin-top: 28px;
  color: rgba(255,255,255,.68);
}

.global-physical ul {
  margin: 42px 0 38px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.22);
  list-style: none;
}

.global-physical li {
  display: grid;
  grid-template-columns: 32px 105px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.global-physical li span {
  color: #32c987;
  font-size: 10px;
  font-weight: 850;
}

.global-physical li strong {
  font-size: 13px;
  text-transform: uppercase;
}

.global-physical li small {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.home-v3 .global-physical .button.primary {
  width: fit-content;
  min-height: 52px;
  border-radius: 0;
  background: #fff;
  color: var(--global-black);
}

.global-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, .9fr);
  align-items: center;
  gap: 70px;
  padding: clamp(86px, 10vw, 160px) var(--page-pad);
  background: var(--global-red);
  color: #fff;
}

.global-close h2 {
  max-width: 900px;
  font-size: clamp(46px, 6.2vw, 92px);
}

.global-close-copy > p {
  max-width: 52ch;
  margin-top: 28px;
  color: rgba(255,255,255,.78);
}

.global-close-copy > div {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.global-close-copy > div > a:not(.button) {
  color: #fff;
  font-weight: 850;
  text-underline-offset: 6px;
}

.home-v3 .global-close .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--global-black);
}

.global-close-portraits {
  height: 520px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.global-close-portraits img {
  width: 100%;
  height: 100%;
  min-width: 0;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter .3s ease, flex .3s ease;
}

.global-close-portraits img:nth-child(even) {
  object-position: 62% center;
}

.global-close-portraits img.is-generated {
  object-fit: cover;
}

.global-close-portraits:hover img {
  filter: grayscale(.75) contrast(1.05);
}

.mobile-global-apply {
  display: none;
}

.home-v3 :is(.world-stage-controls button, .world-stage-selectors button, .global-network-person, .global-path):focus-visible {
  outline: 3px solid #f2c94c;
  outline-offset: -3px;
}

@keyframes global-stage-enter {
  from { opacity: .35; clip-path: inset(0 0 0 14%); }
  to { opacity: 1; clip-path: inset(0); }
}

@keyframes global-route-draw {
  from { stroke-dashoffset: 190; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1120px) {
  .global-hero {
    grid-template-columns: minmax(330px, .72fr) minmax(500px, 1.28fr);
  }

  .world-stage {
    grid-template-columns: minmax(0, 1fr) 154px;
  }

  .world-stage-route {
    right: 178px;
  }

  .world-stage-controls {
    right: 170px;
  }

  .world-stage-selectors button {
    min-height: 98px;
    padding-inline: 12px;
  }

  .global-network-person {
    grid-template-columns: 32px 68px minmax(150px, .9fr) minmax(160px, .7fr) minmax(180px, 1fr) 28px;
  }

  .global-network-portrait {
    width: 68px;
    height: 68px;
  }

  .global-paths {
    grid-template-columns: 1fr 1fr;
  }

  .global-paths-intro {
    min-height: 0;
    grid-column: 1 / -1;
  }

  .global-paths-intro p {
    max-width: 600px;
  }

  .global-close {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .global-hero {
    grid-template-columns: 1fr;
  }

  .global-hero-copy {
    min-height: auto;
    padding-bottom: 96px;
  }

  .world-stage {
    min-height: 680px;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .global-network > header,
  .global-physical {
    grid-template-columns: 1fr;
  }

  .global-network-person {
    grid-template-columns: 32px 66px minmax(170px, 1fr) minmax(170px, .9fr) 28px;
  }

  .global-network-field {
    display: none;
  }

  .global-physical figure {
    min-height: 600px;
  }
}

@media (max-width: 760px) {
  .home-v3 {
    padding-bottom: 66px;
  }

  .home-v3 .topbar {
    min-height: 94px;
    height: auto;
    padding: 12px 18px;
  }

  .home-v3 .topbar .brand-logo {
    width: 40px;
  }

  .home-v3 .topbar .brand-title strong {
    font-size: 13px;
  }

  .home-v3 .topbar nav {
    gap: 11px;
  }

  .home-v3 .topbar nav > a[href="/aplicar"],
  .home-v3 .topbar nav > a[href="/talento"] {
    display: none;
  }

  .home-v3 .topbar .nav-path {
    font-size: 11px;
  }

  .global-hero-copy {
    min-height: 390px;
    grid-row: 1;
    padding: 24px 18px 30px;
  }

  .global-hero-copy::after {
    left: 18px;
    bottom: 13px;
    font-size: 8px;
  }

  .global-hero h1 {
    max-width: 8ch;
    font-size: clamp(41px, 12.5vw, 51px);
    line-height: .9;
  }

  .global-hero-copy > p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .global-actions {
    width: 100%;
    display: grid;
    gap: 10px;
    margin-top: 15px;
  }

  .global-actions .button {
    width: 100%;
  }

  .world-stage {
    min-height: 720px;
    grid-row: 3;
    grid-template-columns: 1fr;
    grid-template-rows: 530px auto auto;
  }

  .world-stage-media {
    min-height: 530px;
  }

  .world-stage-slide.is-generated > img {
    padding: 28px;
  }

  .world-stage-person {
    max-width: calc(100% - 42px);
    left: 20px;
    bottom: 24px;
  }

  .world-stage-person strong {
    font-size: 31px;
  }

  .world-stage-route {
    left: 18px;
    right: 18px;
    top: 17px;
  }

  .world-stage-caption {
    min-height: 62px;
    grid-column: 1;
    grid-row: 2;
    padding: 0 128px 0 18px;
  }

  .world-stage-caption small {
    display: none;
  }

  .world-stage-controls {
    right: 14px;
    bottom: auto;
    top: 539px;
  }

  .world-stage-selectors {
    display: grid;
    grid-column: 1;
    grid-row: 3;
    grid-auto-flow: column;
    grid-auto-columns: minmax(145px, 44vw);
    align-content: stretch;
    overflow-x: auto;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
    scroll-snap-type: x mandatory;
  }

  .world-stage-selectors button {
    min-height: 130px;
    align-content: center;
    border-top: 0;
    border-right: 1px solid rgba(255,255,255,.18);
    scroll-snap-align: start;
  }

  .world-stage-empty {
    min-height: 600px;
    grid-template-rows: 1fr;
  }

  .world-stage-empty > img {
    min-height: 600px;
  }

  .world-stage-empty > div {
    left: 22px;
    right: 22px;
    bottom: 40px;
  }

  .global-proof {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-row: 2;
    overflow: hidden;
  }

  .global-proof p {
    min-width: 0;
    min-height: 88px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 2px;
    padding: 10px 5px;
    border-bottom: 0;
  }

  .global-proof strong {
    font-size: 24px;
  }

  .global-proof span {
    max-width: 10ch;
    text-align: center;
    font-size: 7px;
    line-height: 1.25;
  }

  .global-proof p:nth-child(even) {
    border-right: 0;
  }

  .global-network,
  .global-close {
    padding: 82px 18px;
  }

  .global-network > header {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 60px;
  }

  .global-network h2,
  .global-paths h2,
  .global-physical h2,
  .global-close h2 {
    font-size: clamp(42px, 12.5vw, 57px);
    line-height: .94;
  }

  .global-network-person {
    min-height: 94px;
    grid-template-columns: 24px 58px minmax(0, 1fr) 24px;
    gap: 10px;
    padding-block: 13px;
  }

  .global-network-person:hover {
    background: transparent;
    color: var(--global-black);
    transform: none;
  }

  .global-network-portrait {
    width: 58px;
    height: 66px;
  }

  .global-network-person > strong {
    font-size: 17px;
  }

  .global-network-route {
    grid-column: 3 / 5;
    margin-top: -26px;
    padding-right: 32px;
    color: #666b67;
    font-size: 9px;
  }

  .global-network-person > svg {
    grid-column: 4;
    grid-row: 1;
  }

  .global-directory-link {
    margin-top: 30px;
  }

  .global-paths {
    grid-template-columns: 1fr;
  }

  .global-paths-intro,
  .global-path {
    min-height: 390px;
    padding: 58px 18px;
  }

  .global-path > strong {
    font-size: 53px;
  }

  .global-path > p {
    margin-right: 62px;
  }

  .global-path > svg {
    right: 18px;
    bottom: 52px;
  }

  .global-physical {
    min-height: 0;
  }

  .global-physical figure {
    min-height: 440px;
  }

  .global-physical-materials {
    width: 78%;
    left: 7%;
    bottom: 12%;
    gap: 6px;
    padding: 8px;
  }

  .global-physical .global-physical-materials > .global-physical-qr {
    width: 58px;
    height: 58px;
    right: -25px;
    bottom: -15px;
  }

  .global-physical figcaption {
    left: 7%;
    bottom: 4%;
    max-width: 30ch;
    font-size: 9px;
  }

  .global-physical > div {
    padding: 74px 18px 84px;
  }

  .global-physical li {
    grid-template-columns: 27px 88px 1fr;
    gap: 8px;
  }

  .global-close {
    gap: 54px;
  }

  .global-close-copy > div {
    display: grid;
  }

  .global-close-copy .button {
    width: 100%;
  }

  .global-close-portraits {
    width: calc(100% + 36px);
    height: 330px;
    margin-inline: -18px;
  }

  .mobile-global-apply {
    min-height: 54px;
    display: grid;
    place-items: center;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    border: 1px solid rgba(255,255,255,.8);
    background: var(--global-green);
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.24);
    transform: translateY(calc(100% + 32px));
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  }

  .mobile-global-apply.is-visible {
    transform: translateY(0);
  }

  .mobile-global-apply.is-near-close,
  .mobile-global-apply.is-over-physical,
  .mobile-global-apply.is-suppressed {
    pointer-events: none;
    transform: translateY(calc(100% + 32px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-stage-slide.is-active,
  .world-stage-route path {
    animation: none;
  }

  .global-network-person,
  .global-path > svg,
  .mobile-global-apply {
    transition: none;
  }
}

/* Impeccable polish: homepage hierarchy, empty state, and responsive rhythm */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(15, 127, 85, .12), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(183, 51, 51, .1), transparent 24%),
    #f6f2e8;
}

.hero::before {
  display: none;
}

.story-trail {
  background: #f8f5ed;
  background-size: auto;
}

::selection {
  background: #b73333;
  color: #fffaf0;
}

:focus-visible {
  outline: 3px solid #245c83;
  outline-offset: 3px;
}

.brand {
  min-height: 44px;
}

.topbar nav > a {
  min-height: 44px;
}

.hero-copy h1,
.stand-preview-copy h2,
.story-trail-head h2,
.home-participation h2 {
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(18px, 2.5vw, 34px);
  align-items: center;
  margin-top: 28px;
}

.hero-actions > .button {
  min-height: 50px;
  padding-inline: 22px;
}

.hero-route-links {
  width: auto;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 18px;
  overflow: visible;
  border: 0;
}

.hero-route-links > span {
  grid-column: 1 / -1;
  color: #59615d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-route-links a,
.stand-preview-actions nav a {
  min-height: 44px;
  padding: 8px 0 5px;
  border-radius: 0;
  color: #171717;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(183, 51, 51, .38);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-route-links a:hover,
.stand-preview-actions nav a:hover {
  background: transparent;
  color: var(--red);
  transform: none;
  text-decoration-color: currentColor;
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  max-width: 720px;
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 20, 19, .2);
  color: #525b57 !important;
  font-size: 13px;
  font-weight: 750;
}

.hero-proofline strong {
  color: var(--green);
}

.hero-sticker-showcase.is-empty {
  min-height: min(72vh, 570px);
}

.showcase-open-collection {
  position: relative;
  width: min(100%, 470px);
  min-height: 520px;
}

.showcase-open-collection > img {
  position: absolute;
  top: 54px;
  right: 3%;
  width: min(66%, 292px);
  aspect-ratio: 900 / 1260;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 30px 70px rgba(16, 20, 19, .28);
  transform: rotate(3deg);
}

.showcase-open-collection > div {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 26px;
  width: min(72%, 290px);
  padding: 19px 20px 17px;
  background: #fffaf0;
  box-shadow: 0 20px 46px rgba(16, 20, 19, .19);
}

.showcase-open-collection strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: .95;
}

.showcase-open-collection p {
  margin: 9px 0 8px;
  color: #47504c;
  font-size: 14px;
  line-height: 1.35;
}

.showcase-open-collection a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-underline-offset: 4px;
}

.hero-sticker-showcase.is-empty .showcase-copy {
  top: 0;
  width: min(300px, 64%);
}

.stand-preview-points strong {
  min-width: 72px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.stand-preview-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.stand-preview-actions nav {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  overflow: visible;
}

.story-proof-empty {
  gap: 10px;
}

.story-proof-empty small {
  color: #f1ce7a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.story-proof-empty strong {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: .92;
  letter-spacing: -.03em;
}

.story-proof-empty p {
  max-width: 440px;
  margin: 2px 0 8px;
  color: rgba(255, 250, 240, .76);
}

.story-proof-empty .button {
  width: max-content;
  border-color: #fffaf0;
  background: #fffaf0;
  color: #111614;
}

.home-participation {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .7fr);
  gap: 0;
  padding-block: 0;
}

.home-participation > div {
  display: grid;
  align-content: center;
  min-height: 420px;
  padding-block: clamp(56px, 7vw, 90px);
}

.home-participation > div:first-child {
  padding-right: clamp(32px, 7vw, 94px);
}

.home-participation > div:last-child {
  padding-left: clamp(28px, 5vw, 68px);
  border-left: 1px solid rgba(255, 250, 240, .22);
}

.home-participation h2 {
  max-width: 720px;
  margin: 0 0 16px;
}

.home-participation p {
  max-width: 68ch;
  margin: 0;
}

.home-participation a {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #f1ce7a;
  font-weight: 900;
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .hero-sticker-showcase.is-empty {
    width: min(100%, 590px);
    min-height: 500px;
    justify-self: center;
  }

  .home-participation {
    grid-template-columns: 1fr;
  }

  .home-participation > div {
    min-height: 0;
    padding: 52px 0;
  }

  .home-participation > div:first-child {
    padding-right: 0;
  }

  .home-participation > div:last-child {
    padding-left: 0;
    border-top: 1px solid rgba(255, 250, 240, .22);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 28px;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.2vw, 54px);
    line-height: .93;
  }

  .hero .lede {
    font-size: 17px;
    line-height: 1.46;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .hero-actions > .button {
    width: 100%;
  }

  .hero-route-links {
    grid-template-columns: 1fr 1fr;
  }

  .hero-sticker-showcase.is-empty {
    min-height: 410px;
    justify-items: stretch;
  }

  .hero-sticker-showcase.is-empty::before {
    inset: 5% 0 5% 5%;
  }

  .hero-sticker-showcase.is-empty::after {
    inset: 15% 10% 4% 0;
  }

  .hero-sticker-showcase.is-empty .showcase-copy {
    width: min(76%, 270px);
    padding: 15px;
  }

  .hero-sticker-showcase.is-empty .showcase-copy p {
    display: none;
  }

  .showcase-open-collection {
    min-height: 410px;
  }

  .showcase-open-collection > img {
    top: 58px;
    right: 0;
    width: min(57%, 220px);
  }

  .showcase-open-collection > div {
    bottom: 10px;
    width: min(72%, 270px);
    padding: 16px;
  }

  .showcase-open-collection strong {
    font-size: 25px;
  }

  .stand-preview-media {
    order: 0;
  }

  .stand-preview-points span {
    align-items: flex-start;
  }

  .stand-preview-actions,
  .stand-preview-actions > .button {
    width: 100%;
  }

  .stand-preview-actions nav {
    display: grid;
    gap: 0;
  }

  .story-proof-empty {
    min-height: 280px;
  }

  .story-proof-empty strong {
    font-size: clamp(38px, 11vw, 50px);
  }

  .home-participation > div {
    padding-block: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Public platform V4: a living tricolor network */
.public-v4 {
  --mx-green: #006847;
  --mx-green-deep: #004d35;
  --mx-white: #ffffff;
  --mx-paper: #f7f8f5;
  --mx-red: #ce1126;
  --mx-red-deep: #a70d1e;
  --mx-ink: #0b1713;
  --mx-muted: #52605a;
  --mx-line: rgba(11, 23, 19, .2);
  --green: var(--mx-green);
  --red: var(--mx-red);
  --ink: var(--mx-ink);
  --paper: var(--mx-paper);
  --white: var(--mx-white);
  --line: var(--mx-line);
  --font-sans: "Archivo", "Helvetica Neue", sans-serif;
  --font-display: "Archivo Black", "Archivo", sans-serif;
  margin: 0;
  background: var(--mx-white);
  color: var(--mx-ink);
  font-family: var(--font-sans);
}

.public-v4 ::selection {
  background: var(--mx-red);
  color: var(--mx-white);
}

.public-v4 :focus-visible {
  outline: 3px solid var(--mx-red);
  outline-offset: 3px;
}

.public-v4 .topbar {
  height: 76px;
  padding-inline: clamp(18px, 4.5vw, 72px);
  border: 0;
  background: var(--mx-white);
  color: var(--mx-ink);
  font-family: var(--font-sans);
}

.public-v4 .topbar::after {
  content: "";
  height: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--mx-green) 0 33.333%, var(--mx-white) 33.333% 66.666%, var(--mx-red) 66.666% 100%);
  box-shadow: 0 1px 0 rgba(11, 23, 19, .12);
}

.public-v4 .topbar nav {
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-family: var(--font-sans);
}

.public-v4 .topbar nav > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--mx-green-deep);
  font-weight: 780;
}

.public-v4 .topbar nav > a[href="/aplicar"] {
  padding-inline: 18px;
  background: var(--mx-red);
  color: var(--mx-white);
}

.public-v4 .brand-title,
.public-v4 .topbar nav {
  font-family: var(--font-sans);
}

.public-v4 .brand-title small,
.public-v4 .topbar nav .nav-path small {
  color: var(--mx-red);
}

.public-v4 .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-weight: 820;
  box-shadow: none;
}

.public-v4 .button.primary {
  border-color: var(--mx-green);
  background: var(--mx-green);
  color: var(--mx-white);
}

.public-v4 .button.secondary {
  border-color: var(--mx-red);
  background: var(--mx-white);
  color: var(--mx-red);
}

.public-v4 .button:hover {
  transform: none;
  box-shadow: none;
}

.public-v4 .button.primary:hover {
  border-color: var(--mx-green-deep);
  background: var(--mx-green-deep);
}

.public-v4 .button.secondary:hover {
  background: var(--mx-red);
  color: var(--mx-white);
}

.public-v4 .site-footer {
  border: 0;
  background: var(--mx-green);
  color: var(--mx-white);
}

.public-v4 .site-footer::before {
  content: "";
  height: 10px;
  grid-column: 1 / -1;
  background: var(--mx-red);
}

.public-v4 .site-footer :is(a, p, h2, span) {
  color: inherit;
}

.public-v4 .footer-bottom {
  border-color: rgba(255, 255, 255, .28);
}

/* Homepage: the flag becomes structure, not decoration. */
.home-v4 {
  --global-black: var(--mx-ink);
  --global-white: var(--mx-paper);
  --global-green: var(--mx-green);
  --global-red: var(--mx-red);
  --global-line: var(--mx-line);
}

.home-v4 .global-hero,
.home-v4 .global-hero-copy {
  background: var(--mx-green);
}

.home-v4 .global-hero h1 strong {
  color: var(--mx-white);
}

.home-v4 .global-hero-copy > p {
  color: rgba(255, 255, 255, .82);
}

.home-v4 .global-actions .button.primary {
  border-color: var(--mx-white);
  background: var(--mx-white);
  color: var(--mx-green-deep);
}

.home-v4 .global-actions .button.primary:hover {
  border-color: var(--mx-red);
  background: var(--mx-red);
  color: var(--mx-white);
}

.home-v4 .world-stage-selectors {
  border-color: var(--mx-line);
  background: var(--mx-white);
}

.home-v4 .world-stage-selectors button {
  border-color: var(--mx-line);
  color: var(--mx-muted);
}

.home-v4 .world-stage-selectors button > span {
  color: var(--mx-red);
}

.home-v4 .world-stage-selectors button[aria-pressed="true"] {
  background: var(--mx-red);
  color: var(--mx-white);
}

.home-v4 .world-stage-counter {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 4px;
  align-items: baseline;
  text-align: left;
}

.home-v4 .world-stage-counter small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.home-v4 .global-proof {
  border-color: var(--mx-line);
  background: var(--mx-white);
}

.home-v4 .global-proof p {
  border-color: var(--mx-line);
}

.home-v4 .global-proof strong {
  color: var(--mx-green);
}

.home-v4 .global-proof p:last-child strong {
  color: var(--mx-red);
}

.home-v4 .global-proof span {
  color: var(--mx-muted);
}

.home-v4 .global-network {
  background: var(--mx-white);
}

.global-talent-deck {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(480px, 1.28fr);
  grid-template-rows: minmax(510px, 1fr) 132px;
  border: 1px solid var(--mx-line);
  background: var(--mx-paper);
  overflow: hidden;
}

.global-deck-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 5vw, 78px);
  background: var(--mx-green);
  color: var(--mx-white);
}

.global-deck-count {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}

.global-deck-copy h3 {
  max-width: 100%;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  font-family: var(--global-display);
  font-size: clamp(42px, 5.2vw, 76px);
  letter-spacing: -.035em;
  line-height: .9;
}

.global-deck-copy h3.is-long {
  font-size: clamp(36px, 4vw, 54px);
  line-height: .94;
}

.global-deck-copy h3.is-very-long {
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: .98;
}

.global-deck-copy h3.has-wide-word {
  overflow-wrap: anywhere;
}

.global-deck-copy > p:not(.global-deck-count) {
  max-width: 38ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
}

.global-deck-route {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  font-size: 12px;
  text-transform: uppercase;
}

.global-deck-route b {
  color: #ffd5d9;
}

.global-deck-copy > a {
  margin-top: 28px;
  color: var(--mx-white);
  font-weight: 850;
  text-underline-offset: 6px;
}

.global-deck-controls {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}

.global-deck-controls button {
  min-width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 0;
  background: transparent;
  color: var(--mx-white);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.global-deck-controls button:nth-child(2) {
  border-color: var(--mx-red);
  background: var(--mx-red);
}

.global-deck-controls svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.global-deck-stage {
  min-width: 0;
  min-height: 510px;
  position: relative;
  overflow: hidden;
  background: var(--mx-white);
}

.global-deck-stage::after {
  content: "MÉXICO / MUNDO";
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 8;
  color: var(--mx-red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.global-deck-card {
  width: min(58%, 430px);
  height: calc(100% - 72px);
  position: absolute;
  top: 36px;
  right: 8%;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  background: var(--mx-ink);
  box-shadow: 0 26px 60px rgba(11, 23, 19, .2);
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), opacity .45s ease;
}

.global-deck-card[hidden] {
  display: none;
}

.global-deck-card.is-next {
  z-index: 2;
  opacity: .72;
  transform: translate(-29%, 9%) rotate(-5deg) scale(.9);
}

.global-deck-card.is-after {
  z-index: 1;
  opacity: .4;
  transform: translate(-52%, 2%) rotate(5deg) scale(.82);
}

.global-deck-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--photo-focus-x, 50%) var(--photo-focus-y, 28%);
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-focus-x, 50%) var(--photo-focus-y, 28%);
}

.global-deck-card.is-generated > img {
  object-fit: contain;
  padding: 18px;
}

.global-deck-card > div {
  display: grid;
  gap: 4px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 64px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(11, 23, 19, .94));
  color: var(--mx-white);
}

.global-deck-card > div span {
  color: #ff7b89;
  font-size: 10px;
  font-weight: 900;
}

.global-deck-card > div strong {
  overflow-wrap: anywhere;
  font-size: clamp(21px, 2.4vw, 34px);
  line-height: .94;
}

.global-deck-card > div small {
  color: rgba(255, 255, 255, .72);
}

.global-deck-strip {
  min-width: 0;
  display: flex;
  grid-column: 1 / -1;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid var(--mx-line);
  background: var(--mx-white);
  scrollbar-color: var(--mx-red) var(--mx-paper);
  scroll-snap-type: x proximity;
}

.global-deck-strip button {
  width: 112px;
  min-width: 112px;
  display: grid;
  grid-template-rows: 76px 1fr;
  gap: 6px;
  padding: 10px;
  border: 0;
  border-right: 1px solid var(--mx-line);
  border-radius: 0;
  background: var(--mx-white);
  color: var(--mx-muted);
  font: inherit;
  text-align: left;
  scroll-snap-align: center;
  cursor: pointer;
}

.global-deck-strip button[aria-pressed="true"] {
  background: var(--mx-red);
  color: var(--mx-white);
}

.global-deck-strip img {
  width: 100%;
  height: 76px;
  display: block;
  object-fit: cover;
  object-position: var(--photo-focus-x, 50%) var(--photo-focus-y, 24%);
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-focus-x, 50%) var(--photo-focus-y, 24%);
  filter: saturate(.9);
}

.global-deck-strip span {
  overflow: hidden;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.08;
}

.home-v4 .global-path-residence,
.home-v4 .global-close {
  background: var(--mx-red);
}

.home-v4 .global-physical {
  background: var(--mx-green);
}

.home-v4 .global-physical-materials {
  background: var(--mx-red);
}

/* Directory: exploration inherits the same broadcast system. */
.talent-directory-v4 .talent-directory-page {
  padding: 0 0 84px;
  background: var(--mx-white);
}

.talent-directory-v4 .directory-hero {
  width: 100%;
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, .7fr);
  gap: clamp(38px, 6vw, 92px);
  margin: 0;
  padding: clamp(64px, 8vw, 118px) var(--page-pad);
  background: var(--mx-green);
  color: var(--mx-white);
}

.talent-directory-v4 .directory-hero h1 {
  max-width: 780px;
  color: var(--mx-white);
  font-family: var(--font-display);
  font-size: clamp(50px, 6.4vw, 92px);
  letter-spacing: -.035em;
  line-height: .9;
}

.talent-directory-v4 .directory-hero .lede {
  color: rgba(255, 255, 255, .8);
}

.talent-directory-v4 .directory-route-nav {
  border-top-color: rgba(255, 255, 255, .68);
}

.talent-directory-v4 .directory-route-nav a {
  border-color: rgba(255, 255, 255, .28);
  color: var(--mx-white);
}

.talent-directory-v4 .directory-route-nav span {
  color: rgba(255, 255, 255, .7);
}

.talent-directory-v4 .directory-route-nav a:hover strong,
.talent-directory-v4 .directory-route-nav .directory-apply-link strong {
  color: #ff9aa5;
}

.talent-directory-v4 .talent-search {
  width: min(1240px, calc(100% - 36px));
  margin: 62px auto 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--mx-line);
  border-radius: 0;
  background: var(--mx-white);
  box-shadow: none;
}

.talent-directory-v4 .talent-search-head h2 {
  color: var(--mx-green);
  font-family: var(--font-display);
  letter-spacing: -.025em;
}

.talent-directory-v4 .talent-search-controls :is(input, select) {
  border-radius: 0;
  background: var(--mx-paper);
}

.talent-directory-v4 .talent-search-controls :is(input, select):focus {
  border-color: var(--mx-green);
  box-shadow: 0 0 0 3px rgba(0, 104, 71, .14);
}

.talent-directory-v4 .talent-result-card {
  min-height: 172px;
  grid-template-columns: 104px 1fr;
  border-radius: 0;
  background: var(--mx-white);
  box-shadow: none;
}

.talent-directory-v4 .talent-result-card:hover {
  border-color: var(--mx-green);
}

.talent-directory-v4 .talent-result-image {
  width: 104px;
  height: 148px;
  border: 0;
  border-radius: 0;
  background: var(--mx-green);
}

.talent-directory-v4 .talent-result-image img {
  object-position: var(--photo-focus-x, 50%) var(--photo-focus-y, 28%);
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-focus-x, 50%) var(--photo-focus-y, 28%);
}

.talent-directory-v4 .talent-result-card small {
  color: var(--mx-red);
}

.talent-directory-v4 .talent-result-actions a {
  min-height: 40px;
  border-radius: 0;
}

.talent-directory-v4 .talent-result-actions a:first-child {
  background: var(--mx-green);
}

/* Profiles: a person occupies the stage; sharing is secondary. */
.profile-v4 .profile-page {
  padding: 0;
  background: var(--mx-white);
}

.profile-v4 .profile-hero {
  min-height: 690px;
  max-width: none;
  grid-template-columns: minmax(340px, .82fr) minmax(480px, 1.18fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--mx-green);
  box-shadow: none;
}

.profile-v4 .profile-hero .avatar.large {
  width: 100%;
  height: 100%;
  min-height: 690px;
  border-radius: 0;
  background: var(--mx-red);
  box-shadow: none;
}

.profile-v4 .profile-hero .avatar img {
  object-position: var(--photo-focus-x, 50%) var(--photo-focus-y, 25%);
  transform: scale(var(--photo-zoom, 1));
  transform-origin: var(--photo-focus-x, 50%) var(--photo-focus-y, 25%);
}

.profile-v4 .profile-hero > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(48px, 8vw, 124px);
  color: var(--mx-white);
}

.profile-v4 .profile-route {
  margin: 0 0 24px;
  color: #ffccd2;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.profile-v4 .profile-route span {
  padding-inline: 6px;
  color: var(--mx-white);
}

.profile-v4 .profile-hero h1 {
  max-width: 10ch;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--mx-white);
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 104px);
  letter-spacing: -.035em;
  line-height: .88;
}

.profile-v4 .profile-hero :is(.lede, p) {
  max-width: 58ch;
  color: rgba(255, 255, 255, .8);
}

.profile-v4 .profile-hero .lede {
  margin-bottom: 12px;
  color: var(--mx-white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 780;
}

.profile-v4 .profile-hero .button.primary {
  border-color: var(--mx-white);
  background: var(--mx-white);
  color: var(--mx-green);
}

.profile-v4 .profile-hero .button.secondary {
  border-color: var(--mx-white);
  background: transparent;
  color: var(--mx-white);
}

.profile-v4 .instagram-share-panel {
  max-width: none;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 440px);
  margin: 0;
  padding: clamp(64px, 8vw, 120px) var(--page-pad);
  border: 0;
  border-radius: 0;
  background: var(--mx-white);
}

.profile-v4 .instagram-share-copy h2 {
  color: var(--mx-red);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: -.03em;
  line-height: .92;
}

.profile-v4 .instagram-share-preview {
  border-radius: 0;
  background: var(--mx-red);
  box-shadow: 0 24px 54px rgba(11, 23, 19, .16);
}

.profile-v4 .instagram-caption-box textarea {
  border-radius: 0;
}

/* Application: configure inside the same Mexican editorial world. */
.apply-v4 .form-shell {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(390px, .72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 0;
  padding: 0;
  background: var(--mx-white);
}

.apply-v4 .form-intro {
  min-height: calc(100vh - 76px);
  max-width: none;
  position: sticky;
  top: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(40px, 4.8vw, 68px);
  background: var(--mx-green);
  color: var(--mx-white);
}

.apply-v4 .form-intro h1 {
  max-width: 9ch;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--mx-white);
  font-family: var(--font-display);
  font-size: clamp(46px, 4.8vw, 68px);
  letter-spacing: -.035em;
  line-height: .9;
}

.apply-v4 .form-intro p {
  max-width: 46ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.5;
}

.apply-v4 .typeform {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 86px);
  border: 0;
  border-radius: 0;
  background: var(--mx-white);
  box-shadow: none;
}

.apply-v4 .form-progress {
  height: 8px;
  border-radius: 0;
  background: #e3e9e5;
}

.apply-v4 .form-progress span {
  border-radius: 0;
  background: var(--mx-green);
}

.apply-v4 .step-count {
  color: var(--mx-red);
  letter-spacing: .06em;
}

.apply-v4 .form-step h2 {
  color: var(--mx-green);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -.025em;
  line-height: .94;
}

.apply-v4 :is(input, select, textarea) {
  min-height: 50px;
  border-color: var(--mx-line);
  border-radius: 0;
  background: var(--mx-paper);
}

.apply-v4 :is(input, select, textarea):focus {
  border-color: var(--mx-green);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(0, 104, 71, .14);
}

.apply-v4 :is(.option-card, .check-card, .material-preview-grid article, .photo-framing, .photo-frame-controls label, .range-grid label) {
  border-radius: 0;
  background: var(--mx-white);
  box-shadow: none;
}

.apply-v4 :is(.option-card, .check-card):has(input:checked) {
  border-color: var(--mx-green);
  background: #edf7f2;
}

.apply-v4 .conditional {
  border: 1px solid var(--mx-red);
  border-radius: 0;
  background: #fff4f5;
}

.apply-v4 .form-nav {
  bottom: 12px;
  padding: 12px;
  border: 1px solid var(--mx-line);
  border-radius: 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(11, 23, 19, .12);
  backdrop-filter: none;
}

/* Album and venue screen: replace generic night mode with Mexico fields. */
.album-v4 .album-stand-show,
.public-support-v4 .screen-show {
  background: var(--mx-green);
}

.album-v4 .album-stand-grid,
.album-v4 .album-stand-aurora,
.public-support-v4 :is(.screen-grid, .screen-aurora) {
  display: none;
}

.album-v4 .album-stand-header {
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.album-v4 .album-stand-nav a.is-active,
.album-v4 .album-stand-nav a:hover {
  background: var(--mx-white);
  color: var(--mx-green);
}

.album-v4 :is(.album-stand-nav a, .screen-status, .album-stand-copy dl div, .album-stand-scene, .album-stand-cover, .album-stand-card, .album-stand-card-front, .album-stand-card-meta a, .album-stand-empty, .album-stand-next figure, .album-stand-next img, .screen-actions button) {
  border-radius: 0;
}

.album-v4 .album-stand-nav a {
  background: transparent;
}

.album-v4 .screen-status,
.album-v4 .album-stand-copy dl div,
.album-v4 .album-stand-next figure {
  background: transparent;
}

.album-v4 .album-stand-copy dl div,
.album-v4 .album-stand-next figure {
  border-color: rgba(255, 255, 255, .32);
}

.album-v4 .album-stand-scene {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .06);
  background-image: none;
  box-shadow: none;
}

.album-v4 .album-stand-card {
  border-color: rgba(255, 255, 255, .48);
  background: var(--mx-ink);
}

.album-v4 .album-stand-card-meta a,
.album-v4 .screen-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, .56);
  background: transparent;
}

.album-v4 .screen-actions button:hover,
.album-v4 .screen-actions button:focus-visible {
  background: var(--mx-white);
  color: var(--mx-red);
}

.album-v4 .album-stand-footer,
.public-support-v4 .screen-show-footer {
  border-radius: 0;
  background: var(--mx-red);
}

/* Keep album controls available without letting the red action rail dominate the scene. */
.album-v4 .album-controls-drawer {
  position: fixed;
  z-index: 30;
  right: clamp(22px, 3vw, 42px);
  bottom: 14px;
  width: min(1040px, calc(100vw - 44px));
  pointer-events: none;
}

.album-v4 .album-controls-drawer > summary {
  width: max-content;
  min-height: 48px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .56);
  background: var(--mx-white);
  color: var(--mx-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
  list-style: none;
  box-shadow: 0 10px 28px rgba(11, 23, 19, .2);
}

.album-v4 .album-controls-drawer > summary::-webkit-details-marker {
  display: none;
}

.album-v4 .album-controls-drawer > summary:hover,
.album-v4 .album-controls-drawer > summary:focus-visible {
  background: var(--mx-red);
  color: var(--mx-white);
  outline: 3px solid var(--mx-white);
  outline-offset: 3px;
}

.album-v4 .album-controls-drawer-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform .18s ease;
}

.album-v4 .album-controls-drawer[open] .album-controls-drawer-icon {
  transform: rotate(45deg);
}

.album-v4 .album-controls-drawer .album-stand-footer {
  position: static;
  box-sizing: border-box;
  width: 100%;
  margin: 8px 0 0;
  padding: 12px 14px;
  pointer-events: auto;
}

.album-v4 .album-controls-drawer[open] .album-stand-footer {
  animation: albumControlsEnter .18s ease-out both;
}

@keyframes albumControlsEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.album-v4 .album-scene-arrow {
  border-radius: 0;
  background: var(--mx-white);
  color: var(--mx-green);
}

/* Supporting public pages keep the same color roles. */
.public-support-v4 .simple-page {
  min-height: calc(100vh - 76px);
  padding: clamp(64px, 9vw, 128px) var(--page-pad);
  background: var(--mx-white);
}

.public-support-v4 .simple-page h1,
.public-support-v4 :is(.print-ready-copy, .generated-sticker-copy) h1 {
  color: var(--mx-green);
  font-family: var(--font-display);
  letter-spacing: -.03em;
}

.public-support-v4 :is(.print-ready-page, .generated-sticker-page) {
  background: var(--mx-white);
}

.public-support-v4 :is(.print-ready-preview, .generated-sticker-spread) {
  background: var(--mx-red);
}

@media (max-width: 980px) {
  .global-talent-deck,
  .apply-v4 .form-shell,
  .profile-v4 .profile-hero,
  .talent-directory-v4 .directory-hero {
    grid-template-columns: 1fr;
  }

  .global-talent-deck {
    grid-template-rows: auto 580px 124px;
  }

  .global-deck-copy {
    min-height: 430px;
  }

  .global-deck-stage {
    min-height: 580px;
  }

  .global-deck-strip {
    grid-column: 1;
  }

  .apply-v4 .form-intro {
    min-height: auto;
    position: static;
    padding-block: 72px;
  }

  .apply-v4 .form-intro h1 {
    max-width: 12ch;
  }

  .profile-v4 .profile-hero .avatar.large {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .public-v4 .topbar {
    min-height: 88px;
    height: auto;
    padding: 10px 14px 14px;
  }

  .public-v4 .topbar .brand-logo {
    width: 38px;
  }

  .public-v4 .topbar nav {
    width: 100%;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
  }

  .public-v4 .topbar nav > a {
    min-width: 0;
    justify-content: center;
    font-size: 11px;
  }

  .public-v4 .topbar nav .nav-path {
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    overflow: visible;
    padding-inline: 4px;
    text-align: center;
  }

  .public-v4 .topbar nav .nav-path span {
    max-width: 100%;
    overflow: visible;
    font-size: 10.5px;
    text-overflow: clip;
    white-space: nowrap;
  }

  .public-v4 .topbar nav .nav-path small {
    font-size: 8.5px;
  }

  .public-v4 .topbar nav > a[href="/talento"] {
    display: none;
  }

  .public-v4:not(.home-v4) .topbar nav > a[href="/aplicar"] {
    padding-inline: 10px;
  }

  .home-v4 .topbar nav > a[href="/aplicar"] {
    display: none;
  }

  .home-v4 .topbar nav {
    grid-template-columns: 1fr 1fr;
  }

  .home-v4 .global-proof {
    background: var(--mx-white);
  }

  .global-network {
    padding-inline: 14px;
  }

  .global-talent-deck {
    min-height: 0;
    grid-template-rows: auto 500px 116px;
  }

  .global-deck-copy {
    min-height: 440px;
    padding: 44px 22px;
  }

  .global-deck-copy h3 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .global-deck-copy h3.is-long {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .global-deck-copy h3.is-very-long {
    font-size: clamp(32px, 9vw, 42px);
  }

  .global-deck-stage {
    min-height: 500px;
  }

  .global-deck-card {
    width: min(72%, 320px);
    height: calc(100% - 56px);
    top: 28px;
    right: 6%;
  }

  .global-deck-card.is-next {
    transform: translate(-22%, 8%) rotate(-5deg) scale(.9);
  }

  .global-deck-card.is-after {
    transform: translate(-38%, 1%) rotate(5deg) scale(.82);
  }

  .global-deck-strip button {
    width: 96px;
    min-width: 96px;
    grid-template-rows: 66px 1fr;
  }

  .global-deck-strip img {
    height: 66px;
  }

  .talent-directory-v4 .directory-hero {
    padding: 58px 18px;
  }

  .talent-directory-v4 .directory-hero h1 {
    font-size: clamp(48px, 13vw, 62px);
  }

  .talent-directory-v4 .directory-route-nav a {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-block: 14px;
  }

  .talent-directory-v4 .talent-search {
    width: calc(100% - 28px);
    margin-top: 28px;
    padding: 22px 14px;
  }

  .talent-directory-v4 .talent-search-head,
  .talent-directory-v4 .talent-search-controls {
    grid-template-columns: 1fr;
  }

  .talent-directory-v4 .talent-search-results {
    grid-template-columns: 1fr;
  }

  .profile-v4 .profile-hero .avatar.large {
    min-height: 500px;
  }

  .profile-v4 .profile-hero > div:last-child {
    padding: 58px 18px 70px;
  }

  .profile-v4 .profile-hero h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .profile-v4 .instagram-share-panel {
    grid-template-columns: 1fr;
    padding: 68px 18px;
  }

  .apply-v4 .form-intro,
  .apply-v4 .typeform {
    padding: 54px 18px;
  }

  .apply-v4 .form-intro h1 {
    font-size: clamp(46px, 13vw, 60px);
  }

  .apply-v4 .typeform {
    min-height: 0;
  }

  .album-v4 .album-stand-footer {
    right: auto;
    bottom: auto;
    left: auto;
  }

  .album-v4 .album-controls-drawer {
    left: 10px;
    right: 10px;
    bottom: 8px;
    width: auto;
  }

  .album-v4 .album-controls-drawer .album-stand-footer {
    max-height: min(72vh, 520px);
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-deck-card {
    transition: none;
  }

  .album-controls-drawer[open] .album-stand-footer,
  .album-controls-drawer-icon {
    animation: none;
    transition: none;
  }
}

/* Admin stays operational while sharing the public palette. */
.admin-surface {
  --green: #006847;
  --red: #ce1126;
  --ink: #0b1713;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: rgba(11, 23, 19, .2);
  --font-sans: "Archivo", "Helvetica Neue", sans-serif;
  --font-display: "Archivo Black", "Archivo", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

.admin-surface .topbar {
  border-bottom: 5px solid var(--green);
  background: var(--white);
}

.admin-surface .topbar nav a,
.admin-surface .brand-title small {
  color: var(--red);
}

.admin-surface .button.primary,
.admin-surface th {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.admin-surface .button.secondary {
  border-color: var(--red);
  background: var(--white);
  color: var(--red);
}

.admin-surface .status.urgent {
  background: var(--red);
}

.admin-surface .simple-page.narrow {
  width: min(980px, calc(100% - 36px));
  max-width: none;
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 144px) 0;
}

.admin-surface .simple-page h1 {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 128px);
  letter-spacing: -.04em;
  line-height: .86;
}

.admin-surface .simple-page .lede {
  max-width: 62ch;
  margin-block: 30px 44px;
}

.admin-surface .simple-page .panel {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.admin-surface .simple-page :is(input, select, textarea) {
  min-height: 50px;
  border-radius: 0;
  background: var(--white);
}

.admin-surface .simple-page .button {
  min-height: 50px;
  border-radius: 0;
}

@media (max-width: 760px) {
  .admin-surface .simple-page .panel {
    grid-template-columns: 1fr;
  }
}

.admin-surface :focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* Profile publication evidence: snapshot, not a ranking. */
.public-v4.profile-v4 .social-presence { margin:48px auto; padding:32px clamp(20px,4vw,48px); max-width:1200px; background:#fff; color:#151515; border:1px solid #dedbd2; border-radius:16px; }
.social-presence .social-presence-eyebrow { margin:0 0 8px; color:#09603f; font-size:12px; font-weight:750; letter-spacing:.1em; }
.social-presence .social-presence-heading h2 { margin:0 0 12px; font-size:clamp(26px,3vw,38px); line-height:1.12; letter-spacing:-.025em; }
.social-presence .social-presence-heading > p:last-child { max-width:680px; margin:0 0 28px; line-height:1.6; color:#555; }
.social-presence .social-presence-list { list-style:none; padding:0; margin:0; }
.social-presence .social-presence-row { display:grid; grid-template-columns:minmax(200px,1fr) minmax(200px,1fr) auto; align-items:center; gap:20px; padding:24px 0; border-top:1px solid #e4e4df; }
.social-presence .social-presence-network h3 { margin:0 0 7px; font-size:17px; line-height:1.35; font-weight:700; }
.social-presence .social-presence-network p { margin:0; font-size:12px; line-height:1.6; color:#626262; }
.social-presence .social-presence-metrics { display:flex; flex-wrap:wrap; gap:16px 24px; margin:0; }
.social-presence .social-presence-metrics > div { display:flex; flex-direction:column-reverse; gap:4px; }
.social-presence .social-presence-metrics dt { font-size:12px; line-height:1.4; color:#555; }
.social-presence .social-presence-metrics dd { margin:0; font-size:27px; font-weight:750; line-height:1; font-variant-numeric:tabular-nums; letter-spacing:-.02em; }
.social-presence .social-presence-link { display:inline-flex; align-items:center; justify-content:center; min-height:44px; gap:10px; padding:10px 16px; border:1px solid #0f7f55; border-radius:8px; color:#09603f; font-size:14px; font-weight:700; text-decoration:none; white-space:nowrap; }
.social-presence .social-presence-link:hover { background:#eef7f2; }
.social-presence .social-presence-link:focus-visible { outline:3px solid #0f7f55; outline-offset:4px; }
.social-presence .social-presence-unavailable { color:#626262; font-size:14px; }
.social-presence .social-presence-note,.social-presence .social-presence-empty { font-size:13px; line-height:1.6; color:#626262; }
.social-presence .social-presence-note { border-top:1px solid #e4e4df; padding-top:18px; margin:0; }
@media(max-width:760px) {
 .public-v4.profile-v4 .social-presence { margin:24px 16px; padding:24px 20px; }
 .social-presence .social-presence-row { grid-template-columns:1fr; gap:16px; padding:22px 0; }
 .social-presence .social-presence-metrics { gap:24px; }
 .social-presence .social-presence-link { justify-self:start; }
}

.social-presence #social-presence-title { scroll-margin-top:145px; }

/* Community publication snapshot */
.community-pulse{margin:64px 0;padding:40px;background:#fff;border:1px solid #d4dfda;border-radius:20px;scroll-margin-top:145px;color:#172d25}
.community-pulse-header{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;border-bottom:1px solid #d4dfda;padding-bottom:26px}
.community-pulse-kicker{font-size:12px;font-weight:750;letter-spacing:.12em;color:#416253;margin:0 0 12px}
.community-pulse h2{font-size:clamp(32px,4vw,50px);line-height:1.08;letter-spacing:-.04em;margin:0 0 14px}
.community-pulse-header p:last-child{max-width:610px;line-height:1.6;margin:0}
.community-pulse a{color:#195c43;font-weight:700;display:inline-flex;align-items:center;min-height:44px;gap:12px}
.community-pulse-header>a{flex-shrink:0}
.community-pulse-body{display:grid;grid-template-columns:1fr 1fr;gap:64px;padding:30px 0}
.community-pulse-number{font-size:76px;line-height:1;letter-spacing:-.06em;font-weight:750;margin:0 0 12px;font-variant-numeric:tabular-nums}
.community-pulse-number span{font-size:30px;font-weight:450;color:#53675d;letter-spacing:-.02em}
.community-pulse h3{font-size:18px;line-height:1.4;margin:0 0 12px}
.community-pulse progress{appearance:none;width:100%;height:9px;border:0;border-radius:8px;background:#e4ece7;margin:8px 0}
.community-pulse progress::-webkit-progress-bar{background:#e4ece7;border-radius:8px}
.community-pulse progress::-webkit-progress-value{background:#267554;border-radius:8px}
.community-pulse progress::-moz-progress-bar{background:#267554;border-radius:8px}
.community-pulse-coverage>p:last-of-type{font-size:14px;color:#53675d;line-height:1.5}
.community-pulse-totals{display:flex;gap:32px;margin:28px 0 0}
.community-pulse-totals div{display:flex;flex-direction:column-reverse;gap:6px;flex:1}
.community-pulse-totals dt{font-size:14px;line-height:1.4;color:#53675d}
.community-pulse-totals dd{font-size:34px;font-weight:750;letter-spacing:-.03em;margin:0;font-variant-numeric:tabular-nums}
.community-pulse-network{padding:16px 0;border-bottom:1px solid #d4dfda}
.community-pulse-network:first-child{padding-top:0}
.community-pulse-network:last-child{border-bottom:0;padding-bottom:0}
.community-pulse-network h3{margin-bottom:5px}
.community-pulse-network p{margin:4px 0;line-height:1.5;font-size:15px}
.community-pulse-engagement{color:#53675d}
.community-pulse-method{border-top:1px solid #d4dfda;font-size:14px;line-height:1.65;padding-top:12px;color:#53675d}
.community-pulse-method summary{cursor:pointer;min-height:44px;padding:10px 0;font-weight:600}
.community-pulse a:focus-visible,.community-pulse summary:focus-visible{outline:3px solid #267554;outline-offset:5px}
@media(max-width:700px){.community-pulse{padding:24px 20px;margin:32px 0;border-radius:14px}.community-pulse-header{display:block}.community-pulse-header>a{margin-top:16px}.community-pulse-body{grid-template-columns:1fr;gap:28px}.community-pulse-number{font-size:64px}.community-pulse-totals{gap:20px}.community-pulse-networks{border-top:1px solid #d4dfda;padding-top:24px}.community-pulse-kicker{font-size:11px}}

/* Compact reaction count, integrated with the existing community figures. */
.global-proof-reactions{scroll-margin-top:130px}
@media(max-width:700px){.global-proof.global-proof-reactions{grid-template-columns:repeat(5,minmax(0,1fr))}.global-proof.global-proof-reactions strong{font-size:22px}}

/* Community routes: heading uses the full section width. */
.global-home .global-paths{grid-template-columns:repeat(2,minmax(0,1fr))}
.global-home .global-paths-intro{grid-column:1/-1;min-height:0;display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:40px;align-items:center;padding:48px clamp(24px,5vw,80px)}
.global-home .global-paths-intro h2{min-width:0;max-width:20ch;font-size:clamp(32px,4vw,56px);line-height:1.08;letter-spacing:-.035em;overflow-wrap:break-word;text-wrap:balance}
.global-home .global-paths-intro p{min-width:0;margin:0;max-width:48ch}
@media(max-width:700px){.global-home .global-paths{grid-template-columns:minmax(0,1fr)}.global-home .global-paths-intro{grid-template-columns:minmax(0,1fr);gap:22px;padding:36px 22px}.global-home .global-paths-intro h2{font-size:clamp(30px,8.5vw,40px)}}
