/* Full-viewport sample digital sign (fictional venue) */

:root {
  --sd-bg: #030308;
  --sd-ink: #f2e9ff;
  /* Brighter than global ink-muted so body copy reads on #07020d / compare gradients */
  --sd-muted: #b5a3cf;
  --sd-accent: #05d9e8;
  --sd-hot: #ff2a6d;
  --sd-ink-soft: #e8dff8;
  --sd-ink-mid: #d4c6ec;
  --sd-font-display: "Orbitron", system-ui, sans-serif;
  --sd-font-body: "Rajdhani", system-ui, sans-serif;
  /* This sheet loads after styles.css on your-code.html only */
  --ink-muted: #c4aedc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

/* With styles.css: site chrome uses global theme; demo blocks bring their own type + backgrounds */
body.signage-demo-page {
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(123, 44, 191, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 70% 40% at 100% 30%, rgba(5, 217, 232, 0.08) 0%, transparent 45%),
    var(--bg);
  color: var(--ink);
}

.signage-demo-page .sd-screen,
.signage-demo-page .sd-compare {
  font-family: var(--sd-font-body);
  font-weight: 600;
}

.sd-page-intro {
  padding: clamp(1.35rem, 3.5vw, 2rem) 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(123, 44, 191, 0.1) 0%, transparent 95%);
}

.sd-page-crumb {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.sd-page-crumb a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 700;
}

.sd-page-crumb a:hover {
  text-decoration: underline;
}

.sd-page-h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw + 0.75rem, 1.95rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}

.sd-page-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.58;
  color: var(--ink-muted);
}

.sd-page-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.sd-page-lead a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: none;
}

.sd-page-lead a:hover {
  text-decoration: underline;
}

.sd-screen {
  position: relative;
  min-height: clamp(22rem, calc(100svh - 13rem), 44rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(255, 42, 109, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(5, 217, 232, 0.08) 0%, transparent 50%),
    var(--sd-bg);
}

.sd-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 3px
  );
  pointer-events: none;
  opacity: 0.35;
}

.sd-screen-inner {
  position: relative;
  z-index: 1;
  width: min(42rem, 100%);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 2px solid rgba(5, 217, 232, 0.35);
  border-radius: 4px;
  background: rgba(8, 4, 16, 0.85);
  box-shadow:
    0 0 60px rgba(5, 217, 232, 0.08),
    inset 0 0 80px rgba(123, 44, 191, 0.06);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Slideshow: prices → band → fair ad */
.sd-slideshow {
  position: relative;
}

.sd-slides {
  position: relative;
  min-height: clamp(26rem, 68vw, 38rem);
}

.sd-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.sd-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.sd-snark-title {
  margin: 0 0 1rem;
  font-family: var(--sd-font-display);
  font-size: clamp(1.35rem, 3.2vw + 0.55rem, 2.05rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sd-ink);
  text-shadow: 0 0 36px rgba(255, 42, 109, 0.12);
}

.sd-snark-body {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(1.02rem, 1.3vw + 0.78rem, 1.28rem);
  font-weight: 600;
  line-height: 1.5;
  color: #c4b5dc;
}

.sd-snark-body em {
  font-style: italic;
  font-weight: 600;
  color: #dfd6f0;
}

.sd-slide-menu .sd-head {
  margin-top: 0;
}

.sd-stock-fig {
  margin: 0 0 1rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(5, 217, 232, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.sd-stock-fig img {
  display: block;
  width: 100%;
  height: clamp(9.5rem, 26vw, 12.5rem);
  object-fit: cover;
}

.sd-stock-fig--tall img {
  height: clamp(10.5rem, 30vw, 14rem);
}

.sd-slide-band .sd-band-head {
  margin: 0 0 0.25rem;
}

.sd-band-tag {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sd-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sd-slide-band .sd-highlight {
  margin-top: 0;
}

.sd-slide-fair .sd-fair-head {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.8vw + 0.55rem, 1.95rem);
  line-height: 1.08;
}

.sd-fair-when {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #c9b8de;
  line-height: 1.45;
}

.sd-fair-admission {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 1.2vw + 0.55rem, 1.25rem);
  font-weight: 700;
  color: var(--sd-ink);
}

.sd-fair-price {
  color: var(--sd-hot);
  font-family: var(--sd-font-display);
  font-size: 1.2em;
  letter-spacing: 0.04em;
}

.sd-fair-kids {
  font-weight: 600;
  font-size: 0.82em;
  color: var(--sd-muted);
}

.sd-fair-warning {
  margin: 0;
  padding: 0.75rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: #f2e6cf;
  background: rgba(232, 184, 0, 0.1);
  border: 1px solid rgba(232, 184, 0, 0.4);
  border-radius: 4px;
  border-left: 4px solid #e8b800;
}

.sd-fair-warning strong {
  color: #ffe566;
  font-weight: 800;
}

.sd-slide-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.sd-slide-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1px solid rgba(5, 217, 232, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.sd-slide-dot:hover {
  border-color: rgba(5, 217, 232, 0.85);
  transform: scale(1.15);
}

.sd-slide-dot.is-active {
  background: var(--sd-accent);
  border-color: var(--sd-accent);
  box-shadow: 0 0 14px rgba(5, 217, 232, 0.45);
}

.sd-slide-dot:focus-visible {
  outline: 2px solid var(--sd-hot);
  outline-offset: 3px;
}

.sd-venue {
  margin: 0 0 0.35rem;
  font-family: var(--sd-font-display);
  font-size: clamp(0.75rem, 1.5vw + 0.55rem, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sd-accent);
  text-shadow: 0 0 20px rgba(5, 217, 232, 0.35);
}

.sd-head {
  margin: 0 0 1.75rem;
  font-family: var(--sd-font-display);
  font-size: clamp(1.65rem, 4vw + 0.65rem, 2.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sd-ink);
  text-shadow: 0 0 40px rgba(255, 42, 109, 0.15);
}

.sd-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sd-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(253, 232, 255, 0.1);
}

.sd-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.sd-item {
  font-size: clamp(1.05rem, 1.8vw + 0.75rem, 1.35rem);
  line-height: 1.25;
  color: var(--sd-ink);
}

.sd-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sd-muted);
  letter-spacing: 0.02em;
}

