/* Pantora Web — shared styles
   Brand: Warm Coral #FF6B47, Background #FFF8F4, Text #1F2937 */

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #FFF8F4;
  color: #1F2937;
  line-height: 1.6;
  font-size: 16px;
  padding: 0;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

header {
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1F2937;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: #FF6B47;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 24px 0 8px;
  color: #1F2937;
}

.subtitle {
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 32px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  color: #1F2937;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: #1F2937;
}

p {
  margin: 12px 0;
  color: #374151;
}

ul, ol {
  margin: 12px 0 12px 24px;
  color: #374151;
}

li {
  margin: 6px 0;
}

a {
  color: #FF6B47;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

strong {
  color: #1F2937;
  font-weight: 600;
}

.callout {
  background: white;
  border-left: 3px solid #FF6B47;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.callout p {
  margin: 0;
  font-size: 15px;
}

footer {
  border-top: 1px solid rgba(31, 41, 55, 0.08);
  padding-top: 24px;
  margin-top: 56px;
  color: #6B7280;
  font-size: 14px;
}

footer a { color: #6B7280; }

.nav-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.nav-row a {
  font-weight: 500;
  color: #FF6B47;
}

/* FAQ on support page */
.faq-item {
  background: white;
  border-radius: 12px;
  padding: 20px 22px;
  margin: 12px 0;
  border: 1px solid rgba(31, 41, 55, 0.06);
}

.faq-item h3 {
  margin: 0 0 8px;
  color: #1F2937;
}

.faq-item p {
  margin: 0;
}

.faq-item p + p { margin-top: 8px; }

/* Contact card on support page */
.contact-card {
  background: linear-gradient(135deg, #FF6B47 0%, #FF8567 100%);
  color: white;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 24px 0;
  text-align: center;
}

.contact-card h2 {
  color: white;
  margin: 0 0 8px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 16px;
}

.contact-card a {
  display: inline-block;
  background: white;
  color: #FF6B47;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.contact-card a:hover {
  text-decoration: none;
  background: #FFF8F4;
}

@media (max-width: 600px) {
  .container { padding: 24px 18px 64px; }
  h1 { font-size: 26px; }
  h2 { font-size: 19px; }
}
