: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;
}

* { 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;
}
.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;
}
.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; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
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); }
.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; }
.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; }
.notice { margin: 18px auto; max-width: 860px; padding: 12px 16px; border-radius: 6px; }
.notice-error { background: #ffe6e6; border: 1px solid #f1b0b0; }
.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; }
.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: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;
}
.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 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;
}
.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 {
    padding-inline: 14px;
  }
  nav {
    gap: 2px;
  }
  nav a {
    padding-inline: 7px;
    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;
  }
  .form-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .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: 176px auto auto clamp(22px, 3vw, 36px);
  z-index: 0;
  width: calc(50% - 76px);
  height: auto;
  max-height: none;
  aspect-ratio: 1400 / 920;
  object-fit: contain;
  object-position: center;
  opacity: .9;
  filter: saturate(.95) contrast(.98);
  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: 1400 / 920;
    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);
  }
  .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;
  }
}
