:root {
  --bg-aurora-7f3c1a: #0B1220;
  --surface-glass-2c9d11: rgba(255,255,255,0.08);
  --surface-glass-strong-8a6f0e: rgba(255,255,255,0.14);
  --text-ink-5d1b7c: #EAF0FF;
  --text-muted-3a8c2f: rgba(234,240,255,0.72);
  --accent-ice-4e2a90: #7DD3FC;
  --accent-gold-9b0f63: #F6C177;
  --border-hairline-1f7e55: rgba(234,240,255,0.16);
  --shadow-elev-6c2d18: 0 18px 50px rgba(0,0,0,0.45);
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-ink-5d1b7c);
  background: linear-gradient(135deg, var(--bg-aurora-7f3c1a) 0%, #1a1f35 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a {
  color: var(--accent-ice-4e2a90);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover {
  color: var(--accent-gold-9b0f63);
  text-shadow: 0 0 8px rgba(246,193,119,0.4);
}

a:focus-visible {
  outline: 2px solid var(--accent-ice-4e2a90);
  outline-offset: 4px;
  border-radius: 2px;
}

.skiplink-9a1c7e {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--accent-ice-4e2a90);
  color: var(--bg-aurora-7f3c1a);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  z-index: 9999;
}

.skiplink-9a1c7e:focus {
  top: 10px;
}

.shellgrid-4f2b1d {
  display: grid;
  grid-template-columns: 1fr min(1280px, 90vw) 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  min-height: 100vh;
}

.shellgrid-4f2b1d > * {
  grid-column: 2;
}

.topbarflex-1c8d3a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-hairline-1f7e55);
  background: var(--surface-glass-2c9d11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brandmark-6b0e2f {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-gold-9b0f63);
  text-shadow: 0 2px 12px rgba(246,193,119,0.3);
}

.navline-7d3c9a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navline-7d3c9a a {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease;
}

.navline-7d3c9a a:hover,
.navline-7d3c9a a[aria-current="page"] {
  background: var(--surface-glass-strong-8a6f0e);
  color: var(--accent-gold-9b0f63);
}

.herofoil-2e7a1c {
  padding: 4rem 0 3rem;
  text-align: center;
}

.herotitle-8c1d4b {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-ice-4e2a90), var(--accent-gold-9b0f63));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ledecopy-3f6a2d {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-muted-3a8c2f);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
}

.ledecopy-3f6a2d p {
  margin-bottom: 1rem;
}

.ctaRow-5b1e9c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ctaRow-5b1e9c a {
  padding: 0.875rem 1.75rem;
  background: var(--surface-glass-strong-8a6f0e);
  border: 1px solid var(--border-hairline-1f7e55);
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ctaRow-5b1e9c a:hover {
  transform: translateY(-2px);
  background: var(--surface-glass-2c9d11);
  box-shadow: var(--shadow-elev-6c2d18);
}

.glasspanel-0d7c3e {
  background: var(--surface-glass-2c9d11);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-hairline-1f7e55);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-elev-6c2d18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glasspanel-0d7c3e:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.cardsgrid-6e2a0f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cardtile-1a5f8c {
  background: var(--surface-glass-strong-8a6f0e);
  border: 1px solid var(--border-hairline-1f7e55);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.cardtile-1a5f8c:hover {
  transform: scale(1.03);
  border-color: var(--accent-ice-4e2a90);
}

.cardtile-1a5f8c h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent-gold-9b0f63);
}

.cardtile-1a5f8c p {
  color: var(--text-muted-3a8c2f);
  line-height: 1.6;
}

.sectioncap-9c2e1a {
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--accent-ice-4e2a90);
  border-bottom: 2px solid var(--border-hairline-1f7e55);
  padding-bottom: 0.5rem;
}

.twocolgrid-7a1e5b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.proseblock-2c6d1f {
  color: var(--text-muted-3a8c2f);
}

