:root {
  --booth-black: #17110f;
  --booth-ink: #241b18;
  --warm-paper: #fff9f2;
  --paper-dim: #f3eadf;
  --cable: #897b70;
  --needle: #e0522f;
  --needle-dark: #b43b20;
  --good: #34785f;
  --bad: #9c322c;
  --line: rgba(36, 27, 24, 0.14);
  --focus: rgba(224, 82, 47, 0.24);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--booth-ink);
  background: var(--warm-paper);
}

a { color: inherit; }

.product-site {
  min-height: 100vh;
  color: #edf6f2;
  background:
    radial-gradient(circle at 18% 0%, rgba(88, 196, 167, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(224, 82, 47, 0.16), transparent 32rem),
    linear-gradient(135deg, #07100e 0%, #101816 45%, #0a0d0c 100%);
  font-family: "Aptos Display", Avenir, "Segoe UI", sans-serif;
  overflow: hidden;
}

.product-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(237, 246, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 246, 242, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.product-nav,
.product-hero,
.product-section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand-mark {
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.product-nav div {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.product-nav div a {
  padding: 9px 12px;
  border-radius: 6px;
  color: rgba(237, 246, 242, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.product-nav div a:hover {
  color: #edf6f2;
  background: rgba(237, 246, 242, 0.07);
}

.product-hero {
  min-height: calc(100dvh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 38px 0 92px;
}

.hero-copy h1,
.product-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 8vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.product-section h2 {
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  max-width: 860px;
}

.product-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(88, 196, 167, 0.26);
  border-radius: 4px;
  color: #94ead2;
  background: rgba(88, 196, 167, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-lede,
.setup-copy p,
.section-copy p {
  max-width: 680px;
  color: rgba(237, 246, 242, 0.72);
  font-size: 1.12rem;
  line-height: 1.65;
}

.product-site .button {
  border-color: rgba(237, 246, 242, 0.14);
  color: #edf6f2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-site .button:hover {
  transform: translateY(-1px);
}

.product-site .button:active {
  transform: translateY(0) scale(0.985);
}

.product-site .button.primary {
  border-color: #58c4a7;
  color: #06100d;
  background: #58c4a7;
}

.product-site .button.secondary {
  color: #edf6f2;
  background: rgba(237, 246, 242, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid rgba(237, 246, 242, 0.12);
  border-radius: 10px;
  background: rgba(237, 246, 242, 0.055);
}

.hero-metrics dt {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: rgba(237, 246, 242, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ops-preview {
  overflow: hidden;
  border: 1px solid rgba(237, 246, 242, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(237, 246, 242, 0.12), rgba(237, 246, 242, 0.045)),
    rgba(7, 16, 14, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.preview-topbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(237, 246, 242, 0.1);
}

.preview-topbar span {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237, 246, 242, 0.26);
}

.preview-topbar strong {
  margin-left: 8px;
  color: rgba(237, 246, 242, 0.78);
  font-size: 0.82rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  padding: 14px;
}

.preview-panel {
  min-height: 168px;
  padding: 16px;
  border: 1px solid rgba(237, 246, 242, 0.1);
  border-radius: 14px;
  background: rgba(4, 10, 9, 0.48);
}

.preview-panel p {
  margin: 0 0 14px;
  color: #94ead2;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.preview-panel.queue {
  grid-row: span 2;
}

.preview-panel.queue div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(237, 246, 242, 0.09);
}

.preview-panel strong,
.preview-panel span {
  display: block;
}

.preview-panel span {
  margin-top: 5px;
  color: rgba(237, 246, 242, 0.62);
  font-size: 0.86rem;
}

.fake-qr {
  width: min(128px, 100%);
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #06100d 12px, transparent 12px 22px, #06100d 22px 34px, transparent 34px),
    linear-gradient(#06100d 10px, transparent 10px 22px, #06100d 22px 36px, transparent 36px),
    #edf6f2;
  background-size: 44px 44px;
}

.signals span {
  padding: 9px 0;
  border-bottom: 1px solid rgba(237, 246, 242, 0.08);
}

.signals b {
  color: #fff;
  font-size: 1.2rem;
}

.product-section {
  padding: 88px 0;
  border-top: 1px solid rgba(237, 246, 242, 0.08);
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.feature-rail article,
.pricing-stack article,
.compare-list p,
.setup-card {
  border: 1px solid rgba(237, 246, 242, 0.11);
  border-radius: 16px;
  background: rgba(237, 246, 242, 0.055);
}

.feature-rail article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  padding: 20px;
}

.feature-rail span {
  color: rgba(237, 246, 242, 0.38);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.feature-rail h3 {
  margin: 46px 0 10px;
  color: #fff;
  font-size: 1.45rem;
}

.feature-rail p,
.compare-list span,
.pricing-stack span {
  color: rgba(237, 246, 242, 0.66);
  line-height: 1.55;
}

.split-section,
.setup-section,
.builder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.compare-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.compare-list p {
  margin: 0;
  padding: 16px;
}

.compare-list strong,
.compare-list span {
  display: block;
}

.compare-list strong {
  margin-bottom: 5px;
  color: #fff;
}

.pricing-stack {
  display: grid;
  gap: 12px;
}

.pricing-stack article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.pricing-stack article.highlight {
  border-color: rgba(88, 196, 167, 0.46);
  background: linear-gradient(135deg, rgba(88, 196, 167, 0.18), rgba(237, 246, 242, 0.055));
}

.pricing-stack small {
  color: #94ead2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-stack strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1;
}

.pricing-stack span {
  display: block;
  margin-bottom: 8px;
}

.pricing-stack .button {
  width: fit-content;
  align-self: end;
}

.setup-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.product-site label {
  color: rgba(237, 246, 242, 0.82);
}

.product-site input,
.product-site textarea {
  border-color: rgba(237, 246, 242, 0.12);
  color: #edf6f2;
  background: rgba(4, 10, 9, 0.62);
}

.product-site input::placeholder,
.product-site textarea::placeholder {
  color: rgba(237, 246, 242, 0.36);
}

.product-site .form-result,
.product-site .muted {
  color: rgba(237, 246, 242, 0.62);
}

.launch-result {
  display: grid;
  gap: 16px;
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(88, 196, 167, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(88, 196, 167, 0.12), rgba(237, 246, 242, 0.045)),
    rgba(4, 10, 9, 0.62);
}

.launch-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 16px;
  align-items: center;
}

.launch-result-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.launch-result-head p {
  margin: 8px 0 0;
  color: rgba(237, 246, 242, 0.68);
  line-height: 1.5;
}

.launch-result-head img {
  width: 132px;
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}

.launch-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.launch-links article {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(237, 246, 242, 0.1);
  border-radius: 12px;
  background: rgba(4, 10, 9, 0.48);
}

.launch-links strong {
  color: #fff;
}

.launch-links span,
.launch-links a,
.launch-upsell span {
  color: rgba(237, 246, 242, 0.63);
  font-size: 0.86rem;
  line-height: 1.45;
}

.launch-links a {
  overflow-wrap: anywhere;
}

.launch-links .button {
  width: fit-content;
}

.launch-upsell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: rgba(88, 196, 167, 0.1);
}

.launch-upsell strong {
  color: #fff;
}

.launch-upsell span {
  grid-column: 1;
}

.stage,
.console {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 24px;
  min-height: 100vh;
  align-items: center;
}

.landing .hero {
  position: sticky;
  top: 24px;
}

.landing .builder-panel + .builder-panel {
  margin-top: 16px;
}

.hero,
.builder-panel,
.event-header,
.request-panel,
.queue-section,
.share-panel,
.queue-panel {
  border: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.86);
  border-radius: 8px;
}

.hero {
  min-height: 520px;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(23, 17, 15, 0.92), rgba(36, 27, 24, 0.78)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 42px);
  color: var(--warm-paper);
}

.hero h1,
.event-header h1,
.console h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.event-header h1,
.console h1 {
  color: var(--booth-ink);
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.lede {
  max-width: 680px;
  color: inherit;
  opacity: 0.82;
  font-size: 1.08rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--needle);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow { color: #ffb199; }

.hero-actions,
.console-actions,
.section-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 249, 242, 0.2);
  border-radius: 999px;
  color: rgba(255, 249, 242, 0.84);
  background: rgba(255, 249, 242, 0.08);
  font-size: 0.8rem;
  font-weight: 850;
}

.button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--needle);
  color: #fff;
  background: var(--needle);
}

.button.primary:hover { background: var(--needle-dark); }

.button.secondary,
.button.ghost {
  color: var(--booth-ink);
  background: var(--paper-dim);
}

.button.ghost {
  min-height: 36px;
  background: transparent;
}

.builder-panel,
.request-panel,
.queue-section,
.share-panel,
.queue-panel {
  padding: 22px;
}

.offer-panel {
  display: grid;
  gap: 18px;
}

.compact-panel {
  display: grid;
  gap: 14px;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.price-strip div {
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.price-strip strong,
.price-strip span {
  display: block;
}

.price-strip strong {
  font-size: 1.45rem;
  line-height: 1;
}

.price-strip span {
  margin-top: 6px;
  color: var(--cable);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.included-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.included-grid div,
.compare-grid div {
  min-height: 104px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.included-grid strong,
.included-grid span,
.compare-grid strong,
.compare-grid span {
  display: block;
}

.included-grid strong,
.compare-grid strong {
  font-size: 0.94rem;
}

.included-grid span,
.compare-grid span {
  margin-top: 7px;
  color: var(--cable);
  font-size: 0.84rem;
  line-height: 1.45;
}

.steps-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  width: 28px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--needle);
  font-weight: 900;
}

.steps-list strong,
.steps-list span {
  display: block;
}

.steps-list span {
  margin-top: 5px;
  color: var(--cable);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--booth-ink);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf9;
  color: var(--booth-ink);
  font: inherit;
  padding: 12px;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.form-result,
.muted {
  color: var(--cable);
  line-height: 1.5;
}

.event-header {
  padding: clamp(24px, 6vw, 52px);
  margin-bottom: 18px;
}

.guest {
  max-width: 780px;
}

.request-panel,
.queue-section {
  margin-bottom: 18px;
}

.section-title {
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-title h2 {
  margin: 0;
  font-size: 1.1rem;
}

.request-list,
.admin-list,
.photo-wall,
.lead-list {
  display: grid;
  gap: 10px;
}

.photo-wall {
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--paper-dim);
}

.photo-card p {
  margin: 0;
  padding: 10px;
  color: var(--cable);
  font-size: 0.86rem;
  font-weight: 750;
}

.song-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.song-card h3 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.song-card p {
  margin: 0;
  color: var(--cable);
}

.vote {
  min-width: 54px;
  min-height: 54px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  background: var(--paper-dim);
  font-weight: 900;
  color: var(--booth-ink);
  cursor: pointer;
}

.vote span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cable);
}

.vote strong {
  font-size: 1.15rem;
}

.state-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cable);
  background: #fffdf9;
  font-size: 0.84rem;
  font-weight: 800;
}

.brand-line {
  margin: 10px 0 0;
  color: var(--cable);
  font-weight: 850;
}

.money-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.check-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
}

.check-line input {
  width: auto;
}

.priority-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--needle);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.console {
  min-height: 100vh;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
}

.console-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.share-panel {
  position: sticky;
  top: 16px;
}

.settings-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.qr {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.admin-photo-title {
  margin-top: 24px;
}

.admin-photo-list {
  display: grid;
  gap: 10px;
}

.admin-photo-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.admin-photo-row[data-status="hidden"] {
  opacity: 0.48;
}

.admin-photo-row img {
  width: 86px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--paper-dim);
}

.admin-photo-row h3,
.admin-photo-row p {
  margin: 0;
}

.admin-photo-row p {
  color: var(--cable);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.stats-grid div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.stats-grid strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 6px;
  color: var(--cable);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  margin-bottom: 14px;
  align-items: end;
}

.search-line {
  font-size: 0.78rem;
}

.segmented {
  display: inline-flex;
  min-height: 42px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-dim);
}

.segmented button {
  border: 0;
  border-radius: 5px;
  background: transparent;
  padding: 0 10px;
  color: var(--cable);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.segmented button.active {
  color: var(--booth-ink);
  background: #fffdf9;
}

.admin-row[data-status="played"] { opacity: 0.62; }
.admin-row[data-status="declined"],
.admin-row[data-status="hidden"] { opacity: 0.46; }

.owner-console {
  max-width: 1180px;
}

.owner-panel {
  display: grid;
  gap: 14px;
}

.owner-stats {
  margin-bottom: 4px;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.lead-row[data-status="won"] {
  border-color: rgba(52, 120, 95, 0.34);
}

.lead-row[data-status="lost"] {
  opacity: 0.55;
}

.lead-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.lead-heading h2,
.lead-row p {
  margin: 0;
}

.lead-row p + p {
  margin-top: 7px;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
  align-content: start;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  justify-content: end;
}

.tiny {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.status {
  color: var(--cable);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.poster-body {
  min-height: 100vh;
  background: var(--paper-dim);
  display: grid;
  place-items: center;
  padding: 24px;
}

.poster-sheet {
  width: min(8.5in, 100%);
  min-height: min(11in, calc(100vh - 48px));
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-paper);
  color: var(--booth-ink);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.poster-sheet h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.poster-copy {
  max-width: 620px;
  margin: 18px 0 28px;
  color: var(--cable);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  line-height: 1.35;
  font-weight: 750;
}

.poster-qr {
  width: min(440px, 76vw);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.poster-rules {
  max-width: 620px;
  margin: 24px 0 8px;
  color: var(--booth-ink);
  font-weight: 800;
  line-height: 1.35;
}

.poster-url {
  max-width: 640px;
  overflow-wrap: anywhere;
  color: var(--cable);
  font-size: 0.9rem;
}

.print-button {
  margin-top: 18px;
}

.display-board {
  min-height: 100vh;
  padding: clamp(24px, 4vw, 52px);
  color: var(--warm-paper);
  background:
    linear-gradient(135deg, rgba(23, 17, 15, 0.96), rgba(36, 27, 24, 0.9)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 48px);
}

.display-hero {
  margin-bottom: 28px;
}

.display-hero h1 {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.display-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.display-grid aside {
  padding: 18px;
  border: 1px solid rgba(255, 249, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 249, 242, 0.08);
}

.display-list {
  display: grid;
  gap: 12px;
}

.display-request {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 249, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 249, 242, 0.08);
}

.display-request > strong {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 6px;
  color: var(--booth-ink);
  background: var(--warm-paper);
  font-size: 1.2rem;
}

.display-request h2 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 3rem);
  line-height: 1;
}

.display-request p {
  margin: 6px 0 0;
  color: rgba(255, 249, 242, 0.72);
  font-weight: 800;
}

.display-photos {
  margin-top: 28px;
}

.display-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.display-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 249, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 249, 242, 0.08);
}

.display-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.display-photo p {
  margin: 0;
  padding: 9px;
  color: rgba(255, 249, 242, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
}

@media print {
  @page {
    margin: 0.35in;
  }

  .poster-body {
    padding: 0;
    background: #fff;
  }

  .poster-sheet {
    width: 100%;
    min-height: auto;
    border: 0;
    border-radius: 0;
  }

  .print-button {
    display: none;
  }
}

@media (max-width: 820px) {
  .product-nav,
  .product-hero,
  .split-section,
  .setup-section,
  .builder-section,
  .landing,
  .console-grid,
  .console-top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-nav {
    padding: 14px 0;
  }

  .product-nav div {
    justify-content: start;
    overflow-x: auto;
  }

  .product-hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-copy h1,
  .product-section h2 {
    letter-spacing: -0.035em;
  }

  .hero-metrics,
  .feature-rail,
  .launch-result-head,
  .launch-links,
  .launch-upsell,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .launch-upsell span {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .landing .hero {
    position: static;
  }

  .share-panel {
    position: static;
  }

  .admin-row,
  .admin-photo-row,
  .lead-row,
  .song-card {
    grid-template-columns: 1fr;
  }

  .admin-actions,
  .lead-actions {
    justify-content: start;
  }

  .toolbar,
  .stats-grid,
  .price-strip,
  .included-grid,
  .compare-grid,
  .display-grid,
  .photo-wall,
  .display-photo-grid {
    grid-template-columns: 1fr;
  }

  .segmented {
    overflow-x: auto;
    justify-content: flex-start;
  }
}
