:root {
  color-scheme: light;
  --blue: #0957a8;
  --blue-dark: #07346b;
  --gold: #d9a243;
  --ink: #10243f;
  --paper: #fff8ec;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(8, 23, 48, .32);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background: #0b2d55;
}

.landing {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: 100svh;
  padding: clamp(18px, 3vw, 44px);
  overflow: hidden;
  isolation: isolate;
}

.backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(4, 19, 41, .78), rgba(6, 45, 94, .54) 46%, rgba(3, 17, 34, .8)),
    url("bavarian-background.png") center / cover no-repeat;
}

.backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .12));
  z-index: -1;
}

.hero {
  width: min(100%, 1050px);
  margin: auto;
  display: grid;
  gap: clamp(22px, 4vh, 38px);
  justify-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 880px);
  height: auto;
  aspect-ratio: 2048 / 768;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.copy {
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.5vh, 22px);
  padding-inline: clamp(8px, 2vw, 20px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.15rem, 5.2vw, 5rem);
  line-height: .98;
  font-weight: 850;
  letter-spacing: 0;
}

p {
  max-width: 690px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  width: min(100%, 390px);
  margin-top: clamp(4px, 1vh, 8px);
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, #1877f2, #0b5dc7);
  box-shadow: 0 18px 46px rgba(4, 23, 50, .46), inset 0 1px 0 rgba(255, 255, 255, .28);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.05) brightness(1.04);
  box-shadow: 0 24px 58px rgba(4, 23, 50, .54), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 620px) {
  .landing {
    align-items: center;
    padding: 16px;
  }

  .backdrop {
    background:
      linear-gradient(180deg, rgba(4, 20, 44, .78), rgba(6, 47, 98, .58) 44%, rgba(3, 15, 32, .86)),
      url("bavarian-background.png") center / cover no-repeat;
  }

  .hero {
    gap: 24px;
  }

  .logo {
    width: 100%;
    height: clamp(142px, 42vw, 190px);
    object-fit: cover;
    object-position: center;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.15rem);
    line-height: 1;
  }

  p {
    font-size: 1.08rem;
  }

  .button {
    min-height: 64px;
    width: 100%;
  }
}

@media (max-height: 720px) and (min-width: 621px) {
  .hero {
    gap: 18px;
  }

  .logo {
    width: min(100%, 680px);
  }

  h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  }

  p {
    font-size: 1.16rem;
  }

  .button {
    min-height: 60px;
  }
}
