:root {
  --ch-ink-0a9f: #0B1220;
  --ch-surface-3c1e: rgba(255,255,255,0.72);
  --ch-surface-2b7d: rgba(255,255,255,0.10);
  --ch-accent-7f2c: #2F6BFF;
  --ch-accent2-9d11: #19B6A2;
  --ch-warm-5e6a: #FFB86B;
  --ch-border-8a4b: rgba(255,255,255,0.22);
  --ch-shadow-1d6e: 0 18px 50px rgba(11,18,32,0.22);
  --ch-radius-6b2f: 18px;
}

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

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

html:where([lang='en-CA']) {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

body.ch-bodyframe-7c2a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: var(--ch-ink-0a9f);
  background: linear-gradient(135deg, #e0f2f7 0%, #f5f9fc 50%, #fef8f0 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--ch-accent-7f2c);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

a:hover {
  color: var(--ch-accent2-9d11);
  text-decoration-color: var(--ch-warm-5e6a);
}

a:focus-visible {
  outline: 3px solid var(--ch-accent-7f2c);
  outline-offset: 4px;
  border-radius: 3px;
}

a.ch-linkglow-1f8d {
  position: relative;
  font-weight: 500;
}

a.ch-linkglow-1f8d:hover {
  text-shadow: 0 0 8px rgba(47,107,255,0.4);
}

.ch-skipdock-4b91 {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--ch-accent-7f2c);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ch-radius-6b2f);
  font-weight: 600;
  z-index: 1000;
  text-decoration: none;
}

.ch-skipdock-4b91:focus {
  top: 10px;
}

.ch-topbar-8e13 {
  background: var(--ch-surface-3c1e);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ch-border-8a4b);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--ch-shadow-1d6e);
}

.ch-shellgrid-5d0e {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ch-topbar-8e13 .ch-shellgrid-5d0e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ch-sitemark-9f2a {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--ch-accent-7f2c);
  letter-spacing: -0.02em;
}

.ch-navrow-2a6c {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.ch-navrow-2a6c a {
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
}

.ch-navrow-2a6c a:hover,
.ch-navrow-2a6c a:focus-visible {
  background: var(--ch-surface-2b7d);
  color: var(--ch-accent2-9d11);
}

.ch-navrow-2a6c a[aria-current="page"] {
  background: var(--ch-accent-7f2c);
  color: white;
}

.ch-breadcrumbs-6a1d {
  background: var(--ch-surface-2b7d);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ch-border-8a4b);
}

.ch-breadcrumbs-6a1d ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.ch-breadcrumbs-6a1d ol li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--ch-ink-0a9f);
  opacity: 0.5;
}

.ch-breadcrumbs-6a1d a {
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.ch-breadcrumbs-6a1d a:hover {
  text-decoration: underline;
}

main {
  flex: 1;
  padding: 3rem 0;
}

section {
  margin-bottom: 3rem;
}

.ch-herofoil-9a44 {
  background: linear-gradient(135deg, var(--ch-accent-7f2c) 0%, var(--ch-accent2-9d11) 100%);
  color: white;
  padding: 4rem 0;
  border-radius: var(--ch-radius-6b2f);
  box-shadow: var(--ch-shadow-1d6e);
  margin-bottom: 3rem;
}

.ch-herofoil-9a44 h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ch-herofoil-9a44 p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.ch-glasscard-6e2b {
  background: var(--ch-surface-3c1e);
  backdrop-filter: blur(12px);
  border: 1px solid var(--ch-border-8a4b);
  border-radius: var(--ch-radius-6b2f);
  padding: 2.5rem;
  box-shadow: var(--ch-shadow-1d6e);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ch-glasscard-6e2b:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11,18,32,0.28);
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--ch-ink-0a9f);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p, li {
  margin-bottom: 1rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.ch-kickerline-0c7d {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.ch-kickerline-0c7d::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--ch-accent-7f2c), var(--ch-warm-5e6a));
  border-radius: 2px;
}

