
/* shell */
.section-43{ padding:var(--section-gap, 40px) 0; }
.section-dense-5e{ padding:var(--section-gap-dense, 16px) 0; }
.container-lf{ width:min(var(--container-w, 1100px), calc(100% - var(--space-5))); margin:0 auto; }
.section-43:not(.section-dense-5e) > .container-lf{ background:var(--skin-bg); border-radius:var(--skin-r); box-shadow:var(--skin-shadow); backdrop-filter: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; }

/* header E */
/* Header E — glassmorphism: blurred background always, accent CTA */

.hd-root-3m {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 66px);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, background .25s ease;
}

.hd-root-3m.hd-scrolled {
  height: calc(var(--hd-height, 66px) - 10px);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hd-inner-72 {
  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);
}

.hd-brand-hf {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.hd-logo-bt { height: 36px; width: auto; display: block; }

.hd-nav-73 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
}

.hd-nav-link-er {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.hd-nav-link-er:hover { color: var(--fg); }

.hd-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hd-cta-p4 {
  display: inline-block;
  padding: 9px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  box-shadow: 0 0 16px color-mix(in srgb, var(--primary) 50%, transparent);
  transition: opacity .2s, box-shadow .2s;
  white-space: nowrap;
}

.hd-cta-p4:hover { opacity: .88; box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 70%, transparent); }

.hd-actions-fp {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.hd-mobile-nav-pp {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(16px);
  gap: var(--space-2);
}

.hd-mobile-nav-pp[hidden] { display: none !important; }
.hd-mobile-nav-pp .hd-nav-link-er { font-size: 15px; padding: 10px 0; color: var(--fg); border-bottom: 1px solid var(--border); }
.hd-mobile-nav-pp .hd-cta-p4 { margin-top: var(--space-2); text-align: center; box-shadow: none; }

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


/* faq A */
.faq-root-o1 {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faq-root-o1>* {
  position: relative;
}

.faq-title-gd {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.faq-intro-45 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item-2y {
  border-bottom: 1px solid var(--border);
}

.faq-item-2y:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.faq-q-ig {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.faq-q-ig:hover {
  color: var(--brand);
}

.faq-q-ig::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.faq-q-ig[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

.faq-a-l4 {
  padding: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.ft-root-oo {
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

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

.ft-inner-34 > div:first-child {
  flex: 1;
  min-width: 0;
}

.ft-brand-dh {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.ft-logo-mv {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.ft-nav-g5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.ft-disclaimer-fz {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ft-copy-ct {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .ft-inner-34 { flex-direction: column; }
  .ft-nav-g5 { flex-direction: row; flex-wrap: wrap; }
}

