/* components.css – CTAs, utility dock, cards, showcase, studio */

/* utility dock – HD SVG icons, compact, label only on hover */

.utility-dock {
  margin-top: 4px;
  padding: 4px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  overflow-x: none;
}

/* button shell – no border/bg by default */
.utility-btn {
  width: 300px;
  height: 60px;
  border-radius: 30px;
  background: rgba(7, 68, 189, 0);
  border: 1px solid rgba(5, 109, 255, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0);
  backdrop-filter: blur(18px);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    filter 0.18s ease-out;
}
.utility-button svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(4, 74, 238, 0.9));
}
.utility-btn .utility-icon {
  display: row;
  align-items: center;
  justify-content: center;
}

/* HD SVG icons */
.utility-btn svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  filter: drop-shadow(0 0 0 transparent);
  transition:
    transform 0.18s ease-out,
    stroke 0.18s ease-out,
    opacity 0.18s ease-out,
    filter 0.18s ease-out;
}

/* different stroke colors per icon (tweak as you like) */
.utility-dock .utility-btn:nth-child(1) svg { /* Home */
  stroke: #05b4ff;
}
.utility-dock .utility-btn:nth-child(2) svg { /* Showcase */
  stroke: #8200fc;
}
.utility-dock .utility-btn:nth-child(3) svg { /* Join */
  stroke: #03ddff;
}
.utility-dock .utility-btn:nth-child(4) svg { /* Studio */
  stroke: #ff6d05;
}
.utility-dock .utility-btn:nth-child(5) svg { /* Gallery */
  stroke: #fbbf24;
}
.utility-dock .utility-btn:nth-child(6) svg { /* MVP */
  stroke: #ff0037;
}
.utility-dock .utility-btn:nth-child(7) svg { /* Insights */
  stroke: #06ff61;
}
.utility-dock .utility-btn:nth-child(8) svg { /* Pitch */
  stroke: #0073fe;
}
.utility-dock .utility-btn:nth-child(9) svg { /* Whitepaper */
  stroke: #3107db;
}
.utility-dock .utility-btn:nth-child(10) svg { /* Marketplace */
  stroke: #22c55e;
}
.utility-dock .utility-btn:nth-child(11) svg { /* Founders */
  stroke: #f472b6;
}
.utility-dock .utility-btn:nth-child(12) svg { /* Blog */
  stroke: #facc15;
}

/* label BELOW the button – only on hover */
.utility-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);

  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;

  background: rgba(15, 23, 42, 0.96);
  color: var(--plism-text-soft);

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out;
}

/* hover: button gets border + shadow + subtle bg, text appears */
.utility-btn:hover,
.utility-btn.is-active {
  border-color: rgba(148, 163, 184, 0.85);
  background: radial-gradient(
    circle at 0 0,
    rgba(56, 189, 248, 0.14),
    rgba(15, 23, 42, 0.98)
  );
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.95);
  transform: translateY(-1px);
}

.utility-btn:hover svg,
.utility-btn.is-active svg {
  opacity: 1;
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 0 6px rgba(251, 146, 60, 0.7));
}

.utility-btn:hover .utility-label,
.utility-btn.is-active .utility-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* chips */

.chip {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  background: var(--plism-surface-chip);
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: var(--shadow-chip);
  color: var(--plism-text-soft);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 250, 252, 0.9);
}

.chip.is-active {
  background: radial-gradient(circle at 0 0, rgba(20, 184, 255, 0.35), rgba(15, 23, 42, 0.9));
  border-color: rgba(56, 189, 248, 0.9);
}

/* sliders */

.live-ui-slider {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--plism-text-soft);
}

.live-ui-slider span {
  min-width: 40px;
}

.live-ui-slider input[type="range"] {
  width: 90px;
}

/* cards */

.info-card {
  border-radius: 18px;
  padding: 10px 11px;
  background: linear-gradient(
      145deg,
      rgb(2, 12, 36),
      rgba(3, 16, 77, 0.92)
    );
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.081);
}

.section-title {
  font-size: 14px;
  margin-bottom: 4px;
}

.section-description {
  font-size: 12px;
  color: var(--plism-text-soft);
  margin-bottom: 8px;
}

/* metrics */

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.metric {
  padding: 6px 7px;
  border-radius: 10px;
  background: radial-gradient(
      circle at 0 0,
      rgba(37, 99, 235, 0.32),
      transparent 70%
    ),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(30, 64, 175, 0.8);
}

.metric-label {
  font-size: 10px;
  color: var(--plism-text-muted);
}

.metric-value {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

/* attention feed */

.attention-card {
  position: relative;
  overflow: hidden;
}

.attention-feed {
  position: relative;
  margin-top: 8px;
  border-radius: 12px;
  padding: 8px 9px;
  background: radial-gradient(circle at 0 0, rgba(56, 191, 248, 0.038), transparent 75%);
  border: 1px solid rgba(56, 189, 248, 0.6);
}

.attention-feed-inner {
  display: grid;
  gap: 6px;
  font-size: 11px;
}

.attention-dots {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.attention-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
  border: none;
}

.attention-dot.is-active {
  background: #f97316;
}

/* stage layouts */

.stage-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 12px;
}

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

