:root {
  --lgx-ink-0a9f3c: #0B1220;
  --lgx-snow-4d7b1e: #F6F7FB;
  --lgx-mist-2c8e51: rgba(246,247,251,0.72);
  --lgx-royal-7f1c2d: #2B59FF;
  --lgx-aura-9b3e10: #7C3AED;
  --lgx-gold-1e6a7c: #D4A72C;
  --lgx-line-6a2d9e: rgba(11,18,32,0.14);
  --lgx-shadow-3c5f8a: 0 18px 50px rgba(11,18,32,0.18);
  --lgx-radius-8e2c1a: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: var(--lgx-ink-0a9f3c);
  background: linear-gradient(135deg, var(--lgx-snow-4d7b1e) 0%, #E8EAF6 100%);
  min-height: 100vh;
}

.lx-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.lx-skip {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--lgx-royal-7f1c2d);
  color: var(--lgx-snow-4d7b1e);
  padding: 0.75rem 1.5rem;
  border-radius: var(--lgx-radius-8e2c1a);
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
}

.lx-skip:focus {
  top: 10px;
}

.lx-topbar {
  background: var(--lgx-mist-2c8e51);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lgx-line-6a2d9e);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--lgx-shadow-3c5f8a);
}

.lx-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.lx-brand {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lgx-royal-7f1c2d), var(--lgx-aura-9b3e10));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.lx-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lx-nav-link {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: var(--lgx-ink-0a9f3c);
  font-weight: 600;
  border-radius: calc(var(--lgx-radius-8e2c1a) / 2);
  transition: all 0.3s ease;
  position: relative;
}

.lx-nav-link:hover {
  background: rgba(43,89,255,0.1);
  color: var(--lgx-royal-7f1c2d);
  transform: translateY(-2px);
}

.lx-nav-link:focus-visible {
  outline: 3px solid var(--lgx-royal-7f1c2d);
  outline-offset: 4px;
}

.lx-nav-active {
  background: linear-gradient(135deg, var(--lgx-royal-7f1c2d), var(--lgx-aura-9b3e10));
  color: var(--lgx-snow-4d7b1e);
}

.lx-nav-active:hover {
  background: linear-gradient(135deg, var(--lgx-aura-9b3e10), var(--lgx-royal-7f1c2d));
  color: var(--lgx-snow-4d7b1e);
}

.lx-crumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0.5rem;
  font-size: 0.95rem;
  color: var(--lgx-ink-0a9f3c);
}

.lx-crumbs a {
  color: var(--lgx-royal-7f1c2d);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lx-crumbs a:hover {
  color: var(--lgx-aura-9b3e10);
  text-decoration: underline;
}

.lx-crumbs a:focus-visible {
  outline: 2px solid var(--lgx-royal-7f1c2d);
  outline-offset: 3px;
  border-radius: 4px;
}

.lx-crumbs-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.lx-main {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  width: 100%;
}

.lx-hero {
  margin-bottom: 3rem;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(43,89,255,0.08), rgba(124,58,237,0.08));
  border-radius: var(--lgx-radius-8e2c1a);
  border: 1px solid var(--lgx-line-6a2d9e);
  box-shadow: var(--lgx-shadow-3c5f8a);
}

.lx-hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--lgx-royal-7f1c2d), var(--lgx-aura-9b3e10));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lx-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--lgx-ink-0a9f3c);
  max-width: 90%;
}

.lx-glasspanel {
  background: var(--lgx-mist-2c8e51);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lgx-line-6a2d9e);
  border-radius: var(--lgx-radius-8e2c1a);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--lgx-shadow-3c5f8a);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lx-glasspanel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11,18,32,0.22);
}

.lx-glasspanel h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--lgx-royal-7f1c2d);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lx-glasspanel h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--lgx-aura-9b3e10);
  font-weight: 600;
}

