body.landing-page {
  background-color: #000;
  background-image: url("/static/resources/images/future_city.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

body.landing-page .content {
  min-height: calc(100vh - 132px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-hero {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 12px 72px;
}

.landing-hero-title {
  margin: 0;
  color: #ffffff;
  font-family: 'Poiret One';
  font-size: clamp(48px, 10vw, 136px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 10px 28px rgba(0, 0, 0, 0.4);
}


.landing-hero-cta {
  width: var(--ornate-btn-width, 220px);
  height: var(--ornate-btn-height, 62px);
  padding: 0 26px;
  border: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent url("/static/resources/images/button_dark_fill.xml") center / 100% 100% no-repeat;
  overflow: hidden;
  isolation: isolate;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: var(--ornate-btn-font-size, 16px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, background-image 0s linear;
}

.landing-hero-cta:hover,
.landing-hero-cta:focus-visible {
  background-image: url("/static/resources/images/button_dark_fill.xml");
  transform: none;
  filter: drop-shadow(0 0 8px rgba(252, 233, 141, 0.55)) drop-shadow(0 0 20px rgba(252, 233, 141, 0.22));
  text-shadow: 0 0 6px rgba(252, 233, 141, 0.85), 0 0 14px rgba(252, 233, 141, 0.4);
  outline: none;
}
