.root-garden-boot-fallback {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  overflow: auto;
  color: #f8f4e9;
  background:
    radial-gradient(circle at 18% 16%, rgba(231, 181, 64, 0.2), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(103, 179, 130, 0.2), transparent 32%),
    linear-gradient(150deg, #082f25, #164f36 58%, #0b3a2e);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.root-garden-boot-fallback[hidden] {
  display: none;
}

.root-garden-boot-fallback::before,
.root-garden-boot-fallback::after {
  content: "";
  position: fixed;
  width: min(54vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(241, 202, 104, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.root-garden-boot-fallback::before {
  top: -28vw;
  left: -22vw;
}

.root-garden-boot-fallback::after {
  right: -24vw;
  bottom: -30vw;
}

.root-garden-boot-fallback__card {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(28px, 7vw, 48px);
  border: 1px solid rgba(245, 224, 166, 0.32);
  border-radius: 30px;
  background: rgba(5, 42, 32, 0.88);
  box-shadow: 0 28px 90px rgba(0, 17, 12, 0.48);
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.root-garden-boot-fallback__mark {
  display: grid;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  place-items: center;
  border: 1px solid rgba(250, 224, 153, 0.58);
  border-radius: 50%;
  color: #082f25;
  background: linear-gradient(145deg, #fff9e7, #e9bd4d);
  box-shadow: 0 0 0 10px rgba(239, 196, 82, 0.08), 0 16px 34px rgba(0, 17, 12, 0.28);
  font-size: 38px;
}

.root-garden-boot-fallback__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #f2ca69;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.root-garden-boot-fallback h1 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 500;
  line-height: 1.02;
}

.root-garden-boot-fallback p {
  margin: 18px auto 0;
  max-width: 42ch;
  color: #d9e7df;
  font-size: 16px;
  line-height: 1.55;
}

.root-garden-boot-fallback__status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #d7eadf;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 750;
}

.root-garden-boot-fallback__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2ca69;
  box-shadow: 0 0 0 5px rgba(242, 202, 105, 0.12);
}

.root-garden-boot-fallback__actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.root-garden-boot-fallback__actions button,
.root-garden-boot-fallback__actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 226, 171, 0.24);
  border-radius: 999px;
  color: #f7f2e7;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.root-garden-boot-fallback__actions button {
  border-color: #efc45e;
  color: #082f25;
  background: linear-gradient(135deg, #fff4ce, #eab33e);
  box-shadow: 0 12px 30px rgba(0, 17, 12, 0.26);
}

.root-garden-boot-fallback__actions button:focus-visible,
.root-garden-boot-fallback__actions a:focus-visible {
  outline: 3px solid #fff8dd;
  outline-offset: 3px;
}

@media (min-width: 520px) {
  .root-garden-boot-fallback__actions {
    grid-template-columns: 1.25fr 1fr;
  }

  .root-garden-boot-fallback__actions a:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .root-garden-boot-fallback:not([hidden]) .root-garden-boot-fallback__card {
    animation: root-garden-fallback-arrive 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  @keyframes root-garden-fallback-arrive {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
}
