/* partnerships.css — marketing.auriginal.app/partnerships
 *
 * Shares the oxblood + graphite design system from root.css / check.css /
 * verify-record.css. Tokens duplicated here for now (pending the planned
 * tokens-extraction refactor). Wider container than root.css since the form
 * benefits from a two-column layout on desktop.
 */

:root {
  /* Brand */
  --brand-primary: #6E1F28;
  --brand-emphasis: #8C2431;
  --brand-gradient: linear-gradient(135deg, #6E1F28 0%, #8C2431 100%);

  /* Surfaces */
  --bg-page: #121212;
  --bg-card: #1C1C1E;
  --bg-input: #2A2A2D;

  /* Foreground */
  --fg-primary: #F5F2ED;
  --fg-secondary: #C9C3BC;
  --fg-tertiary: #A7A29A;
  --fg-quaternary: #8A857E;

  /* Borders */
  --border-default: #343438;
  --border-strong: #4A4A50;

  /* Status (semantic) */
  --status-failure: #B23A48;
  --status-success: #5BA66A;

  /* Geometry */
  --radius-card: 16px;
  --radius-input: 10px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
               Ubuntu, Cantarell, sans-serif;
  background: var(--bg-page);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px;
  color: var(--fg-primary);
  line-height: 1.55;
}

.container {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  max-width: 700px;
  width: 100%;
  padding: 40px 36px;
}

/* Logo / brand header (matches root.html) */
.logo { text-align: center; margin-bottom: 28px; }
.logo-mark { display: block; width: 84px; height: 84px; margin: 0 auto 14px; }
.logo h1 {
  font-size: 32px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.logo .tagline {
  color: var(--fg-tertiary);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Lede */
.lede {
  color: var(--fg-secondary);
  font-size: 15px;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* Pitch card — what we license */
.pitch-card {
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  padding: 22px 24px;
  margin-bottom: 20px;
}

.pitch-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 14px;
}

.pitch-list {
  list-style: none;
  margin-bottom: 14px;
}

.pitch-list li {
  position: relative;
  padding-left: 18px;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.pitch-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.pitch-list li strong {
  color: var(--fg-primary);
  font-weight: 600;
}

.pitch-fit {
  color: var(--fg-tertiary);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  padding-top: 6px;
  border-top: 1px solid var(--border-default);
}

/* Form card */
.form-card {
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.form-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 6px;
}

.form-sub {
  color: var(--fg-tertiary);
  font-size: 13px;
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field { margin-bottom: 14px; }
.field-row .field { margin-bottom: 0; }

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.field-label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--fg-quaternary);
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  display: block;
  width: 100%;
  background: var(--bg-page);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  color: var(--fg-primary);
  font-family: inherit;
  font-size: 14px;
  padding: 11px 14px;
  line-height: 1.5;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.field input:disabled,
.field textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Honeypot — visually hidden but accessibility-aware */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submit button */
.cta-primary {
  display: inline-block;
  background: var(--brand-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-input);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.cta-primary:hover { filter: brightness(1.08); }

.cta-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Status line below submit — default (inline, error) state.
 * Success state upgrades to a full confirmation card; see .form-status.success below. */
.form-status {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 14px;
  min-height: 18px;
}

.form-status.error {
  color: var(--status-failure);
}

/* Success — full-width confirmation card. Replaces the now-hidden form
 * visually, so users can't miss that the submission succeeded. */
.form-status.success {
  display: block;
  margin-top: 0;
  padding: 18px 22px;
  background: rgba(91, 166, 106, 0.12);
  border: 1px solid rgba(91, 166, 106, 0.32);
  border-radius: var(--radius-input);
  color: var(--status-success);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.55;
}

.form-status.success::before {
  content: '✓ ';
  font-weight: 700;
}

/* Help text below form */
.help {
  color: var(--fg-tertiary);
  font-size: 13px;
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}

.help a {
  color: var(--fg-secondary);
  text-decoration: underline;
}

.help a:hover { color: var(--fg-primary); }

/* Footer */
.page-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-default);
  text-align: center;
}

.brand {
  font-size: 13px;
  color: var(--fg-quaternary);
}

.brand a {
  color: var(--fg-tertiary);
  text-decoration: none;
}

.brand a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 560px) {
  .container { padding: 28px 22px; }
  .logo h1 { font-size: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 14px; }
  .cta-primary { width: 100%; }
}
