* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "aktiv-grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

.container {
  max-width: 720px;
  margin: auto;
  padding: 4.5rem 1.5rem 4rem;
}

/* LOGO */
.logo-section {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}

.logo {
  max-width: 520px;
  width: 100%;
  height: auto;
}

/* CTA */
.cta h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cta-sub {
  color: #aaa;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* FORM */
form {
  display: grid;
  gap: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

input,
textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #fff;
}

/* BUTTON */
button {
  margin-top: 1.75rem;
  padding: 0.75rem;
  background: #fff;
  color: #000;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

button:hover {
  opacity: 0.85;
}
