:root {
  --page-max-width: 700px;
  --nav-max-width: 980px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
}

.press-container {
  width: 100%;
  max-width: var(--page-max-width);
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 48px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px 0;
}

.subtitle {
  font-size: 21px;
  line-height: 1.38;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-hover);
}

.card-kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
}

p.card-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px 8px 10px;
  background: #f5f5f7;
  border-radius: 99px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(52, 199, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
  }
}

.status-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.action-info b {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.action-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-primary {
  background: var(--text-primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
}

footer {
  border-top: 0;
  margin-top: 0;
  padding: 24px;
  text-align: center;
  display: block;
}

.footer-links {
  margin-top: 12px;
}

.footer-links a {
  margin: 0 8px;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .card {
    padding: 32px 24px;
  }

  .action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }
}
