:root {
  color-scheme: light;
  --ink: #101827;
  --muted: #4b5563;
  --teal: #0db9b3;
  --panel: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
}

body::before {
  z-index: 0;
  background: url("business-people-bg.png?v=4") center / cover no-repeat;
}

body::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.48) 45%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.42));
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 4rem 4rem 0;
}

.hero {
  display: flex;
  min-height: calc(100vh - 4rem);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 62rem);
  margin: 0 auto;
  text-align: center;
}

.logo-panel {
  display: grid;
  min-height: 14rem;
  place-items: center;
  transform: translateY(-3rem);
}

.brand-logo {
  width: min(100%, 42rem);
  height: auto;
  filter: drop-shadow(0 1.25rem 2rem rgba(16, 24, 39, 0.12));
}

.hero-copy {
  max-width: 42rem;
  margin: auto auto 3.125rem;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1.5rem 4rem rgba(16, 24, 39, 0.13);
  backdrop-filter: blur(18px);
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 4.4rem;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 35rem;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .page-shell {
    padding: 2rem 2rem 0;
  }

  .hero {
    min-height: calc(100vh - 2rem);
  }

  .logo-panel {
    min-height: 12rem;
    transform: translateY(-7.5rem);
  }

  .hero-copy {
    margin-bottom: 3.125rem;
  }

  h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 680px) {
  body::before {
    background-position: 62% center;
  }

  body::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.12));
  }

  .page-shell {
    padding: 1rem 1rem 0;
  }

  .hero {
    min-height: calc(100vh - 1rem);
    padding-top: 8vh;
  }

  .logo-panel {
    min-height: 10rem;
    transform: translateY(-4.375rem);
  }

  .hero-copy {
    margin-bottom: 3.125rem;
    padding: 1.4rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .intro {
    font-size: 1rem;
  }
}
