/* UVZ Funnel Forge — Universal Sauce Pack
   Matches harry-chang-cios design system: dark slate + brand-blue #0ea5e9 */
:root {
  --sauce-bg: #0f172a;
  --sauce-card: #1e293b;
  --sauce-border: #334155;
  --sauce-text: #e2e8f0;
  --sauce-muted: #94a3b8;
  --sauce-brand: #0ea5e9;
  --sauce-brand-light: #38bdf8;
}

.sauce-footer {
  background: linear-gradient(180deg, #0c1929 0%, #0f172a 100%);
  border-top: 1px solid var(--sauce-border);
  color: var(--sauce-muted);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 48px 24px 32px;
  margin-top: auto;
  font-size: 14px;
  line-height: 1.6;
}
.sauce-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .sauce-footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
.sauce-footer h4 {
  color: var(--sauce-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.sauce-footer a {
  color: var(--sauce-muted);
  text-decoration: none;
  display: block;
  padding: 3px 0;
  transition: color 0.15s;
}
.sauce-footer a:hover { color: var(--sauce-brand-light); }
.sauce-brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sauce-brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 18px;
}
.sauce-brand-name { color: var(--sauce-text); font-size: 17px; font-weight: 700; }
.sauce-copyright {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--sauce-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.sauce-copyright .sauce-empire { color: var(--sauce-brand-light); font-weight: 600; }

/* Standalone legal/faq page body */
.sauce-page {
  background: var(--sauce-bg);
  color: var(--sauce-text);
  font-family: 'Inter', -apple-system, sans-serif;
  min-height: 100vh;
  margin: 0;
  line-height: 1.7;
}
.sauce-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.sauce-container h1 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sauce-container .sauce-subtitle {
  color: var(--sauce-muted);
  font-size: 15px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--sauce-border);
  padding-bottom: 24px;
}
.sauce-container h2 {
  font-size: 22px;
  color: var(--sauce-brand-light);
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 700;
}
.sauce-container h3 {
  font-size: 17px;
  color: var(--sauce-text);
  margin-top: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}
.sauce-container p, .sauce-container li {
  color: #cbd5e1;
  margin-bottom: 12px;
}
.sauce-container ul, .sauce-container ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.sauce-container a { color: var(--sauce-brand-light); }
.sauce-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sauce-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
}
.sauce-back:hover { color: var(--sauce-brand-light); }

/* FAQ accordion */
.sauce-faq-item {
  background: var(--sauce-card);
  border: 1px solid var(--sauce-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sauce-faq-item:hover { border-color: var(--sauce-brand); }
.sauce-faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--sauce-text);
  user-select: none;
}
.sauce-faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--sauce-brand-light);
  font-weight: 300;
  transition: transform 0.2s;
}
.sauce-faq-item.open .sauce-faq-q::after { content: '−'; }
.sauce-faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cbd5e1;
}
.sauce-faq-item.open .sauce-faq-a { max-height: 800px; padding: 0 22px 20px; }
