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

:root {
  color-scheme: light;
  --background: #f4f2ed;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #151714;
  --muted: #656862;
  --line: rgba(21, 23, 20, 0.12);
  --accent: #ff5c35;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.95), transparent 27rem),
    radial-gradient(circle at 88% 82%, rgba(255, 92, 53, 0.11), transparent 24rem),
    var(--background);
  font-family: "DM Sans", Arial, sans-serif;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

body::before {
  top: -10rem;
  right: -7rem;
}

body::after {
  bottom: -13rem;
  left: -6rem;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.construction-card {
  width: min(100%, 47rem);
  padding: clamp(2rem, 6vw, 4.75rem);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.75rem;
  box-shadow: 0 2rem 5rem rgba(40, 39, 34, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  color: #41443e;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 92, 53, 0.35);
  animation: pulse 2.2s infinite;
}

.eyebrow {
  margin: clamp(2.8rem, 8vw, 5.5rem) 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3rem, 9vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.intro {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
}

.progress {
  margin-top: clamp(3rem, 8vw, 5.5rem);
}

.progress-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-track {
  height: 0.25rem;
  overflow: hidden;
  background: rgba(21, 23, 20, 0.1);
  border-radius: 999px;
}

.progress-value {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
  transform-origin: left;
  animation: load 1.1s ease-out both;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.5rem rgba(255, 92, 53, 0);
  }
}

@keyframes load {
  from {
    transform: scaleX(0);
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 0.75rem;
  }

  .construction-card {
    padding: 1.75rem;
    border-radius: 1.25rem;
  }

  .eyebrow {
    margin-top: 3.5rem;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
