
/* shell */
.section-333{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section_dense-1ni{ padding:var(--section-gap-dense,16px) 0 0; }
.container-2an{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-333:not(.section_dense-1ni) > .container-2an{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-333{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section_dense-1ni{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header F */
/* Header F — pill nav active, gradient brand, large CTA */

.hd-root-2cv {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 68px);
  background: linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 85%, var(--bg)) 100%);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, box-shadow .25s ease;
}

.hd-root-2cv.hd-scrolled {
  height: calc(var(--hd-height, 68px) - 12px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hd_inner-ot {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.h-brand-14k {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--secondary, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.h-logo-1uc { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; -webkit-text-fill-color: initial; }

.hd-nav-2vg {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.h-navlink-324 {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.h-navlink-324:hover { color: var(--fg); background: rgba(128, 128, 128, 0.12); }
.h-navlink-324.hd-active { color: var(--bg); background: var(--primary); }

.hd-cta-2on {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-2on:hover { transform: scale(1.04); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 50%, transparent); }

.hd_actions-12u {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hd-burger-w6 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hd-burger-w6 span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hd-burger-w6.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger-w6.hd-open span:nth-child(2) { opacity: 0; }
.hd-burger-w6.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hd-mobile-nav-vm {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

.hd-mobile-nav-vm[hidden] { display: none !important; }
.hd-mobile-nav-vm .h-navlink-324.hd-active { color: var(--primary); background: none; }
.hd-mobile-nav-vm .hd-cta-2on { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .hd-nav-2vg { display: none; }
  .hd-burger-w6 { display: flex; }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.bc-root-53 {
  padding: var(--space-2) var(--space-5);
}

.bc-list-2oz {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.bc_item-u4 {
  display: flex;
  align-items: center;
}

.bc_link-1en {
  color: var(--fg);
  text-decoration: none;
}

.bc_link-1en:hover {
  color: var(--skin-ac);
}

.b-sep-19x {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.bc-current-2w4 {
  color: var(--fg);
}


/* prose A */
/* Prose A — standard */

.prRoot-21l {
  padding: var(--card-pad) var(--card-pad) 0;
}

.p-h2-a3 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.pr_h3-34o {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.pr-p-fn {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.pr-list-71 {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-h6 {
  margin-bottom: var(--space-1);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.p-table-4r {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 14px;
}

.prThead-h1 {
  background: var(--skin-ac);
}

.pr-th-2et {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--skin-bg);
}

.pr-tbody-s7 tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

.p-td-ht {
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.pr-image-7a {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1, 4px);
  margin: var(--space-3) 0;
}


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

.ftRoot-1w1 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-3);
}

.ft-inner-1uj {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft-brand-1c2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.ft-logo-a6 {
  height: 40px;
  width: auto;
  display: block;
}

.ft-nav-i6 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.ft-nav-link-1xi {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  white-space: nowrap;
}

.ft-nav-link-1xi:hover { color: var(--primary); }

.ft-disclaimer-2t2 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-4) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.ft-copy-34 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .ft-inner-1uj { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .ft-nav-i6 { justify-content: flex-start; }
}

