/**
 * Submit an RFP — procurement-friendly conversion page
 */

.n92-rfp {
  --rfp-pink: #ff3377;
  --rfp-pink-deep: #ff0062;
  --rfp-cream: #efece8;
  --rfp-blue: #002e72;
  --rfp-gold: #ffbd17;
  background: #000;
  color: var(--rfp-cream);
  overflow-x: clip;
}

.n92-rfp :is(h1, h2, h3) {
  color: var(--rfp-cream) !important;
}

#content:has(.n92-rfp) {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.n92-rfp-eyebrow {
  font-size: var(--n92-eyebrow);
  letter-spacing: 0;
  text-transform: lowercase;
  color: rgba(239, 236, 232, 0.45);
  margin: 0 0 1rem;
}

.n92-rfp-hero {
  padding: clamp(3.5rem, 8vh, 5.5rem) clamp(1.5rem, 5vw, 5.5rem) 2.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.n92-rfp-display {
  font-family: gilroy, "proxima-nova", sans-serif;
  font-weight: 800;
  font-size: var(--n92-display-1);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 0.98;
  margin: 0 0 1.25rem;
}

.n92-rfp-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(239, 236, 232, 0.75);
  max-width: 56ch;
}

.n92-rfp-rule {
  height: 3px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
}

.n92-rfp-form-section {
  padding: clamp(3rem, 7vh, 4.5rem) clamp(1.5rem, 5vw, 5.5rem);
}

.n92-rfp-form-wrap,
.n92-rfp-confirm {
  max-width: 900px;
  margin-inline: auto;
}

.n92-rfp-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.n92-rfp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .n92-rfp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
  }
}

.n92-rfp-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: lowercase;
  color: rgba(239, 236, 232, 0.6);
}

.n92-rfp-field--full {
  grid-column: 1 / -1;
}

.n92-rfp-field input,
.n92-rfp-field select,
.n92-rfp-field textarea {
  font-family: gilroy, sans-serif;
  font-size: 0.95rem;
  color: var(--rfp-cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(239, 236, 232, 0.22);
  border-radius: var(--n92-radius, 3px);
  padding: 0.7rem 0.85rem;
  resize: vertical;
}

.n92-rfp-field input:focus,
.n92-rfp-field select:focus,
.n92-rfp-field textarea:focus {
  outline: none;
  border-color: var(--rfp-pink);
}

.n92-rfp-hint {
  margin: -0.4rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(239, 236, 232, 0.55);
}

.n92-rfp-hint a {
  color: var(--rfp-pink);
}

.n92-rfp-error {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rfp-pink);
}

.n92-rfp-field-error {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--rfp-pink);
}

.n92-rfp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: gilroy, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: lowercase;
  padding: 0.85rem 1.5rem;
  border-radius: var(--n92-radius, 3px);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.n92-rfp-btn--pink {
  background: var(--rfp-pink);
  color: #050505;
}

.n92-rfp-btn--pink:hover {
  background: var(--rfp-pink-deep);
}

.n92-rfp-btn--pink:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.n92-rfp-btn--outline {
  background: transparent;
  color: var(--rfp-cream);
  border-color: rgba(239, 236, 232, 0.45);
}

.n92-rfp-btn--outline:hover {
  border-color: var(--rfp-cream);
}

.n92-rfp-btn--ghost {
  background: transparent;
  color: var(--rfp-pink);
  border-color: var(--rfp-pink);
}

.n92-rfp-btn--ghost:hover {
  background: var(--rfp-pink);
  color: #050505;
}

.n92-rfp-confirm__eyebrow {
  font-size: var(--n92-eyebrow);
  letter-spacing: 0;
  text-transform: lowercase;
  color: var(--rfp-pink);
  margin: 0 0 0.75rem;
}

.n92-rfp-confirm__title {
  font-family: gilroy, sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0 0 1rem;
}

.n92-rfp-confirm__body {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(239, 236, 232, 0.75);
  max-width: 56ch;
}

.n92-rfp-confirm__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 0 2rem;
}

.n92-rfp-confirm__contact a {
  color: var(--rfp-cream);
  font-weight: 700;
  text-decoration: none;
}

.n92-rfp-confirm__contact a:hover {
  color: var(--rfp-pink);
}

.n92-rfp-confirm__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
