:root {
  --coral: #ff6b63;
  --coral-deep: #f4514b;
  --ink: #171719;
  --muted: #6f7076;
  --line: #ececef;
  --paper: #fffdfc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 32px clamp(24px, 5vw, 72px) 30px;
  isolation: isolate;
}

.site-header,
.hero,
footer {
  position: relative;
  z-index: 2;
}

.site-header {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 128px;
  height: auto;
  object-fit: contain;
}

.hero {
  align-self: center;
  width: min(780px, 100%);
  margin: 36px auto 54px;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 107, 99, 0.22);
  border-radius: 999px;
  background: rgba(255, 107, 99, 0.07);
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 99, 0.12);
  animation: pulse 2.4s ease-in-out infinite;
}

h1 {
  margin: 28px 0 22px;
  font-size: clamp(54px, 7.4vw, 104px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--coral);
}

.intro {
  max-width: 660px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.progress {
  width: min(190px, 55vw);
  height: 3px;
  margin: 38px auto 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #eeeef0;
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), #ff9b84);
  animation: breathe 2.8s ease-in-out infinite;
}

.progress-label {
  margin: 0;
  color: #a0a0a5;
  font-size: 12px;
  letter-spacing: 0.03em;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #9a9aa0;
  font-size: 12px;
}

footer p {
  margin: 0;
}

.ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  top: -240px;
  right: -170px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 107, 99, 0.13), rgba(255, 107, 99, 0));
}

.ambient-two {
  bottom: -260px;
  left: -190px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 180, 155, 0.12), rgba(255, 180, 155, 0));
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 99, 0);
  }
}

@keyframes breathe {
  50% {
    width: 78%;
  }
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 22px 20px 24px;
  }

  .brand-logo {
    width: 116px;
  }

  .hero {
    margin: 40px auto 56px;
  }

  h1 {
    margin-top: 25px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .intro {
    max-width: 510px;
  }

  footer {
    align-items: flex-end;
  }

  footer p:last-child {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot,
  .progress span {
    animation: none;
  }
}
