.home-glass {
  --home-ink: #12212f;
  --home-muted: #52616e;
  --home-blue: #1f66ff;
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 5.9rem);
  overflow: hidden;
  color: var(--home-ink);
  background: #ffffff;
}

.md-main:has(.home-glass) {
  background: #ffffff;
}

[data-md-color-scheme="slate"] .home-glass {
  --home-ink: #edf6ff;
  --home-muted: #a9b9c8;
  --home-blue: #69d2ff;
  background: #071114;
}

[data-md-color-scheme="slate"] .md-main:has(.home-glass) {
  background: #071114;
}

.md-main__inner:has(.home-glass) {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.md-main__inner:has(.home-glass) .md-content {
  width: 100%;
  max-width: none;
}

.md-main__inner:has(.home-glass) .md-content__inner {
  margin: 0;
  padding: 0;
}

.md-main__inner:has(.home-glass) .md-content__inner::before {
  display: none;
}

.md-main__inner:has(.home-glass) .md-sidebar {
  display: none;
}

.home-glass * {
  box-sizing: border-box;
}

.home-europe-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home-glass__hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: end;
  min-height: calc(100vh - 5.9rem);
  padding: clamp(1rem, 3.5vw, 3rem);
}

.liquid-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.35)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(31, 102, 255, 0.06),
    0 24px 68px rgba(35, 55, 78, 0.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
}

[data-md-color-scheme="slate"] .liquid-panel {
  border-color: rgba(180, 220, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(15, 32, 42, 0.72), rgba(11, 20, 28, 0.46)),
    rgba(8, 17, 24, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(105, 210, 255, 0.08),
    0 24px 72px rgba(0, 0, 0, 0.34);
}

.liquid-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.14) 36%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 42%);
  opacity: 0.66;
}

[data-md-color-scheme="slate"] .liquid-panel::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.14) 0%, rgba(105, 210, 255, 0.06) 38%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
  opacity: 0.78;
}

.liquid-panel > * {
  position: relative;
}

.liquid-panel--hero {
  width: min(30rem, 100%);
  padding: clamp(1rem, 2.3vw, 1.45rem);
}

.home-kicker {
  margin: 0 0 0.4rem;
  color: var(--home-blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-glass h1 {
  max-width: 25rem;
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.home-lede {
  max-width: 24rem;
  margin: 0.85rem 0 0;
  color: var(--home-muted);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.5;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.05rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.56rem 0.76rem;
  border: 1px solid rgba(18, 33, 47, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--home-ink);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

[data-md-color-scheme="slate"] .home-button {
  border-color: rgba(180, 220, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--home-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-button:hover {
  border-color: rgba(31, 102, 255, 0.48);
  color: var(--home-blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 28px rgba(31, 102, 255, 0.13);
  transform: translateY(-1px);
}

.home-button--primary,
.home-button--primary:visited {
  border-color: rgba(31, 102, 255, 0.52);
  background: rgba(31, 102, 255, 0.92);
  color: #ffffff;
}

[data-md-color-scheme="slate"] .home-button--primary {
  border-color: rgba(105, 210, 255, 0.62);
  background: rgba(31, 102, 255, 0.72);
}

.home-button--primary:hover,
.home-button--primary:focus {
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(31, 102, 255, 0.24);
}

@media screen and (max-width: 48rem) {
  .home-glass {
    min-height: calc(100vh - 4.8rem);
  }

  .home-glass__hero {
    align-items: end;
    justify-items: stretch;
    min-height: calc(100vh - 4.8rem);
    padding: 0.8rem;
  }

  .liquid-panel--hero {
    width: 100%;
  }

  .home-glass h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
}
