.front-placeholder {
  margin: 6rem auto 4rem;
  padding: clamp(2.75rem, 6vw, 3.75rem) clamp(1.75rem, 6vw, 3.5rem);
  max-width: 720px;
  width: min(100%, 720px);
  background: linear-gradient(140deg, rgba(16, 17, 17, 0.96) 0%, rgba(0, 0, 0, 0.72) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 68px rgba(8, 13, 23, 0.55);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.front-placeholder__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.front-placeholder__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.front-placeholder__title {
  font-family:
    "Permanent Marker",
    "Archivo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.front-placeholder__tagline {
  font-size: clamp(1.2rem, 3vw, 1.35rem);
  color: var(--accent);
  font-weight: 600;
  margin: 0;
  max-width: 40ch;
}

.front-placeholder__lede {
  margin: 0;
  color: var(--text-secondary);
  max-width: 52ch;
}

.front-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.front-placeholder__action {
  min-width: 150px;
  text-align: center;
}

.front-placeholder__footnote {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 58ch;
}

.front-placeholder__link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.front-placeholder__link:hover,
.front-placeholder__link:focus-visible {
  color: var(--accent-hover);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 640px) {
  .front-placeholder {
    margin: 4.5rem auto 3rem;
    padding: 2.5rem 1.75rem;
  }

  .front-placeholder__brand {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .front-placeholder {
    margin: 3.5rem auto 2.5rem;
    padding: 2.25rem 1.25rem;
    gap: 1.5rem;
  }

  .front-placeholder__brand {
    width: 108px;
    height: 108px;
    padding: 1rem;
  }

  .front-placeholder__actions {
    width: 100%;
    gap: 0.75rem;
  }

  .front-placeholder__action {
    flex: 1 1 100%;
  }
}