/* join form */

.join-form {
  display: grid;
  gap: 8px;
}

.form-row {
  display: grid;
  gap: 4px;
  font-size: 12px;
}

.form-row label {
  color: var(--plism-text-soft);
}

input[type="text"],
input[type="email"],
select,
input[type="search"] {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  padding: 6px 10px;
  color: var(--plism-text-main);
  font-size: 12px;
}

input::placeholder {
  color: var(--plism-text-muted);
}

.btn-primary {
  margin-top: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.32), rgba(15, 23, 42, 0.98));
  color: var(--plism-text-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* gallery */

.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.7);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* === Gallery Hub – 4 neon cards === */

.gallery-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(5, 1fr));
  gap: 14px;
}

/* Card button shell */
.gallery-hub-card {
  position: relative;
  border: 1px solid rgba(30, 64, 175, 0.6);
  border-radius: 18px;
  padding: 10px 11px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.14), transparent 75%),
    rgba(2, 6, 23, 0.88);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  cursor: pointer;
  text-align: left;

  display: flex;
  align-items: stretch;

  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out,
    filter 0.18s ease-out;
}

.gallery-hub-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

/* Icon bubble */
.gallery-hub-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(148, 163, 184, 0.28), transparent 90%),
    rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.gallery-hub-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
  filter: drop-shadow(0 0 0 transparent);
  transition:
    transform 0.18s ease-out,
    stroke 0.18s ease-out,
    opacity 0.18s ease-out,
    filter 0.18s ease-out;
}

/* Per-card accent colors */
.gallery-hub-card:nth-child(1) .gallery-hub-card-icon svg {
  stroke: #38bdf8; /* Plixel Hunt – cyan */
}
.gallery-hub-card:nth-child(2) .gallery-hub-card-icon svg {
  stroke: #f97316; /* Signatures – ember */
}
.gallery-hub-card:nth-child(3) .gallery-hub-card-icon svg {
  stroke: #a855f7; /* Own an Artist – violet */
}
.gallery-hub-card:nth-child(4) .gallery-hub-card-icon svg {
  stroke: #fbbf24; /* Art Showcase – gold */
}

/* Text stack */
.gallery-hub-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gallery-hub-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--plism-text-main);
}

.gallery-hub-card-subtitle {
  font-size: 12px;
  color: var(--plism-text-soft);
}

.gallery-hub-card-meta {
  font-size: 11px;
  color: var(--plism-text-muted);
}

/* Hover / active neon state */
.gallery-hub-card:hover,
.gallery-hub-card:focus-visible {
  border-color: rgba(251, 191, 36, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(251, 146, 60, 0.35), transparent 75%),
    rgba(15, 23, 42, 0.98);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 1),
    0 0 24px rgba(251, 191, 36, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.gallery-hub-card:hover .gallery-hub-card-icon,
.gallery-hub-card:focus-visible .gallery-hub-card-icon {
  border-color: rgba(251, 191, 36, 0.9);
}

.gallery-hub-card:hover .gallery-hub-card-icon svg,
.gallery-hub-card:focus-visible .gallery-hub-card-icon svg {
  opacity: 1;
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.85));
}

/* Responsive: stack cards on narrow screens */
@media (max-width: 900px) {
  .gallery-hub-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* showcase */

.showcase-wrapper {
  position: relative;
  border-radius: 16px;
  padding: 8px;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.011), transparent 70%);
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0);
}

.showcase-carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 450px;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), transparent 75%);
}

.showcase-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease-out;
}

.showcase-slide {
  flex: 0 0 100%;
  position: relative;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.showcase-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.showcase-slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0), transparent 60%);
}

.showcase-slide-content {
  position: relative;
  z-index: 2;
  color: var(--plism-text-main);
}

.showcase-slide-title {
  font-size: 16px;
}

.showcase-slide-subtitle {
  font-size: 12px;
  color: var(--plism-text-soft);
}

.showcase-slide-desc {
  font-size: 11px;
  color: var(--plism-text-muted);
  margin-top: 4px;
}

/* showcase nav */

.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.showcase-prev {
  left: 8px;
}

.showcase-next {
  right: 8px;
}

.showcase-dots {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.showcase-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.6);
}

.showcase-dot.is-active {
  background: #f97316;
}

/* Pitch & Whitepaper Carousel specific */
.pitch-carousel, .whitepaper-carousel {
  height: 600px; /* Taller for presentation slides */
  background: #000;
}

.pitch-carousel .showcase-slide, .whitepaper-carousel .showcase-slide {
  padding: 0;
  align-items: center;
  justify-content: center;
}

.floating-utility-toggle svg {
  transition: transform 0.2s ease;
}

.floating-utility-toggle:hover {
  background: rgba(15, 23, 42, 1) !important;
  border-color: #38bdf8 !important;
  color: #38bdf8 !important;
}

.floating-utility-toggle:hover svg {
  transform: scale(1.1);
}

.pitch-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure full slide is visible without cropping */
}


.pdf-slide {
  overflow: auto; /* Allow scrolling if page is weirdly sized */
}

.pitch-canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pitch-loading, .pitch-error {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plism-text-soft);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
}

