/* ================= HERO ================= */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  width: 100%;
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* ================= FORM PANEL ================= */

.form-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

input,
textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.9rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

textarea {
  min-height: 160px;
  resize: vertical;
  margin-bottom: 1.4rem;
}

/* ================= BUTTON ================= */

.cta {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.cta:hover {
  background: #fff;
  color: #000;
}

/* ================= CULT NOTE ================= */

.cult-note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
}

.cult-note strong {
  opacity: 1;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.75;
}

.privacy-note a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}

.privacy-note a:hover {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 1.4rem;
  }
}
