/* shared-style.css — storymintai aesthetic for legal pages */
:root {
  --bg:           #07071a;
  --bg2:          #0d0d2b;
  --surface:      rgba(255,255,255,0.05);
  --glass:        rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --muted:        rgba(180,180,220,0.55);
  --body:         rgba(200,200,235,0.82);
  --headline:     #ffffff;
  --grad-a:       #a855f7;
  --grad-b:       #6366f1;
  --grad-c:       #38bdf8;
  --warn:         #f59e0b;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --max-w:        760px;
  --blur:         blur(18px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--body);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.orb { position: fixed; border-radius: 50%; filter: blur(90px); opacity: 0.22; pointer-events: none; z-index: 0; animation: orbFloat 12s ease-in-out infinite alternate; }
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, #7c3aed, transparent); top: -160px; left: -140px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #4f46e5, transparent); top: 50%; right: -140px; animation-delay: -5s; }
@keyframes orbFloat { 0% { transform: translateY(0); } 100% { transform: translateY(36px); } }
.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.wrap { position: relative; z-index: 2; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.18); border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #c4b5fd; margin-bottom: 20px;
}
h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: var(--headline); margin-bottom: 24px; }
h2 { font-size: 22px; font-weight: 700; color: var(--headline); margin: 36px 0 12px; }
h3 { font-size: 17px; font-weight: 600; color: var(--headline); margin: 24px 0 8px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
strong { color: #e2e2ff; font-weight: 600; }
a { color: #a78bfa; text-decoration: none; border-bottom: 1px solid rgba(167,139,250,0.35); transition: color 0.2s, border-color 0.2s; }
a:hover { color: #fff; border-color: #fff; }
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #818cf8 40%, #38bdf8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.glass-panel {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-lg); padding: 36px 40px; margin-bottom: 20px;
}
nav.top-bar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7,7,26,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border); padding: 16px 0;
}
nav.top-bar .inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
nav.top-bar .brand {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #c4b5fd; text-decoration: none; border: none;
}
nav.top-bar .nav-links { display: flex; gap: 24px; }
nav.top-bar .nav-links a { font-size: 13px; color: var(--muted); border: none; text-decoration: none; transition: color 0.2s; }
nav.top-bar .nav-links a:hover { color: var(--headline); }
.page-hero { padding: 72px 0 56px; }
.page-hero .label-tag { margin-bottom: 16px; }
.legal-body { padding: 0 0 80px; }
.updated-note {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 40px; display: flex; align-items: center; gap: 8px;
}
ul.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 14px 0; padding: 0; }
ul.bullet-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.62; }
ul.bullet-list li i { color: #a78bfa; font-size: 11px; margin-top: 5px; flex-shrink: 0; }
.contact-box {
  background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius); padding: 28px 32px; margin: 28px 0;
  backdrop-filter: blur(10px);
}
.contact-box .contact-email {
  font-family: 'JetBrains Mono', monospace; font-size: 15px; color: #a78bfa;
  text-decoration: none; border: none; display: flex; align-items: center; gap: 10px;
  margin-top: 10px; transition: color 0.2s;
}
.contact-box .contact-email:hover { color: #fff; }
.site-footer { border-top: 1px solid rgba(255,255,255,0.07); padding: 40px 0; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; letter-spacing: 0.08em; color: var(--muted); text-decoration: none; border: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--headline); }
.footer-copy { font-size: 12px; color: rgba(180,180,220,0.3); line-height: 1.7; }
.wplus_spdisclaimer { font-size: 12px; color: rgba(180,180,220,0.3); line-height: 1.65; padding: 20px 0 0; border-top: 1px solid var(--glass-border); margin-top: 20px; }
.sep { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), transform 0.55s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 640px) {
  .glass-panel { padding: 24px 20px; }
  nav.top-bar .nav-links { gap: 16px; }
}