.lx-glasspanel p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.lx-glasspanel ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.lx-glasspanel li {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.lx-glasspanel strong {
  color: var(--lgx-royal-7f1c2d);
  font-weight: 600;
}

.lx-authlinks {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.lx-authlinks li {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.lx-authlinks a {
  color: var(--lgx-royal-7f1c2d);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
}

.lx-authlinks a:hover {
  color: var(--lgx-aura-9b3e10);
  border-bottom-color: var(--lgx-aura-9b3e10);
  transform: translateX(4px);
}

.lx-authlinks a:focus-visible {
  outline: 3px solid var(--lgx-royal-7f1c2d);
  outline-offset: 4px;
  border-radius: 4px;
}

.lx-inline-link {
  color: var(--lgx-royal-7f1c2d);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--lgx-royal-7f1c2d);
  transition: all 0.3s ease;
}

.lx-inline-link:hover {
  color: var(--lgx-aura-9b3e10);
  border-bottom-color: var(--lgx-aura-9b3e10);
}

.lx-inline-link:focus-visible {
  outline: 3px solid var(--lgx-royal-7f1c2d);
  outline-offset: 3px;
  border-radius: 4px;
}

.lx-tableframe {
  background: var(--lgx-mist-2c8e51);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--lgx-line-6a2d9e);
  border-radius: var(--lgx-radius-8e2c1a);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--lgx-shadow-3c5f8a);
  overflow-x: auto;
}

.lx-tableframe h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--lgx-royal-7f1c2d);
  font-weight: 700;
}

.lx-tableframe table {
  width: 100%;
  border-collapse: collapse;
  background: var(--lgx-snow-4d7b1e);
  border-radius: calc(var(--lgx-radius-8e2c1a) / 2);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11,18,32,0.12);
}

.lx-tableframe thead {
  background: linear-gradient(135deg, var(--lgx-royal-7f1c2d), var(--lgx-aura-9b3e10));
  color: var(--lgx-snow-4d7b1e);
  position: sticky;
  top: 0;
  z-index: 10;
}

.lx-tableframe th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lx-tableframe td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--lgx-line-6a2d9e);
  font-size: 1rem;
  line-height: 1.6;
}

.lx-tableframe tbody tr {
  transition: background 0.3s ease;
}

.lx-tableframe tbody tr:nth-child(even) {
  background: rgba(43,89,255,0.03);
}

.lx-tableframe tbody tr:hover {
  background: rgba(43,89,255,0.08);
  transform: scale(1.01);
}

.lx-tableframe tbody tr:last-child td {
  border-bottom: none;
}

.lx-accordionstack {
  margin: 2rem 0;
}

.lx-accordion {
  background: var(--lgx-snow-4d7b1e);
  border: 1px solid var(--lgx-line-6a2d9e);
  border-radius: calc(var(--lgx-radius-8e2c1a) / 2);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lx-accordion:hover {
  box-shadow: 0 8px 24px rgba(11,18,32,0.12);
  transform: translateY(-2px);
}

.lx-accordion summary {
  padding: 1.5rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lgx-royal-7f1c2d);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.lx-accordion summary::-webkit-details-marker {
  display: none;
}

.lx-accordion summary::after {
  content: '+';
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--lgx-aura-9b3e10);
  transition: transform 0.3s ease;
}

.lx-accordion[open] summary::after {
  transform: rotate(45deg);
}

.lx-accordion summary:hover {
  background: rgba(43,89,255,0.05);
  color: var(--lgx-aura-9b3e10);
}

.lx-accordion summary:focus-visible {
  outline: 3px solid var(--lgx-royal-7f1c2d);
  outline-offset: -3px;
}

.lx-accordion div {
  padding: 0 2rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--lgx-ink-0a9f3c);
}

.lx-accordion p {
  margin-top: 1rem;
}

.lx-footer {
  background: var(--lgx-ink-0a9f3c);
  color: var(--lgx-snow-4d7b1e);
  text-align: center;
  padding: 2rem;
  margin-top: auto;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .lx-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .lx-brand {
    font-size: 1.5rem;
  }
  
  .lx-nav {
    width: 100%;
  }
  
  .lx-nav-link {
    flex: 1;
    text-align: center;
  }
  
  .lx-hero h1 {
    font-size: 2rem;
  }
  
  .lx-hero p {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .lx-glasspanel {
    padding: 1.5rem;
  }
  
  .lx-tableframe {
    padding: 1.5rem;
  }
  
  .lx-tableframe th,
  .lx-tableframe td {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .lx-main {
    padding: 1rem 1rem 2rem;
  }
  
  .lx-hero {
    padding: 2rem 1.5rem;
  }
  
  .lx-hero h1 {
    font-size: 1.75rem;
  }
  
  .lx-glasspanel h2 {
    font-size: 1.5rem;
  }
  
  .lx-accordion summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .lx-accordion div {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .lx-tableframe table {
    font-size: 0.85rem;
  }
  
  .lx-tableframe th,
  .lx-tableframe td {
    padding: 0.75rem;
  }
}