/* ── Home / Start Screen (§5) ── */
.start-screen {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 28px 32px;
}

.start-screen-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.start-screen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* System-level overlay per §1 */
.start-screen-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--overlay-system-3),
    var(--overlay-system-2),
    var(--overlay-system-1);
}

.start-screen-title-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.start-screen-title-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Home actions container ── */
.home-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Main actions: 2-column grid ── */
.home-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-main-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  cursor: pointer;
  pointer-events: auto;
  padding: 4px 0;
  transition: opacity var(--duration-fast);
}

.home-main-row:hover {
  opacity: 0.8;
}

.home-main-row:disabled,
.home-main-row[data-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}

.home-main-label {
  font-size: 17px;
  font-weight: 500;
  color: #F7F9FC;
  text-shadow: 0 1px 3px var(--black-50);
  letter-spacing: 2px;
}

.home-main-desc {
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--parchment-82);
}

/* ── Divider between main and sub ── */
.home-divider {
  width: 100%;
  height: 1px;
  background: var(--white-08);
}

/* ── Sub actions: 4-column grid ── */
.home-sub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 16px;
}

.home-sub-btn {
  font-size: 12px;
  font-family: var(--font-sans);
  color: var(--parchment-90);
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
  padding: 6px 0;
  transition: opacity var(--duration-fast);
}

.home-sub-btn:hover {
  opacity: 0.8;
}

.home-sub-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
