
.tcurhd {
  --hd-ink: #0b0c10;
  --hd-blue: #2563eb;
  --hd-blue2: #3b82f6;
  --hd-fh: "Syne", system-ui, sans-serif;
  --hd-fb: "DM Sans", system-ui, sans-serif;
  font-family: var(--hd-fb);
  background: var(--hd-ink);
  position: sticky;
  top: 0;
  z-index: 9999;
  line-height: 1.5;
}
.tcurhd *, .tcurhd *::before, .tcurhd *::after { box-sizing: border-box; margin: 0; padding: 0; }
.tcurhd a { text-decoration: none; color: inherit; }

.tcurhd .hd-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* brand */
.tcurhd .hd-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tcurhd .hd-mark {
  width: 34px; height: 34px; background: var(--hd-blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tcurhd .hd-mark svg { width: 18px; height: 18px; fill: #fff; }
.tcurhd .hd-name {
  font-family: var(--hd-fh); font-size: 15px; font-weight: 700;
  color: #fff; letter-spacing: -.2px; white-space: nowrap;
}
.tcurhd .hd-name em { font-style: normal; color: rgba(255,255,255,.45); }

/* desktop nav */
.tcurhd .hd-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.tcurhd .hd-nav a {
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.6);
  padding: 7px 12px; border-radius: 6px; transition: color .15s, background .15s;
  white-space: nowrap;
}
.tcurhd .hd-nav a:hover, .tcurhd .hd-nav a:focus-visible { color: #fff; background: rgba(255,255,255,.09); }
.tcurhd .hd-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.12); }

/* cta */
.tcurhd .hd-cta {
  font-family: var(--hd-fb); font-size: 13.5px; font-weight: 600; color: #fff;
  background: var(--hd-blue); padding: 9px 18px; border-radius: 7px;
  border: 0; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 7px;
}
.tcurhd .hd-cta:hover { background: var(--hd-blue2); }
.tcurhd .hd-cta svg { width: 14px; height: 14px; fill: #fff; }

/* hamburger */
.tcurhd .hd-burger {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px; width: 38px; height: 38px; cursor: pointer;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.tcurhd .hd-burger:hover { background: rgba(255,255,255,.08); }
.tcurhd .hd-burger svg { width: 20px; height: 20px; fill: #fff; }
.tcurhd .hd-burger .ic-x { display: none; }
.tcurhd .hd-burger[aria-expanded="true"] .ic-x { display: block; }
.tcurhd .hd-burger[aria-expanded="true"] .ic-bar { display: none; }

/* mobile panel */
.tcurhd .hd-mobile {
  display: none;
  border-top: 1px solid rgba(255,255,255,.09);
  background: var(--hd-ink);
  padding: 8px 24px 18px;
}
.tcurhd .hd-mobile.open { display: block; }
.tcurhd .hd-mobile a {
  display: block; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.72);
  padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.tcurhd .hd-mobile a:last-of-type { border-bottom: 0; }
.tcurhd .hd-mobile a:hover, .tcurhd .hd-mobile a[aria-current="page"] { color: #fff; }
.tcurhd .hd-mobile .hd-cta { width: 100%; justify-content: center; margin-top: 14px; padding: 12px 18px; font-size: 15px; }

@media (max-width: 900px) {
  .tcurhd .hd-nav { display: none; }
  .tcurhd .hd-in > .hd-cta { display: none; }
  .tcurhd .hd-burger { display: inline-flex; }
  .tcurhd .hd-in { margin-left: 0; }
}
@media (max-width: 380px) {
  .tcurhd .hd-name { font-size: 13px; }
  .tcurhd .hd-in { padding: 0 16px; }
}
