:root { color-scheme: dark; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  background: #0b0f14;
  color: #e6edf3;
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.card {
  width: min(1080px, 100%);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 237, 243, 0.10);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(230, 237, 243, 0.10);
}

.name {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.tagline {
  margin: 6px 0 0;
  color: rgba(230, 237, 243, 0.72);
}

.body { padding: 18px 0 6px; }

.note {
  margin: 0 0 14px;
  line-height: 1.5;
  color: rgba(230, 237, 243, 0.85);
}

.contact { margin: 0 0 12px; }

.email {
  display: inline-block;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(138, 180, 248, 0.12);
  border: 1px solid rgba(138, 180, 248, 0.22);
}

.links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

a {
  color: #8ab4f8;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.footer {
  padding-top: 16px;
  border-top: 1px solid rgba(230, 237, 243, 0.10);
  color: rgba(230, 237, 243, 0.55);
}
/* Make form controls align perfectly */
.input, .textarea {
  width: 100%;
  resize: vertical;
  box-sizing: border-box;   /* key */
  display: block;           /* key */
  margin: 0;                /* key */
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(230, 237, 243, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #e6edf3;
  outline: none;
}

/* Honeypot: hide from humans, keep in the DOM for bots */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
