@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/NeueHaasUnicaPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/Neue_Haas_Unica_W06_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --ink: #000000;
  --ink-soft: #000000cc;
  --ink-muted: #00000066;
  --blue: #1800ad;
  --blue-soft: #eef0ff;
  --line: #00000022;
  --line-strong: #00000044;
}

body {
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fullscreen looping video background */
.video-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 2;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin: 0 auto 32px;
  text-align: center;
  transition: opacity 0.2s;
}
.logo svg { width: 140px; height: auto; display: inline-block; }
.logo:hover { opacity: 0.7; }

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  padding: 48px 24px;
}

.hero { text-align: center; margin-bottom: 40px; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.page-title {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 32px;
}

/* Blue description card */
.description {
  background: var(--blue-soft);
  border: none;
  padding: 32px 36px;
  border-radius: 28px;
}
.description-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.55;
  text-align: left;
}

.field { margin-bottom: 28px; }

label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

/* Blue tinted inputs (no border) */
input {
  width: 100%;
  background: var(--blue-soft);
  border: none;
  border-radius: 50px;
  padding: 22px 28px;
  font-size: 16px;
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  transition: background 0.2s, box-shadow 0.2s;
}
input:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 2px var(--blue);
}
input::placeholder { color: var(--ink-muted); }

.submit-btn {
  width: 100%;
  padding: 28px;
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  margin-top: 16px;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.3px;
}
.submit-btn:hover { opacity: 0.9; }
.submit-btn:active { transform: translateY(1px); }

.success { text-align: center; padding: 20px 0; }
.success-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}
.success h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.success p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.reset-btn {
  padding: 11px 26px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.reset-btn:hover { background: var(--blue); color: #ffffff; }

.hidden { display: none; }

/* Honeypot — off-screen, not display:none (so bots still see it). */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  background: #ffe8e8;
  color: #8b0000;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

@media (max-width: 480px) {
  .logo svg { width: 120px; }
}
