/* ALS Global Styles */

:root {
  --bg: #f7f4ee;
  --paper: #ffffff;
  --ink: #0b1220;
  --muted: #5b6475;
  --line: rgba(11, 18, 32, 0.12);
  --brand: #f2c11c;
  --brand-ink: #221b00;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(11, 18, 32, 0.10);
  --container: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  font-family: Outfit, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.als-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.als-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.als-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.18);
  background: #0b1220;
  color: #fff;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.als-btn:hover { filter: brightness(1.05); text-decoration: none; }

.als-btn--brand {
  background: var(--brand);
  color: var(--brand-ink);
  border-color: rgba(34, 27, 0, 0.15);
}

.als-muted { color: var(--muted); }

.als-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 960px) {
  .als-grid--2 { grid-template-columns: 1.2fr 0.8fr; }
}

@keyframes alsFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.als-fade-up { animation: alsFadeUp 420ms ease-out both; }

.als-questions-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 18px 0 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