.sd-price {
  flex-shrink: 0;
  font-family: var(--sd-font-display);
  font-size: clamp(1.1rem, 2vw + 0.65rem, 1.5rem);
  font-weight: 700;
  color: var(--sd-hot);
  letter-spacing: 0.04em;
}

.sd-price::before {
  content: "$";
  margin-right: 0.08em;
  font-size: 0.75em;
  opacity: 0.85;
}

.sd-highlight {
  margin: 1.75rem 0 0;
  padding: 1rem 1.15rem;
  font-size: clamp(1rem, 1.2vw + 0.85rem, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sd-bg);
  background: linear-gradient(135deg, var(--sd-accent) 0%, #00a8b8 100%);
  border-radius: 2px;
  box-shadow: 0 0 28px rgba(5, 217, 232, 0.25);
}

.sd-foot {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--sd-muted);
  text-align: center;
}

.sd-foot-link {
  display: block;
  margin-top: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sd-accent);
  text-decoration: none;
}

.sd-foot-link:hover {
  text-decoration: underline;
  color: #7eefff;
}

/* —— Comparison section (below the “screen”) —— */
.sd-compare {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(5, 217, 232, 0.28);
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 42, 109, 0.09) 0%, transparent 50%),
    linear-gradient(180deg, #0a0614 0%, var(--sd-bg) 40%);
}

.sd-compare-wrap {
  width: min(46rem, 100%);
  margin-inline: auto;
}

.sd-compare-title {
  margin: 0 0 0.85rem;
  font-family: var(--sd-font-display);
  font-size: clamp(1.25rem, 2.5vw + 0.65rem, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--sd-ink);
  text-shadow: 0 0 28px rgba(5, 217, 232, 0.12);
}

.sd-compare-lead {
  margin: 0 0 1.75rem;
  font-size: clamp(1rem, 0.8vw + 0.88rem, 1.12rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--sd-ink-mid);
}

.sd-compare-lead strong {
  color: var(--sd-ink);
  font-weight: 700;
}

.sd-compare-sub {
  margin: 2rem 0 0.85rem;
  font-family: var(--sd-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sd-accent);
}

.sd-compare-sub:first-of-type {
  margin-top: 0;
}

.sd-compare-body {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--sd-ink-soft);
}

.sd-compare-muted {
  color: var(--sd-muted);
  font-size: 0.98rem;
}

.sd-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(253, 232, 255, 0.1);
  background: rgba(10, 6, 20, 0.6);
  -webkit-overflow-scrolling: touch;
}

