:root {
  color-scheme: light;
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  background: #0d1514;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 16, 0.78), rgba(7, 15, 16, 0.2) 52%, rgba(7, 15, 16, 0.08)),
    linear-gradient(0deg, rgba(7, 15, 16, 0.74), rgba(7, 15, 16, 0.02) 45%);
  z-index: -1;
}

.hero__content {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 12vh;
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd48a;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1.02;
  font-weight: 800;
}

.hero__copy {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 720px) {
  .hero__content {
    width: min(100% - 32px, 560px);
    padding-bottom: 10vh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 15, 16, 0.84), rgba(7, 15, 16, 0.14) 72%),
      linear-gradient(90deg, rgba(7, 15, 16, 0.58), rgba(7, 15, 16, 0.16));
  }
}
