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

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

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

@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/coming-soon/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;
  }
}

.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%);
  z-index: 10;
  width: min(680px, calc(100vw - 32px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(47, 43, 39, 0.1);
  background: #fffdfa;
  box-shadow: 0 18px 40px rgba(47, 43, 39, 0.14);
  font-family: "Inter", system-ui, sans-serif;
}

.consent-copy {
  margin: 0;
  flex: 1 1 320px;
  font-size: 14px;
  line-height: 1.5;
  color: #2f2b27;
}

.consent-policy-link {
  color: #db610e;
  text-decoration: underline;
}

.consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid rgba(47, 43, 39, 0.16);
  background: transparent;
  color: #2f2b27;
  cursor: pointer;
}

.consent-btn:hover {
  background: rgba(47, 43, 39, 0.05);
}

.consent-btn-primary {
  border-color: #db610e;
  background: #db610e;
  color: #fffdfa;
}

.consent-btn-primary:hover {
  background: #c25609;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #a89f95;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.footer-link:hover {
  color: #7a726a;
}

.footer-sep {
  color: #a89f95;
  padding: 0 8px;
}

@media (max-width: 520px) {
  .consent-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-buttons {
    justify-content: flex-end;
  }
}

.policy-body {
  background: #faf7f2;
  font-family: "Inter", system-ui, sans-serif;
  color: #2f2b27;
}

.policy {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 120px;
}

.policy-back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #db610e;
  text-decoration: none;
}

.policy-back:hover {
  text-decoration: underline;
}

.policy-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.policy-subtitle {
  margin: 40px 0 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.policy-updated {
  margin: 0 0 28px;
  font-size: 14px;
  color: #a89f95;
}

.policy-text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
  color: #5c554e;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fffdfa;
  border: 1px solid rgba(47, 43, 39, 0.1);
  border-radius: 12px;
}

.policy-table th,
.policy-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(47, 43, 39, 0.08);
  vertical-align: top;
}

.policy-table th {
  font-weight: 600;
  color: #2f2b27;
}

.policy-table td {
  color: #5c554e;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid #db610e;
  background: #db610e;
  color: #fffdfa;
  cursor: pointer;
}

.policy-button:hover {
  background: #c25609;
}
