/* Case section */
.case {
  background: var(--card);
  box-shadow: 0 2px 0 var(--ring), 0 18px 40px rgba(2, 6, 23, 0.05);
  overflow: hidden;
}
.case-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* left art bigger */
  gap: 24px;
}
@media (max-width: 980px) {
  .case-inner {
    grid-template-columns: 1fr;
  }
}

/* Left gallery */
.stage {
  position: relative;
  background: linear-gradient(#fff, #fafafa);
  padding: 40px 28px 64px;
  overflow: hidden;
  border-radius: 6px;
  height: 80rem;
}

.stage img {
    width: 100%;
}

/* Right content */
.pane {
  padding: 40px 36px 46px;
}

.pane p {
  color: gray;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}
h2 {
  color: black;
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 28px);
}
p {
  margin: 0 0 14px;
  color: #1f2937;
}
a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Checklist */
.group-title {
  margin: 22px 0 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: white;
}
.checklist {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0));
}
.icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  background: rgba(106, 106, 232, 0.12);
  box-shadow: inset 0 0 0 1px rgba(106, 106, 232, 0.25);
}
.icon svg {
  width: 13px;
  height: 13px;
  fill: var(--check);
}
.item a {
  font-weight: 600;
}
.fine {
  color: var(--muted);
  font-size: 0.92rem;
}

/* subtle page footer spacing */
footer {
  height: 24px;
}


 /* Responsiveness */
  @media (max-width: 520px){
.stage {
  height: 35rem;
}
  }