@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("fonts/NotionInter-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("fonts/NotionInter-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("fonts/NotionInter-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("fonts/NotionInter-700.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #faf7f2;
}

.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(120% 100% at 70% 15%, #fffdfa 0%, #faf7f2 45%, #f3ede4 100%);
  font-family: "Inter", system-ui, sans-serif;
}

.streaks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 34px;
}

.mark {
  width: min(30vw, 210px);
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(219, 97, 14, 0.18));
  opacity: 0;
  animation: floatMark 6s ease-in-out infinite, fadeUp 0.9s ease-out 0.05s forwards;
}

.wordmark-wrap {
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.3s forwards;
}

.wordmark {
  font-size: clamp(38px, 8vw, 92px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #2f2b27;
}

.wordmark-accent {
  color: #db610e;
}

.message {
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.55s forwards;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(219, 97, 14, 0.09);
  border: 1px solid rgba(219, 97, 14, 0.2);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #db610e;
  display: inline-block;
  animation: blink 1.6s ease-in-out infinite;
}

.pill-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #db610e;
}

.headline {
  margin: 0;
  font-size: clamp(22px, 4.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2f2b27;
  line-height: 1.15;
  text-wrap: pretty;
}

.subline {
  margin: 0;
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 400;
  color: #7a726a;
  line-height: 1.5;
  text-wrap: pretty;
}

.footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s ease-out 0.8s forwards;
}

.footer-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #a89f95;
}

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

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

@keyframes blink {
  0%,
  60% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mark {
    animation: fadeUp 0.5s ease-out forwards;
  }

  .wordmark-wrap,
  .message,
  .footer {
    animation: fadeUp 0.5s ease-out forwards;
  }

  .pill-dot {
    animation: none;
  }
}
