:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #17212b;
  background: #f7f8fb;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

main {
  width: min(100% - 3rem, 66rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(5rem, 14vw, 10rem) 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
}

.hero {
  max-width: 43rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #6a41d8;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.25rem, 11vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.tagline {
  margin-bottom: 1.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 650;
  line-height: 1.3;
}

.intro {
  max-width: 35rem;
  margin-bottom: 0;
  color: #52606d;
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact {
  border-top: 1px solid #d9dee7;
  padding-top: 1.5rem;
}

h2 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 650;
}

a {
  color: #5b32cb;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: #3e1d9d;
}

@media (max-width: 480px) {
  main {
    width: min(100% - 2rem, 66rem);
  }
}
