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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(116, 179, 96, 0.3), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(241, 196, 95, 0.26), transparent 30rem),
    radial-gradient(circle at 50% 90%, rgba(218, 53, 46, 0.1), transparent 28rem),
    linear-gradient(135deg, #f8fbf5 0%, #edf5e8 100%);
}

.card {
  width: min(100%, 720px);
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid rgba(24, 48, 31, 0.12);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 100px rgba(24, 48, 31, 0.18);
  text-align: center;
  backdrop-filter: blur(18px);
}

.logo {
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto 26px;
  display: block;
  padding: clamp(12px, 2.5vw, 22px);
  border: 1px solid rgba(24, 48, 31, 0.08);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(56, 108, 69, 0.28);
}

.eyebrow {
  margin: 0 0 8px;
  color: #5d735f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 9vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.destination {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 999px;
  background: #eef5ea;
  color: #386c45;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.progress {
  height: 8px;
  margin: 30px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #dceada;
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #386c45, #74b360, #f1c45f);
  transform-origin: left;
  animation: load 500ms ease-in-out forwards;
}

.message {
  margin: 0 0 24px;
  color: #4d604f;
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #18301f;
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(24, 48, 31, 0.24);
}

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

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 540px) {
  .card {
    padding: 26px 18px;
    border-radius: 28px;
  }

  .logo {
    width: min(100%, 340px);
    margin-bottom: 22px;
    border-radius: 24px;
  }
}
