:root {
  color-scheme: light dark;
  --text-primary: #f8f8f8;
  --text-secondary: rgba(248, 248, 248, 0.8);
  --link-color: #ffffff;
  --overlay: rgba(0, 0, 0, 0.35);
  --shadow: rgba(0, 0, 0, 0.45);
  --btn-x: 51.7;
  --btn-y: 64.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: #0b0b0b;
}

.hero__play-wrap {
  position: absolute;
  left: calc(var(--btn-x) * 1%);
  top: calc(var(--btn-y) * 1%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.audio-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.audio-toggle::after,
.audio-toggle::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #ffffff;
}

.audio-toggle.is-playing::after,
.audio-toggle.is-playing::before {
  border: none;
  width: 4px;
  height: 16px;
  background: #ffffff;
}

.audio-toggle.is-playing::after {
  left: 8px;
}

.audio-toggle.is-playing::before {
  left: 16px;
}

.audio-toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.hero__content {
  text-align: left;
  position: absolute;
  left: clamp(28px, 7vw, 110px);
  top: 42%;
  transform: translateY(calc(-50% - 75px));
  z-index: 2;
}

.hero__title {
  margin: 0 0 75px;
  font-size: clamp(3rem, 4.32vw + 1.2rem, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 0 0 12px;
  font-size: clamp(1.26rem, 1.44vw + 0.72rem, 1.86rem);
  color: #ffffff;
  font-weight: 400;
}

.hero__meta {
  margin-top: 120px;
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.94rem;
  justify-content: flex-start;
}

.hero__links a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 150ms ease;
}

.hero__links a:hover,
.hero__links a:focus-visible {
  opacity: 0.75;
}

.hero__divider {
  color: #ffffff;
}

@media (max-width: 480px) {
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .hero {
    position: relative;
  }

  .hero__content {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    padding: 90px 16px 24px;
  }

  .audio-toggle {
    width: 24px;
    height: 24px;
  }
}
