* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: system-ui, sans-serif; background: #faf5ff; color: #3b0764; line-height: 1.72; }
a { color: #7e22ce; }

.tsl-bar {
  background: linear-gradient(90deg, #581c87, #7e22ce);
  color: #f3e8ff;
  position: sticky; top: 0; z-index: 50;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px; padding: 14px 22px;
}
.tsl-brand { font-weight: 800; font-size: 18px; }
.tsl-nav { display: flex; flex-wrap: wrap; gap: 12px; font-size: 14px; }
.tsl-nav a { color: #e9d5ff; text-decoration: none; font-weight: 600; }
.tsl-nav a:hover { color: #fff; }
.tsl-btn {
  display: inline-block; background: #fbbf24; color: #422006 !important;
  padding: 10px 18px; border-radius: 8px; font-weight: 800; text-decoration: none;
  border: none; cursor: pointer; font-size: 14px;
}

.tsl-wrap { max-width: 900px; margin: 0 auto; padding: 28px 22px 56px; }
.tsl-hero { background: #fff; border: 1px solid #e9d5ff; border-radius: 16px; padding: 28px; margin-bottom: 22px; }
.tsl-hero h1 { margin: 0 0 12px; font-size: clamp(24px, 4vw, 34px); color: #581c87; }
.tsl-lead { color: #6b7280; font-size: 17px; margin: 0 0 16px; }

.tsl-card { background: #fff; border: 1px solid #e9d5ff; border-radius: 14px; padding: 22px; margin-bottom: 18px; }
.tsl-card h2 { margin: 0 0 12px; font-size: 21px; color: #6b21a8; }

.tsl-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tsl-table th, .tsl-table td { border: 1px solid #e9d5ff; padding: 10px; text-align: left; }
.tsl-table th { background: #f3e8ff; }

.tsl-pastel { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 16px; }
.tsl-pastel div { background: #fdf4ff; border-radius: 10px; padding: 14px; border: 1px solid #f5d0fe; }
.tsl-pastel b { display: block; color: #7e22ce; margin-bottom: 6px; }

.tsl-faq details { background: #fff; border: 1px solid #e9d5ff; border-radius: 10px; padding: 12px 16px; margin-bottom: 10px; }
.tsl-faq summary { cursor: pointer; font-weight: 600; }

.tsl-foot { text-align: center; padding: 22px; font-size: 13px; color: #7c3aed; }
.tsl-toast {
  position: fixed; bottom: 20px; right: 20px; background: #581c87; color: #fff;
  padding: 10px 16px; border-radius: 8px; opacity: 0; transition: opacity .2s; z-index: 60;
}
.tsl-toast.show { opacity: 1; }

@media (prefers-reduced-motion: reduce) { *, *::before { transition: none !important; } html { scroll-behavior: auto; } }
