.placeholder-hero {
  display: grid;
  width: min(var(--max), calc(100% - 2.5rem));
  min-height: 430px;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: 4rem 0;
}

.placeholder-copy {
  display: grid;
  max-width: 760px;
  gap: 1rem;
}

.placeholder-copy h1 {
  background: linear-gradient(90deg, #ffffff, #18e7ff 72%, #075dff);
  background-clip: text;
  color: transparent;
  font-size: clamp(2.6rem, 4.6rem, 4.6rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.placeholder-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.module-status {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  border: 1px solid rgba(24, 231, 255, 0.28);
  border-radius: var(--radius);
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(24, 231, 255, 0.18), rgba(7, 93, 255, 0.25)),
    rgba(3, 10, 24, 0.92);
  box-shadow: var(--shadow), inset 0 0 28px rgba(24, 231, 255, 0.08);
}

.module-status span {
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.module-status strong {
  color: #ffffff;
  font-size: 1.45rem;
  overflow-wrap: anywhere;
}

.module-status small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.module-plan {
  display: grid;
  width: min(var(--max), calc(100% - 2.5rem));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
  padding: 0 0 4rem;
}

.module-plan article {
  display: grid;
  min-height: 190px;
  align-content: start;
  gap: 0.75rem;
  border: 1px solid rgba(24, 231, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(7, 24, 51, 0.88), rgba(3, 10, 24, 0.84));
  box-shadow: inset 0 0 22px rgba(24, 231, 255, 0.035);
}

.module-plan span {
  color: var(--teal);
  font-weight: 950;
}

.module-plan h2 {
  color: #ffffff;
  font-size: 1.2rem;
}

.module-plan p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 820px) {
  .placeholder-hero,
  .module-plan {
    grid-template-columns: 1fr;
  }

  .placeholder-copy h1 {
    font-size: clamp(2.6rem, 3.25rem, 3.25rem);
  }
}
