* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #000000;
}

/* PAGE FRAME */
.page {
  min-height: 100vh;
  padding: 24px;              /* adjust if needed */
  display: flex;
  flex-direction: column;
}

/* HERO */
.hero { max-width: 980px; }

.hero_title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero_title br {
  display: block;
  margin-top: 12px;
}

/* FOOTER LAYOUT */
.footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.footer_left {
  width: 560px;
  max-width: 100%;
}

/* RESET ONLY TOP MARGINS (do NOT kill everything) */
.footer_left p {
  margin-top: 0;
}

/* WAITLIST */
.waitlist { margin: 0 0 14px 0; }

.waitlist_field {
  position: relative;
  display: inline-block;
  width: 345px;
  max-width: 100%;
  height: 44px;
  border: 2px solid #000;
  cursor: text;
  overflow: hidden;
}

.waitlist_title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.waitlist_input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 800;
  background: transparent;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.waitlist_input::placeholder { opacity: 0; }

.waitlist_field:hover .waitlist_title,
.waitlist_field:focus-within .waitlist_title { opacity: 0; }

.waitlist_field:hover .waitlist_input::placeholder,
.waitlist_field:focus-within .waitlist_input::placeholder { opacity: 0.55; }

/* TEXT SYSTEM (use selectors that beat .footer_left p) */
.footer_left p.body_text {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer_left p.body_label {
  margin: 10px 0 3px 0;       /* space above + tight below */
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Sponsors should NOT be all caps */
.footer_left p.body_text.body_text--sponsors {
  text-transform: none;
  margin-bottom: 10px;        /* a bit of air before CONTACT */
}

/* Email: caps + no extra bottom space */
.footer_left p.body_text.body_text--email {
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ILLUSTRATION */
.footer_right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 140px;
}

.illustration {
  display: block;
  width: 110px;
  height: auto;
  padding: 5px;
  }