.pitch-error {
  color: #ef4444;
  text-align: center;
  padding: 20px;
}

/* floating toggles */

.floating-home-toggle,
.floating-utility-toggle {
  position: absolute;
  top: 8px;
  z-index: 5;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
}

.floating-home-toggle {
  left: 8px;
}

.floating-utility-toggle {
  right: 8px;
}

.floating-utility-bar {
  position: absolute;
  top: 40px;
  right: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
}

.floating-utility-bar.is-visible {
  display: flex;
}

/* studio */

.studio-shell {
  position: relative;
  border-radius: 16px;
  padding: 8px;
  border: 1px solid rgba(30, 64, 175, 0.75);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.98), transparent 75%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.98);
}

.studio-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1.4fr) auto;
  gap: 8px;
  align-items: stretch;
}

.studio-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--plism-text-soft);
}

.rail-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--plism-text-muted);
}

.studio-control-group {
  display: grid;
  gap: 3px;
}

.studio-control-group label {
  font-size: 11px;
}

.studio-control-group input[type="range"] {
  width: 130px;
}

.studio-stage {
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.8);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.86), transparent 72%);
  overflow: hidden;
  position: relative;
}

#studio-canvas {
  width: 100%;
  height: 400px;
  display: block;
  background: transparent;
}

.studio-tool-btn {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: var(--plism-surface-chip);
  font-size: 10px;
}

.studio-tool-btn.is-active {
  border-color: rgba(56, 189, 248, 0.95);
}

.studio-chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  font-size: 10px;
}

.studio-chip.is-active {
  border-style: solid;
  border-color: rgba(56, 189, 248, 0.95);
}

/* studio footer */

.studio-footer-row {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.presets-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--plism-text-muted);
}

.studio-presets,
.studio-export {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.preset-chip,
.studio-export-btn {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.96);
  font-size: 10px;
}

/* insights */

.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 10px;
}

.insights-chart {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.9), transparent 65%);
}

.insights-list {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: var(--plism-text-soft);
}

/* founders */

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

/* blog */

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

.blog-card {
  border-radius: 14px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.95), transparent 70%);
}

/* responsive */

@media (max-width: 900px) {
  .live-ui-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .stage-two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .insights-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .founders-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-main {
    grid-template-columns: minmax(0, 1fr);
  }

  #studio-canvas {
    height: 220px;
  }
}
/* Glowing particles toggle orb (50px neon dot) */

.particles-toggle {
  position: absolute;
  bottom: 0px;
  right: 100px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1px solid rgb(1, 15, 21);
  background:
    radial-gradient(circle at 30% 30%, #033c55, #0b1120),
    radial-gradient(circle at 70% 70%, rgba(56, 189, 248, 0.3), transparent 70%);
  box-shadow:
    0 0 25px rgba(117, 3, 7, 0.9),
    0 0 45px rgba(253, 23, 3, 0.7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    border-color 0.2s ease-out;
}

.particles-toggle::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #e0f2fe, #38bdf8);
  box-shadow: 0 0 16px rgba(191, 219, 254, 0.9);
  animation: plism-orb-pulse 2.6s ease-in-out infinite;
}

.particles-toggle:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 0 32px rgb(15, 3, 252),
    0 0 60px rgb(3, 176, 250);
}

/* Small breathing animation for inner orb */
@keyframes plism-orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

/* Responsive: move orb lower on small screens */
@media (max-width: 900px) {
  .particles-toggle {
    top: 110px;
    right: 12px;
  }
  .live-ui-flyout {
    top: 150px;
    right: 12px;
  }
}
/* === Plism glass upgrade – inner surfaces === */

/* Generic info cards */
.info-card {
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.126), transparent 90%),
    rgba(2, 6, 23, 0.064);
  backdrop-filter: blur(14px);
}

/* Attention feed box */
.attention-feed {
  background:
    radial-gradient(circle at 0 0, rgba(56, 191, 248, 0.068), transparent 90%),
    rgba(15, 23, 42, 0.095);
}

/* Showcase wrapper + carousel */
.showcase-wrapper {
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.07), transparent 75%),
    rgba(2, 6, 23, 0.14);
  backdrop-filter: blur(16px);
}

.showcase-carousel {
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.65), transparent 90%),
    rgba(2, 6, 23, 0.04);
}

/* Studio shell + canvas frame */
.studio-shell {
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.82), transparent 80%),
    rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(18px);
}

.studio-stage {
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.7), transparent 80%),
    rgba(2, 6, 23, 0.62);
}

/* Gallery grid – thin tinted glass over particles */
.gallery-grid {
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(14px);
}

/* Pitch deck / blog cards use lighter glass */
.slide-deck,
.blog-card {
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.78), transparent 75%),
    rgba(2, 6, 23, 0.078);
  backdrop-filter: blur(14px);
}/* === Home icon grid – HD dashboard of utilities === */

.home-stage-header {
  margin-bottom: 10px;
}

.home-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

