:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: white;
  background: black;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

.container {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.card {
  width: min(100%, 42rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid #dce3ef;
  border-radius: 1.5rem;
  background-color: white;
  color:black;
  box-shadow: 0 1.5rem 4rem rgb(34 56 92 / 12%);
}

.eyebrow {
  color: #5b45d6;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0.65rem 0;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 0.98;
}

p {
  color: #58657a;
  font-size: 1.1rem;
  line-height: 1.7;
}

a {
  color: #4932c7;
  font-weight: 700;
}

