*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-text-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

#app {
  min-height: 100vh;
}

.page-shell {
  /* padding-top: var(--header-height); */
}

.page-banner {
  position: relative;
  min-height: 390px;
  /* background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    center/cover no-repeat; */
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner__title {
  color: var(--color-text-white);
  font-size: 50px;
  font-weight: 700;
}

.page-section {
  padding: var(--spacing-4xl) 0;
}

.surface-card {
  border: 1px solid var(--color-border);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
}

.section-heading {
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
}

.section-copy {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .page-banner,
  .page-banner__inner {
    min-height: 260px;
  }

  .page-section {
    padding: 56px 0;
  }
}