/* Each tile */
.home-launch-btn {
  position: relative;
  border: line;
  border-radius: 16px;
  padding: 10px 8px 9px;
  background:
    radial-gradient(circle at 0 0, rgba(11, 11, 11, 0), transparent 99%),
    rgba(112, 113, 115, 0);
  box-shadow: 0 18px 40px rgba(32, 4, 132, 0.205);
  cursor: pointer;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

/* HD icon */
.home-launch-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(1, 10, 22, 0), transparent 99%),
    rgba(15, 23, 42, 0);
  border: 1px solid rgba(148, 163, 184, 0);
}

.home-launch-icon svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
  filter: drop-shadow(0 0 0 transparent);
  transition:
    transform 0.18s ease-out,
    stroke 0.18s ease-out,
    opacity 0.18s ease-out,
    filter 0.18s ease-out;
}

/* Reuse same color logic as dock but larger feel */
.home-launch-btn:nth-child(1) svg { stroke: #38bdf8; }  /* Home */
.home-launch-btn:nth-child(2) svg { stroke: #a855f7; }  /* Showcase */
.home-launch-btn:nth-child(3) svg { stroke: #22d3ee; }  /* Join */
.home-launch-btn:nth-child(4) svg { stroke: #f97316; }  /* Studio */
.home-launch-btn:nth-child(5) svg { stroke: #fbbf24; }  /* Gallery */
.home-launch-btn:nth-child(6) svg { stroke: #e11d48; }  /* MVP */
.home-launch-btn:nth-child(7) svg { stroke: #4ade80; }  /* Insights */
.home-launch-btn:nth-child(8) svg { stroke: #60a5fa; }  /* Pitch */
.home-launch-btn:nth-child(9) svg { stroke: #c4b5fd; }  /* Whitepaper */
.home-launch-btn:nth-child(10) svg { stroke: #22c55e; } /* Marketplace */
.home-launch-btn:nth-child(11) svg { stroke: #f472b6; } /* Founders */
.home-launch-btn:nth-child(12) svg { stroke: #facc15; } /* Blog */

/* labels */
.home-launch-label {
  font-size: 18px;
  font-weight: 500;
}

.home-launch-tagline {
  font-size: 10px;
  color: var(--plism-text-muted);
}

/* hover: lift + neon glow */
.home-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0);
  background:
    radial-gradient(circle at 0 0, rgba(56, 191, 248, 0.69), transparent 80%),
    rgba(2, 12, 57, 0.33);
  border: 1px solid rgb(5, 130, 254);
}

.home-launch-btn:hover .home-launch-icon svg {
  transform: translateY(-1px) scale(1.05);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.8));
}

/* responsive */
@media (max-width: 900px) {
  .home-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* === 
 LAYOUT + COIN PLACEHOLDER === */

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 12px;
}

.join-side-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-form-title {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Google signup button */
.btn-google {
  width: 100%;
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  font-size: 12px;
}

.btn-google-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-google-icon svg {
  width: 14px;
  height: 14px;
  fill: #0f172a;
}

.btn-google-label {
  color: var(--plism-text-main);
}

/* separator */
.join-separator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
  font-size: 11px;
  color: var(--plism-text-muted);
}

.join-separator span {
  flex: 1;
  height: 1px;
  background: rgba(148, 163, 184, 0.4);
}

/* inline rows */
.form-row-inline {
  display: flex;
  gap: 8px;
}

.form-row-inline > * {
  flex: 1;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--plism-text-soft);
}

.checkbox-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* form actions */
.form-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-hint {
  font-size: 11px;
  color: var(--plism-text-muted);
}

/* Coin placeholder */
.coin-placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coin-preview-shell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coin-preview-frame {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  background:
    radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.36), transparent 70%),
    rgba(2, 6, 23, 0.9);
  box-shadow:
    0 0 26px rgba(56, 189, 248, 0.7),
    0 0 60px rgba(15, 23, 42, 0.95);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-preview-fallback {
  text-align: center;
  font-size: 11px;
  color: var(--plism-text-soft);
  opacity: 0.7;
}

.coin-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.coin-hash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.coin-hash-label {
  color: var(--plism-text-muted);
}

.coin-hash-value {
  font-family: var(--font-heading);
  font-size: 11px;
}

/* === COIN GENERATOR === */

.join-coin-generator {
  margin-top: 12px;
  border-radius: 16px;
  padding: 10px 10px 9px;
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.86), transparent 70%),
    rgba(2, 6, 23, 0.82);
  border: 1px solid rgba(30, 64, 175, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.96);
  display: none; /* shown when Plism ID is generated */
}

.join-coin-generator.is-visible {
  display: block;
}

.coin-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1.4fr) auto;
  gap: 8px;
  align-items: stretch;
}

.coin-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--plism-text-soft);
}

.coin-rail-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--plism-text-muted);
}

.coin-control-group {
  display: grid;
  gap: 3px;
}

.coin-control-group label {
  font-size: 11px;
}

.coin-control-group input[type="range"] {
  width: 130px;
}

.coin-stage {
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.85);
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.7), transparent 80%),
    rgba(2, 6, 23, 0.6);
  overflow: hidden;
  position: relative;
}

#coin-canvas {
  width: 100%;
  height: 220px;
  display: block;
}

/* palette chips */
.coin-chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  font-size: 10px;
}

