:root {
  --bg: #05010f;
  --bg-soft: rgba(7, 1, 24, 0.85);
  --bg-card: rgba(14, 8, 38, 0.92);
  --bg-card-glass: rgba(12, 5, 24, 0.6);
  --text: #f7f4ff;
  --text-muted: rgba(246, 240, 255, 0.74);
  --accent: #74ecff;
  --accent-strong: #ff8f1f;
  --glow: rgba(255, 143, 31, 0.45);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.55);
  --font-heading: "Anton", sans-serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% -10%, rgba(82, 42, 214, 0.35), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(116, 236, 255, 0.2), transparent 60%), var(--bg);
  color: var(--text);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 2.5rem 1.5rem 4rem;
}

.page {
  width: min(1200px, 100%);
  display: grid;
  gap: 2.5rem;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0;
}

.brand__image {
  display: block;
  max-width: min(360px, 80%);
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(255, 143, 31, 0.35));
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: #12082c;
  box-shadow: 0 32px 70px -30px rgba(0, 0, 0, 0.85);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 1, 15, 0.95) 0%, rgba(5, 1, 15, 0.55) 48%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(120deg, rgba(116, 236, 255, 0.3), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/spring-break-amnesia.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.25) brightness(0.95);
  transform: scale(1.05);
  z-index: 0;
}

.hero__overlay {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  backdrop-filter: blur(0px);
}

.hero__eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--accent-strong);
  margin-bottom: 0.75rem;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  margin: 0 0 1rem;
  line-height: 1.05;
  text-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 143, 31, 0.35);
}

.hero__copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  max-width: 52ch;
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-weight: 600;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 16px var(--glow);
}

.form-wrap {
  display: flex;
  justify-content: center;
}

.form-card {
  width: min(880px, 100%);
  background: linear-gradient(180deg, rgba(14, 5, 38, 0.88) 0%, rgba(12, 5, 30, 0.9) 100%);
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.form-card__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card__header p {
  margin: 1rem 0 2rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 60ch;
}

.form-group {
  border: none;
  margin: 0 0 2.25rem;
  padding: 0;
}

.form-group legend {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--accent-strong);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  font: inherit;
  background: rgba(9, 3, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  appearance: none;
}

input:not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 143, 31, 0.8);
  box-shadow: 0 0 0 3px rgba(116, 236, 255, 0.18), 0 16px 30px -18px var(--glow);
  transform: translateY(-2px);
}

input:not([type="checkbox"])::placeholder,
textarea::placeholder {
  color: rgba(246, 240, 255, 0.45);
}

.form-group--roles {
  margin-bottom: 2.5rem;
}

.hint {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.role-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.checkbox {
  position: relative;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(9, 3, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.checkbox input {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(9, 3, 28, 0.65);
  box-shadow: inset 0 0 0 0 rgba(116, 236, 255, 0.9);
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkbox span {
  font-weight: 600;
  color: var(--text);
}

.checkbox input:checked {
  border-color: rgba(255, 143, 31, 0.9);
  background: linear-gradient(135deg, rgba(116, 236, 255, 0.95), rgba(255, 143, 31, 0.9));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.05), 0 0 16px -4px rgba(255, 143, 31, 0.55);
}

.checkbox input:focus-visible {
  outline: 2px solid rgba(255, 143, 31, 0.5);
  outline-offset: 3px;
}

.checkbox:hover {
  border-color: rgba(116, 236, 255, 0.35);
  box-shadow: 0 12px 24px -16px var(--glow);
  transform: translateY(-2px);
}

.checkbox input:checked + span {
  color: var(--accent-strong);
  text-shadow: 0 0 12px rgba(255, 143, 31, 0.35);
}

.other-input {
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.other-input[hidden] {
  display: none;
}

.textarea textarea {
  resize: vertical;
  min-height: 160px;
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.button {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--bg);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 1rem;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 25px 40px -22px rgba(255, 143, 31, 0.55);
}

.button:active {
  transform: translateY(0);
}

.footnote {
  margin-top: 1.5rem;
  color: rgba(246, 240, 255, 0.6);
  font-size: 0.85rem;
  text-align: center;
}

.interest-form.is-submitting .button {
  opacity: 0.7;
  pointer-events: none;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(246, 240, 255, 0.6);
}

.form-status--success {
  color: rgba(119, 255, 210, 0.9);
  text-shadow: 0 0 12px rgba(119, 255, 210, 0.5);
}

.form-status--error {
  color: rgba(255, 110, 110, 0.95);
  text-shadow: 0 0 12px rgba(255, 110, 110, 0.4);
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(246, 240, 255, 0.5);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer__links a {
  text-decoration: none;
  font-weight: 600;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 143, 31, 0.9);
}

.footer__social:hover {
  text-shadow: 0 0 12px rgba(255, 143, 31, 0.4);
}

.footer__social-icon {
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  body {
    padding: 1.5rem 1rem 3rem;
  }

  .brand {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    border-radius: 1.25rem;
  }

  .form-card {
    border-radius: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 480px;
    padding: 2.2rem;
  }

  .hero__headline {
    font-size: clamp(2.3rem, 11vw, 3.3rem);
  }

  .hero__copy {
    font-size: 1rem;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .button {
    letter-spacing: 0.1em;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
