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

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(247, 202, 107, 0.22), transparent 28rem),
    radial-gradient(circle at 16% 84%, rgba(47, 125, 107, 0.16), transparent 24rem),
    linear-gradient(180deg, #fbf7ef 0%, #f5fbfa 100%);
}

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
}

.coming-soon,
.launch-card {
  width: min(780px, 100%);
  display: grid;
  gap: 24px;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(47, 125, 107, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 30px 90px rgba(12, 30, 38, 0.14);
  backdrop-filter: blur(24px);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: #2f7d6b;
  color: transparent;
  font-weight: 900;
}

.brand-mark::before {
  content: "";
  width: 30px;
  height: 30px;
  background: #f7ca6b;
  -webkit-mask: url("/assets/author-mark.svg") center / contain no-repeat;
  mask: url("/assets/author-mark.svg") center / contain no-repeat;
}

.eyebrow {
  margin: 0;
  color: #2f7d6b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(50px, 10vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

p {
  max-width: 620px;
  margin: 0;
  color: #6e6e73;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.35;
  letter-spacing: 0;
}

.status-line {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(47, 125, 107, 0.16);
  border-radius: 8px;
  background: rgba(47, 125, 107, 0.08);
  color: #2f7d6b;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 900;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.status-item {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(29, 29, 31, 0.09);
  border-radius: 8px;
  background: #f5fbfa;
}

.status-item span {
  display: block;
  color: #6e6e73;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.primary {
  border: 1px solid #2f7d6b;
  background: #2f7d6b;
  color: #ffffff;
}

.secondary {
  border: 1px solid rgba(29, 29, 31, 0.13);
  background: #ffffff;
  color: #1d1d1f;
}

.fine-print {
  color: #86868b;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 680px) {
  .coming-soon,
  .launch-card {
    padding: 24px;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .actions a {
    width: 100%;
  }
}