.coin-chip.is-active {
  border-color: rgba(56, 189, 248, 0.95);
}

/* footer */
.coin-footer {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.coin-presets {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.coin-presets-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--plism-text-muted);
}

.coin-preset-chip {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.96);
  font-size: 10px;
}

.coin-export-btn {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.32), rgba(15, 23, 42, 0.98));
  font-size: 11px;
}

/* responsive */
@media (max-width: 900px) {
  .join-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .coin-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  #coin-canvas {
    height: 200px;
  }
}

/* === JOIN LAYOUT + COIN === */

.stage-view[data-screen="join"] {
  margin-top: 6px;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 12px;
}

.join-side-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-form-title {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Google signup button */
.btn-google {
  width: 100%;
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  font-size: 12px;
}

.btn-google-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-google-icon svg {
  width: 14px;
  height: 14px;
  fill: #0f172a;
}

.btn-google-label {
  color: var(--plism-text-main);
}

/* separator */
.join-separator {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0;
  font-size: 11px;
  color: var(--plism-text-muted);
}

.join-separator span {
  flex: 1;
  height: 1px;
  background: rgba(148, 163, 184, 0.4);
}

/* inline rows */
.form-row-inline {
  display: flex;
  gap: 8px;
}

.form-row-inline > * {
  flex: 1;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--plism-text-soft);
}

.checkbox-row input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* form actions */
.form-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-hint {
  font-size: 11px;
  color: var(--plism-text-muted);
}

/* Coin placeholder */
.coin-placeholder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coin-preview-shell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coin-preview-frame {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  background:
    radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.36), transparent 70%),
    rgba(2, 6, 23, 0.9);
  box-shadow:
    0 0 26px rgba(56, 189, 248, 0.7),
    0 0 60px rgba(15, 23, 42, 0.95);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-preview-fallback {
  text-align: center;
  font-size: 11px;
  color: var(--plism-text-soft);
  opacity: 0.7;
}

.coin-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.coin-hash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.coin-hash-label {
  color: var(--plism-text-muted);
}

.coin-hash-value {
  font-family: var(--font-heading);
  font-size: 11px;
}

/* === COIN GENERATOR === */

.join-coin-generator {
  margin-top: 12px;
  border-radius: 16px;
  padding: 10px 10px 9px;
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.86), transparent 70%),
    rgba(2, 6, 23, 0.82);
  border: 1px solid rgba(30, 64, 175, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.96);
  display: none; /* hidden until ID is generated */
}

.join-coin-generator.is-visible {
  display: block;
}

.coin-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1.4fr) auto;
  gap: 8px;
  align-items: stretch;
}

.coin-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--plism-text-soft);
}

.coin-rail-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--plism-text-muted);
}

.coin-control-group {
  display: grid;
  gap: 3px;
}

.coin-control-group label {
  font-size: 11px;
}

.coin-stage {
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.85);
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.7), transparent 80%),
    rgba(2, 6, 23, 0.6);
  overflow: hidden;
  position: relative;
}

#coin-canvas {
  width: 100%;
  height: 220px;
  display: block;
}

.coin-chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  font-size: 10px;
}

.coin-chip.is-active {
  border-color: rgba(56, 189, 248, 0.95);
}

/* footer */
.coin-footer {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.coin-presets {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.coin-presets-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--plism-text-muted);
}

.coin-preset-chip {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.96);
  font-size: 10px;
}

.coin-export-btn {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.32), rgba(15, 23, 42, 0.98));
  font-size: 11px;
}

/* responsive */
@media (max-width: 900px) {
  .join-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .coin-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  #coin-canvas {
    height: 200px;
  }
}
/* ===========================
   Plixel Hunt – Gallery sub-screen
   =========================== */

/* All screens hidden by default, router toggles .is-active */
.stage-view {
  display: none;
}

.stage-view.is-active {
  display: block;
}

/* Gallery Hub & Plixel Hunt behave as flex layouts ONLY when active */
.stage-view[data-screen="gallery"].is-active,
.stage-view[data-screen="gallery-plixel"].is-active {
  display: flex;
  flex-direction: column;
}

/* Header spacing inside Plixel view */
.stage-view[data-screen="gallery-plixel"].is-active .stage-header {
  margin-bottom: 12px;
}

/* Back pill */
.pill-back {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), transparent 60%),
    rgba(15, 23, 42, 0.9);
  padding: 4px 10px;
  font-size: 11px;
  color: #e5e7eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pill-back:hover {
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.65),
    0 0 18px rgba(56, 189, 248, 0.45);
}

/* Plixel layout shell fills the remaining stage height */
.plixel-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

/* Top HUD row */

.plixel-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.7)
  );
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.plixel-pill {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.plixel-status {
  font-size: 11px;
  color: #64748b;
}

.plixel-flex-spacer {
  flex: 1;
}

.plixel-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.95);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #e5e7eb;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.plixel-btn:hover {
  background: rgba(30, 64, 175, 0.95);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.5),
    0 0 18px rgba(56, 189, 248, 0.4);
}

/* Main stage */

