:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0b0b12;
  color: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 32px;
  background: linear-gradient(90deg, #818cf8, #38bdf8 60%, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bio p {
  font-size: 18px;
  line-height: 1.7;
  color: #c7c9d3;
  margin: 0 0 32px;
}

@media (min-width: 780px) {
  .bio p {
    white-space: nowrap;
  }
}

.contact .cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0b0b12;
  text-decoration: none;
  background: linear-gradient(90deg, #6366f1, #38bdf8);
}

footer {
  text-align: center;
  padding: 24px;
  font-size: 13px;
  color: #5a5f6e;
}
