/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f1115;
  color: #ffffff;
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Subtle depth gradient */
  background: linear-gradient(
    180deg,
    #0f1115 0%,
    #141824 60%,
    #0f1115 100%
  );
}

.hero-inner {
  max-width: 900px;
  padding: 40px 20px;
}

.eyebrow {
  font-size: 18px;
  margin-bottom: 12px;
  opacity: 0.9;
}

h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.subhead {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.85;
}

.thesis {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.7;
}