.plixel-stage {
  position: relative;
  flex: 1;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background:
    radial-gradient(
      1200px 600px at 50% 0%,
      rgba(56, 189, 248, 0.09),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 100%,
      rgba(129, 140, 248, 0.06),
      transparent 60%
    ),
    #020617;
}

#plixel-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Help card */

.plixel-help {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(420px, 46vw);
  background: rgba(15, 23, 42, 0.9);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 10px 12px;
  font-size: 12px;
  color: #e5e7eb;
  backdrop-filter: blur(10px);
  z-index: 4;
}

/* Loading overlay */

.plixel-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 80vw);
  background: rgba(15, 23, 42, 0.98);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
  z-index: 10;
}

.plixel-loading-bar {
  width: 100%;
  height: 10px;
  background: #020617;
  border-radius: 999px;
  overflow: hidden;
}

.plixel-loading-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
}

/* Toast */

.plixel-toast {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.7);
  color: #e0f2fe;
  display: none;
  z-index: 6;
}

/* Modal */

#plixel-reward-dialog {
  border: none;
  border-radius: 18px;
  background: #020617;
  color: #e5e7eb;
  width: min(520px, 90vw);
}

.plixel-modal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.6);
}

.plixel-modal-body {
  padding: 12px 14px 16px;
}

#plixel-reward-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(30, 64, 175, 0.6);
}

/* Mobile – keep canvas dominant */
@media (max-width: 820px) {
  .plixel-help {
    display: none;
  }
}
/* ===== Gallery Hub & sub-screens fill the stage ONLY when active ===== */

/* Base: only active gallery-related screens are flex containers */
.stage-view[data-screen="gallery"].is-active,
.stage-view[data-screen="gallery-plixel"].is-active,
.stage-view[data-screen="gallery-signatures"].is-active,
.stage-view[data-screen="gallery-own"].is-active,
.stage-view[data-screen="gallery-showcase"].is-active {
  display: flex;
  flex-direction: column;
}

/* Keep a bit of breathing room under the Gallery Hub header */
.stage-view[data-screen="gallery"].is-active .stage-header {
  margin-bottom: 14px;
}

/* Gallery Hub 2×2 cards auto-fill the stage */
.gallery-hub-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  align-items: stretch;
  align-content: stretch;
  min-height: 400px;
}

/* Each card stretches to fill its grid cell */
.gallery-hub-card {
  display: flex;
  height: 100%;
}

.gallery-hub-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

/* Responsive: stack cards on narrow screens */
@media (max-width: 900px) {
  .gallery-hub-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
}
/* ==========================================
   Plism Signatures – HD Mosaic Gallery
   ========================================== */

.stage-view[data-screen="gallery-signatures"] {
  display: none;
}

.stage-view[data-screen="gallery-signatures"].is-active {
  display: flex;
  flex-direction: column;
}

.stage-view[data-screen="gallery-signatures"] .stage-header {
  margin-bottom: 12px;
}

.signatures-shell {
  flex: 1;
  display: flex;
  overflow-y: auto;
  padding: 6px;
}

.signatures-mosaic {
  width: 100%;
  columns: 4;
  column-gap: 0;
}

@media (max-width: 1280px) {
  .signatures-mosaic {
    columns: 3;
  }
}
@media (max-width: 900px) {
  .signatures-mosaic {
    columns: 2;
  }
}
@media (max-width: 600px) {
  .signatures-mosaic {
    columns: 1;
  }
}

.signature-item {
  break-inside: avoid;
  margin-bottom: 0;
  position: relative;
}

.signature-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #0f172a;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.signature-item img:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 10px rgba(56, 189, 248, 0.3),
    0 0 30px rgba(56, 189, 248, 0.2);
}
/* ================= MVP SCREEN ================= */
/* ============ MVP – SCROLL SECTION ============ */

.mvp-stage.scroll-stage {
  padding-bottom: 40px;
}

/* HERO */

.mvp-hero {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.55);
}

.mvp-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 65%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.mvp-hero-title {
  margin-top: 14px;
  font-size: 26px;
  line-height: 1.25;
}

@media (min-width: 960px) {
  .mvp-hero-title {
    font-size: 30px;
  }
}

.mvp-hero-subtitle {
  max-width: 720px;
  margin-top: 8px;
  font-size: 14px;
  color: #9ca3af;
}

.stage-header-meta.mvp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mvp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  background:
    linear-gradient(125deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.6)),
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.25), transparent 60%);
  font-size: 12px;
  color: #e5e7eb;
}

.mvp-dot,
.mvp-dot-alt {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.9);
}

.mvp-dot {
  background: radial-gradient(circle, #22d3ee, #0ea5e9);
}

.mvp-dot-alt {
  background: radial-gradient(circle, #a855f7, #6366f1);
}

/* SECTION SUBTITLES */

.stage-section-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #9ca3af;
}

/* PRODUCT LIST – big scrollable cards */

.mvp-products {
  margin-top: 28px;
}

.mvp-product-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}

@media (min-width: 960px) {
  .mvp-product-list {
    gap: 20px;
  }
}

.mvp-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr);
  gap: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.35), transparent 62%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(30, 64, 175, 0.8);
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 1);
}

