nav { font-family: monospace; font-size: 0.85em; padding: 12px 20px; }
nav a { color: inherit; text-decoration: none; }
nav a:hover { text-decoration: underline; }

* { box-sizing: border-box; }
body { margin: 0; font-family: monospace; background: white; overflow-x: hidden; }

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -40%;
  background: url('https://picsum.photos/id/1018/1920/1080') center/cover no-repeat;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-label {
  font-size: 0.8em;
  color: #aaa;
  margin: 0 0 16px;
}

.hero-title {
  font-size: 4em;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 0.9em;
  color: #aaa;
  margin: 12px 0 0;
}

.info {
  padding: 80px 40px;
  max-width: 640px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.info code {
  background: #e0e0e0;
  padding: 2px 6px;
  font-family: monospace;
}

.scene {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-bg {
  position: absolute;
  inset: -40%;
  background: url('https://picsum.photos/id/29/1920/1080') center/cover no-repeat;
  will-change: transform;
}

.scene-mid {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  will-change: transform;
}

.scene-fg {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.scene-fg h2 {
  margin: 0 0 8px;
  font-size: 1.6em;
}

.scene-fg p {
  margin: 0;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7);
}
