.nova-landscape-guard {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 28px;
  overflow: hidden;
  color: #f7ead0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(127, 35, 55, .34), transparent 42%),
    linear-gradient(145deg, #170b0e 0%, #080607 72%);
}

html.nova-needs-landscape,
html.nova-needs-landscape body {
  overflow: hidden !important;
  overscroll-behavior: none;
}

html.nova-needs-landscape .nova-landscape-guard {
  display: flex;
}

.nova-landscape-card {
  width: min(86vw, 420px);
}

.nova-landscape-phone {
  position: relative;
  width: 86px;
  height: 52px;
  margin: 0 auto 28px;
  border: 2px solid #d8ad52;
  border-radius: 13px;
  box-shadow: 0 0 28px rgba(216, 173, 82, .18), inset 0 0 0 1px rgba(255, 241, 174, .12);
  animation: nova-landscape-turn 1.8s ease-in-out infinite;
}

.nova-landscape-phone::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: #f2d780;
}

.nova-landscape-kicker {
  margin-bottom: 12px;
  color: #cfa851;
  font: 600 11px/1.2 Arial, sans-serif;
  letter-spacing: 5px;
}

.nova-landscape-title {
  margin: 0;
  color: #fff4dc;
  font: 600 clamp(22px, 6vw, 34px)/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: 2px;
}

.nova-landscape-copy {
  margin: 15px 0 0;
  color: rgba(242, 231, 212, .72);
  font: 400 14px/1.6 Arial, sans-serif;
  letter-spacing: .3px;
}

.nova-landscape-line {
  width: 92px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, #d8ad52, transparent);
}

@keyframes nova-landscape-turn {
  0%, 20% { transform: rotate(90deg) scale(.88); opacity: .65; }
  55%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nova-landscape-phone { animation: none; }
}
