/* Artra contact / help page — dark theme. Layered on auto_pilot_landing.css. */

.apl .help-hero {
  padding: 160px var(--pad) 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.apl .help-hero .hero-grid-bg,
.apl .help-hero .hero-glow { position: absolute; inset: 0; pointer-events: none; }
.apl .help-hero .hero-glow {
  background:
    radial-gradient(50vw 50vw at 50% 100%, rgba(139,125,255,0.10), transparent 60%),
    radial-gradient(40vw 40vw at 20% 30%, rgba(92,200,255,0.06), transparent 70%);
}
.apl .help-hero .inner { position: relative; z-index: 2; max-width: 56ch; margin: 0 auto; }
.apl .help-hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  margin-top: 22px;
  letter-spacing: -0.04em;
}
.apl .help-hero h1 .accent {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.apl .help-hero p { margin-top: 18px; font-size: clamp(15px, 1.2vw, 18px); color: var(--fg-2); }

/* Two-column layout */
.apl .help-section {
  padding: 40px var(--pad) 120px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .apl .help-section { grid-template-columns: 1fr; }
}

/* Contact info panel */
.apl .contact-panel {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.apl .contact-panel h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.apl .contact-panel .lede {
  color: var(--fg-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.apl .contact-channels {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apl .contact-channel {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .2s ease, transform .2s ease;
}
.apl .contact-channel:hover { border-color: var(--line-2); transform: translateY(-1px); }
.apl .contact-channel .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 600;
}
.apl .contact-channel .lbl {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.apl .contact-channel .val {
  font-size: 14.5px;
  color: var(--fg);
  margin-top: 2px;
}
.apl .contact-channel .val a {
  color: var(--fg);
  border-bottom: 1px solid var(--line-2);
  transition: border-color .2s ease;
}
.apl .contact-channel .val a:hover { border-bottom-color: var(--accent); }

/* Form */
.apl .help-form-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.apl .help-form-card h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.apl .help-form-card .lede {
  color: var(--fg-2);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.apl .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.apl .form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .apl .form-grid { grid-template-columns: 1fr; }
}

.apl .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apl .field label {
  font-family: "Geist Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.apl .field input,
.apl .field textarea {
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.apl .field input::placeholder,
.apl .field textarea::placeholder {
  color: var(--fg-4);
}
.apl .field input:focus,
.apl .field textarea:focus {
  border-color: rgba(139,125,255,0.5);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(139,125,255,0.08);
}
.apl .field textarea {
  resize: vertical;
  min-height: 160px;
  font-family: inherit;
  line-height: 1.5;
}

.apl .submit-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.apl .submit-row .note {
  color: var(--fg-3);
  font-size: 12.5px;
  font-family: "Geist Mono", monospace;
}
.apl .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: var(--fg);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.apl .btn-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(255,255,255,0.08); }

/* Flash messages */
.apl .flash {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  border: 1px solid;
}
.apl .flash.error {
  background: rgba(255,122,89,0.08);
  border-color: rgba(255,122,89,0.35);
  color: #ffc4b4;
}
.apl .flash.success {
  background: rgba(132,225,164,0.08);
  border-color: rgba(132,225,164,0.35);
  color: #b6f0ca;
}
