:root {
  --bg: #0a0e15;
  --bg-elev: #111827;
  --bg-elev-2: #1A2332;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
  --text: #E5E7EB;
  --text-muted: #94A3B8;
  --text-faint: #475569;
  --accent: #8EA2FF;
  --accent-bg: rgba(142,162,255,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 96px;
  background: #070C17;
  border-right: 1px solid var(--border);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 16px;
}
.nav-item {
  width: 84px; height: 52px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-faint);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin-bottom: 2px;
  transition: background 0.15s, color 0.15s;
}
.nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.nav-item.disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.nav-icon { line-height: 1; }
.nav-label {
  font-family: 'Urbanist', ui-sans-serif, sans-serif;
  font-size: 8px;
  font-weight: 600;
  color: currentColor;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  width: 100%; white-space: nowrap;
}
.nav-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  margin-left: 96px;
  padding: 0 48px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,15,28,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.topbar-brand,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ae-topbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 34px;
  min-width: 160px;
}
.ae-topbar-logo img {
  width: 154px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Urbanist', ui-sans-serif, sans-serif;
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
}
.ae-topbar-logout-form { margin: 0; display: inline-flex; }
.ae-topbar-logout {
  min-width: 76px;
  height: 32px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', ui-sans-serif, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 12px;
  text-decoration: none;
}
.ae-topbar-logout:hover {
  color: var(--accent);
  border-color: rgba(142,162,255,0.5);
}
.policy-shell {
  margin-left: 96px;
  min-height: calc(100vh - 56px);
  padding: 28px 48px 72px 24px;
}
.policy-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}
.policy-kicker {
  margin-bottom: 14px;
  font-family: 'Urbanist', ui-sans-serif, sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.policy-title {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.policy-rule {
  height: 1px;
  margin: 24px 0 34px;
  background: var(--border);
}
.policy-section {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.policy-section h2 {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.policy-body {
  display: grid;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}
.policy-body a,
.policy-meta a {
  color: var(--accent);
  text-decoration: none;
}
.policy-body a:hover,
.policy-meta a:hover { text-decoration: underline; }
.policy-meta {
  margin-top: 24px;
  font-family: 'Urbanist', ui-sans-serif, sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.ae-site-footer {
  margin-left: 96px;
  padding: 22px 48px 28px;
  border-top: 1px solid var(--border);
  background: #070C17;
  color: #64748B;
}
.ae-site-footer-inner {
  max-width: none;
  margin: 0;
}
.ae-site-footer-copy {
  margin: 0 0 8px;
  font-family: 'Urbanist', ui-sans-serif, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ae-site-footer-disclaimer {
  margin: 0;
  max-width: none;
  font-size: 11px;
  line-height: 1.65;
  color: #64748B;
}
.ae-site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}
.ae-site-footer a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .sidebar { width: 60px; padding: 0 0 12px; }
  .nav-item { width: 44px; height: 44px; }
  .nav-label { display: none; }
  .topbar { margin-left: 60px; padding: 0 18px 0 14px; }
  .ae-topbar-logo { min-width: 132px; }
  .ae-topbar-logo img { width: 132px; }
  .policy-shell { margin-left: 60px; padding: 22px 18px 54px 14px; }
  .policy-title { font-size: 32px; }
  .ae-site-footer { margin-left: 60px; padding: 20px 18px 24px; }
}