@media (max-width: 799px) {
  .mvp-product-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mvp-product-media {
  position: relative;
}

.mvp-media-thumb {
  position: relative;
  width: 100%;
  padding-top: 60%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), transparent 55%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
}

.mvp-media-studio {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.22), transparent 60%),
    #020617;
}

.mvp-media-plixel {
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.25), transparent 60%),
    #020617;
}

.mvp-media-web3 {
  background:
    radial-gradient(circle at top left, rgba(147, 51, 234, 0.22), transparent 58%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.2), transparent 60%),
    #020617;
}

.mvp-media-pill {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  color: #e5e7eb;
}

.mvp-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.8);
  background: radial-gradient(circle, #0ea5e9, #1e3a8a);
}

.mvp-icon-glyph {
  font-size: 11px;
  font-weight: 600;
  color: #f9fafb;
}

/* Product text */

.mvp-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.mvp-product-title {
  font-size: 17px;
  color: #e5e7eb;
}

.mvp-product-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #a5b4fc;
}

.mvp-product-text {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5f5;
}

.mvp-product-points {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  font-size: 12px;
  color: #e5e7eb;
}

.mvp-product-points li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

.mvp-product-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22d3ee;
}

/* TIMELINE – HORIZONTAL SCROLLER WITH CALENDAR CARDS */

.mvp-timeline-section {
  margin-top: 28px;
}

.mvp-timeline-scroller {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.mvp-timeline-scroller::-webkit-scrollbar {
  height: 6px;
}

.mvp-timeline-scroller::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 1);
}

.mvp-timeline-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  border-radius: 999px;
}

.mvp-calendar-card {
  min-width: min(320px, 90vw);
  scroll-snap-align: start;
  border-radius: 22px;
  border: 1px solid rgba(30, 64, 175, 0.9);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.22), transparent 60%),
    rgba(15, 23, 42, 0.96);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  padding: 14px 14px 16px;
}

.mvp-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mvp-calendar-phase {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mvp-phase-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.9);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #bfdbfe;
}

.mvp-phase-label {
  font-size: 12px;
  color: #e5e7eb;
}

.mvp-calendar-dates {
  font-size: 11px;
  color: #9ca3af;
}

.mvp-calendar-grid {
  display: inline-flex;
  gap: 8px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  margin-bottom: 8px;
}

.mvp-calendar-month {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  color: #9ca3af;
}

.mvp-calendar-month.is-active {
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  color: #0b1120;
  font-weight: 600;
}

.mvp-calendar-points {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 12px;
  color: #e5e7eb;
}

.mvp-calendar-points li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

.mvp-calendar-points li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: #6ee7b7;
}

/* BOTTOM PANELS */

.mvp-bottom {
  margin-top: 30px;
}

.mvp-bottom-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 960px) {
  .mvp-bottom-grid {
    grid-template-columns: 1.15fr 1fr;
  }
}

.mvp-panel {
  border-radius: 24px;
  padding: 16px 16px 18px;
}

.mvp-panel-team {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 235, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.25), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(30, 64, 175, 0.9);
}

.mvp-panel-capital {
  background:
    radial-gradient(circle at top left, rgba(244, 114, 182, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.32), transparent 60%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(76, 29, 149, 0.9);
}

.mvp-panel-title {
  font-size: 16px;
  color: #e5e7eb;
}

.mvp-panel-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #9ca3af;
}

.mvp-panel-columns {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

@media (min-width: 720px) {
  .mvp-panel-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mvp-column-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 4px;
}

.mvp-plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #e5e7eb;
}

.mvp-plain-list li {
  margin-bottom: 4px;
}

.mvp-capital-list {
  margin-top: 10px;
  font-size: 12px;
}

/* Quotes */

.mvp-quotes {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mvp-quote {
  position: relative;
  padding: 10px 12px 10px 16px;
  border-left: 2px solid rgba(56, 189, 248, 0.85);
  font-size: 12px;
  line-height: 1.6;
  color: #e5e7eb;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
}

.mvp-quote-author {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}

/* ===============================
   OWN THE ARTIST — Gallery Subscreen
   =============================== */

.stage-view[data-screen="gallery-own"] {
  display: none;
}
.stage-view[data-screen="gallery-own"].is-active {
  display: flex;
  flex-direction: column;
}

.own-shell {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}

.own-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  padding: 6px;
}

/* Cards */
.artist-card-body {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15,23,42,0.85);
  box-shadow:
    0 0 0 1px rgba(56,189,248,0.3),
    0 12px 32px rgba(0,0,0,0.6);
}

.artist-card-body img {
  width: 100%;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}

/* Hover overlay */
.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.85) 100%
  );
  opacity: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity .3s ease;
}

.artist-card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.artist-card:hover .artist-overlay {
  opacity: 1;
}

.artist-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.artist-bio {
  font-size: 12px;
  color: #9ca3af;
}
/* ===================== FULL SCREEN LAUNCH TIMER ===================== */

