@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5b66;
  --accent: #e0603b;
  --accent-dark: #b84a2c;
  --cloud: #f4f1ea;
  --sand: #e9dfd2;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(27, 27, 31, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Fraunces", "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7ef 0%, var(--cloud) 45%, var(--sand) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px 48px;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: var(--card);
  border-radius: 28px;
  padding: 56px 48px;
  box-shadow: var(--shadow);
  animation: float-in 0.8s ease 0.1s both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.subhead {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-row a {
  text-decoration: none;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 96, 59, 0.2);
}

.primary {
  background: var(--accent);
  color: #fff;
}

.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.secondary {
  color: var(--accent);
  background: #fff;
}

.details {
  display: grid;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  animation: float-in 0.8s ease 0.35s both;
}

.details h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.details p {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.status {
  list-style: none;
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  display: grid;
  gap: 16px;
}

.status li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
  animation: float-in 0.6s ease both;
}

.status li:nth-child(1) {
  animation-delay: 0.5s;
}

.status li:nth-child(2) {
  animation-delay: 0.6s;
}

.status li:nth-child(3) {
  animation-delay: 0.7s;
}

.status .label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.footer {
  padding: 32px 24px 48px;
  text-align: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--muted);
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 28px;
  }

  .status li {
    flex-direction: column;
    align-items: flex-start;
  }
}