.proseblock-2c6d1f h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--accent-gold-9b0f63);
}

.proseblock-2c6d1f p {
  margin-bottom: 1rem;
}

.proseblock-2c6d1f ul {
  list-style: none;
  padding-left: 0;
}

.proseblock-2c6d1f ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.proseblock-2c6d1f ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent-ice-4e2a90);
  font-weight: bold;
}

.tablewrap-8e3a1c {
  overflow-x: auto;
  margin-top: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-hairline-1f7e55);
}

table.premiumtable-4a7d2e {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-glass-strong-8a6f0e);
}

table.premiumtable-4a7d2e thead th {
  background: linear-gradient(135deg, rgba(125,211,252,0.15), rgba(246,193,119,0.15));
  color: var(--text-ink-5d1b7c);
  font-weight: 700;
  text-align: left;
  padding: 1rem;
  border-bottom: 2px solid var(--border-hairline-1f7e55);
  position: sticky;
  top: 0;
}

table.premiumtable-4a7d2e tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-hairline-1f7e55);
  color: var(--text-muted-3a8c2f);
  transition: background 0.2s ease;
}

table.premiumtable-4a7d2e tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

table.premiumtable-4a7d2e tbody tr:hover td {
  background: rgba(125,211,252,0.08);
}

details.accordion-3d8a1f {
  background: var(--surface-glass-strong-8a6f0e);
  border: 1px solid var(--border-hairline-1f7e55);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

details.accordion-3d8a1f:hover {
  border-color: var(--accent-ice-4e2a90);
}

details.accordion-3d8a1f summary {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text-ink-5d1b7c);
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
  padding-left: 2.5rem;
}

details.accordion-3d8a1f summary::before {
  content: "▸";
  position: absolute;
  left: 1rem;
  transition: transform 0.25s ease;
  color: var(--accent-ice-4e2a90);
  font-size: 1.25rem;
}

details.accordion-3d8a1f[open] summary::before {
  transform: rotate(90deg);
}

details.accordion-3d8a1f summary:hover {
  background: rgba(125,211,252,0.08);
  color: var(--accent-gold-9b0f63);
}

details.accordion-3d8a1f summary:focus-visible {
  outline: 2px solid var(--accent-ice-4e2a90);
  outline-offset: -2px;
}

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

details.accordion-3d8a1f[open] summary {
  border-bottom: 1px solid var(--border-hairline-1f7e55);
  background: rgba(125,211,252,0.05);
}

.answerpane-6c1e8a {
  padding: 1.25rem;
  color: var(--text-muted-3a8c2f);
  line-height: 1.7;
}

.answerpane-6c1e8a p {
  margin-bottom: 0.75rem;
}

.crumbnav-1f6c3d {
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.crumbnav-1f6c3d ol {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted-3a8c2f);
}

.crumbnav-1f6c3d ol li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--border-hairline-1f7e55);
}

.crumbnav-1f6c3d a {
  color: var(--accent-ice-4e2a90);
  transition: color 0.2s ease;
}

.crumbnav-1f6c3d a:hover {
  color: var(--accent-gold-9b0f63);
}

.footerbar-7c2a1e {
  border-top: 1px solid var(--border-hairline-1f7e55);
  padding: 2rem 0;
  margin-top: 4rem;
  background: var(--surface-glass-2c9d11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footerbar-7c2a1e .navline-7d3c9a {
  justify-content: center;
  margin-bottom: 1rem;
}

.fineprint-2a7c6e {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted-3a8c2f);
  line-height: 1.6;
}

.fineprint-2a7c6e p {
  margin-bottom: 0.25rem;
}

@media (max-width: 860px) {
  .twocolgrid-7a1e5b {
    grid-template-columns: 1fr;
  }
  .topbarflex-1c8d3a {
    flex-direction: column;
    gap: 1rem;
  }
  .navline-7d3c9a {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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