.launch-fullscreen {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  border-radius: 32px;

  background:
    radial-gradient(circle at 20% 20%, rgba(56,189,248,0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(147,51,234,0.25), transparent 65%),
    linear-gradient(135deg, #020617 0%, #0b1120 100%);

  box-shadow:
    inset 0 0 120px rgba(0,0,0,0.4),
    0 30px 80px rgba(0,0,0,0.6);
}

.launch-timer-wrapper {
  text-align: center;
  color: #e5e7eb;
  animation: fadeIn 1.2s ease forwards;
}

.launch-kicker {
  letter-spacing: 0.28em;
  font-size: 12px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
  opacity: 0.8;
}

.launch-title {
  font-size: 42px;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #38bdf8, #a855f7, #fb923c);
    color: transparent;
}

.launch-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 32px;
  color: #cbd5f5;
}
/* ===================== INSIGHTS LAUNCH HERO ===================== */

.insights-launch-hero {
  padding-top: 18px;
  padding-bottom: 10px;
}

.launch-hero-shell {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 300px); /* fills the visible stage */
  border-radius: 32px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, #020617 0%, #020617 40%, #0b1120 100%);
  box-shadow:
    inset 0 0 120px rgba(0, 0, 0, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.7);
}

.launch-hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 30%, rgba(56, 189, 248, 0.28), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.35), transparent 65%),
    radial-gradient(circle at 50% 110%, rgba(236, 72, 153, 0.2), transparent 70%);
}

.launch-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 32px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e5e7eb;
}

@media (min-width: 900px) {
  .launch-hero-inner {
    padding: 40px 48px 40px;
  }
}

.launch-kicker {
  letter-spacing: 0.28em;
  font-size: 12px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 14px;
  opacity: 0.9;
}

.launch-title {
  font-size: 38px;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #38bdf8, #a855f7, #fb923c);
    color: transparent;
}

@media (min-width: 900px) {
  .launch-title {
    font-size: 46px;
  }
}

.launch-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  color: #cbd5f5;
}

.launch-timer-big {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.1), transparent 70%),
    rgba(15, 23, 42, 0.7);
  box-shadow:
    0 0 40px rgba(56, 189, 248, 0.5),
    0 0 90px rgba(168, 85, 247, 0.35);
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .launch-timer-big {
    gap: 10px;
    padding: 16px 18px;
  }
}

.launch-block {
  text-align: center;
  min-width: 74px;
}

.launch-block-ms {
  min-width: 60px;
}

.launch-value {
  font-size: 40px;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  color: #f9fafb;
  text-shadow:
    0 0 16px rgba(56, 189, 248, 0.95),
    0 0 30px rgba(168, 85, 247, 0.7);
}

@media (min-width: 900px) {
  .launch-value {
    font-size: 52px;
  }
}

.launch-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-top: 6px;
}

.launch-sep {
  font-size: 32px;
  color: #64748b;
  margin: 0 4px;
}

.launch-footer {
  margin-top: 26px;
  font-size: 14px;
  color: #94a3b8;
}

.launch-timer-big {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 24px 36px;
  border-radius: 30px;
  border: 1px solid rgba(148,163,184,0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(56,189,248,0.08), transparent 60%),
    rgba(15,23,42,0.45);
  box-shadow:
    0 0 40px rgba(56,189,248,0.25),
    0 0 90px rgba(168,85,247,0.15);
  backdrop-filter: blur(8px);
}

.launch-block {
  text-align: center;
  min-width: 80px;
}

.launch-block-ms {
  min-width: 60px;
}

.launch-value {
  font-size: 56px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: #f9fafb;
  text-shadow:
    0 0 12px rgba(56,189,248,0.8),
    0 0 24px rgba(168,85,247,0.6);
}

.launch-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-top: 6px;
}

.launch-sep {
  font-size: 42px;
  color: #64748b;
  margin: 0 6px;
}

.launch-footer {
  margin-top: 28px;
  font-size: 14px;
  color: #94a3b8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Coin row: single full-width card below hero */

.insights-coin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
/* ============================================
   INSIGHTS – Vertical Stack + Section Dividers
   ============================================ */

.stage-view[data-screen="insights"] .stage-section {
  padding: 18px 12px;
  margin: 0;
  display: block;
  font-size: 12px;
}

/* Add stylish neon dividers between all sections */
.stage-view[data-screen="insights"] .stage-section + .stage-section {
  border-top: 1px solid rgba(56, 189, 248, 0.25);
  padding-top: 22px;
  margin-top: 22px;
}


/* Cards: stacked full-width */
.stage-view[data-screen="insights"] .stage-card {
  width: 100%;
  margin: 0 auto 22px auto;
  padding: 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Remove side-by-side grids — enforce vertical stacking */
.stage-view[data-screen="insights"] .insights-row,
.stage-view[data-screen="insights"] .stage-grid {
  display: block !important;
  width: 100%;
}

/* Space between vertically stacked cards */
.stage-view[data-screen="insights"] .insights-row .stage-card + .stage-card {
  margin-top: 22px;
}

/* Hero adjustments */
.insights-hero {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
  margin-bottom: 16px;
}

.insights-title {
  margin-top: 6px;
  font-size: 16px !important;
}

/* Icon bar spacing */
.insights-icon-bar {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  opacity: 0.65;
}

/* Timer full-width spacing */
.insights-launch-hero {
  margin-bottom: 10px;
}