.ch-gridpair-3f19 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.ch-tablewrap-1c6f {
  overflow-x: auto;
  border-radius: var(--ch-radius-6b2f);
  border: 1px solid var(--ch-border-8a4b);
  background: white;
  box-shadow: var(--ch-shadow-1d6e);
  margin-bottom: 2rem;
}

table.ch-datagrid-8b3a {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

table.ch-datagrid-8b3a caption {
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem;
  text-align: left;
  background: linear-gradient(135deg, var(--ch-accent-7f2c), var(--ch-accent2-9d11));
  color: white;
  border-radius: var(--ch-radius-6b2f) var(--ch-radius-6b2f) 0 0;
}

table.ch-datagrid-8b3a thead th {
  background: var(--ch-accent-7f2c);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 10;
}

table.ch-datagrid-8b3a tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--ch-border-8a4b);
}

table.ch-datagrid-8b3a tbody tr:nth-child(even) {
  background: rgba(47,107,255,0.04);
}

table.ch-datagrid-8b3a tbody tr:hover {
  background: rgba(25,182,162,0.08);
  transition: background 0.2s ease;
}

details.ch-accordion-2d5e {
  background: white;
  border: 1px solid var(--ch-border-8a4b);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(11,18,32,0.08);
  transition: box-shadow 0.25s ease;
}

details.ch-accordion-2d5e:hover {
  box-shadow: 0 8px 20px rgba(11,18,32,0.14);
}

details.ch-accordion-2d5e > summary {
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ch-accent-7f2c);
  transition: color 0.25s ease;
}

details.ch-accordion-2d5e > summary:hover {
  color: var(--ch-accent2-9d11);
}

details.ch-accordion-2d5e > summary:focus-visible {
  outline: 3px solid var(--ch-accent-7f2c);
  outline-offset: 4px;
  border-radius: 6px;
}

details.ch-accordion-2d5e > summary::marker,
details.ch-accordion-2d5e > summary::-webkit-details-marker {
  display: none;
}

details.ch-accordion-2d5e > summary::before {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ch-accent-7f2c);
  transition: transform 0.3s ease;
}

details.ch-accordion-2d5e[open] > summary::before {
  transform: rotate(45deg);
}

details.ch-accordion-2d5e[open] > summary {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ch-border-8a4b);
}

details.ch-accordion-2d5e p {
  margin-top: 0.5rem;
}

.ch-footerline-3a7e {
  background: var(--ch-surface-3c1e);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ch-border-8a4b);
  padding: 2rem 0;
  margin-top: auto;
}

.ch-footerline-3a7e .ch-shellgrid-5d0e {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.ch-footerline-3a7e nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ch-footerline-3a7e p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ch-ink-0a9f);
  opacity: 0.8;
}

.ch-a11ynote-4d8c {
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 860px) {
  .ch-topbar-8e13 .ch-shellgrid-5d0e {
    flex-direction: column;
    align-items: flex-start;
  }
  .ch-navrow-2a6c {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .ch-navrow-2a6c a {
    width: 100%;
    text-align: center;
  }
  .ch-herofoil-9a44 {
    padding: 2.5rem 0;
  }
  .ch-glasscard-6e2b {
    padding: 1.5rem;
  }
  table.ch-datagrid-8b3a {
    font-size: 0.85rem;
  }
  table.ch-datagrid-8b3a thead th,
  table.ch-datagrid-8b3a tbody td {
    padding: 0.75rem 0.5rem;
  }
}

@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;
  }
  html {
    scroll-behavior: auto;
  }
  .ch-glasscard-6e2b:hover {
    transform: none;
  }
  details.ch-accordion-2d5e[open] > summary::before {
    transform: none;
  }
}

@media (min-width: 861px) {
  table.ch-datagrid-8b3a thead th {
    position: sticky;
    top: 0;
  }
}