.preprod-banner {
  background: #171612;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.preprod-banner__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 0;
  text-align: center;
  flex-wrap: wrap;
}

.preprod-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff3df;
  color: #6d3a08;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.preprod-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c85c2e;
  box-shadow: 0 0 0 4px rgba(200,92,46,.18);
}

.preprod-banner__text {
  font-size: 14px;
  line-height: 1.45;
}

.preprod-banner__link {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.preprod-page {
  padding: 56px 0 80px;
  background: #f8f5ef;
}

.preprod-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.preprod-card {
  background: #fff;
  border: 1px solid var(--line, #e6dfd3);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 55px rgba(23,22,18,.06);
}

.preprod-card h1,
.preprod-card h2,
.preprod-card h3 {
  margin-top: 0;
}

.preprod-card p:last-child {
  margin-bottom: 0;
}

.preprod-kicker {
  margin: 0 0 10px;
  color: #a64c27;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.preprod-title {
  margin: 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -.045em;
}

.preprod-lead {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--muted, #6b665d);
  font-size: 18px;
  line-height: 1.65;
}

.preprod-progress__value {
  display: block;
  margin-top: 4px;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.preprod-progress__bar {
  height: 12px;
  margin: 18px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee8de;
}

.preprod-progress__fill {
  display: block;
  width: 85%;
  height: 100%;
  border-radius: inherit;
  background: #c85c2e;
}

.preprod-progress__meta {
  color: var(--muted, #6b665d);
  font-size: 14px;
  line-height: 1.55;
}

.preprod-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 34px;
}

.preprod-status {
  border-radius: 22px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line, #e6dfd3);
}

.preprod-status strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.preprod-status span {
  color: var(--muted, #6b665d);
  line-height: 1.5;
}

.preprod-status--ok { border-top: 4px solid #3a7f58; }
.preprod-status--work { border-top: 4px solid #c85c2e; }
.preprod-status--lock { border-top: 4px solid #171612; }

.preprod-section {
  margin-top: 34px;
}

.preprod-section__head {
  margin-bottom: 16px;
}

.preprod-section__head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.preprod-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preprod-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  border: 1px solid var(--line, #e6dfd3);
  border-radius: 16px;
  background: #fff;
  line-height: 1.5;
}

.preprod-list li::before {
  position: absolute;
  left: 16px;
  top: 15px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.preprod-list--done li::before {
  content: '✓';
  background: #e5f3ea;
  color: #286b45;
}

.preprod-list--todo li::before {
  content: '→';
  background: #fff1e6;
  color: #a64c27;
}

.preprod-launch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: launch;
}

.preprod-launch-step {
  counter-increment: launch;
  min-height: 170px;
  padding: 22px;
  border-radius: 22px;
  background: #171612;
  color: #fff;
}

.preprod-launch-step::before {
  content: counter(launch, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: #f2b58f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
}

.preprod-launch-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.preprod-launch-step span {
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .preprod-hero,
  .preprod-status-grid,
  .preprod-launch-steps {
    grid-template-columns: 1fr;
  }

  .preprod-page {
    padding-top: 34px;
  }
}

@media (max-width: 600px) {
  .preprod-banner__inner {
    gap: 8px 12px;
  }

  .preprod-banner__text {
    width: 100%;
    font-size: 13px;
  }

  .preprod-card {
    padding: 22px;
    border-radius: 20px;
  }
}
