:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f4ef;
  color: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
  background: linear-gradient(180deg, #fffdfa 0%, #f1ece6 100%);
}

img {
  max-width: 100%;
}

.page-header {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f8c7d6 0%, #f7d6b6 100%);
  color: #1f2937;
}

.header-content {
  max-width: 44rem;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: #6b7280;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0;
}

.subtitle {
  margin: 1.5rem auto 2rem;
  font-size: 1.125rem;
  max-width: 33rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.12);
}

.primary {
  background: #9f7aea;
  color: white;
}

.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #4b5563;
  border: 1px solid #d1d5db;
}

.button.live {
  background: #f59e0b;
  color: white;
  border-color: #fbbf24;
}

main {
  padding: 2rem 1.5rem 4rem;
  max-width: 72rem;
  margin: 0 auto;
}

.section {
  margin-bottom: 2rem;
}

.card {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.alternate {
  background: #fffaf2;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 1.5rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.timeline li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.timeline li:last-child {
  border-bottom: none;
}

.timeline strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #111827;
}

.registry-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.registry-list li {
  margin-bottom: 0.75rem;
}

.registry-list a {
  color: #7c3aed;
  text-decoration: none;
}

.form-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.15);
}

.form-feedback {
  font-size: 0.95rem;
  color: #065f46;
  min-height: 1.2rem;
}

.page-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  color: #6b7280;
}

@media (min-width: 640px) {
  .header-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