.sd-table {
  width: 100%;
  min-width: 17rem;
  border-collapse: collapse;
  font-size: 0.92rem;
  font-weight: 500;
}

.sd-table th,
.sd-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(253, 232, 255, 0.08);
}

.sd-table thead th {
  font-family: var(--sd-font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sd-hot);
  background: rgba(255, 42, 109, 0.08);
}

.sd-th-hint {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--sd-font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--sd-muted);
}

.sd-table tbody th[scope="row"] {
  color: var(--sd-ink);
  font-weight: 700;
  width: 28%;
  min-width: 6.5rem;
}

.sd-table td {
  color: var(--sd-ink-mid);
}

.sd-cell-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sd-muted);
}

.sd-table-total th,
.sd-table-total td {
  background: rgba(5, 217, 232, 0.06);
  border-bottom: none;
  color: var(--sd-ink);
  font-weight: 700;
}

.sd-callout {
  margin: 0 0 2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 6px;
  border-left: 4px solid var(--sd-accent);
  background: linear-gradient(100deg, rgba(5, 217, 232, 0.14) 0%, rgba(123, 44, 191, 0.08) 100%);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--sd-ink-soft);
}

.sd-callout-accent {
  border-left-color: var(--sd-hot);
  background: linear-gradient(100deg, rgba(255, 42, 109, 0.14) 0%, rgba(5, 217, 232, 0.08) 100%);
  box-shadow: 0 0 32px rgba(255, 42, 109, 0.06);
}

.sd-callout-accent strong {
  color: var(--sd-hot);
}

.sd-callout p {
  margin: 0;
}

.sd-callout strong {
  color: var(--sd-accent);
}

.sd-procon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 720px) {
  .sd-procon-grid {
    grid-template-columns: 1fr;
  }
}

.sd-procon-card {
  padding: 1.25rem 1.15rem;
  border-radius: 8px;
  border: 1px solid rgba(253, 232, 255, 0.1);
  background: rgba(12, 8, 22, 0.75);
}

.sd-procon-title {
  margin: 0 0 0.25rem;
  font-family: var(--sd-font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sd-ink);
}

.sd-procon-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(5, 217, 232, 0.92);
  letter-spacing: 0.03em;
}

.sd-procon-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sd-procon-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--sd-ink-mid);
}

.sd-procon-list li:last-child {
  margin-bottom: 0;
}

.sd-procon-list .sd-pro::before {
  content: "+";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--sd-accent);
}

.sd-procon-list .sd-con::before {
  content: "–";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--sd-hot);
}

.sd-procon-list strong {
  color: var(--sd-ink);
  font-weight: 700;
}

.sd-multi-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--sd-ink-mid);
  line-height: 1.55;
  font-size: 0.98rem;
}

.sd-multi-list li::marker {
  color: var(--sd-accent);
}

.sd-multi-list li {
  margin-bottom: 0.4rem;
}

.sd-pitch {
  margin: 2rem 0 1.5rem;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(199, 125, 255, 0.25);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(123, 44, 191, 0.12) 0%, rgba(8, 4, 16, 0.5) 100%);
  box-shadow: 0 0 40px rgba(123, 44, 191, 0.08);
}

.sd-pitch p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.98rem, 0.9vw + 0.85rem, 1.08rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: #f4eefc;
}

.sd-pitch p:last-child {
  margin-bottom: 0;
}

.sd-pitch strong {
  font-style: normal;
  font-weight: 700;
  color: var(--sd-ink-soft);
}

.sd-pitch p:first-of-type > strong:first-of-type {
  color: var(--sd-accent);
}

.sd-pitch p:first-of-type > strong:nth-of-type(2) {
  color: var(--sd-hot);
}

.sd-pitch p:nth-of-type(2) > strong:first-of-type {
  color: var(--sd-hot);
}

.sd-pitch p:nth-of-type(2) > strong:not(:first-of-type) {
  color: var(--sd-accent);
}

.sd-pitch-ask {
  margin-top: 1rem !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  color: var(--sd-hot) !important;
}

.sd-disclaimer {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--sd-muted);
}

.sd-disclaimer:last-child {
  margin-bottom: 0;
}

.sd-disclaimer a {
  color: var(--sd-accent);
  font-weight: 600;
  text-decoration: none;
}

.sd-disclaimer a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .sd-screen::before {
    opacity: 0.2;
  }

  .sd-slide {
    transition: none;
  }
}
