
/* shell */
.c_89216{ padding:var(--section-gap, 40px) 0; }
.c_9b320{ padding:var(--section-gap-dense, 16px) 0; }
.c_69d0f{ width:min(var(--container-w, 1100px), calc(100% - var(--space-5))); margin:0 auto; }
.c_89216:not(.c_9b320) > .c_69d0f{ 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 */

.c_95aab {
  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;
}

.c_95aab.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);
}

.c_edd28 {
  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);
}

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

.c_cf152 { height: 36px; width: auto; display: block; }

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

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

.c_c3a34:hover { color: var(--fg); }

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

.c_b1d01 {
  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;
}

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

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

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

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

.c_d354f {
  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);
}

.c_d354f[hidden] { display: none !important; }
.c_d354f .c_c3a34 { font-size: 15px; padding: 10px 0; color: var(--fg); border-bottom: 1px solid var(--border); }
.c_d354f .c_b1d01 { margin-top: var(--space-2); text-align: center; box-shadow: none; }

@media (max-width: 768px) {
  .c_ca323 { display: none; }
  .c_ef8b0 { display: flex; }
}


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

.c_caa1a>* {
  position: relative;
}

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

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

.c_703ca {
  border-bottom: 1px solid var(--border);
}

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

.c_c1099 {
  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;
}

.c_c1099:hover {
  color: var(--brand);
}

.c_c1099::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;
}

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

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


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

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

.c_b57f0 {
  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;
}

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

.c_9696c {
  height: 32px;
  width: auto;
  display: block;
}

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

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

.c_29ad2:hover { color: var(--primary); }

.c_78c1d {
  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;
}

.c_89c1c {
  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) {
  .c_b57f0 { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .c_2fed7 { justify-content: flex-start; }
}

