:root {
  --background: #090e15;
  --text: #edf3fb;
  --text-secondary: #c0cdda;
  --text-muted: #8494a9;
  --accent: #8bc6de;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background-color: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 26% 48%, rgba(45, 98, 126, 0.11), transparent 34rem),
    var(--background);
  font-family:
    Inter, "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  align-items: center;
  min-height: 100svh;
  width: min(100% - 3rem, 70rem);
  margin: 0 auto;
}

.hero {
  max-width: 40rem;
  padding: clamp(3rem, 9vh, 5rem) 0;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 5.05rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.disciplines {
  max-width: 35rem;
  margin: clamp(1.35rem, 3vh, 1.7rem) 0 0;
  color: var(--text-secondary);
  font-size: clamp(1.22rem, 2.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.46;
}

.positioning {
  max-width: 36rem;
  margin: clamp(1.2rem, 2.5vh, 1.45rem) 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.65;
}

.contact {
  margin-top: clamp(2.7rem, 6vh, 3.5rem);
}

.status {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.045em;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 5vw, 2rem);
}

.links a {
  color: var(--text-secondary);
  font-size: 0.97rem;
  font-weight: 500;
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.36rem;
  transition:
    color 170ms ease,
    text-decoration-color 170ms ease;
}

.links a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.links a:focus-visible {
  border-radius: 0.12rem;
  outline: 2px solid var(--accent);
  outline-offset: 0.35rem;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 2.5rem, 70rem);
  }

  .hero {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
