.album-stage {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.15fr 1fr 0.9fr;
}

.layout-card,
.profiles article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.layout-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.layout-card p:not(.eyebrow),
.profiles span {
  color: var(--muted);
}

.mosaic-preview,
.atlas-preview,
.face-preview {
  aspect-ratio: 1.25;
  background: color-mix(in oklab, var(--surface), var(--fg) 4%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.mosaic-preview {
  display: grid;
  gap: 4px;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 0.9fr;
  grid-template-rows: 1fr 0.8fr 1.2fr;
  padding: 12px;
}

.mosaic-preview span,
.face-preview span {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), transparent 60%),
    color-mix(in oklab, var(--accent), var(--surface) 58%);
}

.mosaic-preview span:nth-child(1) { grid-row: span 2; }
.mosaic-preview span:nth-child(2) { background-color: #4e7771; }
.mosaic-preview span:nth-child(3) { grid-column: span 2; background-color: #9b6f43; }
.mosaic-preview span:nth-child(4) { background-color: #3f5f73; }
.mosaic-preview span:nth-child(5) { grid-column: span 2; }
.mosaic-preview span:nth-child(8) { background-color: #6d5f85; }
.mosaic-preview span:nth-child(10) { grid-column: span 2; background-color: #4e7771; }

.atlas-preview {
  background:
    linear-gradient(22deg, transparent 48%, var(--line) 49% 51%, transparent 52%),
    linear-gradient(140deg, transparent 45%, var(--line) 46% 48%, transparent 49%),
    color-mix(in oklab, var(--surface), var(--fg) 3%);
  position: relative;
}

.atlas-preview span {
  background: color-mix(in oklab, var(--accent), var(--surface) 60%);
  border: 2px solid var(--surface);
  height: 44px;
  position: absolute;
  width: 44px;
}

.atlas-preview span:nth-child(1) { left: 18%; top: 18%; }
.atlas-preview span:nth-child(2) { right: 20%; top: 24%; }
.atlas-preview span:nth-child(3) { left: 32%; bottom: 18%; }
.atlas-preview span:nth-child(4) { right: 28%; bottom: 24%; }

.atlas-preview i {
  background: var(--accent);
  border-radius: 999px;
  height: 8px;
  position: absolute;
  width: 8px;
}

.atlas-preview i:nth-of-type(1) { left: 25%; top: 45%; }
.atlas-preview i:nth-of-type(2) { left: 58%; top: 38%; }
.atlas-preview i:nth-of-type(3) { left: 70%; top: 68%; }

.face-preview {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px;
}

.face-preview span {
  border-radius: 999px;
}

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

.profiles article {
  gap: 6px;
}

.profiles strong {
  font-family: var(--mono);
  font-size: 15px;
}

@media (max-width: 900px) {
  .album-stage,
  .profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .album-stage,
  .profiles {
    grid-template-columns: 1fr;
  }
}
