:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background: #090909;
  color: #edf6ff;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  background: #090909;
}
main {
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}
a {
  color: #67e8c8;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.04em;
}
.brand img {
  width: 9rem;
  height: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.9rem;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.05em;
}
h2 {
  margin-top: 2rem;
  color: #fff;
}
p,
li {
  color: #aabbd0;
  line-height: 1.7;
}
.eyebrow {
  color: #ff5959;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.card {
  border: 1px solid #26364d;
  border-radius: 0.9rem;
  background: #0e1621;
  padding: clamp(1rem, 3vw, 2rem);
}
label {
  display: grid;
  gap: 0.4rem;
  color: #dce9f6;
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  border: 1px solid #314158;
  border-radius: 0.5rem;
  background: #09111b;
  color: #edf6ff;
  padding: 0.75rem;
  font: inherit;
}
textarea {
  min-height: 10rem;
  resize: vertical;
}
form {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}
button {
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  background: #e93636;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  width: fit-content;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.muted {
  color: #8295ad;
  font-size: 0.92rem;
}
footer {
  margin-top: 3rem;
  border-top: 1px solid #26364d;
  padding-top: 1rem;
  font-size: 0.85rem;
}
.footer-disclaimer {
  color: #68788c;
  font-size: 0.68rem;
  line-height: 1.5;
}
.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
  height: 1px;
  width: 1px;
}
